blob: 3b4e6cf3d06bf5dc6fa5ea52e0f18b05b0d58dd5 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* BGP routing table
2 Copyright (C) 1998, 2001 Kunihiro Ishiguro
3
4This file is part of GNU Zebra.
5
6GNU Zebra is free software; you can redistribute it and/or modify it
7under the terms of the GNU General Public License as published by the
8Free Software Foundation; either version 2, or (at your option) any
9later version.
10
11GNU Zebra is distributed in the hope that it will be useful, but
12WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Zebra; see the file COPYING. If not, write to the Free
18Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
1902111-1307, USA. */
20
paul00d252c2005-05-23 14:19:54 +000021#ifndef _QUAGGA_BGP_TABLE_H
22#define _QUAGGA_BGP_TABLE_H
23
Avneesh Sachdev67174042012-08-17 08:19:49 -070024#include "table.h"
25
paulfee0f4c2004-09-13 05:12:46 +000026typedef enum
27{
28 BGP_TABLE_MAIN,
29 BGP_TABLE_RSCLIENT,
30} bgp_table_t;
31
paul718e3742002-12-13 20:15:29 +000032struct bgp_table
33{
paulfee0f4c2004-09-13 05:12:46 +000034 bgp_table_t type;
Paul Jakma64e580a2006-02-21 01:09:01 +000035
36 /* afi/safi of this table */
37 afi_t afi;
38 safi_t safi;
39
Chris Caputo228da422009-07-18 05:44:03 +000040 int lock;
41
paulfee0f4c2004-09-13 05:12:46 +000042 /* The owner of this 'bgp_table' structure. */
Chris Caputo228da422009-07-18 05:44:03 +000043 struct peer *owner;
paulfee0f4c2004-09-13 05:12:46 +000044
Avneesh Sachdev67174042012-08-17 08:19:49 -070045 struct route_table *route_table;
paul718e3742002-12-13 20:15:29 +000046};
47
48struct bgp_node
49{
Avneesh Sachdev67174042012-08-17 08:19:49 -070050 /*
51 * CAUTION
52 *
53 * These fields must be the very first fields in this structure.
54 *
55 * @see bgp_node_to_rnode
56 * @see bgp_node_from_rnode
57 */
David Lamparterb7d50212015-03-03 08:53:18 +010058 ROUTE_NODE_FIELDS
paul718e3742002-12-13 20:15:29 +000059
60 struct bgp_adj_out *adj_out;
61
62 struct bgp_adj_in *adj_in;
63
paul718e3742002-12-13 20:15:29 +000064 struct bgp_node *prn;
paul200df112005-06-01 11:17:05 +000065
66 u_char flags;
67#define BGP_NODE_PROCESS_SCHEDULED (1 << 0)
paul718e3742002-12-13 20:15:29 +000068};
69
Avneesh Sachdev28971c82012-08-17 08:19:50 -070070/*
71 * bgp_table_iter_t
72 *
73 * Structure that holds state for iterating over a bgp table.
74 */
75typedef struct bgp_table_iter_t_
76{
77 struct bgp_table *table;
78 route_table_iter_t rt_iter;
79} bgp_table_iter_t;
80
Paul Jakma64e580a2006-02-21 01:09:01 +000081extern struct bgp_table *bgp_table_init (afi_t, safi_t);
Chris Caputo228da422009-07-18 05:44:03 +000082extern void bgp_table_lock (struct bgp_table *);
83extern void bgp_table_unlock (struct bgp_table *);
Paul Jakmab608d5b2008-07-02 02:12:07 +000084extern void bgp_table_finish (struct bgp_table **);
Avneesh Sachdev67174042012-08-17 08:19:49 -070085
86
87/*
88 * bgp_node_from_rnode
89 *
90 * Returns the bgp_node structure corresponding to a route_node.
91 */
92static inline struct bgp_node *
93bgp_node_from_rnode (struct route_node *rnode)
94{
95 return (struct bgp_node *) rnode;
96}
97
98/*
99 * bgp_node_to_rnode
100 *
101 * Returns the route_node structure corresponding to a bgp_node.
102 */
103static inline struct route_node *
104bgp_node_to_rnode (struct bgp_node *node)
105{
106 return (struct route_node *) node;
107}
108
109/*
110 * bgp_node_table
111 *
112 * Returns the bgp_table that the given node is in.
113 */
114static inline struct bgp_table *
115bgp_node_table (struct bgp_node *node)
116{
117 return bgp_node_to_rnode (node)->table->info;
118}
119
120/*
Avneesh Sachdev67174042012-08-17 08:19:49 -0700121 * bgp_node_parent_nolock
122 *
123 * Gets the parent node of the given node without locking it.
124 */
125static inline struct bgp_node *
126bgp_node_parent_nolock (struct bgp_node *node)
127{
128 return bgp_node_from_rnode (node->parent);
129}
130
131/*
132 * bgp_unlock_node
133 */
134static inline void
135bgp_unlock_node (struct bgp_node *node)
136{
137 route_unlock_node (bgp_node_to_rnode (node));
138}
139
140/*
141 * bgp_table_top_nolock
142 *
143 * Gets the top node in the table without locking it.
144 *
145 * @see bgp_table_top
146 */
147static inline struct bgp_node *
148bgp_table_top_nolock (const struct bgp_table *const table)
149{
150 return bgp_node_from_rnode (table->route_table->top);
151}
152
153/*
154 * bgp_table_top
155 */
156static inline struct bgp_node *
157bgp_table_top (const struct bgp_table *const table)
158{
159 return bgp_node_from_rnode (route_top (table->route_table));
160}
161
162/*
163 * bgp_route_next
164 */
165static inline struct bgp_node *
166bgp_route_next (struct bgp_node *node)
167{
168 return bgp_node_from_rnode (route_next (bgp_node_to_rnode (node)));
169}
170
171/*
172 * bgp_route_next_until
173 */
174static inline struct bgp_node *
175bgp_route_next_until (struct bgp_node *node, struct bgp_node *limit)
176{
177 struct route_node *rnode;
178
179 rnode = route_next_until (bgp_node_to_rnode (node),
180 bgp_node_to_rnode (limit));
181 return bgp_node_from_rnode (rnode);
182}
183
184/*
185 * bgp_node_get
186 */
187static inline struct bgp_node *
188bgp_node_get (struct bgp_table *const table, struct prefix *p)
189{
190 return bgp_node_from_rnode (route_node_get (table->route_table, p));
191}
192
193/*
194 * bgp_node_lookup
195 */
196static inline struct bgp_node *
197bgp_node_lookup (const struct bgp_table *const table, struct prefix *p)
198{
199 return bgp_node_from_rnode (route_node_lookup (table->route_table, p));
200}
201
202/*
203 * bgp_lock_node
204 */
205static inline struct bgp_node *
206bgp_lock_node (struct bgp_node *node)
207{
208 return bgp_node_from_rnode (route_lock_node (bgp_node_to_rnode (node)));
209}
210
211/*
212 * bgp_node_match
213 */
214static inline struct bgp_node *
215bgp_node_match (const struct bgp_table *table, struct prefix *p)
216{
217 return bgp_node_from_rnode (route_node_match (table->route_table, p));
218}
219
220/*
221 * bgp_node_match_ipv4
222 */
223static inline struct bgp_node *
224bgp_node_match_ipv4 (const struct bgp_table *table, struct in_addr *addr)
225{
226 return bgp_node_from_rnode (route_node_match_ipv4 (table->route_table,
227 addr));
228}
229
Avneesh Sachdev67174042012-08-17 08:19:49 -0700230/*
231 * bgp_node_match_ipv6
232 */
233static inline struct bgp_node *
234bgp_node_match_ipv6 (const struct bgp_table *table, struct in6_addr *addr)
235{
236 return bgp_node_from_rnode (route_node_match_ipv6 (table->route_table,
237 addr));
238}
239
Avneesh Sachdev67174042012-08-17 08:19:49 -0700240static inline unsigned long
241bgp_table_count (const struct bgp_table *const table)
242{
243 return route_table_count (table->route_table);
244}
245
Avneesh Sachdev28971c82012-08-17 08:19:50 -0700246/*
247 * bgp_table_get_next
248 */
249static inline struct bgp_node *
250bgp_table_get_next (const struct bgp_table *table, struct prefix *p)
251{
252 return bgp_node_from_rnode (route_table_get_next (table->route_table, p));
253}
254
255/*
256 * bgp_table_iter_init
257 */
258static inline void
259bgp_table_iter_init (bgp_table_iter_t * iter, struct bgp_table *table)
260{
261 bgp_table_lock (table);
262 iter->table = table;
263 route_table_iter_init (&iter->rt_iter, table->route_table);
264}
265
266/*
267 * bgp_table_iter_next
268 */
269static inline struct bgp_node *
270bgp_table_iter_next (bgp_table_iter_t * iter)
271{
272 return bgp_node_from_rnode (route_table_iter_next (&iter->rt_iter));
273}
274
275/*
276 * bgp_table_iter_cleanup
277 */
278static inline void
279bgp_table_iter_cleanup (bgp_table_iter_t * iter)
280{
281 route_table_iter_cleanup (&iter->rt_iter);
282 bgp_table_unlock (iter->table);
283 iter->table = NULL;
284}
285
286/*
287 * bgp_table_iter_pause
288 */
289static inline void
290bgp_table_iter_pause (bgp_table_iter_t * iter)
291{
292 route_table_iter_pause (&iter->rt_iter);
293}
294
295/*
296 * bgp_table_iter_is_done
297 */
298static inline int
299bgp_table_iter_is_done (bgp_table_iter_t * iter)
300{
301 return route_table_iter_is_done (&iter->rt_iter);
302}
303
304/*
305 * bgp_table_iter_started
306 */
307static inline int
308bgp_table_iter_started (bgp_table_iter_t * iter)
309{
310 return route_table_iter_started (&iter->rt_iter);
311}
312
paul00d252c2005-05-23 14:19:54 +0000313#endif /* _QUAGGA_BGP_TABLE_H */