blob: bee1296322867004016a08f02bc9d4022725e37e [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/*
121 * bgp_node_info
122 *
123 * Returns the 'info' pointer corresponding to a bgp node.
124 */
125static inline void *
126bgp_node_info (const struct bgp_node *node)
127{
128 return node->info;
129}
130
131/*
132 * bgp_node_set_info
133 */
134static inline void
135bgp_node_set_info (struct bgp_node *node, void *info)
136{
137 node->info = info;
138}
139
140/*
141 * bgp_node_prefix
142 */
143static inline struct prefix *
144bgp_node_prefix (struct bgp_node *node)
145{
146 return &node->p;
147}
148
149/*
150 * bgp_node_prefixlen
151 */
152static inline u_char
153bgp_node_prefixlen (struct bgp_node *node)
154{
155 return bgp_node_prefix (node)->prefixlen;
156}
157
158/*
159 * bgp_node_parent_nolock
160 *
161 * Gets the parent node of the given node without locking it.
162 */
163static inline struct bgp_node *
164bgp_node_parent_nolock (struct bgp_node *node)
165{
166 return bgp_node_from_rnode (node->parent);
167}
168
169/*
170 * bgp_unlock_node
171 */
172static inline void
173bgp_unlock_node (struct bgp_node *node)
174{
175 route_unlock_node (bgp_node_to_rnode (node));
176}
177
178/*
179 * bgp_table_top_nolock
180 *
181 * Gets the top node in the table without locking it.
182 *
183 * @see bgp_table_top
184 */
185static inline struct bgp_node *
186bgp_table_top_nolock (const struct bgp_table *const table)
187{
188 return bgp_node_from_rnode (table->route_table->top);
189}
190
191/*
192 * bgp_table_top
193 */
194static inline struct bgp_node *
195bgp_table_top (const struct bgp_table *const table)
196{
197 return bgp_node_from_rnode (route_top (table->route_table));
198}
199
200/*
201 * bgp_route_next
202 */
203static inline struct bgp_node *
204bgp_route_next (struct bgp_node *node)
205{
206 return bgp_node_from_rnode (route_next (bgp_node_to_rnode (node)));
207}
208
209/*
210 * bgp_route_next_until
211 */
212static inline struct bgp_node *
213bgp_route_next_until (struct bgp_node *node, struct bgp_node *limit)
214{
215 struct route_node *rnode;
216
217 rnode = route_next_until (bgp_node_to_rnode (node),
218 bgp_node_to_rnode (limit));
219 return bgp_node_from_rnode (rnode);
220}
221
222/*
223 * bgp_node_get
224 */
225static inline struct bgp_node *
226bgp_node_get (struct bgp_table *const table, struct prefix *p)
227{
228 return bgp_node_from_rnode (route_node_get (table->route_table, p));
229}
230
231/*
232 * bgp_node_lookup
233 */
234static inline struct bgp_node *
235bgp_node_lookup (const struct bgp_table *const table, struct prefix *p)
236{
237 return bgp_node_from_rnode (route_node_lookup (table->route_table, p));
238}
239
240/*
241 * bgp_lock_node
242 */
243static inline struct bgp_node *
244bgp_lock_node (struct bgp_node *node)
245{
246 return bgp_node_from_rnode (route_lock_node (bgp_node_to_rnode (node)));
247}
248
249/*
250 * bgp_node_match
251 */
252static inline struct bgp_node *
253bgp_node_match (const struct bgp_table *table, struct prefix *p)
254{
255 return bgp_node_from_rnode (route_node_match (table->route_table, p));
256}
257
258/*
259 * bgp_node_match_ipv4
260 */
261static inline struct bgp_node *
262bgp_node_match_ipv4 (const struct bgp_table *table, struct in_addr *addr)
263{
264 return bgp_node_from_rnode (route_node_match_ipv4 (table->route_table,
265 addr));
266}
267
Avneesh Sachdev67174042012-08-17 08:19:49 -0700268/*
269 * bgp_node_match_ipv6
270 */
271static inline struct bgp_node *
272bgp_node_match_ipv6 (const struct bgp_table *table, struct in6_addr *addr)
273{
274 return bgp_node_from_rnode (route_node_match_ipv6 (table->route_table,
275 addr));
276}
277
Avneesh Sachdev67174042012-08-17 08:19:49 -0700278static inline unsigned long
279bgp_table_count (const struct bgp_table *const table)
280{
281 return route_table_count (table->route_table);
282}
283
Avneesh Sachdev28971c82012-08-17 08:19:50 -0700284/*
285 * bgp_table_get_next
286 */
287static inline struct bgp_node *
288bgp_table_get_next (const struct bgp_table *table, struct prefix *p)
289{
290 return bgp_node_from_rnode (route_table_get_next (table->route_table, p));
291}
292
293/*
294 * bgp_table_iter_init
295 */
296static inline void
297bgp_table_iter_init (bgp_table_iter_t * iter, struct bgp_table *table)
298{
299 bgp_table_lock (table);
300 iter->table = table;
301 route_table_iter_init (&iter->rt_iter, table->route_table);
302}
303
304/*
305 * bgp_table_iter_next
306 */
307static inline struct bgp_node *
308bgp_table_iter_next (bgp_table_iter_t * iter)
309{
310 return bgp_node_from_rnode (route_table_iter_next (&iter->rt_iter));
311}
312
313/*
314 * bgp_table_iter_cleanup
315 */
316static inline void
317bgp_table_iter_cleanup (bgp_table_iter_t * iter)
318{
319 route_table_iter_cleanup (&iter->rt_iter);
320 bgp_table_unlock (iter->table);
321 iter->table = NULL;
322}
323
324/*
325 * bgp_table_iter_pause
326 */
327static inline void
328bgp_table_iter_pause (bgp_table_iter_t * iter)
329{
330 route_table_iter_pause (&iter->rt_iter);
331}
332
333/*
334 * bgp_table_iter_is_done
335 */
336static inline int
337bgp_table_iter_is_done (bgp_table_iter_t * iter)
338{
339 return route_table_iter_is_done (&iter->rt_iter);
340}
341
342/*
343 * bgp_table_iter_started
344 */
345static inline int
346bgp_table_iter_started (bgp_table_iter_t * iter)
347{
348 return route_table_iter_started (&iter->rt_iter);
349}
350
paul00d252c2005-05-23 14:19:54 +0000351#endif /* _QUAGGA_BGP_TABLE_H */