]> git.proxmox.com Git - mirror_frr.git/blame - zebra/rib.h
zebra: Make RIB_SYSTEM|KERNEL_ROUTE a property of rib.h
[mirror_frr.git] / zebra / rib.h
CommitLineData
718e3744 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 *
896014f4
DL
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
718e3744 20 */
21
22#ifndef _ZEBRA_RIB_H
23#define _ZEBRA_RIB_H
24
dc9ffce8 25#include "zebra.h"
4f8ea50c 26#include "hook.h"
aa57abfb 27#include "typesafe.h"
c6ffe645 28#include "linklist.h"
ec1a4283 29#include "prefix.h"
9fd92e3c 30#include "table.h"
5adc2528 31#include "queue.h"
fb018d25 32#include "nexthop.h"
7ee30f28 33#include "nexthop_group.h"
244a59d2 34#include "vrf.h"
fb148af4 35#include "if.h"
40c7bdb0 36#include "mpls.h"
05737783 37#include "srcdest_table.h"
ec1a4283 38
51e94aa7
EDP
39#ifdef __cplusplus
40extern "C" {
41#endif
42
aa57abfb
DS
43typedef enum { RNH_NEXTHOP_TYPE, RNH_IMPORT_CHECK_TYPE } rnh_type_t;
44
45PREDECL_LIST(rnh_list)
46
47/* Nexthop structure. */
48struct rnh {
49 uint8_t flags;
50
51#define ZEBRA_NHT_CONNECTED 0x1
52#define ZEBRA_NHT_DELETED 0x2
53#define ZEBRA_NHT_EXACT_MATCH 0x4
54
55 /* VRF identifier. */
56 vrf_id_t vrf_id;
57
58 afi_t afi;
59
60 rnh_type_t type;
61
62 uint32_t seqno;
63
64 struct route_entry *state;
65 struct prefix resolved_route;
66 struct list *client_list;
67
68 /* pseudowires dependent on this nh */
69 struct list *zebra_pseudowire_list;
70
71 struct route_node *node;
72
73 /*
74 * if this has been filtered for the client
75 */
76 int filtered[ZEBRA_ROUTE_MAX];
77
78 struct rnh_list_item rnh_list_item;
79};
80
718e3744 81#define DISTANCE_INFINITY 255
7a4bb9c5 82#define ZEBRA_KERNEL_TABLE_MAX 252 /* support for no more than this rt tables */
718e3744 83
045207e2
DS
84PREDECL_LIST(re_list)
85
d62a17ae 86struct route_entry {
87 /* Link list. */
045207e2 88 struct re_list_item next;
d62a17ae 89
90 /* Nexthop structure */
7ee30f28 91 struct nexthop_group ng;
d62a17ae 92
d62a17ae 93 /* Tag */
94 route_tag_t tag;
95
96 /* Uptime. */
97 time_t uptime;
98
99 /* Type fo this route. */
100 int type;
101
102 /* Source protocol instance */
d7c0a89a 103 unsigned short instance;
d62a17ae 104
105 /* VRF identifier. */
106 vrf_id_t vrf_id;
107
108 /* Which routing table */
109 uint32_t table;
110
111 /* Metric */
d7c0a89a 112 uint32_t metric;
d62a17ae 113
114 /* MTU */
d7c0a89a
QY
115 uint32_t mtu;
116 uint32_t nexthop_mtu;
d62a17ae 117
118 /* Distance. */
fd289fc8 119 uint8_t distance;
d62a17ae 120
121 /* Flags of this route.
122 * This flag's definition is in lib/zebra.h ZEBRA_FLAG_* and is exposed
123 * to clients via Zserv
124 */
d7c0a89a 125 uint32_t flags;
d62a17ae 126
127 /* RIB internal status */
88f7ea31 128 uint32_t status;
f0f77c9a 129#define ROUTE_ENTRY_REMOVED 0x1
d62a17ae 130/* to simplify NHT logic when NHs change, instead of doing a NH by NH cmp */
f0f77c9a 131#define ROUTE_ENTRY_NEXTHOPS_CHANGED 0x2
88f7ea31 132/* The Route Entry has changed */
f0f77c9a 133#define ROUTE_ENTRY_CHANGED 0x4
88f7ea31 134/* The Label has changed on the Route entry */
5f7a4718 135#define ROUTE_ENTRY_LABELS_CHANGED 0x8
88f7ea31
DS
136/* Route is queued for Installation into the Data Plane */
137#define ROUTE_ENTRY_QUEUED 0x10
138/* Route is installed into the Data Plane */
139#define ROUTE_ENTRY_INSTALLED 0x20
140/* Route has Failed installation into the Data Plane in some manner */
141#define ROUTE_ENTRY_FAILED 0x40
6d691129 142
d62a17ae 143 /* Nexthop information. */
d7c0a89a
QY
144 uint8_t nexthop_num;
145 uint8_t nexthop_active_num;
7cdb1a84
MS
146
147 /* Sequence value incremented for each dataplane operation */
148 uint32_t dplane_sequence;
718e3744 149};
150
84340a15
DS
151#define RIB_SYSTEM_ROUTE(R) \
152 ((R)->type == ZEBRA_ROUTE_KERNEL || (R)->type == ZEBRA_ROUTE_CONNECT)
153
154#define RIB_KERNEL_ROUTE(R) ((R)->type == ZEBRA_ROUTE_KERNEL)
155
e96f9203
DO
156/* meta-queue structure:
157 * sub-queue 0: connected, kernel
158 * sub-queue 1: static
43cf4ba4 159 * sub-queue 2: RIP, RIPng, OSPF, OSPF6, IS-IS, EIGRP, NHRP
e96f9203
DO
160 * sub-queue 3: iBGP, eBGP
161 * sub-queue 4: any other origin (if any)
162 */
163#define MQ_SIZE 5
d62a17ae 164struct meta_queue {
165 struct list *subq[MQ_SIZE];
d7c0a89a 166 uint32_t size; /* sum of lengths of all subqueues */
e96f9203
DO
167};
168
9fd92e3c
AS
169/*
170 * Structure that represents a single destination (prefix).
171 */
d62a17ae 172typedef struct rib_dest_t_ {
9fd92e3c 173
d62a17ae 174 /*
175 * Back pointer to the route node for this destination. This helps
176 * us get to the prefix that this structure is for.
177 */
178 struct route_node *rnode;
9fd92e3c 179
d62a17ae 180 /*
181 * Doubly-linked list of routes for this prefix.
182 */
045207e2 183 struct re_list_head routes;
9fd92e3c 184
5f7a4718
DS
185 struct route_entry *selected_fib;
186
d62a17ae 187 /*
188 * Flags, see below.
189 */
d7c0a89a 190 uint32_t flags;
9fd92e3c 191
699dae23
DS
192 /*
193 * The list of nht prefixes that have ended up
194 * depending on this route node.
195 * After route processing is returned from
196 * the data plane we will run evaluate_rnh
197 * on these prefixes.
198 */
aa57abfb 199 struct rnh_list_head nht;
699dae23 200
d62a17ae 201 /*
202 * Linkage to put dest on the FPM processing queue.
203 */
204 TAILQ_ENTRY(rib_dest_t_) fpm_q_entries;
5adc2528 205
9fd92e3c
AS
206} rib_dest_t;
207
aa57abfb 208DECLARE_LIST(rnh_list, struct rnh, rnh_list_item);
045207e2 209DECLARE_LIST(re_list, struct route_entry, next);
aa57abfb 210
9fd92e3c 211#define RIB_ROUTE_QUEUED(x) (1 << (x))
1ca60f2c
DS
212// If MQ_SIZE is modified this value needs to be updated.
213#define RIB_ROUTE_ANY_QUEUED 0x1F
9fd92e3c
AS
214
215/*
216 * The maximum qindex that can be used.
217 */
218#define ZEBRA_MAX_QINDEX (MQ_SIZE - 1)
219
5adc2528
AS
220/*
221 * This flag indicates that a given prefix has been 'advertised' to
222 * the FPM to be installed in the forwarding plane.
223 */
224#define RIB_DEST_SENT_TO_FPM (1 << (ZEBRA_MAX_QINDEX + 1))
225
226/*
227 * This flag is set when we need to send an update to the FPM about a
228 * dest.
229 */
230#define RIB_DEST_UPDATE_FPM (1 << (ZEBRA_MAX_QINDEX + 2))
231
a1494c25
DS
232#define RIB_DEST_UPDATE_LSPS (1 << (ZEBRA_MAX_QINDEX + 3))
233
9fd92e3c
AS
234/*
235 * Macro to iterate over each route for a destination (prefix).
236 */
d62a17ae 237#define RE_DEST_FOREACH_ROUTE(dest, re) \
045207e2
DS
238 for ((re) = (dest) ? re_list_first(&((dest)->routes)) : NULL; (re); \
239 (re) = re_list_next(&((dest)->routes), (re)))
9fd92e3c
AS
240
241/*
242 * Same as above, but allows the current node to be unlinked.
243 */
d62a17ae 244#define RE_DEST_FOREACH_ROUTE_SAFE(dest, re, next) \
045207e2
DS
245 for ((re) = (dest) ? re_list_first(&((dest)->routes)) : NULL; \
246 (re) && ((next) = re_list_next(&((dest)->routes), (re)), 1); \
247 (re) = (next))
9fd92e3c 248
d62a17ae 249#define RNODE_FOREACH_RE(rn, re) \
996c9314 250 RE_DEST_FOREACH_ROUTE (rib_dest_from_rnode(rn), re)
9fd92e3c 251
d62a17ae 252#define RNODE_FOREACH_RE_SAFE(rn, re, next) \
996c9314 253 RE_DEST_FOREACH_ROUTE_SAFE (rib_dest_from_rnode(rn), re, next)
9fd92e3c 254
d62a17ae 255#if defined(HAVE_RTADV)
cd80d74f 256/* Structure which hold status of router advertisement. */
d62a17ae 257struct rtadv {
258 int sock;
cd80d74f 259
d62a17ae 260 int adv_if_count;
261 int adv_msec_if_count;
cd80d74f 262
d62a17ae 263 struct thread *ra_read;
264 struct thread *ra_timer;
cd80d74f 265};
8da4e946 266#endif /* HAVE_RTADV */
cd80d74f 267
1b5ed1b0
AS
268/*
269 * rib_table_info_t
270 *
271 * Structure that is hung off of a route_table that holds information about
272 * the table.
273 */
d62a17ae 274typedef struct rib_table_info_t_ {
1b5ed1b0 275
d62a17ae 276 /*
277 * Back pointer to zebra_vrf.
278 */
279 struct zebra_vrf *zvrf;
280 afi_t afi;
281 safi_t safi;
1b5ed1b0
AS
282
283} rib_table_info_t;
284
d62a17ae 285typedef enum {
286 RIB_TABLES_ITER_S_INIT,
287 RIB_TABLES_ITER_S_ITERATING,
288 RIB_TABLES_ITER_S_DONE
0915bb0c
AS
289} rib_tables_iter_state_t;
290
291/*
292 * Structure that holds state for iterating over all tables in the
293 * Routing Information Base.
294 */
d62a17ae 295typedef struct rib_tables_iter_t_ {
296 vrf_id_t vrf_id;
297 int afi_safi_ix;
0915bb0c 298
d62a17ae 299 rib_tables_iter_state_t state;
0915bb0c
AS
300} rib_tables_iter_t;
301
1c848137 302/* Events/reasons triggering a RIB update. */
d62a17ae 303typedef enum {
304 RIB_UPDATE_IF_CHANGE,
305 RIB_UPDATE_RMAP_CHANGE,
306 RIB_UPDATE_OTHER
1c848137 307} rib_update_event_t;
308
072834ca
DS
309extern struct nexthop *route_entry_nexthop_ifindex_add(struct route_entry *re,
310 ifindex_t ifindex,
4a7371e9 311 vrf_id_t nh_vrf_id);
072834ca
DS
312extern struct nexthop *
313route_entry_nexthop_blackhole_add(struct route_entry *re,
314 enum blackhole_type bh_type);
315extern struct nexthop *route_entry_nexthop_ipv4_add(struct route_entry *re,
316 struct in_addr *ipv4,
317 struct in_addr *src,
4a7371e9 318 vrf_id_t nh_vrf_id);
d62a17ae 319extern struct nexthop *
072834ca
DS
320route_entry_nexthop_ipv4_ifindex_add(struct route_entry *re,
321 struct in_addr *ipv4, struct in_addr *src,
322 ifindex_t ifindex, vrf_id_t nh_vrf_id);
d62a17ae 323extern void route_entry_nexthop_delete(struct route_entry *re,
324 struct nexthop *nexthop);
072834ca
DS
325extern struct nexthop *route_entry_nexthop_ipv6_add(struct route_entry *re,
326 struct in6_addr *ipv6,
4a7371e9 327 vrf_id_t nh_vrf_id);
d62a17ae 328extern struct nexthop *
329route_entry_nexthop_ipv6_ifindex_add(struct route_entry *re,
4a7371e9
DS
330 struct in6_addr *ipv6, ifindex_t ifindex,
331 vrf_id_t nh_vrf_id);
d62a17ae 332extern void route_entry_nexthop_add(struct route_entry *re,
333 struct nexthop *nexthop);
334extern void route_entry_copy_nexthops(struct route_entry *re,
335 struct nexthop *nh);
f0f77c9a
DS
336
337#define route_entry_dump(prefix, src, re) _route_entry_dump(__func__, prefix, src, re)
072834ca
DS
338extern void _route_entry_dump(const char *func, union prefixconstptr pp,
339 union prefixconstptr src_pp,
340 const struct route_entry *re);
4623d897 341/* RPF lookup behaviour */
d62a17ae 342enum multicast_mode {
343 MCAST_NO_CONFIG = 0, /* MIX_MRIB_FIRST, but no show in config write */
344 MCAST_MRIB_ONLY, /* MRIB only */
345 MCAST_URIB_ONLY, /* URIB only */
346 MCAST_MIX_MRIB_FIRST, /* MRIB, if nothing at all then URIB */
347 MCAST_MIX_DISTANCE, /* MRIB & URIB, lower distance wins */
348 MCAST_MIX_PFXLEN, /* MRIB & URIB, longer prefix wins */
349 /* on equal value, MRIB wins for last 2 */
4623d897
DL
350};
351
d62a17ae 352extern void multicast_mode_ipv4_set(enum multicast_mode mode);
353extern enum multicast_mode multicast_mode_ipv4_get(void);
4623d897 354
072834ca
DS
355extern void rib_lookup_and_dump(struct prefix_ipv4 *p, vrf_id_t vrf_id);
356extern void rib_lookup_and_pushup(struct prefix_ipv4 *p, vrf_id_t vrf_id);
f0f77c9a 357
dc95824a
DO
358#define ZEBRA_RIB_LOOKUP_ERROR -1
359#define ZEBRA_RIB_FOUND_EXACT 0
360#define ZEBRA_RIB_FOUND_NOGATE 1
361#define ZEBRA_RIB_FOUND_CONNECTED 2
362#define ZEBRA_RIB_NOTFOUND 3
363
d7c0a89a
QY
364extern int is_zebra_valid_kernel_table(uint32_t table_id);
365extern int is_zebra_main_routing_table(uint32_t table_id);
86391e56 366extern int zebra_check_addr(const struct prefix *p);
718e3744 367
d62a17ae 368extern void rib_delnode(struct route_node *rn, struct route_entry *re);
0c555cc6
DS
369extern void rib_install_kernel(struct route_node *rn, struct route_entry *re,
370 struct route_entry *old);
371extern void rib_uninstall_kernel(struct route_node *rn, struct route_entry *re);
28f6dde8 372
d24af186 373/* NOTE:
b4c034b0 374 * All rib_add function will not just add prefix into RIB, but
d24af186 375 * also implicitly withdraw equal prefix of same type. */
4a7371e9 376extern int rib_add(afi_t afi, safi_t safi, vrf_id_t vrf_id, int type,
d7c0a89a 377 unsigned short instance, int flags, struct prefix *p,
fd36be7e 378 struct prefix_ipv6 *src_p, const struct nexthop *nh,
d7c0a89a 379 uint32_t table_id, uint32_t metric, uint32_t mtu,
4e40b6d6 380 uint8_t distance, route_tag_t tag);
d62a17ae 381
072834ca
DS
382extern int rib_add_multipath(afi_t afi, safi_t safi, struct prefix *p,
383 struct prefix_ipv6 *src_p, struct route_entry *re);
d62a17ae 384
385extern void rib_delete(afi_t afi, safi_t safi, vrf_id_t vrf_id, int type,
d7c0a89a 386 unsigned short instance, int flags, struct prefix *p,
fd36be7e 387 struct prefix_ipv6 *src_p, const struct nexthop *nh,
40ecd8e4
DS
388 uint32_t table_id, uint32_t metric, uint8_t distance,
389 bool fromkernel);
d62a17ae 390
072834ca
DS
391extern struct route_entry *rib_match(afi_t afi, safi_t safi, vrf_id_t vrf_id,
392 union g_addr *addr,
d62a17ae 393 struct route_node **rn_out);
394extern struct route_entry *rib_match_ipv4_multicast(vrf_id_t vrf_id,
395 struct in_addr addr,
396 struct route_node **rn_out);
397
072834ca
DS
398extern struct route_entry *rib_lookup_ipv4(struct prefix_ipv4 *p,
399 vrf_id_t vrf_id);
d62a17ae 400
072834ca 401extern void rib_update(vrf_id_t vrf_id, rib_update_event_t event);
d5b8c216 402extern void rib_update_table(struct route_table *table,
403 rib_update_event_t event);
d62a17ae 404extern void rib_sweep_route(void);
072834ca
DS
405extern void rib_sweep_table(struct route_table *table);
406extern void rib_close_table(struct route_table *table);
d62a17ae 407extern void rib_init(void);
d7c0a89a
QY
408extern unsigned long rib_score_proto(uint8_t proto, unsigned short instance);
409extern unsigned long rib_score_proto_table(uint8_t proto,
410 unsigned short instance,
47a08aa9 411 struct route_table *table);
d62a17ae 412extern void rib_queue_add(struct route_node *rn);
413extern void meta_queue_free(struct meta_queue *mq);
414extern int zebra_rib_labeled_unicast(struct route_entry *re);
718e3744 415extern struct route_table *rib_table_ipv6;
416
072834ca 417extern void rib_unlink(struct route_node *rn, struct route_entry *re);
d62a17ae 418extern int rib_gc_dest(struct route_node *rn);
419extern struct route_table *rib_tables_iter_next(rib_tables_iter_t *iter);
9fd92e3c 420
fd289fc8 421extern uint8_t route_distance(int type);
40c7bdb0 422
699dae23
DS
423extern void zebra_rib_evaluate_rn_nexthops(struct route_node *rn, uint32_t seq);
424
9fd92e3c
AS
425/*
426 * Inline functions.
427 */
428
1b5ed1b0
AS
429/*
430 * rib_table_info
431 */
d62a17ae 432static inline rib_table_info_t *rib_table_info(struct route_table *table)
1b5ed1b0 433{
6ca30e9e 434 return (rib_table_info_t *)route_table_get_info(table);
1b5ed1b0
AS
435}
436
9fd92e3c
AS
437/*
438 * rib_dest_from_rnode
439 */
d62a17ae 440static inline rib_dest_t *rib_dest_from_rnode(struct route_node *rn)
9fd92e3c 441{
d62a17ae 442 return (rib_dest_t *)rn->info;
9fd92e3c
AS
443}
444
445/*
446 * rnode_to_ribs
447 *
448 * Returns a pointer to the list of routes corresponding to the given
449 * route_node.
450 */
d62a17ae 451static inline struct route_entry *rnode_to_ribs(struct route_node *rn)
9fd92e3c 452{
d62a17ae 453 rib_dest_t *dest;
9fd92e3c 454
d62a17ae 455 dest = rib_dest_from_rnode(rn);
456 if (!dest)
457 return NULL;
9fd92e3c 458
045207e2 459 return re_list_first(&dest->routes);
9fd92e3c
AS
460}
461
462/*
463 * rib_dest_prefix
464 */
d62a17ae 465static inline struct prefix *rib_dest_prefix(rib_dest_t *dest)
9fd92e3c 466{
d62a17ae 467 return &dest->rnode->p;
9fd92e3c
AS
468}
469
470/*
471 * rib_dest_af
472 *
473 * Returns the address family that the destination is for.
474 */
d7c0a89a 475static inline uint8_t rib_dest_af(rib_dest_t *dest)
9fd92e3c 476{
d62a17ae 477 return dest->rnode->p.family;
9fd92e3c
AS
478}
479
480/*
481 * rib_dest_table
482 */
d62a17ae 483static inline struct route_table *rib_dest_table(rib_dest_t *dest)
9fd92e3c 484{
d62a17ae 485 return srcdest_rnode_table(dest->rnode);
9fd92e3c
AS
486}
487
1b5ed1b0
AS
488/*
489 * rib_dest_vrf
490 */
d62a17ae 491static inline struct zebra_vrf *rib_dest_vrf(rib_dest_t *dest)
1b5ed1b0 492{
d62a17ae 493 return rib_table_info(rib_dest_table(dest))->zvrf;
1b5ed1b0
AS
494}
495
434434f7
DS
496/*
497 * Create the rib_dest_t and attach it to the specified node
498 */
499extern rib_dest_t *zebra_rib_create_dest(struct route_node *rn);
500
0915bb0c
AS
501/*
502 * rib_tables_iter_init
503 */
d62a17ae 504static inline void rib_tables_iter_init(rib_tables_iter_t *iter)
0915bb0c
AS
505
506{
d62a17ae 507 memset(iter, 0, sizeof(*iter));
508 iter->state = RIB_TABLES_ITER_S_INIT;
0915bb0c
AS
509}
510
511/*
512 * rib_tables_iter_started
513 *
514 * Returns TRUE if this iterator has started iterating over the set of
515 * tables.
516 */
d62a17ae 517static inline int rib_tables_iter_started(rib_tables_iter_t *iter)
0915bb0c 518{
d62a17ae 519 return iter->state != RIB_TABLES_ITER_S_INIT;
0915bb0c
AS
520}
521
522/*
523 * rib_tables_iter_cleanup
524 */
d62a17ae 525static inline void rib_tables_iter_cleanup(rib_tables_iter_t *iter)
0915bb0c 526{
d62a17ae 527 iter->state = RIB_TABLES_ITER_S_DONE;
0915bb0c
AS
528}
529
d62a17ae 530DECLARE_HOOK(rib_update, (struct route_node * rn, const char *reason),
531 (rn, reason))
4f8ea50c 532
05f7f5db
DS
533
534extern void zebra_vty_init(void);
4060008b 535
05f7f5db
DS
536extern pid_t pid;
537
6b093863 538extern bool v6_rr_semantics;
51e94aa7
EDP
539
540#ifdef __cplusplus
541}
542#endif
543
718e3744 544#endif /*_ZEBRA_RIB_H */