blob: 1d3c15c31e81022e2446a356b87bb97aede3bf18 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/*
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
18 * along with GNU Zebra; see the file COPYING. If not, write to the Free
19 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 * 02111-1307, USA.
21 */
22
23#ifndef _ZEBRA_RIB_H
24#define _ZEBRA_RIB_H
25
Feng Luac19a442015-05-22 11:40:07 +020026#include "linklist.h"
paulec1a4282005-11-24 15:15:17 +000027#include "prefix.h"
Avneesh Sachdev9fd92e32012-11-13 22:48:53 +000028#include "table.h"
Avneesh Sachdev5adc2522012-11-13 22:48:59 +000029#include "queue.h"
paulec1a4282005-11-24 15:15:17 +000030
paul718e3742002-12-13 20:15:29 +000031#define DISTANCE_INFINITY 255
32
33/* Routing information base. */
Paul Jakma7514fb72007-05-02 16:05:35 +000034
35union g_addr {
36 struct in_addr ipv4;
37#ifdef HAVE_IPV6
38 struct in6_addr ipv6;
39#endif /* HAVE_IPV6 */
40};
41
paul718e3742002-12-13 20:15:29 +000042struct rib
43{
44 /* Link list. */
45 struct rib *next;
46 struct rib *prev;
Paul Jakmae6d7d052006-03-30 13:32:09 +000047
48 /* Nexthop structure */
49 struct nexthop *nexthop;
50
51 /* Refrence count. */
52 unsigned long refcnt;
53
54 /* Uptime. */
55 time_t uptime;
paul718e3742002-12-13 20:15:29 +000056
57 /* Type fo this route. */
58 int type;
59
Feng Lu0d0686f2015-05-22 11:40:02 +020060 /* VRF identifier. */
61 vrf_id_t vrf_id;
62
paul718e3742002-12-13 20:15:29 +000063 /* Which routing table */
64 int table;
65
Paul Jakmae6d7d052006-03-30 13:32:09 +000066 /* Metric */
67 u_int32_t metric;
68
Timo Teräsb11f3b52015-11-02 16:50:07 +020069 /* MTU */
70 u_int32_t mtu;
71 u_int32_t nexthop_mtu;
72
paul718e3742002-12-13 20:15:29 +000073 /* Distance. */
74 u_char distance;
75
Paul Jakma6d691122006-07-27 21:49:00 +000076 /* 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 */
paul718e3742002-12-13 20:15:29 +000080 u_char flags;
81
Paul Jakma6d691122006-07-27 21:49:00 +000082 /* RIB internal status */
83 u_char status;
84#define RIB_ENTRY_REMOVED (1 << 0)
Timo Teräs7eb61362015-11-02 16:50:05 +020085#define RIB_ENTRY_CHANGED (1 << 1)
Paul Jakma6d691122006-07-27 21:49:00 +000086
paul718e3742002-12-13 20:15:29 +000087 /* Nexthop information. */
88 u_char nexthop_num;
89 u_char nexthop_active_num;
90 u_char nexthop_fib_num;
paul718e3742002-12-13 20:15:29 +000091};
92
Denis Ovsienkoe96f9202008-06-02 12:03:22 +000093/* meta-queue structure:
94 * sub-queue 0: connected, kernel
95 * sub-queue 1: static
96 * sub-queue 2: RIP, RIPng, OSPF, OSPF6, IS-IS
97 * sub-queue 3: iBGP, eBGP
98 * sub-queue 4: any other origin (if any)
99 */
100#define MQ_SIZE 5
101struct meta_queue
102{
103 struct list *subq[MQ_SIZE];
104 u_int32_t size; /* sum of lengths of all subqueues */
105};
106
Avneesh Sachdev9fd92e32012-11-13 22:48:53 +0000107/*
108 * Structure that represents a single destination (prefix).
109 */
110typedef struct rib_dest_t_
111{
112
113 /*
114 * Back pointer to the route node for this destination. This helps
115 * us get to the prefix that this structure is for.
116 */
117 struct route_node *rnode;
118
119 /*
120 * Doubly-linked list of routes for this prefix.
121 */
122 struct rib *routes;
123
124 /*
125 * Flags, see below.
126 */
127 u_int32_t flags;
128
Avneesh Sachdev5adc2522012-11-13 22:48:59 +0000129 /*
130 * Linkage to put dest on the FPM processing queue.
131 */
132 TAILQ_ENTRY(rib_dest_t_) fpm_q_entries;
133
Avneesh Sachdev9fd92e32012-11-13 22:48:53 +0000134} rib_dest_t;
135
136#define RIB_ROUTE_QUEUED(x) (1 << (x))
137
138/*
139 * The maximum qindex that can be used.
140 */
141#define ZEBRA_MAX_QINDEX (MQ_SIZE - 1)
142
143/*
Avneesh Sachdev5adc2522012-11-13 22:48:59 +0000144 * This flag indicates that a given prefix has been 'advertised' to
145 * the FPM to be installed in the forwarding plane.
146 */
147#define RIB_DEST_SENT_TO_FPM (1 << (ZEBRA_MAX_QINDEX + 1))
148
149/*
150 * This flag is set when we need to send an update to the FPM about a
151 * dest.
152 */
153#define RIB_DEST_UPDATE_FPM (1 << (ZEBRA_MAX_QINDEX + 2))
154
155/*
Avneesh Sachdev9fd92e32012-11-13 22:48:53 +0000156 * Macro to iterate over each route for a destination (prefix).
157 */
158#define RIB_DEST_FOREACH_ROUTE(dest, rib) \
159 for ((rib) = (dest) ? (dest)->routes : NULL; (rib); (rib) = (rib)->next)
160
161/*
162 * Same as above, but allows the current node to be unlinked.
163 */
164#define RIB_DEST_FOREACH_ROUTE_SAFE(dest, rib, next) \
165 for ((rib) = (dest) ? (dest)->routes : NULL; \
166 (rib) && ((next) = (rib)->next, 1); \
167 (rib) = (next))
168
169#define RNODE_FOREACH_RIB(rn, rib) \
170 RIB_DEST_FOREACH_ROUTE (rib_dest_from_rnode (rn), rib)
171
172#define RNODE_FOREACH_RIB_SAFE(rn, rib, next) \
173 RIB_DEST_FOREACH_ROUTE_SAFE (rib_dest_from_rnode (rn), rib, next)
174
paul718e3742002-12-13 20:15:29 +0000175/* Static route information. */
Donald Sharpd4c27d62015-11-04 13:26:35 -0500176struct static_route
paul718e3742002-12-13 20:15:29 +0000177{
178 /* For linked list. */
Donald Sharpd4c27d62015-11-04 13:26:35 -0500179 struct static_route *prev;
180 struct static_route *next;
paul718e3742002-12-13 20:15:29 +0000181
Feng Lu7aaf4ea2015-05-22 11:40:06 +0200182 /* VRF identifier. */
183 vrf_id_t vrf_id;
184
paul718e3742002-12-13 20:15:29 +0000185 /* Administrative distance. */
186 u_char distance;
187
188 /* Flag for this static route's type. */
189 u_char type;
Donald Sharpd4c27d62015-11-04 13:26:35 -0500190#define STATIC_IPV4_GATEWAY 1
191#define STATIC_IPV4_IFNAME 2
192#define STATIC_IPV4_BLACKHOLE 3
193#define STATIC_IPV6_GATEWAY 4
194#define STATIC_IPV6_GATEWAY_IFNAME 5
195#define STATIC_IPV6_IFNAME 6
paul718e3742002-12-13 20:15:29 +0000196
197 /* Nexthop value. */
Donald Sharpd4c27d62015-11-04 13:26:35 -0500198 union g_addr addr;
paul718e3742002-12-13 20:15:29 +0000199 char *ifname;
hasso81dfcaa2003-05-25 19:21:25 +0000200
201 /* bit flags */
202 u_char flags;
203/*
204 see ZEBRA_FLAG_REJECT
205 ZEBRA_FLAG_BLACKHOLE
206 */
paul718e3742002-12-13 20:15:29 +0000207};
paul718e3742002-12-13 20:15:29 +0000208
paul7021c422003-07-15 12:52:22 +0000209enum nexthop_types_t
210{
211 NEXTHOP_TYPE_IFINDEX = 1, /* Directly connected. */
212 NEXTHOP_TYPE_IFNAME, /* Interface route. */
213 NEXTHOP_TYPE_IPV4, /* IPv4 nexthop. */
214 NEXTHOP_TYPE_IPV4_IFINDEX, /* IPv4 nexthop with ifindex. */
215 NEXTHOP_TYPE_IPV4_IFNAME, /* IPv4 nexthop with ifname. */
216 NEXTHOP_TYPE_IPV6, /* IPv6 nexthop. */
217 NEXTHOP_TYPE_IPV6_IFINDEX, /* IPv6 nexthop with ifindex. */
218 NEXTHOP_TYPE_IPV6_IFNAME, /* IPv6 nexthop with ifname. */
219 NEXTHOP_TYPE_BLACKHOLE, /* Null0 nexthop. */
220};
221
paul718e3742002-12-13 20:15:29 +0000222/* Nexthop structure. */
223struct nexthop
224{
225 struct nexthop *next;
226 struct nexthop *prev;
227
Paul Jakmae6d7d052006-03-30 13:32:09 +0000228 /* Interface index. */
229 char *ifname;
230 unsigned int ifindex;
231
paul7021c422003-07-15 12:52:22 +0000232 enum nexthop_types_t type;
paul718e3742002-12-13 20:15:29 +0000233
234 u_char flags;
235#define NEXTHOP_FLAG_ACTIVE (1 << 0) /* This nexthop is alive. */
236#define NEXTHOP_FLAG_FIB (1 << 1) /* FIB nexthop. */
237#define NEXTHOP_FLAG_RECURSIVE (1 << 2) /* Recursive nexthop. */
Christian Frankee8d3d292013-07-05 15:35:39 +0000238#define NEXTHOP_FLAG_ONLINK (1 << 3) /* Nexthop should be installed onlink. */
paul718e3742002-12-13 20:15:29 +0000239
Christian Frankefa713d92013-07-05 15:35:37 +0000240 /* Nexthop address */
Paul Jakma7514fb72007-05-02 16:05:35 +0000241 union g_addr gate;
Paul Jakma7514fb72007-05-02 16:05:35 +0000242 union g_addr src;
Christian Frankefa713d92013-07-05 15:35:37 +0000243
244 /* Nexthops obtained by recursive resolution.
245 *
246 * If the nexthop struct needs to be resolved recursively,
247 * NEXTHOP_FLAG_RECURSIVE will be set in flags and the nexthops
248 * obtained by recursive resolution will be added to `resolved'.
249 * Only one level of recursive resolution is currently supported. */
250 struct nexthop *resolved;
paul718e3742002-12-13 20:15:29 +0000251};
252
Christian Frankefa713d92013-07-05 15:35:37 +0000253/* The following for loop allows to iterate over the nexthop
254 * structure of routes.
255 *
256 * We have to maintain quite a bit of state:
257 *
258 * nexthop: The pointer to the current nexthop, either in the
259 * top-level chain or in the resolved chain of ni.
260 * tnexthop: The pointer to the current nexthop in the top-level
261 * nexthop chain.
262 * recursing: Information if nh currently is in the top-level chain
263 * (0) or in a resolved chain (1).
264 *
265 * Initialization: Set `nexthop' and `tnexthop' to the head of the
266 * top-level chain. As nexthop is in the top level chain, set recursing
267 * to 0.
268 *
269 * Iteration check: Check that the `nexthop' pointer is not NULL.
270 *
271 * Iteration step: This is the tricky part. Check if `nexthop' has
272 * NEXTHOP_FLAG_RECURSIVE set. If yes, this implies that `nexthop' is in
273 * the top level chain and has at least one nexthop attached to
274 * `nexthop->resolved'. As we want to descend into `nexthop->resolved',
275 * set `recursing' to 1 and set `nexthop' to `nexthop->resolved'.
276 * `tnexthop' is left alone in that case so we can remember which nexthop
277 * in the top level chain we are currently handling.
278 *
279 * If NEXTHOP_FLAG_RECURSIVE is not set, `nexthop' will progress in its
280 * current chain. If we are recursing, `nexthop' will be set to
281 * `nexthop->next' and `tnexthop' will be left alone. If we are not
282 * recursing, both `tnexthop' and `nexthop' will be set to `nexthop->next'
283 * as we are progressing in the top level chain.
284 * If we encounter `nexthop->next == NULL', we will clear the `recursing'
285 * flag as we arived either at the end of the resolved chain or at the end
286 * of the top level chain. In both cases, we set `tnexthop' and `nexthop'
287 * to `tnexthop->next', progressing to the next position in the top-level
288 * chain and possibly to its end marked by NULL.
289 */
290#define ALL_NEXTHOPS_RO(head, nexthop, tnexthop, recursing) \
291 (tnexthop) = (nexthop) = (head), (recursing) = 0; \
292 (nexthop); \
293 (nexthop) = CHECK_FLAG((nexthop)->flags, NEXTHOP_FLAG_RECURSIVE) \
294 ? (((recursing) = 1), (nexthop)->resolved) \
295 : ((nexthop)->next ? ((recursing) ? (nexthop)->next \
296 : ((tnexthop) = (nexthop)->next)) \
297 : (((recursing) = 0),((tnexthop) = (tnexthop)->next)))
298
Feng Lu1885d0a2015-05-22 11:40:04 +0200299/* Structure holding nexthop & VRF identifier,
300 * used for applying the route-map. */
301struct nexthop_vrfid
302{
303 struct nexthop *nexthop;
304 vrf_id_t vrf_id;
305};
306
Feng Lu49f76092015-05-22 11:40:10 +0200307/* Router advertisement feature. */
Timo Teräs983525e2015-10-22 11:35:16 +0300308#if !defined(RTADV) && defined(LINUX_IPV6) && defined(HAVE_RTADV)
309# define RTADV
Feng Lu49f76092015-05-22 11:40:10 +0200310#endif
311
Donald Sharp0d955af2015-11-04 13:26:36 -0500312#if defined (RTADV)
Feng Lu49f76092015-05-22 11:40:10 +0200313/* Structure which hold status of router advertisement. */
314struct rtadv
315{
316 int sock;
317
318 int adv_if_count;
319 int adv_msec_if_count;
320
321 struct thread *ra_read;
322 struct thread *ra_timer;
323};
Donald Sharp0d955af2015-11-04 13:26:36 -0500324#endif /* RTADV */
Feng Lu49f76092015-05-22 11:40:10 +0200325
Feng Lu758fb8f2014-07-03 18:23:09 +0800326#ifdef HAVE_NETLINK
327/* Socket interface to kernel */
328struct nlsock
329{
330 int sock;
331 int seq;
332 struct sockaddr_nl snl;
333 const char *name;
334};
335#endif
336
paul718e3742002-12-13 20:15:29 +0000337/* Routing table instance. */
Feng Lu41f44a22015-05-22 11:39:56 +0200338struct zebra_vrf
paul718e3742002-12-13 20:15:29 +0000339{
Feng Lu41f44a22015-05-22 11:39:56 +0200340 /* Identifier. */
341 vrf_id_t vrf_id;
paul718e3742002-12-13 20:15:29 +0000342
343 /* Routing table name. */
344 char *name;
345
346 /* Description. */
347 char *desc;
348
349 /* FIB identifier. */
350 u_char fib_id;
351
352 /* Routing table. */
353 struct route_table *table[AFI_MAX][SAFI_MAX];
354
355 /* Static route configuration. */
356 struct route_table *stable[AFI_MAX][SAFI_MAX];
Feng Luac19a442015-05-22 11:40:07 +0200357
Feng Lu758fb8f2014-07-03 18:23:09 +0800358#ifdef HAVE_NETLINK
359 struct nlsock netlink; /* kernel messages */
360 struct nlsock netlink_cmd; /* command channel */
361 struct thread *t_netlink;
362#endif
363
Feng Luac19a442015-05-22 11:40:07 +0200364 /* 2nd pointer type used primarily to quell a warning on
365 * ALL_LIST_ELEMENTS_RO
366 */
367 struct list _rid_all_sorted_list;
368 struct list _rid_lo_sorted_list;
369 struct list *rid_all_sorted_list;
370 struct list *rid_lo_sorted_list;
371 struct prefix rid_user_assigned;
Feng Lu49f76092015-05-22 11:40:10 +0200372
Donald Sharp0d955af2015-11-04 13:26:36 -0500373#if defined (RTADV)
Feng Lu49f76092015-05-22 11:40:10 +0200374 struct rtadv rtadv;
Donald Sharp0d955af2015-11-04 13:26:36 -0500375#endif /* RTADV */
paul718e3742002-12-13 20:15:29 +0000376};
377
Avneesh Sachdev1b5ed1b2012-11-13 22:48:54 +0000378/*
379 * rib_table_info_t
380 *
381 * Structure that is hung off of a route_table that holds information about
382 * the table.
383 */
384typedef struct rib_table_info_t_
385{
386
387 /*
Feng Lu41f44a22015-05-22 11:39:56 +0200388 * Back pointer to zebra_vrf.
Avneesh Sachdev1b5ed1b2012-11-13 22:48:54 +0000389 */
Feng Lu41f44a22015-05-22 11:39:56 +0200390 struct zebra_vrf *zvrf;
Avneesh Sachdev1b5ed1b2012-11-13 22:48:54 +0000391 afi_t afi;
392 safi_t safi;
393
394} rib_table_info_t;
395
Avneesh Sachdev0915bb02012-11-13 22:48:55 +0000396typedef enum
397{
398 RIB_TABLES_ITER_S_INIT,
399 RIB_TABLES_ITER_S_ITERATING,
400 RIB_TABLES_ITER_S_DONE
401} rib_tables_iter_state_t;
402
403/*
404 * Structure that holds state for iterating over all tables in the
405 * Routing Information Base.
406 */
407typedef struct rib_tables_iter_t_
408{
Feng Lu41f44a22015-05-22 11:39:56 +0200409 vrf_id_t vrf_id;
Avneesh Sachdev0915bb02012-11-13 22:48:55 +0000410 int afi_safi_ix;
411
412 rib_tables_iter_state_t state;
413} rib_tables_iter_t;
414
David Lamparterbd078122015-01-06 19:53:24 +0100415/* RPF lookup behaviour */
416enum multicast_mode
417{
418 MCAST_NO_CONFIG = 0, /* MIX_MRIB_FIRST, but no show in config write */
419 MCAST_MRIB_ONLY, /* MRIB only */
420 MCAST_URIB_ONLY, /* URIB only */
421 MCAST_MIX_MRIB_FIRST, /* MRIB, if nothing at all then URIB */
422 MCAST_MIX_DISTANCE, /* MRIB & URIB, lower distance wins */
423 MCAST_MIX_PFXLEN, /* MRIB & URIB, longer prefix wins */
424 /* on equal value, MRIB wins for last 2 */
425};
426
427extern void multicast_mode_ipv4_set (enum multicast_mode mode);
428extern enum multicast_mode multicast_mode_ipv4_get (void);
429
Avneesh Sachdev78deec42012-11-13 22:48:56 +0000430extern const char *nexthop_type_to_str (enum nexthop_types_t nh_type);
paula1ac18c2005-06-28 17:17:12 +0000431extern struct nexthop *nexthop_ifindex_add (struct rib *, unsigned int);
432extern struct nexthop *nexthop_ifname_add (struct rib *, char *);
433extern struct nexthop *nexthop_blackhole_add (struct rib *);
Paul Jakma7514fb72007-05-02 16:05:35 +0000434extern struct nexthop *nexthop_ipv4_add (struct rib *, struct in_addr *,
435 struct in_addr *);
Josh Bailey26e2ae32012-03-22 01:09:21 -0700436extern struct nexthop *nexthop_ipv4_ifindex_add (struct rib *,
437 struct in_addr *,
438 struct in_addr *,
439 unsigned int);
Christian Frankefa713d92013-07-05 15:35:37 +0000440extern int nexthop_has_fib_child(struct nexthop *);
Denis Ovsienkodc958242007-08-13 16:03:06 +0000441extern void rib_lookup_and_dump (struct prefix_ipv4 *);
Denis Ovsienko20e5ff02008-02-26 14:02:24 +0000442extern void rib_lookup_and_pushup (struct prefix_ipv4 *);
David Lamparterf7bf4152013-10-22 17:10:21 +0000443#define rib_dump(prefix ,rib) _rib_dump(__func__, prefix, rib)
444extern void _rib_dump (const char *,
445 union prefix46constptr, const struct rib *);
Feng Lu0d0686f2015-05-22 11:40:02 +0200446extern int rib_lookup_ipv4_route (struct prefix_ipv4 *, union sockunion *,
447 vrf_id_t);
Denis Ovsienkodc958242007-08-13 16:03:06 +0000448#define ZEBRA_RIB_LOOKUP_ERROR -1
449#define ZEBRA_RIB_FOUND_EXACT 0
450#define ZEBRA_RIB_FOUND_NOGATE 1
451#define ZEBRA_RIB_FOUND_CONNECTED 2
452#define ZEBRA_RIB_NOTFOUND 3
453
paula1ac18c2005-06-28 17:17:12 +0000454extern struct nexthop *nexthop_ipv6_add (struct rib *, struct in6_addr *);
paul718e3742002-12-13 20:15:29 +0000455
Feng Lu41f44a22015-05-22 11:39:56 +0200456extern struct zebra_vrf *zebra_vrf_alloc (vrf_id_t);
457extern struct route_table *zebra_vrf_table (afi_t, safi_t, vrf_id_t);
458extern struct route_table *zebra_vrf_static_table (afi_t, safi_t, vrf_id_t);
paul718e3742002-12-13 20:15:29 +0000459
hassod24af182005-09-24 14:00:26 +0000460/* NOTE:
461 * All rib_add_ipv[46]* functions will not just add prefix into RIB, but
462 * also implicitly withdraw equal prefix of same type. */
paula1ac18c2005-06-28 17:17:12 +0000463extern int rib_add_ipv4 (int type, int flags, struct prefix_ipv4 *p,
Paul Jakma7514fb72007-05-02 16:05:35 +0000464 struct in_addr *gate, struct in_addr *src,
Feng Lu0d0686f2015-05-22 11:40:02 +0200465 unsigned int ifindex, vrf_id_t vrf_id, int table_id,
Timo Teräsb11f3b52015-11-02 16:50:07 +0200466 u_int32_t, u_int32_t, u_char, safi_t);
paul718e3742002-12-13 20:15:29 +0000467
G.Balajicddf3912011-11-26 21:59:32 +0400468extern int rib_add_ipv4_multipath (struct prefix_ipv4 *, struct rib *, safi_t);
paul718e3742002-12-13 20:15:29 +0000469
paula1ac18c2005-06-28 17:17:12 +0000470extern int rib_delete_ipv4 (int type, int flags, struct prefix_ipv4 *p,
471 struct in_addr *gate, unsigned int ifindex,
Feng Lu0d0686f2015-05-22 11:40:02 +0200472 vrf_id_t, safi_t safi);
paul718e3742002-12-13 20:15:29 +0000473
David Lamparter24480d42015-01-22 19:09:36 +0100474extern struct rib *rib_match_ipv4_safi (struct in_addr addr, safi_t safi,
Feng Lu0d0686f2015-05-22 11:40:02 +0200475 int skip_bgp, struct route_node **rn_out,
476 vrf_id_t);
David Lamparterbd078122015-01-06 19:53:24 +0100477extern struct rib *rib_match_ipv4_multicast (struct in_addr addr,
Feng Lu0d0686f2015-05-22 11:40:02 +0200478 struct route_node **rn_out,
479 vrf_id_t);
paul718e3742002-12-13 20:15:29 +0000480
Feng Lu0d0686f2015-05-22 11:40:02 +0200481extern struct rib *rib_lookup_ipv4 (struct prefix_ipv4 *, vrf_id_t);
paul718e3742002-12-13 20:15:29 +0000482
Feng Lu0d0686f2015-05-22 11:40:02 +0200483extern void rib_update (vrf_id_t);
paula1ac18c2005-06-28 17:17:12 +0000484extern void rib_weed_tables (void);
485extern void rib_sweep_route (void);
Feng Lu267ceb22015-05-22 11:40:09 +0200486extern void rib_close_table (struct route_table *);
paula1ac18c2005-06-28 17:17:12 +0000487extern void rib_close (void);
488extern void rib_init (void);
Vyacheslav Trushkin2ea1ab12011-12-11 18:48:47 +0400489extern unsigned long rib_score_proto (u_char proto);
paul718e3742002-12-13 20:15:29 +0000490
paula1ac18c2005-06-28 17:17:12 +0000491extern int
Everton Marques33d86db2014-07-14 11:19:00 -0300492static_add_ipv4_safi (safi_t safi, struct prefix *p, struct in_addr *gate,
493 const char *ifname, u_char flags, u_char distance,
Feng Lu0d0686f2015-05-22 11:40:02 +0200494 vrf_id_t vrf_id);
paula1ac18c2005-06-28 17:17:12 +0000495extern int
Everton Marques33d86db2014-07-14 11:19:00 -0300496static_delete_ipv4_safi (safi_t safi, struct prefix *p, struct in_addr *gate,
Feng Lu0d0686f2015-05-22 11:40:02 +0200497 const char *ifname, u_char distance, vrf_id_t vrf_id);
paul718e3742002-12-13 20:15:29 +0000498
paula1ac18c2005-06-28 17:17:12 +0000499extern int
paul718e3742002-12-13 20:15:29 +0000500rib_add_ipv6 (int type, int flags, struct prefix_ipv6 *p,
Feng Lu0d0686f2015-05-22 11:40:02 +0200501 struct in6_addr *gate, unsigned int ifindex, vrf_id_t vrf_id,
Timo Teräsb11f3b52015-11-02 16:50:07 +0200502 int table_id, u_int32_t metric, u_int32_t mtu,
503 u_char distance, safi_t safi);
paul718e3742002-12-13 20:15:29 +0000504
paula1ac18c2005-06-28 17:17:12 +0000505extern int
paul718e3742002-12-13 20:15:29 +0000506rib_delete_ipv6 (int type, int flags, struct prefix_ipv6 *p,
Feng Lu0d0686f2015-05-22 11:40:02 +0200507 struct in6_addr *gate, unsigned int ifindex, vrf_id_t vrf_id, safi_t safi);
paul718e3742002-12-13 20:15:29 +0000508
Feng Lu0d0686f2015-05-22 11:40:02 +0200509extern struct rib *rib_lookup_ipv6 (struct in6_addr *, vrf_id_t);
paul718e3742002-12-13 20:15:29 +0000510
Feng Lu0d0686f2015-05-22 11:40:02 +0200511extern struct rib *rib_match_ipv6 (struct in6_addr *, vrf_id_t);
paul718e3742002-12-13 20:15:29 +0000512
513extern struct route_table *rib_table_ipv6;
514
paula1ac18c2005-06-28 17:17:12 +0000515extern int
paul718e3742002-12-13 20:15:29 +0000516static_add_ipv6 (struct prefix *p, u_char type, struct in6_addr *gate,
hasso39db97e2004-10-12 20:50:58 +0000517 const char *ifname, u_char flags, u_char distance,
Feng Lu0d0686f2015-05-22 11:40:02 +0200518 vrf_id_t vrf_id);
paul718e3742002-12-13 20:15:29 +0000519
paula1ac18c2005-06-28 17:17:12 +0000520extern int
paul718e3742002-12-13 20:15:29 +0000521static_delete_ipv6 (struct prefix *p, u_char type, struct in6_addr *gate,
Feng Lu0d0686f2015-05-22 11:40:02 +0200522 const char *ifname, u_char distance, vrf_id_t vrf_id);
paul718e3742002-12-13 20:15:29 +0000523
Avneesh Sachdev9fd92e32012-11-13 22:48:53 +0000524extern int rib_gc_dest (struct route_node *rn);
Avneesh Sachdev0915bb02012-11-13 22:48:55 +0000525extern struct route_table *rib_tables_iter_next (rib_tables_iter_t *iter);
Avneesh Sachdev9fd92e32012-11-13 22:48:53 +0000526
527/*
528 * Inline functions.
529 */
530
531/*
Avneesh Sachdev1b5ed1b2012-11-13 22:48:54 +0000532 * rib_table_info
533 */
534static inline rib_table_info_t *
535rib_table_info (struct route_table *table)
536{
537 return (rib_table_info_t *) table->info;
538}
539
540/*
Avneesh Sachdev9fd92e32012-11-13 22:48:53 +0000541 * rib_dest_from_rnode
542 */
543static inline rib_dest_t *
544rib_dest_from_rnode (struct route_node *rn)
545{
546 return (rib_dest_t *) rn->info;
547}
548
549/*
550 * rnode_to_ribs
551 *
552 * Returns a pointer to the list of routes corresponding to the given
553 * route_node.
554 */
555static inline struct rib *
556rnode_to_ribs (struct route_node *rn)
557{
558 rib_dest_t *dest;
559
560 dest = rib_dest_from_rnode (rn);
561 if (!dest)
562 return NULL;
563
564 return dest->routes;
565}
566
567/*
568 * rib_dest_prefix
569 */
570static inline struct prefix *
571rib_dest_prefix (rib_dest_t *dest)
572{
573 return &dest->rnode->p;
574}
575
576/*
577 * rib_dest_af
578 *
579 * Returns the address family that the destination is for.
580 */
581static inline u_char
582rib_dest_af (rib_dest_t *dest)
583{
584 return dest->rnode->p.family;
585}
586
587/*
588 * rib_dest_table
589 */
590static inline struct route_table *
591rib_dest_table (rib_dest_t *dest)
592{
593 return dest->rnode->table;
594}
595
Avneesh Sachdev1b5ed1b2012-11-13 22:48:54 +0000596/*
597 * rib_dest_vrf
598 */
Feng Lu41f44a22015-05-22 11:39:56 +0200599static inline struct zebra_vrf *
Avneesh Sachdev1b5ed1b2012-11-13 22:48:54 +0000600rib_dest_vrf (rib_dest_t *dest)
601{
Feng Lu41f44a22015-05-22 11:39:56 +0200602 return rib_table_info (rib_dest_table (dest))->zvrf;
Avneesh Sachdev1b5ed1b2012-11-13 22:48:54 +0000603}
604
Avneesh Sachdev0915bb02012-11-13 22:48:55 +0000605/*
606 * rib_tables_iter_init
607 */
608static inline void
609rib_tables_iter_init (rib_tables_iter_t *iter)
610
611{
612 memset (iter, 0, sizeof (*iter));
613 iter->state = RIB_TABLES_ITER_S_INIT;
614}
615
616/*
617 * rib_tables_iter_started
618 *
619 * Returns TRUE if this iterator has started iterating over the set of
620 * tables.
621 */
622static inline int
623rib_tables_iter_started (rib_tables_iter_t *iter)
624{
625 return iter->state != RIB_TABLES_ITER_S_INIT;
626}
627
628/*
629 * rib_tables_iter_cleanup
630 */
631static inline void
632rib_tables_iter_cleanup (rib_tables_iter_t *iter)
633{
634 iter->state = RIB_TABLES_ITER_S_DONE;
635}
636
paul718e3742002-12-13 20:15:29 +0000637#endif /*_ZEBRA_RIB_H */