]> git.proxmox.com Git - mirror_frr.git/blame - bgpd/bgp_table.c
pimd: don't break with missing SO_BINDTODEVICE
[mirror_frr.git] / bgpd / bgp_table.c
CommitLineData
718e3744 1/* 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
21#include <zebra.h>
22
23#include "prefix.h"
24#include "memory.h"
25#include "sockunion.h"
26#include "vty.h"
3f9c7369 27#include "queue.h"
718e3744 28
29#include "bgpd/bgpd.h"
30#include "bgpd/bgp_table.h"
31
228da428
CC
32void
33bgp_table_lock (struct bgp_table *rt)
34{
35 rt->lock++;
36}
37
38void
39bgp_table_unlock (struct bgp_table *rt)
40{
41 assert (rt->lock > 0);
42 rt->lock--;
43
67174041 44 if (rt->lock != 0)
228da428 45 {
67174041 46 return;
228da428 47 }
718e3744 48
67174041
AS
49 route_table_finish (rt->route_table);
50 rt->route_table = NULL;
228da428
CC
51
52 if (rt->owner)
53 {
54 peer_unlock (rt->owner);
55 rt->owner = NULL;
56 }
57
718e3744 58 XFREE (MTYPE_BGP_TABLE, rt);
718e3744 59}
60
718e3744 61void
67174041 62bgp_table_finish (struct bgp_table **rt)
718e3744 63{
67174041 64 if (*rt != NULL)
718e3744 65 {
67174041
AS
66 bgp_table_unlock(*rt);
67 *rt = NULL;
718e3744 68 }
718e3744 69}
70
67174041
AS
71/*
72 * bgp_node_create
73 */
74static struct route_node *
75bgp_node_create (route_table_delegate_t *delegate, struct route_table *table)
718e3744 76{
718e3744 77 struct bgp_node *node;
67174041
AS
78 node = XCALLOC (MTYPE_BGP_NODE, sizeof (struct bgp_node));
79 return bgp_node_to_rnode (node);
718e3744 80}
81
67174041
AS
82/*
83 * bgp_node_destroy
84 */
b608d5b5 85static void
67174041
AS
86bgp_node_destroy (route_table_delegate_t *delegate,
87 struct route_table *table, struct route_node *node)
718e3744 88{
67174041
AS
89 struct bgp_node *bgp_node;
90 bgp_node = bgp_node_from_rnode (node);
91 XFREE (MTYPE_BGP_NODE, bgp_node);
718e3744 92}
93
67174041
AS
94/*
95 * Function vector to customize the behavior of the route table
96 * library for BGP route tables.
97 */
98route_table_delegate_t bgp_table_delegate = {
99 .create_node = bgp_node_create,
100 .destroy_node = bgp_node_destroy
101};
718e3744 102
67174041
AS
103/*
104 * bgp_table_init
105 */
106struct bgp_table *
107bgp_table_init (afi_t afi, safi_t safi)
718e3744 108{
67174041 109 struct bgp_table *rt;
718e3744 110
67174041 111 rt = XCALLOC (MTYPE_BGP_TABLE, sizeof (struct bgp_table));
718e3744 112
67174041 113 rt->route_table = route_table_init_with_delegate (&bgp_table_delegate);
718e3744 114
67174041
AS
115 /*
116 * Set up back pointer to bgp_table.
117 */
118 rt->route_table->info = rt;
718e3744 119
67174041 120 bgp_table_lock (rt);
67174041
AS
121 rt->afi = afi;
122 rt->safi = safi;
cbdfbaa5 123
67174041 124 return rt;
cbdfbaa5 125}