2 * Routing Table functions.
3 * Copyright (C) 1998 Kunihiro Ishiguro
5 * This file is part of GNU Zebra.
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
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.
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
28 #include "sockunion.h"
30 void route_node_delete (struct route_node
*);
31 void route_table_free (struct route_table
*);
34 route_table_init (void)
36 struct route_table
*rt
;
38 rt
= XCALLOC (MTYPE_ROUTE_TABLE
, sizeof (struct route_table
));
43 route_table_finish (struct route_table
*rt
)
45 route_table_free (rt
);
48 /* Allocate new route node. */
49 static struct route_node
*
52 struct route_node
*node
;
53 node
= XCALLOC (MTYPE_ROUTE_NODE
, sizeof (struct route_node
));
57 /* Allocate new route node with prefix set. */
58 static struct route_node
*
59 route_node_set (struct route_table
*table
, struct prefix
*prefix
)
61 struct route_node
*node
;
63 node
= route_node_new ();
65 prefix_copy (&node
->p
, prefix
);
71 /* Free route node. */
73 route_node_free (struct route_node
*node
)
75 XFREE (MTYPE_ROUTE_NODE
, node
);
78 /* Free route table. */
80 route_table_free (struct route_table
*rt
)
82 struct route_node
*tmp_node
;
83 struct route_node
*node
;
100 node
= node
->l_right
;
109 if (node
->l_left
== tmp_node
)
112 node
->l_right
= NULL
;
114 route_node_free (tmp_node
);
118 route_node_free (tmp_node
);
123 XFREE (MTYPE_ROUTE_TABLE
, rt
);
127 /* Utility mask array. */
128 static const u_char maskbit
[] =
130 0x00, 0x80, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc, 0xfe, 0xff
133 /* Common prefix route genaration. */
135 route_common (struct prefix
*n
, struct prefix
*p
, struct prefix
*new)
141 u_char
*np
= (u_char
*)&n
->u
.prefix
;
142 u_char
*pp
= (u_char
*)&p
->u
.prefix
;
143 u_char
*newp
= (u_char
*)&new->u
.prefix
;
145 for (i
= 0; i
< p
->prefixlen
/ 8; i
++)
153 new->prefixlen
= i
* 8;
155 if (new->prefixlen
!= p
->prefixlen
)
157 diff
= np
[i
] ^ pp
[i
];
159 while (new->prefixlen
< p
->prefixlen
&& !(mask
& diff
))
164 newp
[i
] = np
[i
] & maskbit
[new->prefixlen
% 8];
169 set_link (struct route_node
*node
, struct route_node
*new)
171 unsigned int bit
= prefix_bit (&new->p
.u
.prefix
, node
->p
.prefixlen
);
173 node
->link
[bit
] = new;
179 route_lock_node (struct route_node
*node
)
187 route_unlock_node (struct route_node
*node
)
192 route_node_delete (node
);
195 /* Find matched prefix. */
197 route_node_match (const struct route_table
*table
, const struct prefix
*p
)
199 struct route_node
*node
;
200 struct route_node
*matched
;
205 /* Walk down tree. If there is matched route then store it to
207 while (node
&& node
->p
.prefixlen
<= p
->prefixlen
&&
208 prefix_match (&node
->p
, p
))
212 node
= node
->link
[prefix_bit(&p
->u
.prefix
, node
->p
.prefixlen
)];
215 /* If matched route found, return it. */
217 return route_lock_node (matched
);
223 route_node_match_ipv4 (const struct route_table
*table
,
224 const struct in_addr
*addr
)
226 struct prefix_ipv4 p
;
228 memset (&p
, 0, sizeof (struct prefix_ipv4
));
230 p
.prefixlen
= IPV4_MAX_PREFIXLEN
;
233 return route_node_match (table
, (struct prefix
*) &p
);
238 route_node_match_ipv6 (const struct route_table
*table
,
239 const struct in6_addr
*addr
)
241 struct prefix_ipv6 p
;
243 memset (&p
, 0, sizeof (struct prefix_ipv6
));
245 p
.prefixlen
= IPV6_MAX_PREFIXLEN
;
248 return route_node_match (table
, (struct prefix
*) &p
);
250 #endif /* HAVE_IPV6 */
252 /* Lookup same prefix node. Return NULL when we can't find route. */
254 route_node_lookup (struct route_table
*table
, struct prefix
*p
)
256 struct route_node
*node
;
260 while (node
&& node
->p
.prefixlen
<= p
->prefixlen
&&
261 prefix_match (&node
->p
, p
))
263 if (node
->p
.prefixlen
== p
->prefixlen
&& node
->info
)
264 return route_lock_node (node
);
266 node
= node
->link
[prefix_bit(&p
->u
.prefix
, node
->p
.prefixlen
)];
272 /* Add node to routing table. */
274 route_node_get (struct route_table
*table
, struct prefix
*p
)
276 struct route_node
*new;
277 struct route_node
*node
;
278 struct route_node
*match
;
282 while (node
&& node
->p
.prefixlen
<= p
->prefixlen
&&
283 prefix_match (&node
->p
, p
))
285 if (node
->p
.prefixlen
== p
->prefixlen
)
287 route_lock_node (node
);
291 node
= node
->link
[prefix_bit(&p
->u
.prefix
, node
->p
.prefixlen
)];
296 new = route_node_set (table
, p
);
298 set_link (match
, new);
304 new = route_node_new ();
305 route_common (&node
->p
, p
, &new->p
);
306 new->p
.family
= p
->family
;
308 set_link (new, node
);
311 set_link (match
, new);
315 if (new->p
.prefixlen
!= p
->prefixlen
)
318 new = route_node_set (table
, p
);
319 set_link (match
, new);
322 route_lock_node (new);
327 /* Delete node from the routing table. */
329 route_node_delete (struct route_node
*node
)
331 struct route_node
*child
;
332 struct route_node
*parent
;
334 assert (node
->lock
== 0);
335 assert (node
->info
== NULL
);
337 if (node
->l_left
&& node
->l_right
)
341 child
= node
->l_left
;
343 child
= node
->l_right
;
345 parent
= node
->parent
;
348 child
->parent
= parent
;
352 if (parent
->l_left
== node
)
353 parent
->l_left
= child
;
355 parent
->l_right
= child
;
358 node
->table
->top
= child
;
360 route_node_free (node
);
362 /* If parent node is stub then delete it also. */
363 if (parent
&& parent
->lock
== 0)
364 route_node_delete (parent
);
367 /* Get fist node and lock it. This function is useful when one want
368 to lookup all the node exist in the routing table. */
370 route_top (struct route_table
*table
)
372 /* If there is no node in the routing table return NULL. */
373 if (table
->top
== NULL
)
376 /* Lock the top node and return it. */
377 route_lock_node (table
->top
);
381 /* Unlock current node and lock next node then return it. */
383 route_next (struct route_node
*node
)
385 struct route_node
*next
;
386 struct route_node
*start
;
388 /* Node may be deleted from route_unlock_node so we have to preserve
389 next node's pointer. */
394 route_lock_node (next
);
395 route_unlock_node (node
);
400 next
= node
->l_right
;
401 route_lock_node (next
);
402 route_unlock_node (node
);
409 if (node
->parent
->l_left
== node
&& node
->parent
->l_right
)
411 next
= node
->parent
->l_right
;
412 route_lock_node (next
);
413 route_unlock_node (start
);
418 route_unlock_node (start
);
422 /* Unlock current node and lock next node until limit. */
424 route_next_until (struct route_node
*node
, struct route_node
*limit
)
426 struct route_node
*next
;
427 struct route_node
*start
;
429 /* Node may be deleted from route_unlock_node so we have to preserve
430 next node's pointer. */
435 route_lock_node (next
);
436 route_unlock_node (node
);
441 next
= node
->l_right
;
442 route_lock_node (next
);
443 route_unlock_node (node
);
448 while (node
->parent
&& node
!= limit
)
450 if (node
->parent
->l_left
== node
&& node
->parent
->l_right
)
452 next
= node
->parent
->l_right
;
453 route_lock_node (next
);
454 route_unlock_node (start
);
459 route_unlock_node (start
);