]> git.proxmox.com Git - mirror_frr.git/blame - zebra/rib.h
lib: msg: refactor common connection code from mgmtd
[mirror_frr.git] / zebra / rib.h
CommitLineData
acddc0ed 1// SPDX-License-Identifier: GPL-2.0-or-later
718e3744 2/*
3 * Routing Information Base header
4 * Copyright (C) 1997 Kunihiro Ishiguro
718e3744 5 */
6
7#ifndef _ZEBRA_RIB_H
8#define _ZEBRA_RIB_H
9
dc9ffce8 10#include "zebra.h"
224ccf29 11#include "memory.h"
4f8ea50c 12#include "hook.h"
aa57abfb 13#include "typesafe.h"
c6ffe645 14#include "linklist.h"
ec1a4283 15#include "prefix.h"
9fd92e3c 16#include "table.h"
5adc2528 17#include "queue.h"
fb018d25 18#include "nexthop.h"
7ee30f28 19#include "nexthop_group.h"
244a59d2 20#include "vrf.h"
fb148af4 21#include "if.h"
40c7bdb0 22#include "mpls.h"
05737783 23#include "srcdest_table.h"
5463ce26 24#include "zebra/zebra_nhg.h"
ec1a4283 25
51e94aa7
EDP
26#ifdef __cplusplus
27extern "C" {
28#endif
29
224ccf29
DL
30DECLARE_MGROUP(ZEBRA);
31
32DECLARE_MTYPE(RE);
33
960b9a53 34PREDECL_LIST(rnh_list);
aa57abfb
DS
35
36/* Nexthop structure. */
37struct rnh {
38 uint8_t flags;
39
ed6cec97
DS
40#define ZEBRA_NHT_CONNECTED 0x1
41#define ZEBRA_NHT_DELETED 0x2
5c7861fe 42#define ZEBRA_NHT_RESOLVE_VIA_DEFAULT 0x4
aa57abfb
DS
43
44 /* VRF identifier. */
45 vrf_id_t vrf_id;
46
47 afi_t afi;
d597533a 48 safi_t safi;
aa57abfb 49
aa57abfb
DS
50 uint32_t seqno;
51
52 struct route_entry *state;
53 struct prefix resolved_route;
54 struct list *client_list;
55
56 /* pseudowires dependent on this nh */
57 struct list *zebra_pseudowire_list;
58
59 struct route_node *node;
60
61 /*
62 * if this has been filtered for the client
63 */
64 int filtered[ZEBRA_ROUTE_MAX];
65
66 struct rnh_list_item rnh_list_item;
67};
68
718e3744 69#define DISTANCE_INFINITY 255
7a4bb9c5 70#define ZEBRA_KERNEL_TABLE_MAX 252 /* support for no more than this rt tables */
718e3744 71
960b9a53 72PREDECL_LIST(re_list);
045207e2 73
b86c1f4f 74struct re_opaque {
a29a6001
DS
75 uint16_t length;
76 uint8_t data[];
77};
78
d62a17ae 79struct route_entry {
80 /* Link list. */
045207e2 81 struct re_list_item next;
d62a17ae 82
0eb97b86
MS
83 /* Nexthop group, shared/refcounted, based on the nexthop(s)
84 * provided by the owner of the route
85 */
86 struct nhg_hash_entry *nhe;
d62a17ae 87
0eb97b86 88 /* Nexthop group from FIB (optional), reflecting what is actually
4db01e79
MS
89 * installed in the FIB if that differs. The 'backup' group is used
90 * when backup nexthops are present in the route's nhg.
0eb97b86 91 */
ee5e8a48 92 struct nexthop_group fib_ng;
4db01e79 93 struct nexthop_group fib_backup_ng;
ee5e8a48 94
002930f7
MS
95 /* Nexthop group hash entry IDs. The "installed" id is the id
96 * used in linux/netlink, if available.
97 */
8e766379 98 uint32_t nhe_id;
002930f7 99 uint32_t nhe_installed_id;
f0cb8e16 100
d62a17ae 101 /* Tag */
102 route_tag_t tag;
103
104 /* Uptime. */
105 time_t uptime;
106
1d48702e 107 /* Type of this route. */
d62a17ae 108 int type;
109
d62a17ae 110 /* VRF identifier. */
111 vrf_id_t vrf_id;
112
113 /* Which routing table */
114 uint32_t table;
115
116 /* Metric */
d7c0a89a 117 uint32_t metric;
d62a17ae 118
119 /* MTU */
d7c0a89a
QY
120 uint32_t mtu;
121 uint32_t nexthop_mtu;
d62a17ae 122
d62a17ae 123 /* Flags of this route.
124 * This flag's definition is in lib/zebra.h ZEBRA_FLAG_* and is exposed
125 * to clients via Zserv
126 */
d7c0a89a 127 uint32_t flags;
d62a17ae 128
129 /* RIB internal status */
88f7ea31 130 uint32_t status;
f0f77c9a 131#define ROUTE_ENTRY_REMOVED 0x1
88f7ea31 132/* The Route Entry has changed */
42fc558e 133#define ROUTE_ENTRY_CHANGED 0x2
88f7ea31 134/* The Label has changed on the Route entry */
42fc558e 135#define ROUTE_ENTRY_LABELS_CHANGED 0x4
88f7ea31 136/* Route is queued for Installation into the Data Plane */
42fc558e 137#define ROUTE_ENTRY_QUEUED 0x8
88f7ea31 138/* Route is installed into the Data Plane */
42fc558e 139#define ROUTE_ENTRY_INSTALLED 0x10
88f7ea31 140/* Route has Failed installation into the Data Plane in some manner */
42fc558e 141#define ROUTE_ENTRY_FAILED 0x20
7483dcbe
MS
142/* Route has a 'fib' set of nexthops, probably because the installed set
143 * differs from the rib/normal set of nexthops.
144 */
145#define ROUTE_ENTRY_USE_FIB_NHG 0x40
8d4665aa
DS
146/*
147 * Route entries that are going to the dplane for a Route Replace
148 * let's note the fact that this is happening. This will
149 * be useful when zebra is determing if a route can be
150 * used for nexthops
151 */
152#define ROUTE_ENTRY_ROUTE_REPLACING 0x80
6d691129 153
7cdb1a84
MS
154 /* Sequence value incremented for each dataplane operation */
155 uint32_t dplane_sequence;
7a741326
DS
156
157 /* Source protocol instance */
158 uint16_t instance;
159
160 /* Distance. */
161 uint8_t distance;
a29a6001 162
b86c1f4f 163 struct re_opaque *opaque;
718e3744 164};
165
66cb1845 166#define RIB_SYSTEM_ROUTE(R) RSYSTEM_ROUTE((R)->type)
84340a15 167
66cb1845 168#define RIB_KERNEL_ROUTE(R) RKERNEL_ROUTE((R)->type)
84340a15 169
e96f9203 170/* meta-queue structure:
e22e8001 171 * sub-queue 0: nexthop group objects
32367e7a 172 * sub-queue 1: EVPN/VxLAN objects
d7ac4c4d
DS
173 * sub-queue 2: Early Route Processing
174 * sub-queue 3: Early Label Processing
175 * sub-queue 4: connected
176 * sub-queue 5: kernel
177 * sub-queue 6: static
178 * sub-queue 7: RIP, RIPng, OSPF, OSPF6, IS-IS, EIGRP, NHRP
179 * sub-queue 8: iBGP, eBGP
180 * sub-queue 9: any other origin (if any) typically those that
c17b2d5b 181 * don't generate routes
e96f9203 182 */
81322b96 183#define MQ_SIZE 11
d62a17ae 184struct meta_queue {
185 struct list *subq[MQ_SIZE];
d7c0a89a 186 uint32_t size; /* sum of lengths of all subqueues */
e96f9203
DO
187};
188
9fd92e3c
AS
189/*
190 * Structure that represents a single destination (prefix).
191 */
d62a17ae 192typedef struct rib_dest_t_ {
9fd92e3c 193
d62a17ae 194 /*
195 * Back pointer to the route node for this destination. This helps
196 * us get to the prefix that this structure is for.
197 */
198 struct route_node *rnode;
9fd92e3c 199
d62a17ae 200 /*
201 * Doubly-linked list of routes for this prefix.
202 */
045207e2 203 struct re_list_head routes;
9fd92e3c 204
5f7a4718
DS
205 struct route_entry *selected_fib;
206
d62a17ae 207 /*
208 * Flags, see below.
209 */
d7c0a89a 210 uint32_t flags;
9fd92e3c 211
699dae23
DS
212 /*
213 * The list of nht prefixes that have ended up
214 * depending on this route node.
215 * After route processing is returned from
216 * the data plane we will run evaluate_rnh
217 * on these prefixes.
218 */
aa57abfb 219 struct rnh_list_head nht;
699dae23 220
d62a17ae 221 /*
222 * Linkage to put dest on the FPM processing queue.
223 */
224 TAILQ_ENTRY(rib_dest_t_) fpm_q_entries;
5adc2528 225
9fd92e3c
AS
226} rib_dest_t;
227
aa57abfb 228DECLARE_LIST(rnh_list, struct rnh, rnh_list_item);
045207e2 229DECLARE_LIST(re_list, struct route_entry, next);
aa57abfb 230
9fd92e3c 231#define RIB_ROUTE_QUEUED(x) (1 << (x))
1ca60f2c 232// If MQ_SIZE is modified this value needs to be updated.
e22e8001 233#define RIB_ROUTE_ANY_QUEUED 0x3F
9fd92e3c
AS
234
235/*
236 * The maximum qindex that can be used.
237 */
238#define ZEBRA_MAX_QINDEX (MQ_SIZE - 1)
239
5adc2528
AS
240/*
241 * This flag indicates that a given prefix has been 'advertised' to
242 * the FPM to be installed in the forwarding plane.
243 */
244#define RIB_DEST_SENT_TO_FPM (1 << (ZEBRA_MAX_QINDEX + 1))
245
246/*
247 * This flag is set when we need to send an update to the FPM about a
248 * dest.
249 */
250#define RIB_DEST_UPDATE_FPM (1 << (ZEBRA_MAX_QINDEX + 2))
251
a1494c25
DS
252#define RIB_DEST_UPDATE_LSPS (1 << (ZEBRA_MAX_QINDEX + 3))
253
9fd92e3c
AS
254/*
255 * Macro to iterate over each route for a destination (prefix).
256 */
d62a17ae 257#define RE_DEST_FOREACH_ROUTE(dest, re) \
045207e2
DS
258 for ((re) = (dest) ? re_list_first(&((dest)->routes)) : NULL; (re); \
259 (re) = re_list_next(&((dest)->routes), (re)))
9fd92e3c
AS
260
261/*
262 * Same as above, but allows the current node to be unlinked.
263 */
d62a17ae 264#define RE_DEST_FOREACH_ROUTE_SAFE(dest, re, next) \
045207e2
DS
265 for ((re) = (dest) ? re_list_first(&((dest)->routes)) : NULL; \
266 (re) && ((next) = re_list_next(&((dest)->routes), (re)), 1); \
267 (re) = (next))
9fd92e3c 268
db856683
CS
269#define RE_DEST_FIRST_ROUTE(dest, re) \
270 ((re) = (dest) ? re_list_first(&((dest)->routes)) : NULL)
271
272#define RE_DEST_NEXT_ROUTE(dest, re) \
273 ((re) = (dest) ? re_list_next(&((dest)->routes), (re)) : NULL)
274
d62a17ae 275#define RNODE_FOREACH_RE(rn, re) \
996c9314 276 RE_DEST_FOREACH_ROUTE (rib_dest_from_rnode(rn), re)
9fd92e3c 277
d62a17ae 278#define RNODE_FOREACH_RE_SAFE(rn, re, next) \
996c9314 279 RE_DEST_FOREACH_ROUTE_SAFE (rib_dest_from_rnode(rn), re, next)
9fd92e3c 280
db856683
CS
281#define RNODE_FIRST_RE(rn, re) RE_DEST_FIRST_ROUTE(rib_dest_from_rnode(rn), re)
282
283#define RNODE_NEXT_RE(rn, re) RE_DEST_NEXT_ROUTE(rib_dest_from_rnode(rn), re)
284
1b5ed1b0
AS
285/*
286 * rib_table_info_t
287 *
288 * Structure that is hung off of a route_table that holds information about
289 * the table.
290 */
630d5962 291struct rib_table_info {
1b5ed1b0 292
d62a17ae 293 /*
294 * Back pointer to zebra_vrf.
295 */
296 struct zebra_vrf *zvrf;
297 afi_t afi;
298 safi_t safi;
b62983cf 299 uint32_t table_id;
630d5962 300};
1b5ed1b0 301
4d5647d0 302enum rib_tables_iter_state {
d62a17ae 303 RIB_TABLES_ITER_S_INIT,
304 RIB_TABLES_ITER_S_ITERATING,
305 RIB_TABLES_ITER_S_DONE
4d5647d0 306};
0915bb0c
AS
307
308/*
309 * Structure that holds state for iterating over all tables in the
310 * Routing Information Base.
311 */
d62a17ae 312typedef struct rib_tables_iter_t_ {
313 vrf_id_t vrf_id;
314 int afi_safi_ix;
0915bb0c 315
4d5647d0 316 enum rib_tables_iter_state state;
0915bb0c
AS
317} rib_tables_iter_t;
318
1c848137 319/* Events/reasons triggering a RIB update. */
91e6f25b 320enum rib_update_event {
2a99ab95 321 RIB_UPDATE_KERNEL,
d62a17ae 322 RIB_UPDATE_RMAP_CHANGE,
2a99ab95
SW
323 RIB_UPDATE_OTHER,
324 RIB_UPDATE_MAX
91e6f25b 325};
3cd0accb 326void rib_update_finish(void);
1c848137 327
cd7108ba
EDP
328int route_entry_update_nhe(struct route_entry *re,
329 struct nhg_hash_entry *new_nhghe);
f0f77c9a 330
1f655680 331/* NHG replace has happend, we have to update route_entry pointers to new one */
2e8db20d
EDP
332void rib_handle_nhg_replace(struct nhg_hash_entry *old_entry,
333 struct nhg_hash_entry *new_entry);
1f655680 334
f0f77c9a 335#define route_entry_dump(prefix, src, re) _route_entry_dump(__func__, prefix, src, re)
072834ca
DS
336extern void _route_entry_dump(const char *func, union prefixconstptr pp,
337 union prefixconstptr src_pp,
338 const struct route_entry *re);
4623d897 339
b0385873
DS
340struct route_entry *
341zebra_rib_route_entry_new(vrf_id_t vrf_id, int type, uint8_t instance,
342 uint32_t flags, uint32_t nhe_id, uint32_t table_id,
343 uint32_t metric, uint32_t mtu, uint8_t distance,
344 route_tag_t tag);
345
dc95824a
DO
346#define ZEBRA_RIB_LOOKUP_ERROR -1
347#define ZEBRA_RIB_FOUND_EXACT 0
348#define ZEBRA_RIB_FOUND_NOGATE 1
349#define ZEBRA_RIB_FOUND_CONNECTED 2
350#define ZEBRA_RIB_NOTFOUND 3
351
d7c0a89a
QY
352extern int is_zebra_valid_kernel_table(uint32_t table_id);
353extern int is_zebra_main_routing_table(uint32_t table_id);
86391e56 354extern int zebra_check_addr(const struct prefix *p);
718e3744 355
d62a17ae 356extern void rib_delnode(struct route_node *rn, struct route_entry *re);
0c555cc6
DS
357extern void rib_install_kernel(struct route_node *rn, struct route_entry *re,
358 struct route_entry *old);
359extern void rib_uninstall_kernel(struct route_node *rn, struct route_entry *re);
28f6dde8 360
d24af186 361/* NOTE:
b4c034b0 362 * All rib_add function will not just add prefix into RIB, but
d24af186 363 * also implicitly withdraw equal prefix of same type. */
4a7371e9 364extern int rib_add(afi_t afi, safi_t safi, vrf_id_t vrf_id, int type,
acde7f6b 365 unsigned short instance, uint32_t flags, struct prefix *p,
fd36be7e 366 struct prefix_ipv6 *src_p, const struct nexthop *nh,
8032b717 367 uint32_t nhe_id, uint32_t table_id, uint32_t metric,
c6eee91f
DS
368 uint32_t mtu, uint8_t distance, route_tag_t tag,
369 bool startup);
1d48702e
MS
370/*
371 * Multipath route apis.
372 */
072834ca 373extern int rib_add_multipath(afi_t afi, safi_t safi, struct prefix *p,
0eb97b86 374 struct prefix_ipv6 *src_p, struct route_entry *re,
c6eee91f 375 struct nexthop_group *ng, bool startup);
38c764dd
DS
376/*
377 * -1 -> some sort of error
378 * 0 -> an add
379 * 1 -> an update
380 */
1d48702e
MS
381extern int rib_add_multipath_nhe(afi_t afi, safi_t safi, struct prefix *p,
382 struct prefix_ipv6 *src_p,
383 struct route_entry *re,
c6eee91f 384 struct nhg_hash_entry *nhe, bool startup);
d62a17ae 385
386extern void rib_delete(afi_t afi, safi_t safi, vrf_id_t vrf_id, int type,
acde7f6b
DS
387 unsigned short instance, uint32_t flags,
388 struct prefix *p, struct prefix_ipv6 *src_p,
389 const struct nexthop *nh, uint32_t nhe_id,
390 uint32_t table_id, uint32_t metric, uint8_t distance,
3ceae22b 391 bool fromkernel);
d62a17ae 392
072834ca 393extern struct route_entry *rib_match(afi_t afi, safi_t safi, vrf_id_t vrf_id,
bc77c3bb 394 const union g_addr *addr,
d62a17ae 395 struct route_node **rn_out);
312e29b0
DS
396extern struct route_entry *rib_match_multicast(afi_t afi, vrf_id_t vrf_id,
397 union g_addr *gaddr,
398 struct route_node **rn_out);
d62a17ae 399
072834ca
DS
400extern struct route_entry *rib_lookup_ipv4(struct prefix_ipv4 *p,
401 vrf_id_t vrf_id);
d62a17ae 402
91e6f25b 403extern void rib_update(enum rib_update_event event);
d5b8c216 404extern void rib_update_table(struct route_table *table,
54aeba35 405 enum rib_update_event event, int rtype);
e6685141 406extern void rib_sweep_route(struct event *t);
072834ca
DS
407extern void rib_sweep_table(struct route_table *table);
408extern void rib_close_table(struct route_table *table);
d62a17ae 409extern void rib_init(void);
d7c0a89a
QY
410extern unsigned long rib_score_proto(uint8_t proto, unsigned short instance);
411extern unsigned long rib_score_proto_table(uint8_t proto,
412 unsigned short instance,
47a08aa9 413 struct route_table *table);
e22e8001
SW
414
415extern int rib_queue_add(struct route_node *rn);
416
417struct nhg_ctx; /* Forward declaration */
418
04bec7b2
MS
419/* Enqueue incoming nhg from OS for processing */
420extern int rib_queue_nhg_ctx_add(struct nhg_ctx *ctx);
421
422/* Enqueue incoming nhg from proto daemon for processing */
423extern int rib_queue_nhe_add(struct nhg_hash_entry *nhe);
e22e8001 424
32367e7a
MS
425/* Enqueue evpn route for processing */
426int zebra_rib_queue_evpn_route_add(vrf_id_t vrf_id, const struct ethaddr *rmac,
427 const struct ipaddr *vtep_ip,
428 const struct prefix *host_prefix);
429int zebra_rib_queue_evpn_route_del(vrf_id_t vrf_id,
430 const struct ipaddr *vtep_ip,
431 const struct prefix *host_prefix);
432/* Enqueue EVPN remote ES for processing */
433int zebra_rib_queue_evpn_rem_es_add(const esi_t *esi,
434 const struct in_addr *vtep_ip,
435 bool esr_rxed, uint8_t df_alg,
436 uint16_t df_pref);
437int zebra_rib_queue_evpn_rem_es_del(const esi_t *esi,
438 const struct in_addr *vtep_ip);
7f7e49d1
MS
439/* Enqueue EVPN remote macip update for processing */
440int zebra_rib_queue_evpn_rem_macip_del(vni_t vni, const struct ethaddr *macaddr,
441 const struct ipaddr *ip,
442 struct in_addr vtep_ip);
443int zebra_rib_queue_evpn_rem_macip_add(vni_t vni, const struct ethaddr *macaddr,
444 const struct ipaddr *ipaddr,
445 uint8_t flags, uint32_t seq,
446 struct in_addr vtep_ip,
447 const esi_t *esi);
7e5b0b2b
MS
448/* Enqueue VXLAN remote vtep update for processing */
449int zebra_rib_queue_evpn_rem_vtep_add(vrf_id_t vrf_id, vni_t vni,
450 struct in_addr vtep_ip,
451 int flood_control);
452int zebra_rib_queue_evpn_rem_vtep_del(vrf_id_t vrf_id, vni_t vni,
453 struct in_addr vtep_ip);
32367e7a 454
a310ebc1 455extern void meta_queue_free(struct meta_queue *mq, struct zebra_vrf *zvrf);
d62a17ae 456extern int zebra_rib_labeled_unicast(struct route_entry *re);
718e3744 457extern struct route_table *rib_table_ipv6;
458
072834ca 459extern void rib_unlink(struct route_node *rn, struct route_entry *re);
d62a17ae 460extern int rib_gc_dest(struct route_node *rn);
461extern struct route_table *rib_tables_iter_next(rib_tables_iter_t *iter);
9fd92e3c 462
fd289fc8 463extern uint8_t route_distance(int type);
40c7bdb0 464
f99f1ff5
SP
465extern void zebra_rib_evaluate_rn_nexthops(struct route_node *rn, uint32_t seq,
466 bool rt_delete);
699dae23 467
a7704e1b
DS
468extern struct route_node *
469rib_find_rn_from_ctx(const struct zebra_dplane_ctx *ctx);
470
9fd92e3c
AS
471/*
472 * Inline functions.
473 */
474
1b5ed1b0
AS
475/*
476 * rib_table_info
477 */
630d5962 478static inline struct rib_table_info *rib_table_info(struct route_table *table)
1b5ed1b0 479{
630d5962 480 return (struct rib_table_info *)route_table_get_info(table);
1b5ed1b0
AS
481}
482
9fd92e3c
AS
483/*
484 * rib_dest_from_rnode
485 */
d62a17ae 486static inline rib_dest_t *rib_dest_from_rnode(struct route_node *rn)
9fd92e3c 487{
d62a17ae 488 return (rib_dest_t *)rn->info;
9fd92e3c
AS
489}
490
491/*
492 * rnode_to_ribs
493 *
494 * Returns a pointer to the list of routes corresponding to the given
495 * route_node.
496 */
d62a17ae 497static inline struct route_entry *rnode_to_ribs(struct route_node *rn)
9fd92e3c 498{
d62a17ae 499 rib_dest_t *dest;
9fd92e3c 500
d62a17ae 501 dest = rib_dest_from_rnode(rn);
502 if (!dest)
503 return NULL;
9fd92e3c 504
045207e2 505 return re_list_first(&dest->routes);
9fd92e3c
AS
506}
507
508/*
509 * rib_dest_prefix
510 */
d62a17ae 511static inline struct prefix *rib_dest_prefix(rib_dest_t *dest)
9fd92e3c 512{
d62a17ae 513 return &dest->rnode->p;
9fd92e3c
AS
514}
515
516/*
517 * rib_dest_af
518 *
519 * Returns the address family that the destination is for.
520 */
d7c0a89a 521static inline uint8_t rib_dest_af(rib_dest_t *dest)
9fd92e3c 522{
d62a17ae 523 return dest->rnode->p.family;
9fd92e3c
AS
524}
525
526/*
527 * rib_dest_table
528 */
d62a17ae 529static inline struct route_table *rib_dest_table(rib_dest_t *dest)
9fd92e3c 530{
d62a17ae 531 return srcdest_rnode_table(dest->rnode);
9fd92e3c
AS
532}
533
1b5ed1b0
AS
534/*
535 * rib_dest_vrf
536 */
d62a17ae 537static inline struct zebra_vrf *rib_dest_vrf(rib_dest_t *dest)
1b5ed1b0 538{
d62a17ae 539 return rib_table_info(rib_dest_table(dest))->zvrf;
1b5ed1b0
AS
540}
541
434434f7
DS
542/*
543 * Create the rib_dest_t and attach it to the specified node
544 */
545extern rib_dest_t *zebra_rib_create_dest(struct route_node *rn);
546
0915bb0c
AS
547/*
548 * rib_tables_iter_init
549 */
d62a17ae 550static inline void rib_tables_iter_init(rib_tables_iter_t *iter)
0915bb0c
AS
551
552{
d62a17ae 553 memset(iter, 0, sizeof(*iter));
554 iter->state = RIB_TABLES_ITER_S_INIT;
0915bb0c
AS
555}
556
557/*
558 * rib_tables_iter_started
559 *
2951a7a4 560 * Returns true if this iterator has started iterating over the set of
0915bb0c
AS
561 * tables.
562 */
d62a17ae 563static inline int rib_tables_iter_started(rib_tables_iter_t *iter)
0915bb0c 564{
d62a17ae 565 return iter->state != RIB_TABLES_ITER_S_INIT;
0915bb0c
AS
566}
567
568/*
569 * rib_tables_iter_cleanup
570 */
d62a17ae 571static inline void rib_tables_iter_cleanup(rib_tables_iter_t *iter)
0915bb0c 572{
d62a17ae 573 iter->state = RIB_TABLES_ITER_S_DONE;
0915bb0c
AS
574}
575
d62a17ae 576DECLARE_HOOK(rib_update, (struct route_node * rn, const char *reason),
8451921b 577 (rn, reason));
0d0f516c 578DECLARE_HOOK(rib_shutdown, (struct route_node * rn), (rn));
4f8ea50c 579
ee5e8a48 580/*
7483dcbe
MS
581 * Access installed/fib nexthops, which may be a subset of the
582 * rib nexthops.
ee5e8a48 583 */
4db01e79 584static inline struct nexthop_group *rib_get_fib_nhg(struct route_entry *re)
ee5e8a48 585{
7483dcbe
MS
586 /* If the fib set is a subset of the active rib set,
587 * use the dedicated fib list.
588 */
589 if (CHECK_FLAG(re->status, ROUTE_ENTRY_USE_FIB_NHG))
ee5e8a48
MS
590 return &(re->fib_ng);
591 else
c415d895 592 return &(re->nhe->nhg);
ee5e8a48 593}
05f7f5db 594
4db01e79 595/*
7483dcbe
MS
596 * Access backup nexthop-group that represents the installed backup nexthops;
597 * any installed backup will be on the fib list.
4db01e79
MS
598 */
599static inline struct nexthop_group *rib_get_fib_backup_nhg(
600 struct route_entry *re)
601{
7483dcbe 602 return &(re->fib_backup_ng);
4db01e79
MS
603}
604
81322b96
DS
605extern void zebra_gr_process_client(afi_t afi, vrf_id_t vrf_id, uint8_t proto,
606 uint8_t instance);
607
608extern int rib_add_gr_run(afi_t afi, vrf_id_t vrf_id, uint8_t proto,
609 uint8_t instance);
610
05f7f5db 611extern void zebra_vty_init(void);
4060008b 612
05f7f5db
DS
613extern pid_t pid;
614
6b093863 615extern bool v6_rr_semantics;
51e94aa7 616
8f4ea1fc
DS
617/* Name of hook calls */
618#define ZEBRA_ON_RIB_PROCESS_HOOK_CALL "on_rib_process_dplane_results"
619
51e94aa7
EDP
620#ifdef __cplusplus
621}
622#endif
623
718e3744 624#endif /*_ZEBRA_RIB_H */