]> git.proxmox.com Git - mirror_frr.git/blob - zebra/rib.h
Merge pull request #1084 from donaldsharp/zebra_frame
[mirror_frr.git] / zebra / rib.h
1 /*
2 * Routing Information Base header
3 * Copyright (C) 1997 Kunihiro Ishiguro
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; see the file COPYING; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22 #ifndef _ZEBRA_RIB_H
23 #define _ZEBRA_RIB_H
24
25 #include "zebra.h"
26 #include "hook.h"
27 #include "linklist.h"
28 #include "prefix.h"
29 #include "table.h"
30 #include "queue.h"
31 #include "nexthop.h"
32 #include "vrf.h"
33 #include "if.h"
34 #include "mpls.h"
35 #include "srcdest_table.h"
36
37 #define DISTANCE_INFINITY 255
38 #define ZEBRA_KERNEL_TABLE_MAX 252 /* support for no more than this rt tables */
39
40 struct route_entry {
41 /* Link list. */
42 struct route_entry *next;
43 struct route_entry *prev;
44
45 /* Nexthop structure */
46 struct nexthop *nexthop;
47
48 /* Tag */
49 route_tag_t tag;
50
51 /* Uptime. */
52 time_t uptime;
53
54 /* Type fo this route. */
55 int type;
56
57 /* Source protocol instance */
58 u_short instance;
59
60 /* VRF identifier. */
61 vrf_id_t vrf_id;
62
63 /* Which routing table */
64 uint32_t table;
65
66 /* Metric */
67 u_int32_t metric;
68
69 /* MTU */
70 u_int32_t mtu;
71 u_int32_t nexthop_mtu;
72
73 /* Distance. */
74 u_char distance;
75
76 /* Flags of this route.
77 * This flag's definition is in lib/zebra.h ZEBRA_FLAG_* and is exposed
78 * to clients via Zserv
79 */
80 u_int32_t flags;
81
82 /* RIB internal status */
83 u_char status;
84 #define ROUTE_ENTRY_REMOVED 0x1
85 /* to simplify NHT logic when NHs change, instead of doing a NH by NH cmp */
86 #define ROUTE_ENTRY_NEXTHOPS_CHANGED 0x2
87 #define ROUTE_ENTRY_CHANGED 0x4
88 #define ROUTE_ENTRY_SELECTED_FIB 0x8
89 #define ROUTE_ENTRY_LABELS_CHANGED 0x10
90
91 /* Nexthop information. */
92 u_char nexthop_num;
93 u_char nexthop_active_num;
94 };
95
96 /* meta-queue structure:
97 * sub-queue 0: connected, kernel
98 * sub-queue 1: static
99 * sub-queue 2: RIP, RIPng, OSPF, OSPF6, IS-IS, EIGRP, NHRP
100 * sub-queue 3: iBGP, eBGP
101 * sub-queue 4: any other origin (if any)
102 */
103 #define MQ_SIZE 5
104 struct meta_queue {
105 struct list *subq[MQ_SIZE];
106 u_int32_t size; /* sum of lengths of all subqueues */
107 };
108
109 /*
110 * Structure that represents a single destination (prefix).
111 */
112 typedef struct rib_dest_t_ {
113
114 /*
115 * Back pointer to the route node for this destination. This helps
116 * us get to the prefix that this structure is for.
117 */
118 struct route_node *rnode;
119
120 /*
121 * Doubly-linked list of routes for this prefix.
122 */
123 struct route_entry *routes;
124
125 /*
126 * Flags, see below.
127 */
128 u_int32_t flags;
129
130 /*
131 * Linkage to put dest on the FPM processing queue.
132 */
133 TAILQ_ENTRY(rib_dest_t_) fpm_q_entries;
134
135 } rib_dest_t;
136
137 #define RIB_ROUTE_QUEUED(x) (1 << (x))
138
139 /*
140 * The maximum qindex that can be used.
141 */
142 #define ZEBRA_MAX_QINDEX (MQ_SIZE - 1)
143
144 /*
145 * This flag indicates that a given prefix has been 'advertised' to
146 * the FPM to be installed in the forwarding plane.
147 */
148 #define RIB_DEST_SENT_TO_FPM (1 << (ZEBRA_MAX_QINDEX + 1))
149
150 /*
151 * This flag is set when we need to send an update to the FPM about a
152 * dest.
153 */
154 #define RIB_DEST_UPDATE_FPM (1 << (ZEBRA_MAX_QINDEX + 2))
155
156 /*
157 * Macro to iterate over each route for a destination (prefix).
158 */
159 #define RE_DEST_FOREACH_ROUTE(dest, re) \
160 for ((re) = (dest) ? (dest)->routes : NULL; (re); (re) = (re)->next)
161
162 /*
163 * Same as above, but allows the current node to be unlinked.
164 */
165 #define RE_DEST_FOREACH_ROUTE_SAFE(dest, re, next) \
166 for ((re) = (dest) ? (dest)->routes : NULL; \
167 (re) && ((next) = (re)->next, 1); (re) = (next))
168
169 #define RNODE_FOREACH_RE(rn, re) \
170 RE_DEST_FOREACH_ROUTE(rib_dest_from_rnode(rn), re)
171
172 #define RNODE_FOREACH_RE_SAFE(rn, re, next) \
173 RE_DEST_FOREACH_ROUTE_SAFE(rib_dest_from_rnode(rn), re, next)
174
175 #if defined(HAVE_RTADV)
176 /* Structure which hold status of router advertisement. */
177 struct rtadv {
178 int sock;
179
180 int adv_if_count;
181 int adv_msec_if_count;
182
183 struct thread *ra_read;
184 struct thread *ra_timer;
185 };
186 #endif /* HAVE_RTADV */
187
188 /*
189 * rib_table_info_t
190 *
191 * Structure that is hung off of a route_table that holds information about
192 * the table.
193 */
194 typedef struct rib_table_info_t_ {
195
196 /*
197 * Back pointer to zebra_vrf.
198 */
199 struct zebra_vrf *zvrf;
200 afi_t afi;
201 safi_t safi;
202
203 } rib_table_info_t;
204
205 typedef enum {
206 RIB_TABLES_ITER_S_INIT,
207 RIB_TABLES_ITER_S_ITERATING,
208 RIB_TABLES_ITER_S_DONE
209 } rib_tables_iter_state_t;
210
211 /*
212 * Structure that holds state for iterating over all tables in the
213 * Routing Information Base.
214 */
215 typedef struct rib_tables_iter_t_ {
216 vrf_id_t vrf_id;
217 int afi_safi_ix;
218
219 rib_tables_iter_state_t state;
220 } rib_tables_iter_t;
221
222 /* Events/reasons triggering a RIB update. */
223 typedef enum {
224 RIB_UPDATE_IF_CHANGE,
225 RIB_UPDATE_RMAP_CHANGE,
226 RIB_UPDATE_OTHER
227 } rib_update_event_t;
228
229 extern struct nexthop *route_entry_nexthop_ifindex_add(struct route_entry *,
230 ifindex_t);
231 extern struct nexthop *route_entry_nexthop_blackhole_add(struct route_entry *,
232 enum blackhole_type);
233 extern struct nexthop *route_entry_nexthop_ipv4_add(struct route_entry *,
234 struct in_addr *,
235 struct in_addr *);
236 extern struct nexthop *
237 route_entry_nexthop_ipv4_ifindex_add(struct route_entry *, struct in_addr *,
238 struct in_addr *, ifindex_t);
239 extern void route_entry_nexthop_delete(struct route_entry *re,
240 struct nexthop *nexthop);
241 extern struct nexthop *route_entry_nexthop_ipv6_add(struct route_entry *,
242 struct in6_addr *);
243 extern struct nexthop *
244 route_entry_nexthop_ipv6_ifindex_add(struct route_entry *re,
245 struct in6_addr *ipv6, ifindex_t ifindex);
246 extern void route_entry_nexthop_add(struct route_entry *re,
247 struct nexthop *nexthop);
248 extern void route_entry_copy_nexthops(struct route_entry *re,
249 struct nexthop *nh);
250
251 #define route_entry_dump(prefix, src, re) _route_entry_dump(__func__, prefix, src, re)
252 extern void _route_entry_dump(const char *, union prefixconstptr,
253 union prefixconstptr, const struct route_entry *);
254 /* RPF lookup behaviour */
255 enum multicast_mode {
256 MCAST_NO_CONFIG = 0, /* MIX_MRIB_FIRST, but no show in config write */
257 MCAST_MRIB_ONLY, /* MRIB only */
258 MCAST_URIB_ONLY, /* URIB only */
259 MCAST_MIX_MRIB_FIRST, /* MRIB, if nothing at all then URIB */
260 MCAST_MIX_DISTANCE, /* MRIB & URIB, lower distance wins */
261 MCAST_MIX_PFXLEN, /* MRIB & URIB, longer prefix wins */
262 /* on equal value, MRIB wins for last 2 */
263 };
264
265 extern void multicast_mode_ipv4_set(enum multicast_mode mode);
266 extern enum multicast_mode multicast_mode_ipv4_get(void);
267
268 extern void rib_lookup_and_dump(struct prefix_ipv4 *, vrf_id_t);
269 extern void rib_lookup_and_pushup(struct prefix_ipv4 *, vrf_id_t);
270
271 extern int rib_lookup_ipv4_route(struct prefix_ipv4 *, union sockunion *,
272 vrf_id_t);
273 #define ZEBRA_RIB_LOOKUP_ERROR -1
274 #define ZEBRA_RIB_FOUND_EXACT 0
275 #define ZEBRA_RIB_FOUND_NOGATE 1
276 #define ZEBRA_RIB_FOUND_CONNECTED 2
277 #define ZEBRA_RIB_NOTFOUND 3
278
279 extern int is_zebra_valid_kernel_table(u_int32_t table_id);
280 extern int is_zebra_main_routing_table(u_int32_t table_id);
281 extern int zebra_check_addr(struct prefix *p);
282
283 extern void rib_addnode(struct route_node *rn, struct route_entry *re,
284 int process);
285 extern void rib_delnode(struct route_node *rn, struct route_entry *re);
286 extern int rib_install_kernel(struct route_node *rn, struct route_entry *re,
287 struct route_entry *old);
288 extern int rib_uninstall_kernel(struct route_node *rn, struct route_entry *re);
289
290 /* NOTE:
291 * All rib_add function will not just add prefix into RIB, but
292 * also implicitly withdraw equal prefix of same type. */
293 extern int rib_add(afi_t afi, safi_t safi, vrf_id_t vrf_id, int type,
294 u_short instance, int flags, struct prefix *p,
295 struct prefix_ipv6 *src_p, const struct nexthop *nh,
296 u_int32_t table_id, u_int32_t metric, u_int32_t mtu,
297 u_char distance);
298
299 extern int rib_add_multipath(afi_t afi, safi_t safi, struct prefix *,
300 struct prefix_ipv6 *src_p, struct route_entry *);
301
302 extern void rib_delete(afi_t afi, safi_t safi, vrf_id_t vrf_id, int type,
303 u_short instance, int flags, struct prefix *p,
304 struct prefix_ipv6 *src_p, const struct nexthop *nh,
305 u_int32_t table_id, u_int32_t metric);
306
307 extern struct route_entry *rib_match(afi_t afi, safi_t safi, vrf_id_t,
308 union g_addr *,
309 struct route_node **rn_out);
310 extern struct route_entry *rib_match_ipv4_multicast(vrf_id_t vrf_id,
311 struct in_addr addr,
312 struct route_node **rn_out);
313
314 extern struct route_entry *rib_lookup_ipv4(struct prefix_ipv4 *, vrf_id_t);
315
316 extern void rib_update(vrf_id_t, rib_update_event_t);
317 extern void rib_weed_tables(void);
318 extern void rib_sweep_route(void);
319 extern void rib_close_table(struct route_table *);
320 extern void rib_init(void);
321 extern unsigned long rib_score_proto(u_char proto, u_short instance);
322 extern void rib_queue_add(struct route_node *rn);
323 extern void meta_queue_free(struct meta_queue *mq);
324 extern int zebra_rib_labeled_unicast(struct route_entry *re);
325 extern struct route_table *rib_table_ipv6;
326
327 extern void rib_unlink(struct route_node *, struct route_entry *);
328 extern int rib_gc_dest(struct route_node *rn);
329 extern struct route_table *rib_tables_iter_next(rib_tables_iter_t *iter);
330
331 extern u_char route_distance(int type);
332
333 /*
334 * Inline functions.
335 */
336
337 /*
338 * rib_table_info
339 */
340 static inline rib_table_info_t *rib_table_info(struct route_table *table)
341 {
342 return (rib_table_info_t *)table->info;
343 }
344
345 /*
346 * rib_dest_from_rnode
347 */
348 static inline rib_dest_t *rib_dest_from_rnode(struct route_node *rn)
349 {
350 return (rib_dest_t *)rn->info;
351 }
352
353 /*
354 * rnode_to_ribs
355 *
356 * Returns a pointer to the list of routes corresponding to the given
357 * route_node.
358 */
359 static inline struct route_entry *rnode_to_ribs(struct route_node *rn)
360 {
361 rib_dest_t *dest;
362
363 dest = rib_dest_from_rnode(rn);
364 if (!dest)
365 return NULL;
366
367 return dest->routes;
368 }
369
370 /*
371 * rib_dest_prefix
372 */
373 static inline struct prefix *rib_dest_prefix(rib_dest_t *dest)
374 {
375 return &dest->rnode->p;
376 }
377
378 /*
379 * rib_dest_af
380 *
381 * Returns the address family that the destination is for.
382 */
383 static inline u_char rib_dest_af(rib_dest_t *dest)
384 {
385 return dest->rnode->p.family;
386 }
387
388 /*
389 * rib_dest_table
390 */
391 static inline struct route_table *rib_dest_table(rib_dest_t *dest)
392 {
393 return srcdest_rnode_table(dest->rnode);
394 }
395
396 /*
397 * rib_dest_vrf
398 */
399 static inline struct zebra_vrf *rib_dest_vrf(rib_dest_t *dest)
400 {
401 return rib_table_info(rib_dest_table(dest))->zvrf;
402 }
403
404 /*
405 * rib_tables_iter_init
406 */
407 static inline void rib_tables_iter_init(rib_tables_iter_t *iter)
408
409 {
410 memset(iter, 0, sizeof(*iter));
411 iter->state = RIB_TABLES_ITER_S_INIT;
412 }
413
414 /*
415 * rib_tables_iter_started
416 *
417 * Returns TRUE if this iterator has started iterating over the set of
418 * tables.
419 */
420 static inline int rib_tables_iter_started(rib_tables_iter_t *iter)
421 {
422 return iter->state != RIB_TABLES_ITER_S_INIT;
423 }
424
425 /*
426 * rib_tables_iter_cleanup
427 */
428 static inline void rib_tables_iter_cleanup(rib_tables_iter_t *iter)
429 {
430 iter->state = RIB_TABLES_ITER_S_DONE;
431 }
432
433 DECLARE_HOOK(rib_update, (struct route_node * rn, const char *reason),
434 (rn, reason))
435
436 #endif /*_ZEBRA_RIB_H */