blob: 7b2bd426a8915f460c799a87a350219281d7cd08 [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
paulec1a4282005-11-24 15:15:17 +000026#include "prefix.h"
27
paul718e3742002-12-13 20:15:29 +000028#define DISTANCE_INFINITY 255
29
30/* Routing information base. */
Paul Jakma7514fb72007-05-02 16:05:35 +000031
32union g_addr {
33 struct in_addr ipv4;
34#ifdef HAVE_IPV6
35 struct in6_addr ipv6;
36#endif /* HAVE_IPV6 */
37};
38
paul718e3742002-12-13 20:15:29 +000039struct rib
40{
Paul Jakma6d691122006-07-27 21:49:00 +000041 /* Status Flags for the *route_node*, but kept in the head RIB.. */
42 u_char rn_status;
43#define RIB_ROUTE_QUEUED (1 << 0)
44
paul718e3742002-12-13 20:15:29 +000045 /* Link list. */
46 struct rib *next;
47 struct rib *prev;
Paul Jakmae6d7d052006-03-30 13:32:09 +000048
49 /* Nexthop structure */
50 struct nexthop *nexthop;
51
52 /* Refrence count. */
53 unsigned long refcnt;
54
55 /* Uptime. */
56 time_t uptime;
paul718e3742002-12-13 20:15:29 +000057
58 /* Type fo this route. */
59 int type;
60
61 /* Which routing table */
62 int table;
63
Paul Jakmae6d7d052006-03-30 13:32:09 +000064 /* Metric */
65 u_int32_t metric;
66
paul718e3742002-12-13 20:15:29 +000067 /* Distance. */
68 u_char distance;
69
Paul Jakma6d691122006-07-27 21:49:00 +000070 /* Flags of this route.
71 * This flag's definition is in lib/zebra.h ZEBRA_FLAG_* and is exposed
72 * to clients via Zserv
73 */
paul718e3742002-12-13 20:15:29 +000074 u_char flags;
75
Paul Jakma6d691122006-07-27 21:49:00 +000076 /* RIB internal status */
77 u_char status;
78#define RIB_ENTRY_REMOVED (1 << 0)
79
paul718e3742002-12-13 20:15:29 +000080 /* Nexthop information. */
81 u_char nexthop_num;
82 u_char nexthop_active_num;
83 u_char nexthop_fib_num;
paul718e3742002-12-13 20:15:29 +000084};
85
86/* Static route information. */
87struct static_ipv4
88{
89 /* For linked list. */
90 struct static_ipv4 *prev;
91 struct static_ipv4 *next;
92
93 /* Administrative distance. */
94 u_char distance;
95
96 /* Flag for this static route's type. */
97 u_char type;
98#define STATIC_IPV4_GATEWAY 1
99#define STATIC_IPV4_IFNAME 2
paul595db7f2003-05-25 21:35:06 +0000100#define STATIC_IPV4_BLACKHOLE 3
paul718e3742002-12-13 20:15:29 +0000101
102 /* Nexthop value. */
103 union
104 {
105 struct in_addr ipv4;
106 char *ifname;
107 } gate;
hasso81dfcaa2003-05-25 19:21:25 +0000108
109 /* bit flags */
110 u_char flags;
111/*
112 see ZEBRA_FLAG_REJECT
113 ZEBRA_FLAG_BLACKHOLE
114 */
paul718e3742002-12-13 20:15:29 +0000115};
116
117#ifdef HAVE_IPV6
118/* Static route information. */
119struct static_ipv6
120{
121 /* For linked list. */
122 struct static_ipv6 *prev;
123 struct static_ipv6 *next;
124
125 /* Administrative distance. */
126 u_char distance;
127
128 /* Flag for this static route's type. */
129 u_char type;
130#define STATIC_IPV6_GATEWAY 1
131#define STATIC_IPV6_GATEWAY_IFNAME 2
132#define STATIC_IPV6_IFNAME 3
133
134 /* Nexthop value. */
135 struct in6_addr ipv6;
136 char *ifname;
hasso81dfcaa2003-05-25 19:21:25 +0000137
138 /* bit flags */
139 u_char flags;
140/*
141 see ZEBRA_FLAG_REJECT
142 ZEBRA_FLAG_BLACKHOLE
143 */
paul718e3742002-12-13 20:15:29 +0000144};
145#endif /* HAVE_IPV6 */
146
paul7021c422003-07-15 12:52:22 +0000147enum nexthop_types_t
148{
149 NEXTHOP_TYPE_IFINDEX = 1, /* Directly connected. */
150 NEXTHOP_TYPE_IFNAME, /* Interface route. */
151 NEXTHOP_TYPE_IPV4, /* IPv4 nexthop. */
152 NEXTHOP_TYPE_IPV4_IFINDEX, /* IPv4 nexthop with ifindex. */
153 NEXTHOP_TYPE_IPV4_IFNAME, /* IPv4 nexthop with ifname. */
154 NEXTHOP_TYPE_IPV6, /* IPv6 nexthop. */
155 NEXTHOP_TYPE_IPV6_IFINDEX, /* IPv6 nexthop with ifindex. */
156 NEXTHOP_TYPE_IPV6_IFNAME, /* IPv6 nexthop with ifname. */
157 NEXTHOP_TYPE_BLACKHOLE, /* Null0 nexthop. */
158};
159
paul718e3742002-12-13 20:15:29 +0000160/* Nexthop structure. */
161struct nexthop
162{
163 struct nexthop *next;
164 struct nexthop *prev;
165
Paul Jakmae6d7d052006-03-30 13:32:09 +0000166 /* Interface index. */
167 char *ifname;
168 unsigned int ifindex;
169
paul7021c422003-07-15 12:52:22 +0000170 enum nexthop_types_t type;
paul718e3742002-12-13 20:15:29 +0000171
172 u_char flags;
173#define NEXTHOP_FLAG_ACTIVE (1 << 0) /* This nexthop is alive. */
174#define NEXTHOP_FLAG_FIB (1 << 1) /* FIB nexthop. */
175#define NEXTHOP_FLAG_RECURSIVE (1 << 2) /* Recursive nexthop. */
176
paul718e3742002-12-13 20:15:29 +0000177 /* Nexthop address or interface name. */
Paul Jakma7514fb72007-05-02 16:05:35 +0000178 union g_addr gate;
paul718e3742002-12-13 20:15:29 +0000179
180 /* Recursive lookup nexthop. */
181 u_char rtype;
182 unsigned int rifindex;
Paul Jakma7514fb72007-05-02 16:05:35 +0000183 union g_addr rgate;
184 union g_addr src;
paul718e3742002-12-13 20:15:29 +0000185};
186
187/* Routing table instance. */
188struct vrf
189{
190 /* Identifier. This is same as routing table vector index. */
191 u_int32_t id;
192
193 /* Routing table name. */
194 char *name;
195
196 /* Description. */
197 char *desc;
198
199 /* FIB identifier. */
200 u_char fib_id;
201
202 /* Routing table. */
203 struct route_table *table[AFI_MAX][SAFI_MAX];
204
205 /* Static route configuration. */
206 struct route_table *stable[AFI_MAX][SAFI_MAX];
207};
208
paula1ac18c2005-06-28 17:17:12 +0000209extern struct nexthop *nexthop_ifindex_add (struct rib *, unsigned int);
210extern struct nexthop *nexthop_ifname_add (struct rib *, char *);
211extern struct nexthop *nexthop_blackhole_add (struct rib *);
Paul Jakma7514fb72007-05-02 16:05:35 +0000212extern struct nexthop *nexthop_ipv4_add (struct rib *, struct in_addr *,
213 struct in_addr *);
paul718e3742002-12-13 20:15:29 +0000214#ifdef HAVE_IPV6
paula1ac18c2005-06-28 17:17:12 +0000215extern struct nexthop *nexthop_ipv6_add (struct rib *, struct in6_addr *);
paul718e3742002-12-13 20:15:29 +0000216#endif /* HAVE_IPV6 */
217
paula1ac18c2005-06-28 17:17:12 +0000218extern struct vrf *vrf_lookup (u_int32_t);
219extern struct route_table *vrf_table (afi_t afi, safi_t safi, u_int32_t id);
220extern struct route_table *vrf_static_table (afi_t afi, safi_t safi, u_int32_t id);
paul718e3742002-12-13 20:15:29 +0000221
hassod24af182005-09-24 14:00:26 +0000222/* NOTE:
223 * All rib_add_ipv[46]* functions will not just add prefix into RIB, but
224 * also implicitly withdraw equal prefix of same type. */
paula1ac18c2005-06-28 17:17:12 +0000225extern int rib_add_ipv4 (int type, int flags, struct prefix_ipv4 *p,
Paul Jakma7514fb72007-05-02 16:05:35 +0000226 struct in_addr *gate, struct in_addr *src,
227 unsigned int ifindex, u_int32_t vrf_id,
228 u_int32_t, u_char);
paul718e3742002-12-13 20:15:29 +0000229
paula1ac18c2005-06-28 17:17:12 +0000230extern int rib_add_ipv4_multipath (struct prefix_ipv4 *, struct rib *);
paul718e3742002-12-13 20:15:29 +0000231
paula1ac18c2005-06-28 17:17:12 +0000232extern int rib_delete_ipv4 (int type, int flags, struct prefix_ipv4 *p,
233 struct in_addr *gate, unsigned int ifindex,
234 u_int32_t);
paul718e3742002-12-13 20:15:29 +0000235
paula1ac18c2005-06-28 17:17:12 +0000236extern struct rib *rib_match_ipv4 (struct in_addr);
paul718e3742002-12-13 20:15:29 +0000237
paula1ac18c2005-06-28 17:17:12 +0000238extern struct rib *rib_lookup_ipv4 (struct prefix_ipv4 *);
paul718e3742002-12-13 20:15:29 +0000239
paula1ac18c2005-06-28 17:17:12 +0000240extern void rib_update (void);
241extern void rib_weed_tables (void);
242extern void rib_sweep_route (void);
243extern void rib_close (void);
244extern void rib_init (void);
paul718e3742002-12-13 20:15:29 +0000245
paula1ac18c2005-06-28 17:17:12 +0000246extern int
hasso39db97e2004-10-12 20:50:58 +0000247static_add_ipv4 (struct prefix *p, struct in_addr *gate, const char *ifname,
hasso81dfcaa2003-05-25 19:21:25 +0000248 u_char flags, u_char distance, u_int32_t vrf_id);
paul718e3742002-12-13 20:15:29 +0000249
paula1ac18c2005-06-28 17:17:12 +0000250extern int
hasso39db97e2004-10-12 20:50:58 +0000251static_delete_ipv4 (struct prefix *p, struct in_addr *gate, const char *ifname,
paul718e3742002-12-13 20:15:29 +0000252 u_char distance, u_int32_t vrf_id);
253
254#ifdef HAVE_IPV6
paula1ac18c2005-06-28 17:17:12 +0000255extern int
paul718e3742002-12-13 20:15:29 +0000256rib_add_ipv6 (int type, int flags, struct prefix_ipv6 *p,
hassobe61c4e2005-08-27 06:05:47 +0000257 struct in6_addr *gate, unsigned int ifindex, u_int32_t vrf_id,
258 u_int32_t metric, u_char distance);
paul718e3742002-12-13 20:15:29 +0000259
paula1ac18c2005-06-28 17:17:12 +0000260extern int
paul718e3742002-12-13 20:15:29 +0000261rib_delete_ipv6 (int type, int flags, struct prefix_ipv6 *p,
262 struct in6_addr *gate, unsigned int ifindex, u_int32_t vrf_id);
263
paula1ac18c2005-06-28 17:17:12 +0000264extern struct rib *rib_lookup_ipv6 (struct in6_addr *);
paul718e3742002-12-13 20:15:29 +0000265
paula1ac18c2005-06-28 17:17:12 +0000266extern struct rib *rib_match_ipv6 (struct in6_addr *);
paul718e3742002-12-13 20:15:29 +0000267
268extern struct route_table *rib_table_ipv6;
269
paula1ac18c2005-06-28 17:17:12 +0000270extern int
paul718e3742002-12-13 20:15:29 +0000271static_add_ipv6 (struct prefix *p, u_char type, struct in6_addr *gate,
hasso39db97e2004-10-12 20:50:58 +0000272 const char *ifname, u_char flags, u_char distance,
273 u_int32_t vrf_id);
paul718e3742002-12-13 20:15:29 +0000274
paula1ac18c2005-06-28 17:17:12 +0000275extern int
paul718e3742002-12-13 20:15:29 +0000276static_delete_ipv6 (struct prefix *p, u_char type, struct in6_addr *gate,
hasso39db97e2004-10-12 20:50:58 +0000277 const char *ifname, u_char distance, u_int32_t vrf_id);
paul718e3742002-12-13 20:15:29 +0000278
279#endif /* HAVE_IPV6 */
280
281#endif /*_ZEBRA_RIB_H */