]>
git.proxmox.com Git - mirror_frr.git/blob - bgpd/bgp_advertise.c
1 /* BGP advertisement and adjacency
2 * Copyright (C) 1996, 97, 98, 99, 2000 Kunihiro Ishiguro
4 * This file is part of GNU Zebra.
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
31 #include "bgpd/bgpd.h"
32 #include "bgpd/bgp_table.h"
33 #include "bgpd/bgp_route.h"
34 #include "bgpd/bgp_advertise.h"
35 #include "bgpd/bgp_attr.h"
36 #include "bgpd/bgp_debug.h"
37 #include "bgpd/bgp_aspath.h"
38 #include "bgpd/bgp_packet.h"
39 #include "bgpd/bgp_fsm.h"
40 #include "bgpd/bgp_mplsvpn.h"
41 #include "bgpd/bgp_updgrp.h"
43 /* BGP advertise attribute is used for pack same attribute update into
44 one packet. To do that we maintain attribute hash in struct
46 struct bgp_advertise_attr
*baa_new(void)
48 return XCALLOC(MTYPE_BGP_ADVERTISE_ATTR
,
49 sizeof(struct bgp_advertise_attr
));
52 static void baa_free(struct bgp_advertise_attr
*baa
)
54 XFREE(MTYPE_BGP_ADVERTISE_ATTR
, baa
);
57 static void *baa_hash_alloc(void *p
)
59 struct bgp_advertise_attr
*ref
= (struct bgp_advertise_attr
*)p
;
60 struct bgp_advertise_attr
*baa
;
63 baa
->attr
= ref
->attr
;
67 unsigned int baa_hash_key(const void *p
)
69 const struct bgp_advertise_attr
*baa
= p
;
71 return attrhash_key_make(baa
->attr
);
74 bool baa_hash_cmp(const void *p1
, const void *p2
)
76 const struct bgp_advertise_attr
*baa1
= p1
;
77 const struct bgp_advertise_attr
*baa2
= p2
;
79 return attrhash_cmp(baa1
->attr
, baa2
->attr
);
82 /* BGP update and withdraw information is stored in BGP advertise
83 structure. This structure is referred from BGP adjacency
85 struct bgp_advertise
*bgp_advertise_new(void)
87 return XCALLOC(MTYPE_BGP_ADVERTISE
, sizeof(struct bgp_advertise
));
90 void bgp_advertise_free(struct bgp_advertise
*adv
)
93 /* bgp_advertise bgp_path_info reference */
94 bgp_path_info_unlock(adv
->pathi
);
95 XFREE(MTYPE_BGP_ADVERTISE
, adv
);
98 void bgp_advertise_add(struct bgp_advertise_attr
*baa
,
99 struct bgp_advertise
*adv
)
101 adv
->next
= baa
->adv
;
103 baa
->adv
->prev
= adv
;
107 void bgp_advertise_delete(struct bgp_advertise_attr
*baa
,
108 struct bgp_advertise
*adv
)
111 adv
->next
->prev
= adv
->prev
;
113 adv
->prev
->next
= adv
->next
;
115 baa
->adv
= adv
->next
;
118 struct bgp_advertise_attr
*bgp_advertise_intern(struct hash
*hash
,
121 struct bgp_advertise_attr ref
;
122 struct bgp_advertise_attr
*baa
;
124 ref
.attr
= bgp_attr_intern(attr
);
125 baa
= (struct bgp_advertise_attr
*)hash_get(hash
, &ref
, baa_hash_alloc
);
131 void bgp_advertise_unintern(struct hash
*hash
, struct bgp_advertise_attr
*baa
)
136 if (baa
->refcnt
&& baa
->attr
)
137 bgp_attr_unintern(&baa
->attr
);
140 hash_release(hash
, baa
);
141 bgp_attr_unintern(&baa
->attr
);
147 int bgp_adj_out_lookup(struct peer
*peer
, struct bgp_node
*rn
,
148 uint32_t addpath_tx_id
)
150 struct bgp_adj_out
*adj
;
156 RB_FOREACH (adj
, bgp_adj_out_rb
, &rn
->adj_out
)
157 SUBGRP_FOREACH_PEER (adj
->subgroup
, paf
)
158 if (paf
->peer
== peer
) {
159 afi
= SUBGRP_AFI(adj
->subgroup
);
160 safi
= SUBGRP_SAFI(adj
->subgroup
);
162 bgp_addpath_encode_tx(peer
, afi
, safi
);
164 /* Match on a specific addpath_tx_id if we are
167 * peer and if an addpath_tx_id was specified */
168 if (addpath_capable
&& addpath_tx_id
169 && adj
->addpath_tx_id
!= addpath_tx_id
)
172 return (adj
->adv
? (adj
->adv
->baa
? 1 : 0)
173 : (adj
->attr
? 1 : 0));
180 void bgp_adj_in_set(struct bgp_node
*rn
, struct peer
*peer
, struct attr
*attr
,
183 struct bgp_adj_in
*adj
;
185 for (adj
= rn
->adj_in
; adj
; adj
= adj
->next
) {
186 if (adj
->peer
== peer
&& adj
->addpath_rx_id
== addpath_id
) {
187 if (adj
->attr
!= attr
) {
188 bgp_attr_unintern(&adj
->attr
);
189 adj
->attr
= bgp_attr_intern(attr
);
194 adj
= XCALLOC(MTYPE_BGP_ADJ_IN
, sizeof(struct bgp_adj_in
));
195 adj
->peer
= peer_lock(peer
); /* adj_in peer reference */
196 adj
->attr
= bgp_attr_intern(attr
);
197 adj
->addpath_rx_id
= addpath_id
;
198 BGP_ADJ_IN_ADD(rn
, adj
);
202 void bgp_adj_in_remove(struct bgp_node
*rn
, struct bgp_adj_in
*bai
)
204 bgp_attr_unintern(&bai
->attr
);
205 BGP_ADJ_IN_DEL(rn
, bai
);
206 peer_unlock(bai
->peer
); /* adj_in peer reference */
207 XFREE(MTYPE_BGP_ADJ_IN
, bai
);
210 int bgp_adj_in_unset(struct bgp_node
*rn
, struct peer
*peer
,
213 struct bgp_adj_in
*adj
;
214 struct bgp_adj_in
*adj_next
;
222 adj_next
= adj
->next
;
224 if (adj
->peer
== peer
&& adj
->addpath_rx_id
== addpath_id
) {
225 bgp_adj_in_remove(rn
, adj
);
235 void bgp_sync_init(struct peer
*peer
)
239 struct bgp_synchronize
*sync
;
241 FOREACH_AFI_SAFI (afi
, safi
) {
242 sync
= XCALLOC(MTYPE_BGP_SYNCHRONISE
,
243 sizeof(struct bgp_synchronize
));
244 bgp_adv_fifo_init(&sync
->update
);
245 bgp_adv_fifo_init(&sync
->withdraw
);
246 bgp_adv_fifo_init(&sync
->withdraw_low
);
247 peer
->sync
[afi
][safi
] = sync
;
251 void bgp_sync_delete(struct peer
*peer
)
256 FOREACH_AFI_SAFI (afi
, safi
) {
257 XFREE(MTYPE_BGP_SYNCHRONISE
, peer
->sync
[afi
][safi
]);
258 peer
->sync
[afi
][safi
] = NULL
;