paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | /* BGP nexthop scan |
| 2 | Copyright (C) 2000 Kunihiro Ishiguro |
| 3 | |
| 4 | This file is part of GNU Zebra. |
| 5 | |
| 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 |
| 9 | later version. |
| 10 | |
| 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. |
| 15 | |
| 16 | You should have received a copy of the GNU General Public License |
| 17 | along with GNU Zebra; see the file COPYING. If not, write to the Free |
| 18 | Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
| 19 | 02111-1307, USA. */ |
| 20 | |
| 21 | #include <zebra.h> |
| 22 | |
| 23 | #include "command.h" |
| 24 | #include "thread.h" |
| 25 | #include "prefix.h" |
| 26 | #include "zclient.h" |
| 27 | #include "stream.h" |
| 28 | #include "network.h" |
| 29 | #include "log.h" |
| 30 | #include "memory.h" |
Jorge Boncompte [DTI2] | 10f9bf3 | 2012-05-07 16:52:52 +0000 | [diff] [blame] | 31 | #include "hash.h" |
| 32 | #include "jhash.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 33 | |
| 34 | #include "bgpd/bgpd.h" |
| 35 | #include "bgpd/bgp_table.h" |
| 36 | #include "bgpd/bgp_route.h" |
| 37 | #include "bgpd/bgp_attr.h" |
| 38 | #include "bgpd/bgp_nexthop.h" |
| 39 | #include "bgpd/bgp_debug.h" |
| 40 | #include "bgpd/bgp_damp.h" |
| 41 | #include "zebra/rib.h" |
| 42 | #include "zebra/zserv.h" /* For ZEBRA_SERV_PATH. */ |
| 43 | |
| 44 | struct bgp_nexthop_cache *zlookup_query (struct in_addr); |
| 45 | #ifdef HAVE_IPV6 |
| 46 | struct bgp_nexthop_cache *zlookup_query_ipv6 (struct in6_addr *); |
| 47 | #endif /* HAVE_IPV6 */ |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 48 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 49 | /* Only one BGP scan thread are activated at the same time. */ |
paul | 00d252c | 2005-05-23 14:19:54 +0000 | [diff] [blame] | 50 | static struct thread *bgp_scan_thread = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 51 | |
| 52 | /* BGP import thread */ |
paul | 00d252c | 2005-05-23 14:19:54 +0000 | [diff] [blame] | 53 | static struct thread *bgp_import_thread = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 54 | |
| 55 | /* BGP scan interval. */ |
paul | 00d252c | 2005-05-23 14:19:54 +0000 | [diff] [blame] | 56 | static int bgp_scan_interval; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 57 | |
| 58 | /* BGP import interval. */ |
paul | 00d252c | 2005-05-23 14:19:54 +0000 | [diff] [blame] | 59 | static int bgp_import_interval; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 60 | |
| 61 | /* Route table for next-hop lookup cache. */ |
paul | 00d252c | 2005-05-23 14:19:54 +0000 | [diff] [blame] | 62 | static struct bgp_table *bgp_nexthop_cache_table[AFI_MAX]; |
| 63 | static struct bgp_table *cache1_table[AFI_MAX]; |
| 64 | static struct bgp_table *cache2_table[AFI_MAX]; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 65 | |
| 66 | /* Route table for connected route. */ |
paul | 00d252c | 2005-05-23 14:19:54 +0000 | [diff] [blame] | 67 | static struct bgp_table *bgp_connected_table[AFI_MAX]; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 68 | |
| 69 | /* BGP nexthop lookup query client. */ |
Chris Caputo | 228da42 | 2009-07-18 05:44:03 +0000 | [diff] [blame] | 70 | struct zclient *zlookup = NULL; |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 71 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 72 | /* Add nexthop to the end of the list. */ |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 73 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 74 | bnc_nexthop_add (struct bgp_nexthop_cache *bnc, struct nexthop *nexthop) |
| 75 | { |
| 76 | struct nexthop *last; |
| 77 | |
| 78 | for (last = bnc->nexthop; last && last->next; last = last->next) |
| 79 | ; |
| 80 | if (last) |
| 81 | last->next = nexthop; |
| 82 | else |
| 83 | bnc->nexthop = nexthop; |
| 84 | nexthop->prev = last; |
| 85 | } |
| 86 | |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 87 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 88 | bnc_nexthop_free (struct bgp_nexthop_cache *bnc) |
| 89 | { |
| 90 | struct nexthop *nexthop; |
| 91 | struct nexthop *next = NULL; |
| 92 | |
| 93 | for (nexthop = bnc->nexthop; nexthop; nexthop = next) |
| 94 | { |
| 95 | next = nexthop->next; |
| 96 | XFREE (MTYPE_NEXTHOP, nexthop); |
| 97 | } |
| 98 | } |
| 99 | |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 100 | static struct bgp_nexthop_cache * |
Stephen Hemminger | 66e5cd8 | 2009-02-09 10:14:16 -0800 | [diff] [blame] | 101 | bnc_new (void) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 102 | { |
Stephen Hemminger | 393deb9 | 2008-08-18 14:13:29 -0700 | [diff] [blame] | 103 | return XCALLOC (MTYPE_BGP_NEXTHOP_CACHE, sizeof (struct bgp_nexthop_cache)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 104 | } |
| 105 | |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 106 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 107 | bnc_free (struct bgp_nexthop_cache *bnc) |
| 108 | { |
| 109 | bnc_nexthop_free (bnc); |
| 110 | XFREE (MTYPE_BGP_NEXTHOP_CACHE, bnc); |
| 111 | } |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 112 | |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 113 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 114 | bgp_nexthop_same (struct nexthop *next1, struct nexthop *next2) |
| 115 | { |
| 116 | if (next1->type != next2->type) |
| 117 | return 0; |
| 118 | |
| 119 | switch (next1->type) |
| 120 | { |
| 121 | case ZEBRA_NEXTHOP_IPV4: |
| 122 | if (! IPV4_ADDR_SAME (&next1->gate.ipv4, &next2->gate.ipv4)) |
| 123 | return 0; |
| 124 | break; |
Christian Franke | bb97e46 | 2013-05-25 14:01:35 +0000 | [diff] [blame] | 125 | case ZEBRA_NEXTHOP_IPV4_IFINDEX: |
| 126 | if (! IPV4_ADDR_SAME (&next1->gate.ipv4, &next2->gate.ipv4) |
| 127 | || next1->ifindex != next2->ifindex) |
| 128 | return 0; |
| 129 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 130 | case ZEBRA_NEXTHOP_IFINDEX: |
| 131 | case ZEBRA_NEXTHOP_IFNAME: |
| 132 | if (next1->ifindex != next2->ifindex) |
| 133 | return 0; |
| 134 | break; |
| 135 | #ifdef HAVE_IPV6 |
| 136 | case ZEBRA_NEXTHOP_IPV6: |
| 137 | if (! IPV6_ADDR_SAME (&next1->gate.ipv6, &next2->gate.ipv6)) |
| 138 | return 0; |
| 139 | break; |
| 140 | case ZEBRA_NEXTHOP_IPV6_IFINDEX: |
| 141 | case ZEBRA_NEXTHOP_IPV6_IFNAME: |
| 142 | if (! IPV6_ADDR_SAME (&next1->gate.ipv6, &next2->gate.ipv6)) |
| 143 | return 0; |
| 144 | if (next1->ifindex != next2->ifindex) |
| 145 | return 0; |
| 146 | break; |
| 147 | #endif /* HAVE_IPV6 */ |
hasso | fa2b17e | 2004-03-04 17:45:00 +0000 | [diff] [blame] | 148 | default: |
| 149 | /* do nothing */ |
| 150 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 151 | } |
| 152 | return 1; |
| 153 | } |
| 154 | |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 155 | static int |
Denis Ovsienko | 8e80bdf | 2011-08-05 18:52:52 +0400 | [diff] [blame] | 156 | bgp_nexthop_cache_different (struct bgp_nexthop_cache *bnc1, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 157 | struct bgp_nexthop_cache *bnc2) |
| 158 | { |
| 159 | int i; |
| 160 | struct nexthop *next1, *next2; |
| 161 | |
| 162 | if (bnc1->nexthop_num != bnc2->nexthop_num) |
| 163 | return 1; |
| 164 | |
| 165 | next1 = bnc1->nexthop; |
| 166 | next2 = bnc2->nexthop; |
| 167 | |
| 168 | for (i = 0; i < bnc1->nexthop_num; i++) |
| 169 | { |
| 170 | if (! bgp_nexthop_same (next1, next2)) |
| 171 | return 1; |
| 172 | |
| 173 | next1 = next1->next; |
| 174 | next2 = next2->next; |
| 175 | } |
| 176 | return 0; |
| 177 | } |
| 178 | |
| 179 | /* If nexthop exists on connected network return 1. */ |
| 180 | int |
Denis Ovsienko | 8e80bdf | 2011-08-05 18:52:52 +0400 | [diff] [blame] | 181 | bgp_nexthop_onlink (afi_t afi, struct attr *attr) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 182 | { |
| 183 | struct bgp_node *rn; |
Paul Jakma | fc98d16 | 2012-01-09 11:36:23 +0000 | [diff] [blame] | 184 | |
| 185 | /* If zebra is not enabled return */ |
| 186 | if (zlookup->sock < 0) |
| 187 | return 1; |
| 188 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 189 | /* Lookup the address is onlink or not. */ |
| 190 | if (afi == AFI_IP) |
| 191 | { |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 192 | rn = bgp_node_match_ipv4 (bgp_connected_table[AFI_IP], &attr->nexthop); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 193 | if (rn) |
| 194 | { |
| 195 | bgp_unlock_node (rn); |
| 196 | return 1; |
| 197 | } |
| 198 | } |
| 199 | #ifdef HAVE_IPV6 |
| 200 | else if (afi == AFI_IP6) |
| 201 | { |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 202 | if (attr->extra->mp_nexthop_len == 32) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 203 | return 1; |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 204 | else if (attr->extra->mp_nexthop_len == 16) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 205 | { |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 206 | if (IN6_IS_ADDR_LINKLOCAL (&attr->extra->mp_nexthop_global)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 207 | return 1; |
| 208 | |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 209 | rn = bgp_node_match_ipv6 (bgp_connected_table[AFI_IP6], |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 210 | &attr->extra->mp_nexthop_global); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 211 | if (rn) |
| 212 | { |
| 213 | bgp_unlock_node (rn); |
| 214 | return 1; |
| 215 | } |
| 216 | } |
| 217 | } |
| 218 | #endif /* HAVE_IPV6 */ |
| 219 | return 0; |
| 220 | } |
| 221 | |
| 222 | #ifdef HAVE_IPV6 |
| 223 | /* Check specified next-hop is reachable or not. */ |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 224 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 225 | bgp_nexthop_lookup_ipv6 (struct peer *peer, struct bgp_info *ri, int *changed, |
| 226 | int *metricchanged) |
| 227 | { |
| 228 | struct bgp_node *rn; |
| 229 | struct prefix p; |
| 230 | struct bgp_nexthop_cache *bnc; |
| 231 | struct attr *attr; |
Paul Jakma | fc98d16 | 2012-01-09 11:36:23 +0000 | [diff] [blame] | 232 | |
| 233 | /* If lookup is not enabled, return valid. */ |
| 234 | if (zlookup->sock < 0) |
| 235 | { |
| 236 | if (ri->extra) |
| 237 | ri->extra->igpmetric = 0; |
| 238 | return 1; |
| 239 | } |
| 240 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 241 | /* Only check IPv6 global address only nexthop. */ |
| 242 | attr = ri->attr; |
| 243 | |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 244 | if (attr->extra->mp_nexthop_len != 16 |
| 245 | || IN6_IS_ADDR_LINKLOCAL (&attr->extra->mp_nexthop_global)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 246 | return 1; |
| 247 | |
| 248 | memset (&p, 0, sizeof (struct prefix)); |
| 249 | p.family = AF_INET6; |
| 250 | p.prefixlen = IPV6_MAX_BITLEN; |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 251 | p.u.prefix6 = attr->extra->mp_nexthop_global; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 252 | |
| 253 | /* IBGP or ebgp-multihop */ |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 254 | rn = bgp_node_get (bgp_nexthop_cache_table[AFI_IP6], &p); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 255 | |
| 256 | if (rn->info) |
| 257 | { |
| 258 | bnc = rn->info; |
| 259 | bgp_unlock_node (rn); |
| 260 | } |
| 261 | else |
| 262 | { |
Denis Ovsienko | b64bfc1 | 2011-08-08 19:36:44 +0400 | [diff] [blame] | 263 | if (NULL == (bnc = zlookup_query_ipv6 (&attr->extra->mp_nexthop_global))) |
| 264 | bnc = bnc_new (); |
| 265 | else |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 266 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 267 | if (changed) |
| 268 | { |
Denis Ovsienko | 8e80bdf | 2011-08-05 18:52:52 +0400 | [diff] [blame] | 269 | struct bgp_table *old; |
| 270 | struct bgp_node *oldrn; |
| 271 | |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 272 | if (bgp_nexthop_cache_table[AFI_IP6] == cache1_table[AFI_IP6]) |
| 273 | old = cache2_table[AFI_IP6]; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 274 | else |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 275 | old = cache1_table[AFI_IP6]; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 276 | |
| 277 | oldrn = bgp_node_lookup (old, &p); |
| 278 | if (oldrn) |
| 279 | { |
Denis Ovsienko | 8e80bdf | 2011-08-05 18:52:52 +0400 | [diff] [blame] | 280 | struct bgp_nexthop_cache *oldbnc = oldrn->info; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 281 | |
Denis Ovsienko | 8e80bdf | 2011-08-05 18:52:52 +0400 | [diff] [blame] | 282 | bnc->changed = bgp_nexthop_cache_different (bnc, oldbnc); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 283 | |
| 284 | if (bnc->metric != oldbnc->metric) |
| 285 | bnc->metricchanged = 1; |
Chris Caputo | 6c88b44 | 2010-07-27 16:28:55 +0000 | [diff] [blame] | 286 | |
| 287 | bgp_unlock_node (oldrn); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 288 | } |
| 289 | } |
| 290 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 291 | rn->info = bnc; |
| 292 | } |
| 293 | |
| 294 | if (changed) |
| 295 | *changed = bnc->changed; |
| 296 | |
| 297 | if (metricchanged) |
| 298 | *metricchanged = bnc->metricchanged; |
| 299 | |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 300 | if (bnc->valid && bnc->metric) |
| 301 | (bgp_info_extra_get (ri))->igpmetric = bnc->metric; |
| 302 | else if (ri->extra) |
| 303 | ri->extra->igpmetric = 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 304 | |
| 305 | return bnc->valid; |
| 306 | } |
| 307 | #endif /* HAVE_IPV6 */ |
| 308 | |
| 309 | /* Check specified next-hop is reachable or not. */ |
| 310 | int |
| 311 | bgp_nexthop_lookup (afi_t afi, struct peer *peer, struct bgp_info *ri, |
| 312 | int *changed, int *metricchanged) |
| 313 | { |
| 314 | struct bgp_node *rn; |
| 315 | struct prefix p; |
| 316 | struct bgp_nexthop_cache *bnc; |
| 317 | struct in_addr addr; |
Paul Jakma | fc98d16 | 2012-01-09 11:36:23 +0000 | [diff] [blame] | 318 | |
| 319 | /* If lookup is not enabled, return valid. */ |
| 320 | if (zlookup->sock < 0) |
| 321 | { |
| 322 | if (ri->extra) |
| 323 | ri->extra->igpmetric = 0; |
| 324 | return 1; |
| 325 | } |
| 326 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 327 | #ifdef HAVE_IPV6 |
| 328 | if (afi == AFI_IP6) |
| 329 | return bgp_nexthop_lookup_ipv6 (peer, ri, changed, metricchanged); |
| 330 | #endif /* HAVE_IPV6 */ |
| 331 | |
| 332 | addr = ri->attr->nexthop; |
| 333 | |
| 334 | memset (&p, 0, sizeof (struct prefix)); |
| 335 | p.family = AF_INET; |
| 336 | p.prefixlen = IPV4_MAX_BITLEN; |
| 337 | p.u.prefix4 = addr; |
| 338 | |
| 339 | /* IBGP or ebgp-multihop */ |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 340 | rn = bgp_node_get (bgp_nexthop_cache_table[AFI_IP], &p); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 341 | |
| 342 | if (rn->info) |
| 343 | { |
| 344 | bnc = rn->info; |
| 345 | bgp_unlock_node (rn); |
| 346 | } |
| 347 | else |
| 348 | { |
Denis Ovsienko | b64bfc1 | 2011-08-08 19:36:44 +0400 | [diff] [blame] | 349 | if (NULL == (bnc = zlookup_query (addr))) |
| 350 | bnc = bnc_new (); |
| 351 | else |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 352 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 353 | if (changed) |
| 354 | { |
Denis Ovsienko | 8e80bdf | 2011-08-05 18:52:52 +0400 | [diff] [blame] | 355 | struct bgp_table *old; |
| 356 | struct bgp_node *oldrn; |
| 357 | |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 358 | if (bgp_nexthop_cache_table[AFI_IP] == cache1_table[AFI_IP]) |
| 359 | old = cache2_table[AFI_IP]; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 360 | else |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 361 | old = cache1_table[AFI_IP]; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 362 | |
| 363 | oldrn = bgp_node_lookup (old, &p); |
| 364 | if (oldrn) |
| 365 | { |
Denis Ovsienko | 8e80bdf | 2011-08-05 18:52:52 +0400 | [diff] [blame] | 366 | struct bgp_nexthop_cache *oldbnc = oldrn->info; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 367 | |
Denis Ovsienko | 8e80bdf | 2011-08-05 18:52:52 +0400 | [diff] [blame] | 368 | bnc->changed = bgp_nexthop_cache_different (bnc, oldbnc); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 369 | |
| 370 | if (bnc->metric != oldbnc->metric) |
| 371 | bnc->metricchanged = 1; |
Chris Caputo | 6c88b44 | 2010-07-27 16:28:55 +0000 | [diff] [blame] | 372 | |
| 373 | bgp_unlock_node (oldrn); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 374 | } |
| 375 | } |
| 376 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 377 | rn->info = bnc; |
| 378 | } |
| 379 | |
| 380 | if (changed) |
| 381 | *changed = bnc->changed; |
| 382 | |
| 383 | if (metricchanged) |
| 384 | *metricchanged = bnc->metricchanged; |
| 385 | |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 386 | if (bnc->valid && bnc->metric) |
| 387 | (bgp_info_extra_get(ri))->igpmetric = bnc->metric; |
| 388 | else if (ri->extra) |
| 389 | ri->extra->igpmetric = 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 390 | |
| 391 | return bnc->valid; |
| 392 | } |
| 393 | |
| 394 | /* Reset and free all BGP nexthop cache. */ |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 395 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 396 | bgp_nexthop_cache_reset (struct bgp_table *table) |
| 397 | { |
| 398 | struct bgp_node *rn; |
| 399 | struct bgp_nexthop_cache *bnc; |
| 400 | |
| 401 | for (rn = bgp_table_top (table); rn; rn = bgp_route_next (rn)) |
| 402 | if ((bnc = rn->info) != NULL) |
| 403 | { |
| 404 | bnc_free (bnc); |
| 405 | rn->info = NULL; |
| 406 | bgp_unlock_node (rn); |
| 407 | } |
| 408 | } |
| 409 | |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 410 | static void |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 411 | bgp_scan (afi_t afi, safi_t safi) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 412 | { |
| 413 | struct bgp_node *rn; |
| 414 | struct bgp *bgp; |
| 415 | struct bgp_info *bi; |
| 416 | struct bgp_info *next; |
| 417 | struct peer *peer; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 418 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 419 | int valid; |
| 420 | int current; |
| 421 | int changed; |
| 422 | int metricchanged; |
| 423 | |
| 424 | /* Change cache. */ |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 425 | if (bgp_nexthop_cache_table[afi] == cache1_table[afi]) |
| 426 | bgp_nexthop_cache_table[afi] = cache2_table[afi]; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 427 | else |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 428 | bgp_nexthop_cache_table[afi] = cache1_table[afi]; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 429 | |
| 430 | /* Get default bgp. */ |
| 431 | bgp = bgp_get_default (); |
| 432 | if (bgp == NULL) |
| 433 | return; |
| 434 | |
| 435 | /* Maximum prefix check */ |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 436 | for (ALL_LIST_ELEMENTS (bgp->peer, node, nnode, peer)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 437 | { |
| 438 | if (peer->status != Established) |
| 439 | continue; |
| 440 | |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 441 | if (peer->afc[afi][SAFI_UNICAST]) |
| 442 | bgp_maximum_prefix_overflow (peer, afi, SAFI_UNICAST, 1); |
| 443 | if (peer->afc[afi][SAFI_MULTICAST]) |
| 444 | bgp_maximum_prefix_overflow (peer, afi, SAFI_MULTICAST, 1); |
| 445 | if (peer->afc[afi][SAFI_MPLS_VPN]) |
| 446 | bgp_maximum_prefix_overflow (peer, afi, SAFI_MPLS_VPN, 1); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 447 | } |
| 448 | |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 449 | for (rn = bgp_table_top (bgp->rib[afi][SAFI_UNICAST]); rn; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 450 | rn = bgp_route_next (rn)) |
| 451 | { |
| 452 | for (bi = rn->info; bi; bi = next) |
| 453 | { |
| 454 | next = bi->next; |
| 455 | |
| 456 | if (bi->type == ZEBRA_ROUTE_BGP && bi->sub_type == BGP_ROUTE_NORMAL) |
| 457 | { |
| 458 | changed = 0; |
| 459 | metricchanged = 0; |
| 460 | |
Christian Franke | a0f6ce5 | 2013-04-11 08:24:30 +0000 | [diff] [blame] | 461 | if (bi->peer->sort == BGP_PEER_EBGP && bi->peer->ttl == 1 |
| 462 | && !CHECK_FLAG(bi->peer->flags, PEER_FLAG_DISABLE_CONNECTED_CHECK)) |
Denis Ovsienko | 8e80bdf | 2011-08-05 18:52:52 +0400 | [diff] [blame] | 463 | valid = bgp_nexthop_onlink (afi, bi->attr); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 464 | else |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 465 | valid = bgp_nexthop_lookup (afi, bi->peer, bi, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 466 | &changed, &metricchanged); |
| 467 | |
| 468 | current = CHECK_FLAG (bi->flags, BGP_INFO_VALID) ? 1 : 0; |
| 469 | |
| 470 | if (changed) |
| 471 | SET_FLAG (bi->flags, BGP_INFO_IGP_CHANGED); |
| 472 | else |
| 473 | UNSET_FLAG (bi->flags, BGP_INFO_IGP_CHANGED); |
| 474 | |
| 475 | if (valid != current) |
| 476 | { |
| 477 | if (CHECK_FLAG (bi->flags, BGP_INFO_VALID)) |
| 478 | { |
| 479 | bgp_aggregate_decrement (bgp, &rn->p, bi, |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 480 | afi, SAFI_UNICAST); |
Paul Jakma | 1a392d4 | 2006-09-07 00:24:49 +0000 | [diff] [blame] | 481 | bgp_info_unset_flag (rn, bi, BGP_INFO_VALID); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 482 | } |
| 483 | else |
| 484 | { |
Paul Jakma | 1a392d4 | 2006-09-07 00:24:49 +0000 | [diff] [blame] | 485 | bgp_info_set_flag (rn, bi, BGP_INFO_VALID); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 486 | bgp_aggregate_increment (bgp, &rn->p, bi, |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 487 | afi, SAFI_UNICAST); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 488 | } |
| 489 | } |
| 490 | |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 491 | if (CHECK_FLAG (bgp->af_flags[afi][SAFI_UNICAST], |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 492 | BGP_CONFIG_DAMPENING) |
Paul Jakma | fb982c2 | 2007-05-04 20:15:47 +0000 | [diff] [blame] | 493 | && bi->extra && bi->extra->damp_info ) |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 494 | if (bgp_damp_scan (bi, afi, SAFI_UNICAST)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 495 | bgp_aggregate_increment (bgp, &rn->p, bi, |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 496 | afi, SAFI_UNICAST); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 497 | } |
| 498 | } |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 499 | bgp_process (bgp, rn, afi, SAFI_UNICAST); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 500 | } |
| 501 | |
| 502 | /* Flash old cache. */ |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 503 | if (bgp_nexthop_cache_table[afi] == cache1_table[afi]) |
| 504 | bgp_nexthop_cache_reset (cache2_table[afi]); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 505 | else |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 506 | bgp_nexthop_cache_reset (cache1_table[afi]); |
hasso | f418446 | 2005-02-01 20:13:16 +0000 | [diff] [blame] | 507 | |
| 508 | if (BGP_DEBUG (events, EVENTS)) |
| 509 | { |
| 510 | if (afi == AFI_IP) |
| 511 | zlog_debug ("scanning IPv4 Unicast routing tables"); |
| 512 | else if (afi == AFI_IP6) |
| 513 | zlog_debug ("scanning IPv6 Unicast routing tables"); |
| 514 | } |
Christian Franke | dcab1bb | 2012-12-07 16:45:52 +0000 | [diff] [blame] | 515 | |
| 516 | /* Reevaluate default-originate route-maps and announce/withdraw |
| 517 | * default route if neccesary. */ |
| 518 | for (ALL_LIST_ELEMENTS (bgp->peer, node, nnode, peer)) |
| 519 | { |
| 520 | if (peer->status == Established |
| 521 | && CHECK_FLAG(peer->af_flags[afi][safi], PEER_FLAG_DEFAULT_ORIGINATE) |
| 522 | && peer->default_rmap[afi][safi].name) |
| 523 | bgp_default_originate (peer, afi, safi, 0); |
| 524 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 525 | } |
| 526 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 527 | /* BGP scan thread. This thread check nexthop reachability. */ |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 528 | static int |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 529 | bgp_scan_timer (struct thread *t) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 530 | { |
| 531 | bgp_scan_thread = |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 532 | thread_add_timer (master, bgp_scan_timer, NULL, bgp_scan_interval); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 533 | |
hasso | f418446 | 2005-02-01 20:13:16 +0000 | [diff] [blame] | 534 | if (BGP_DEBUG (events, EVENTS)) |
ajs | 478ba05 | 2004-12-08 20:41:23 +0000 | [diff] [blame] | 535 | zlog_debug ("Performing BGP general scanning"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 536 | |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 537 | bgp_scan (AFI_IP, SAFI_UNICAST); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 538 | |
| 539 | #ifdef HAVE_IPV6 |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 540 | bgp_scan (AFI_IP6, SAFI_UNICAST); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 541 | #endif /* HAVE_IPV6 */ |
| 542 | |
| 543 | return 0; |
| 544 | } |
Jorge Boncompte [DTI2] | 10f9bf3 | 2012-05-07 16:52:52 +0000 | [diff] [blame] | 545 | |
| 546 | /* BGP own address structure */ |
| 547 | struct bgp_addr |
| 548 | { |
| 549 | struct in_addr addr; |
| 550 | int refcnt; |
| 551 | }; |
| 552 | |
| 553 | static struct hash *bgp_address_hash; |
| 554 | |
| 555 | static void * |
| 556 | bgp_address_hash_alloc (void *p) |
| 557 | { |
| 558 | struct in_addr *val = p; |
| 559 | struct bgp_addr *addr; |
| 560 | |
| 561 | addr = XMALLOC (MTYPE_BGP_ADDR, sizeof (struct bgp_addr)); |
| 562 | addr->refcnt = 0; |
| 563 | addr->addr.s_addr = val->s_addr; |
| 564 | |
| 565 | return addr; |
| 566 | } |
| 567 | |
| 568 | static unsigned int |
| 569 | bgp_address_hash_key_make (void *p) |
| 570 | { |
| 571 | const struct bgp_addr *addr = p; |
| 572 | |
| 573 | return jhash_1word(addr->addr.s_addr, 0); |
| 574 | } |
| 575 | |
| 576 | static int |
| 577 | bgp_address_hash_cmp (const void *p1, const void *p2) |
| 578 | { |
| 579 | const struct bgp_addr *addr1 = p1; |
| 580 | const struct bgp_addr *addr2 = p2; |
| 581 | |
| 582 | return addr1->addr.s_addr == addr2->addr.s_addr; |
| 583 | } |
| 584 | |
| 585 | void |
| 586 | bgp_address_init (void) |
| 587 | { |
| 588 | bgp_address_hash = hash_create (bgp_address_hash_key_make, |
| 589 | bgp_address_hash_cmp); |
| 590 | } |
| 591 | |
| 592 | static void |
| 593 | bgp_address_add (struct prefix *p) |
| 594 | { |
| 595 | struct bgp_addr tmp; |
| 596 | struct bgp_addr *addr; |
| 597 | |
| 598 | tmp.addr = p->u.prefix4; |
| 599 | |
| 600 | addr = hash_get (bgp_address_hash, &tmp, bgp_address_hash_alloc); |
| 601 | addr->refcnt++; |
| 602 | } |
| 603 | |
| 604 | static void |
| 605 | bgp_address_del (struct prefix *p) |
| 606 | { |
| 607 | struct bgp_addr tmp; |
| 608 | struct bgp_addr *addr; |
| 609 | |
| 610 | tmp.addr = p->u.prefix4; |
| 611 | |
| 612 | addr = hash_lookup (bgp_address_hash, &tmp); |
Rakesh Garimella | 9e47abd | 2013-03-11 12:38:31 +0000 | [diff] [blame] | 613 | /* may have been deleted earlier by bgp_interface_down() */ |
| 614 | if (addr == NULL) |
| 615 | return; |
| 616 | |
Jorge Boncompte [DTI2] | 10f9bf3 | 2012-05-07 16:52:52 +0000 | [diff] [blame] | 617 | addr->refcnt--; |
| 618 | |
| 619 | if (addr->refcnt == 0) |
| 620 | { |
| 621 | hash_release (bgp_address_hash, addr); |
| 622 | XFREE (MTYPE_BGP_ADDR, addr); |
| 623 | } |
| 624 | } |
| 625 | |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 626 | |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 627 | struct bgp_connected_ref |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 628 | { |
| 629 | unsigned int refcnt; |
| 630 | }; |
| 631 | |
| 632 | void |
| 633 | bgp_connected_add (struct connected *ifc) |
| 634 | { |
| 635 | struct prefix p; |
| 636 | struct prefix *addr; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 637 | struct interface *ifp; |
| 638 | struct bgp_node *rn; |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 639 | struct bgp_connected_ref *bc; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 640 | |
| 641 | ifp = ifc->ifp; |
| 642 | |
| 643 | if (! ifp) |
| 644 | return; |
| 645 | |
| 646 | if (if_is_loopback (ifp)) |
| 647 | return; |
| 648 | |
| 649 | addr = ifc->address; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 650 | |
| 651 | if (addr->family == AF_INET) |
| 652 | { |
Andrew J. Schorr | e452963 | 2006-12-12 19:18:21 +0000 | [diff] [blame] | 653 | PREFIX_COPY_IPV4(&p, CONNECTED_PREFIX(ifc)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 654 | apply_mask_ipv4 ((struct prefix_ipv4 *) &p); |
| 655 | |
| 656 | if (prefix_ipv4_any ((struct prefix_ipv4 *) &p)) |
| 657 | return; |
| 658 | |
Jorge Boncompte [DTI2] | 10f9bf3 | 2012-05-07 16:52:52 +0000 | [diff] [blame] | 659 | bgp_address_add (addr); |
| 660 | |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 661 | rn = bgp_node_get (bgp_connected_table[AFI_IP], (struct prefix *) &p); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 662 | if (rn->info) |
| 663 | { |
| 664 | bc = rn->info; |
| 665 | bc->refcnt++; |
| 666 | } |
| 667 | else |
| 668 | { |
Chris Caputo | 6c88b44 | 2010-07-27 16:28:55 +0000 | [diff] [blame] | 669 | bc = XCALLOC (MTYPE_BGP_CONN, sizeof (struct bgp_connected_ref)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 670 | bc->refcnt = 1; |
| 671 | rn->info = bc; |
| 672 | } |
| 673 | } |
| 674 | #ifdef HAVE_IPV6 |
Andrew J. Schorr | e452963 | 2006-12-12 19:18:21 +0000 | [diff] [blame] | 675 | else if (addr->family == AF_INET6) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 676 | { |
Andrew J. Schorr | e452963 | 2006-12-12 19:18:21 +0000 | [diff] [blame] | 677 | PREFIX_COPY_IPV6(&p, CONNECTED_PREFIX(ifc)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 678 | apply_mask_ipv6 ((struct prefix_ipv6 *) &p); |
| 679 | |
| 680 | if (IN6_IS_ADDR_UNSPECIFIED (&p.u.prefix6)) |
| 681 | return; |
| 682 | |
| 683 | if (IN6_IS_ADDR_LINKLOCAL (&p.u.prefix6)) |
| 684 | return; |
| 685 | |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 686 | rn = bgp_node_get (bgp_connected_table[AFI_IP6], (struct prefix *) &p); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 687 | if (rn->info) |
| 688 | { |
| 689 | bc = rn->info; |
| 690 | bc->refcnt++; |
| 691 | } |
| 692 | else |
| 693 | { |
Chris Caputo | 6c88b44 | 2010-07-27 16:28:55 +0000 | [diff] [blame] | 694 | bc = XCALLOC (MTYPE_BGP_CONN, sizeof (struct bgp_connected_ref)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 695 | bc->refcnt = 1; |
| 696 | rn->info = bc; |
| 697 | } |
| 698 | } |
| 699 | #endif /* HAVE_IPV6 */ |
| 700 | } |
| 701 | |
| 702 | void |
| 703 | bgp_connected_delete (struct connected *ifc) |
| 704 | { |
| 705 | struct prefix p; |
| 706 | struct prefix *addr; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 707 | struct interface *ifp; |
| 708 | struct bgp_node *rn; |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 709 | struct bgp_connected_ref *bc; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 710 | |
| 711 | ifp = ifc->ifp; |
| 712 | |
| 713 | if (if_is_loopback (ifp)) |
| 714 | return; |
| 715 | |
| 716 | addr = ifc->address; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 717 | |
| 718 | if (addr->family == AF_INET) |
| 719 | { |
Andrew J. Schorr | e452963 | 2006-12-12 19:18:21 +0000 | [diff] [blame] | 720 | PREFIX_COPY_IPV4(&p, CONNECTED_PREFIX(ifc)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 721 | apply_mask_ipv4 ((struct prefix_ipv4 *) &p); |
| 722 | |
| 723 | if (prefix_ipv4_any ((struct prefix_ipv4 *) &p)) |
| 724 | return; |
| 725 | |
Jorge Boncompte [DTI2] | 10f9bf3 | 2012-05-07 16:52:52 +0000 | [diff] [blame] | 726 | bgp_address_del (addr); |
| 727 | |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 728 | rn = bgp_node_lookup (bgp_connected_table[AFI_IP], &p); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 729 | if (! rn) |
| 730 | return; |
| 731 | |
| 732 | bc = rn->info; |
| 733 | bc->refcnt--; |
| 734 | if (bc->refcnt == 0) |
| 735 | { |
Chris Caputo | 6c88b44 | 2010-07-27 16:28:55 +0000 | [diff] [blame] | 736 | XFREE (MTYPE_BGP_CONN, bc); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 737 | rn->info = NULL; |
| 738 | } |
| 739 | bgp_unlock_node (rn); |
| 740 | bgp_unlock_node (rn); |
| 741 | } |
| 742 | #ifdef HAVE_IPV6 |
| 743 | else if (addr->family == AF_INET6) |
| 744 | { |
Andrew J. Schorr | e452963 | 2006-12-12 19:18:21 +0000 | [diff] [blame] | 745 | PREFIX_COPY_IPV6(&p, CONNECTED_PREFIX(ifc)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 746 | apply_mask_ipv6 ((struct prefix_ipv6 *) &p); |
| 747 | |
| 748 | if (IN6_IS_ADDR_UNSPECIFIED (&p.u.prefix6)) |
| 749 | return; |
| 750 | |
| 751 | if (IN6_IS_ADDR_LINKLOCAL (&p.u.prefix6)) |
| 752 | return; |
| 753 | |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 754 | rn = bgp_node_lookup (bgp_connected_table[AFI_IP6], (struct prefix *) &p); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 755 | if (! rn) |
| 756 | return; |
| 757 | |
| 758 | bc = rn->info; |
| 759 | bc->refcnt--; |
| 760 | if (bc->refcnt == 0) |
| 761 | { |
Chris Caputo | 6c88b44 | 2010-07-27 16:28:55 +0000 | [diff] [blame] | 762 | XFREE (MTYPE_BGP_CONN, bc); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 763 | rn->info = NULL; |
| 764 | } |
| 765 | bgp_unlock_node (rn); |
| 766 | bgp_unlock_node (rn); |
| 767 | } |
| 768 | #endif /* HAVE_IPV6 */ |
| 769 | } |
| 770 | |
| 771 | int |
Jorge Boncompte [DTI2] | 10f9bf3 | 2012-05-07 16:52:52 +0000 | [diff] [blame] | 772 | bgp_nexthop_self (struct attr *attr) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 773 | { |
Jorge Boncompte [DTI2] | 10f9bf3 | 2012-05-07 16:52:52 +0000 | [diff] [blame] | 774 | struct bgp_addr tmp, *addr; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 775 | |
Jorge Boncompte [DTI2] | 10f9bf3 | 2012-05-07 16:52:52 +0000 | [diff] [blame] | 776 | tmp.addr = attr->nexthop; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 777 | |
Jorge Boncompte [DTI2] | 10f9bf3 | 2012-05-07 16:52:52 +0000 | [diff] [blame] | 778 | addr = hash_lookup (bgp_address_hash, &tmp); |
| 779 | if (addr) |
| 780 | return 1; |
| 781 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 782 | return 0; |
| 783 | } |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 784 | |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 785 | static struct bgp_nexthop_cache * |
Stephen Hemminger | 66e5cd8 | 2009-02-09 10:14:16 -0800 | [diff] [blame] | 786 | zlookup_read (void) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 787 | { |
| 788 | struct stream *s; |
paul | d3092e7 | 2006-01-17 17:33:46 +0000 | [diff] [blame] | 789 | uint16_t length; |
| 790 | u_char marker; |
| 791 | u_char version; |
Nicolas Dichtel | 794c473 | 2015-09-16 09:42:36 +0200 | [diff] [blame] | 792 | uint16_t vrf_id; |
| 793 | uint16_t command; |
| 794 | int err; |
Paul Jakma | 7aa9dce | 2014-09-19 14:42:23 +0100 | [diff] [blame] | 795 | struct in_addr raddr __attribute__((unused)); |
paul | d3092e7 | 2006-01-17 17:33:46 +0000 | [diff] [blame] | 796 | uint32_t metric; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 797 | int i; |
| 798 | u_char nexthop_num; |
| 799 | struct nexthop *nexthop; |
| 800 | struct bgp_nexthop_cache *bnc; |
| 801 | |
| 802 | s = zlookup->ibuf; |
| 803 | stream_reset (s); |
| 804 | |
Nicolas Dichtel | 794c473 | 2015-09-16 09:42:36 +0200 | [diff] [blame] | 805 | err = zclient_read_header (s, zlookup->sock, &length, &marker, &version, |
| 806 | &vrf_id, &command); |
| 807 | if (err < 0) |
| 808 | { |
| 809 | zlog_err("%s: zserv_read_header() failed", __func__); |
| 810 | return NULL; |
| 811 | } |
Donald Sharp | a9d4cb3 | 2015-09-17 10:54:25 -0400 | [diff] [blame] | 812 | |
Paul Jakma | 7aa9dce | 2014-09-19 14:42:23 +0100 | [diff] [blame] | 813 | /* XXX: not doing anything with raddr */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 814 | raddr.s_addr = stream_get_ipv4 (s); |
| 815 | metric = stream_getl (s); |
| 816 | nexthop_num = stream_getc (s); |
| 817 | |
| 818 | if (nexthop_num) |
| 819 | { |
| 820 | bnc = bnc_new (); |
| 821 | bnc->valid = 1; |
| 822 | bnc->metric = metric; |
| 823 | bnc->nexthop_num = nexthop_num; |
| 824 | |
| 825 | for (i = 0; i < nexthop_num; i++) |
| 826 | { |
Stephen Hemminger | 393deb9 | 2008-08-18 14:13:29 -0700 | [diff] [blame] | 827 | nexthop = XCALLOC (MTYPE_NEXTHOP, sizeof (struct nexthop)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 828 | nexthop->type = stream_getc (s); |
| 829 | switch (nexthop->type) |
| 830 | { |
| 831 | case ZEBRA_NEXTHOP_IPV4: |
| 832 | nexthop->gate.ipv4.s_addr = stream_get_ipv4 (s); |
| 833 | break; |
Christian Franke | bb97e46 | 2013-05-25 14:01:35 +0000 | [diff] [blame] | 834 | case ZEBRA_NEXTHOP_IPV4_IFINDEX: |
| 835 | nexthop->gate.ipv4.s_addr = stream_get_ipv4 (s); |
| 836 | nexthop->ifindex = stream_getl (s); |
| 837 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 838 | case ZEBRA_NEXTHOP_IFINDEX: |
| 839 | case ZEBRA_NEXTHOP_IFNAME: |
| 840 | nexthop->ifindex = stream_getl (s); |
| 841 | break; |
hasso | fa2b17e | 2004-03-04 17:45:00 +0000 | [diff] [blame] | 842 | default: |
| 843 | /* do nothing */ |
| 844 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 845 | } |
| 846 | bnc_nexthop_add (bnc, nexthop); |
| 847 | } |
| 848 | } |
| 849 | else |
| 850 | return NULL; |
| 851 | |
| 852 | return bnc; |
| 853 | } |
| 854 | |
| 855 | struct bgp_nexthop_cache * |
| 856 | zlookup_query (struct in_addr addr) |
| 857 | { |
| 858 | int ret; |
| 859 | struct stream *s; |
| 860 | |
| 861 | /* Check socket. */ |
| 862 | if (zlookup->sock < 0) |
| 863 | return NULL; |
| 864 | |
| 865 | s = zlookup->obuf; |
| 866 | stream_reset (s); |
Feng Lu | c99f348 | 2014-10-16 09:52:36 +0800 | [diff] [blame] | 867 | zclient_create_header (s, ZEBRA_IPV4_NEXTHOP_LOOKUP, VRF_DEFAULT); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 868 | stream_put_in_addr (s, &addr); |
paul | d3092e7 | 2006-01-17 17:33:46 +0000 | [diff] [blame] | 869 | |
| 870 | stream_putw_at (s, 0, stream_get_endp (s)); |
| 871 | |
| 872 | ret = writen (zlookup->sock, s->data, stream_get_endp (s)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 873 | if (ret < 0) |
| 874 | { |
| 875 | zlog_err ("can't write to zlookup->sock"); |
| 876 | close (zlookup->sock); |
| 877 | zlookup->sock = -1; |
| 878 | return NULL; |
| 879 | } |
| 880 | if (ret == 0) |
| 881 | { |
| 882 | zlog_err ("zlookup->sock connection closed"); |
| 883 | close (zlookup->sock); |
| 884 | zlookup->sock = -1; |
| 885 | return NULL; |
| 886 | } |
| 887 | |
| 888 | return zlookup_read (); |
| 889 | } |
| 890 | |
| 891 | #ifdef HAVE_IPV6 |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 892 | static struct bgp_nexthop_cache * |
Stephen Hemminger | 66e5cd8 | 2009-02-09 10:14:16 -0800 | [diff] [blame] | 893 | zlookup_read_ipv6 (void) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 894 | { |
| 895 | struct stream *s; |
Nicolas Dichtel | 794c473 | 2015-09-16 09:42:36 +0200 | [diff] [blame] | 896 | uint16_t length, vrf_id, cmd; |
paul | d3092e7 | 2006-01-17 17:33:46 +0000 | [diff] [blame] | 897 | u_char version, marker; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 898 | struct in6_addr raddr; |
paul | d3092e7 | 2006-01-17 17:33:46 +0000 | [diff] [blame] | 899 | uint32_t metric; |
Nicolas Dichtel | 794c473 | 2015-09-16 09:42:36 +0200 | [diff] [blame] | 900 | int i, err; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 901 | u_char nexthop_num; |
| 902 | struct nexthop *nexthop; |
| 903 | struct bgp_nexthop_cache *bnc; |
| 904 | |
| 905 | s = zlookup->ibuf; |
| 906 | stream_reset (s); |
| 907 | |
Nicolas Dichtel | 794c473 | 2015-09-16 09:42:36 +0200 | [diff] [blame] | 908 | err = zclient_read_header (s, zlookup->sock, &length, &marker, &version, |
| 909 | &vrf_id, &cmd); |
| 910 | if (err < 0) |
| 911 | { |
| 912 | zlog_err("%s: zserv_read_header() failed", __func__); |
| 913 | return NULL; |
| 914 | } |
Donald Sharp | a9d4cb3 | 2015-09-17 10:54:25 -0400 | [diff] [blame] | 915 | |
Paul Jakma | 7aa9dce | 2014-09-19 14:42:23 +0100 | [diff] [blame] | 916 | /* XXX: not actually doing anything with raddr */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 917 | stream_get (&raddr, s, 16); |
| 918 | |
| 919 | metric = stream_getl (s); |
| 920 | nexthop_num = stream_getc (s); |
| 921 | |
| 922 | if (nexthop_num) |
| 923 | { |
| 924 | bnc = bnc_new (); |
| 925 | bnc->valid = 1; |
| 926 | bnc->metric = metric; |
| 927 | bnc->nexthop_num = nexthop_num; |
| 928 | |
| 929 | for (i = 0; i < nexthop_num; i++) |
| 930 | { |
Stephen Hemminger | 393deb9 | 2008-08-18 14:13:29 -0700 | [diff] [blame] | 931 | nexthop = XCALLOC (MTYPE_NEXTHOP, sizeof (struct nexthop)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 932 | nexthop->type = stream_getc (s); |
| 933 | switch (nexthop->type) |
| 934 | { |
| 935 | case ZEBRA_NEXTHOP_IPV6: |
| 936 | stream_get (&nexthop->gate.ipv6, s, 16); |
| 937 | break; |
| 938 | case ZEBRA_NEXTHOP_IPV6_IFINDEX: |
| 939 | case ZEBRA_NEXTHOP_IPV6_IFNAME: |
| 940 | stream_get (&nexthop->gate.ipv6, s, 16); |
| 941 | nexthop->ifindex = stream_getl (s); |
| 942 | break; |
| 943 | case ZEBRA_NEXTHOP_IFINDEX: |
| 944 | case ZEBRA_NEXTHOP_IFNAME: |
| 945 | nexthop->ifindex = stream_getl (s); |
| 946 | break; |
hasso | fa2b17e | 2004-03-04 17:45:00 +0000 | [diff] [blame] | 947 | default: |
| 948 | /* do nothing */ |
| 949 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 950 | } |
| 951 | bnc_nexthop_add (bnc, nexthop); |
| 952 | } |
| 953 | } |
| 954 | else |
| 955 | return NULL; |
| 956 | |
| 957 | return bnc; |
| 958 | } |
| 959 | |
| 960 | struct bgp_nexthop_cache * |
| 961 | zlookup_query_ipv6 (struct in6_addr *addr) |
| 962 | { |
| 963 | int ret; |
| 964 | struct stream *s; |
| 965 | |
| 966 | /* Check socket. */ |
| 967 | if (zlookup->sock < 0) |
| 968 | return NULL; |
| 969 | |
| 970 | s = zlookup->obuf; |
| 971 | stream_reset (s); |
Feng Lu | c99f348 | 2014-10-16 09:52:36 +0800 | [diff] [blame] | 972 | zclient_create_header (s, ZEBRA_IPV6_NEXTHOP_LOOKUP, VRF_DEFAULT); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 973 | stream_put (s, addr, 16); |
paul | d3092e7 | 2006-01-17 17:33:46 +0000 | [diff] [blame] | 974 | stream_putw_at (s, 0, stream_get_endp (s)); |
| 975 | |
| 976 | ret = writen (zlookup->sock, s->data, stream_get_endp (s)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 977 | if (ret < 0) |
| 978 | { |
| 979 | zlog_err ("can't write to zlookup->sock"); |
| 980 | close (zlookup->sock); |
| 981 | zlookup->sock = -1; |
| 982 | return NULL; |
| 983 | } |
| 984 | if (ret == 0) |
| 985 | { |
| 986 | zlog_err ("zlookup->sock connection closed"); |
| 987 | close (zlookup->sock); |
| 988 | zlookup->sock = -1; |
| 989 | return NULL; |
| 990 | } |
| 991 | |
| 992 | return zlookup_read_ipv6 (); |
| 993 | } |
| 994 | #endif /* HAVE_IPV6 */ |
| 995 | |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 996 | static int |
| 997 | bgp_import_check (struct prefix *p, u_int32_t *igpmetric, |
| 998 | struct in_addr *igpnexthop) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 999 | { |
| 1000 | struct stream *s; |
| 1001 | int ret; |
Nicolas Dichtel | 794c473 | 2015-09-16 09:42:36 +0200 | [diff] [blame] | 1002 | u_int16_t length, vrf_id, command; |
paul | d3092e7 | 2006-01-17 17:33:46 +0000 | [diff] [blame] | 1003 | u_char version, marker; |
Paul Jakma | 7aa9dce | 2014-09-19 14:42:23 +0100 | [diff] [blame] | 1004 | struct in_addr addr __attribute__((unused)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1005 | struct in_addr nexthop; |
| 1006 | u_int32_t metric = 0; |
| 1007 | u_char nexthop_num; |
| 1008 | u_char nexthop_type; |
| 1009 | |
| 1010 | /* If lookup connection is not available return valid. */ |
| 1011 | if (zlookup->sock < 0) |
| 1012 | { |
| 1013 | if (igpmetric) |
| 1014 | *igpmetric = 0; |
| 1015 | return 1; |
| 1016 | } |
| 1017 | |
| 1018 | /* Send query to the lookup connection */ |
| 1019 | s = zlookup->obuf; |
| 1020 | stream_reset (s); |
Feng Lu | c99f348 | 2014-10-16 09:52:36 +0800 | [diff] [blame] | 1021 | zclient_create_header (s, ZEBRA_IPV4_IMPORT_LOOKUP, VRF_DEFAULT); |
paul | d3092e7 | 2006-01-17 17:33:46 +0000 | [diff] [blame] | 1022 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1023 | stream_putc (s, p->prefixlen); |
| 1024 | stream_put_in_addr (s, &p->u.prefix4); |
paul | d3092e7 | 2006-01-17 17:33:46 +0000 | [diff] [blame] | 1025 | |
| 1026 | stream_putw_at (s, 0, stream_get_endp (s)); |
| 1027 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1028 | /* Write the packet. */ |
paul | d3092e7 | 2006-01-17 17:33:46 +0000 | [diff] [blame] | 1029 | ret = writen (zlookup->sock, s->data, stream_get_endp (s)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1030 | |
| 1031 | if (ret < 0) |
| 1032 | { |
| 1033 | zlog_err ("can't write to zlookup->sock"); |
| 1034 | close (zlookup->sock); |
| 1035 | zlookup->sock = -1; |
| 1036 | return 1; |
| 1037 | } |
| 1038 | if (ret == 0) |
| 1039 | { |
| 1040 | zlog_err ("zlookup->sock connection closed"); |
| 1041 | close (zlookup->sock); |
| 1042 | zlookup->sock = -1; |
| 1043 | return 1; |
| 1044 | } |
| 1045 | |
| 1046 | /* Get result. */ |
| 1047 | stream_reset (s); |
| 1048 | |
Nicolas Dichtel | 794c473 | 2015-09-16 09:42:36 +0200 | [diff] [blame] | 1049 | ret = zclient_read_header (s, zlookup->sock, &length, &marker, &version, |
| 1050 | &vrf_id, &command); |
| 1051 | if (ret < 0) |
| 1052 | { |
| 1053 | zlog_err("%s: zserv_read_header() failed", __func__); |
| 1054 | return 0; |
| 1055 | } |
Donald Sharp | a9d4cb3 | 2015-09-17 10:54:25 -0400 | [diff] [blame] | 1056 | |
Paul Jakma | 7aa9dce | 2014-09-19 14:42:23 +0100 | [diff] [blame] | 1057 | /* XXX: not using addr */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1058 | addr.s_addr = stream_get_ipv4 (s); |
| 1059 | metric = stream_getl (s); |
| 1060 | nexthop_num = stream_getc (s); |
| 1061 | |
| 1062 | /* Set IGP metric value. */ |
| 1063 | if (igpmetric) |
| 1064 | *igpmetric = metric; |
| 1065 | |
| 1066 | /* If there is nexthop then this is active route. */ |
| 1067 | if (nexthop_num) |
| 1068 | { |
| 1069 | nexthop.s_addr = 0; |
| 1070 | nexthop_type = stream_getc (s); |
Christian Franke | a12afd5 | 2013-05-25 14:01:36 +0000 | [diff] [blame] | 1071 | switch (nexthop_type) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1072 | { |
Christian Franke | a12afd5 | 2013-05-25 14:01:36 +0000 | [diff] [blame] | 1073 | case ZEBRA_NEXTHOP_IPV4: |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1074 | nexthop.s_addr = stream_get_ipv4 (s); |
Christian Franke | a12afd5 | 2013-05-25 14:01:36 +0000 | [diff] [blame] | 1075 | break; |
| 1076 | case ZEBRA_NEXTHOP_IPV4_IFINDEX: |
| 1077 | nexthop.s_addr = stream_get_ipv4 (s); |
| 1078 | /* ifindex */ (void)stream_getl (s); |
| 1079 | break; |
| 1080 | default: |
| 1081 | /* do nothing */ |
| 1082 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1083 | } |
Christian Franke | a12afd5 | 2013-05-25 14:01:36 +0000 | [diff] [blame] | 1084 | *igpnexthop = nexthop; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1085 | |
| 1086 | return 1; |
| 1087 | } |
| 1088 | else |
| 1089 | return 0; |
| 1090 | } |
| 1091 | |
| 1092 | /* Scan all configured BGP route then check the route exists in IGP or |
| 1093 | not. */ |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 1094 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1095 | bgp_import (struct thread *t) |
| 1096 | { |
| 1097 | struct bgp *bgp; |
| 1098 | struct bgp_node *rn; |
| 1099 | struct bgp_static *bgp_static; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1100 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1101 | int valid; |
| 1102 | u_int32_t metric; |
| 1103 | struct in_addr nexthop; |
| 1104 | afi_t afi; |
| 1105 | safi_t safi; |
| 1106 | |
| 1107 | bgp_import_thread = |
| 1108 | thread_add_timer (master, bgp_import, NULL, bgp_import_interval); |
| 1109 | |
hasso | f418446 | 2005-02-01 20:13:16 +0000 | [diff] [blame] | 1110 | if (BGP_DEBUG (events, EVENTS)) |
| 1111 | zlog_debug ("Import timer expired."); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1112 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1113 | for (ALL_LIST_ELEMENTS (bm->bgp, node, nnode, bgp)) |
paul | 6cbbc3c | 2003-04-28 17:11:02 +0000 | [diff] [blame] | 1114 | { |
| 1115 | for (afi = AFI_IP; afi < AFI_MAX; afi++) |
| 1116 | for (safi = SAFI_UNICAST; safi < SAFI_MPLS_VPN; safi++) |
| 1117 | for (rn = bgp_table_top (bgp->route[afi][safi]); rn; |
| 1118 | rn = bgp_route_next (rn)) |
| 1119 | if ((bgp_static = rn->info) != NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1120 | { |
paul | 6cbbc3c | 2003-04-28 17:11:02 +0000 | [diff] [blame] | 1121 | if (bgp_static->backdoor) |
| 1122 | continue; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1123 | |
paul | 6cbbc3c | 2003-04-28 17:11:02 +0000 | [diff] [blame] | 1124 | valid = bgp_static->valid; |
| 1125 | metric = bgp_static->igpmetric; |
| 1126 | nexthop = bgp_static->igpnexthop; |
| 1127 | |
| 1128 | if (bgp_flag_check (bgp, BGP_FLAG_IMPORT_CHECK) |
| 1129 | && afi == AFI_IP && safi == SAFI_UNICAST) |
| 1130 | bgp_static->valid = bgp_import_check (&rn->p, &bgp_static->igpmetric, |
| 1131 | &bgp_static->igpnexthop); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1132 | else |
paul | 6cbbc3c | 2003-04-28 17:11:02 +0000 | [diff] [blame] | 1133 | { |
| 1134 | bgp_static->valid = 1; |
| 1135 | bgp_static->igpmetric = 0; |
| 1136 | bgp_static->igpnexthop.s_addr = 0; |
| 1137 | } |
| 1138 | |
| 1139 | if (bgp_static->valid != valid) |
| 1140 | { |
| 1141 | if (bgp_static->valid) |
| 1142 | bgp_static_update (bgp, &rn->p, bgp_static, afi, safi); |
| 1143 | else |
| 1144 | bgp_static_withdraw (bgp, &rn->p, afi, safi); |
| 1145 | } |
| 1146 | else if (bgp_static->valid) |
| 1147 | { |
| 1148 | if (bgp_static->igpmetric != metric |
| 1149 | || bgp_static->igpnexthop.s_addr != nexthop.s_addr |
| 1150 | || bgp_static->rmap.name) |
| 1151 | bgp_static_update (bgp, &rn->p, bgp_static, afi, safi); |
| 1152 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1153 | } |
paul | 6cbbc3c | 2003-04-28 17:11:02 +0000 | [diff] [blame] | 1154 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1155 | return 0; |
| 1156 | } |
| 1157 | |
| 1158 | /* Connect to zebra for nexthop lookup. */ |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 1159 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1160 | zlookup_connect (struct thread *t) |
| 1161 | { |
| 1162 | struct zclient *zlookup; |
| 1163 | |
| 1164 | zlookup = THREAD_ARG (t); |
| 1165 | zlookup->t_connect = NULL; |
| 1166 | |
| 1167 | if (zlookup->sock != -1) |
| 1168 | return 0; |
| 1169 | |
Vyacheslav Trushkin | b511468 | 2011-11-25 18:51:48 +0400 | [diff] [blame] | 1170 | if (zclient_socket_connect (zlookup) < 0) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1171 | return -1; |
| 1172 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1173 | return 0; |
| 1174 | } |
| 1175 | |
| 1176 | /* Check specified multiaccess next-hop. */ |
| 1177 | int |
| 1178 | bgp_multiaccess_check_v4 (struct in_addr nexthop, char *peer) |
| 1179 | { |
| 1180 | struct bgp_node *rn1; |
| 1181 | struct bgp_node *rn2; |
| 1182 | struct prefix p1; |
| 1183 | struct prefix p2; |
| 1184 | struct in_addr addr; |
| 1185 | int ret; |
| 1186 | |
| 1187 | ret = inet_aton (peer, &addr); |
| 1188 | if (! ret) |
| 1189 | return 0; |
| 1190 | |
| 1191 | memset (&p1, 0, sizeof (struct prefix)); |
| 1192 | p1.family = AF_INET; |
| 1193 | p1.prefixlen = IPV4_MAX_BITLEN; |
| 1194 | p1.u.prefix4 = nexthop; |
| 1195 | memset (&p2, 0, sizeof (struct prefix)); |
| 1196 | p2.family = AF_INET; |
| 1197 | p2.prefixlen = IPV4_MAX_BITLEN; |
| 1198 | p2.u.prefix4 = addr; |
| 1199 | |
| 1200 | /* If bgp scan is not enabled, return invalid. */ |
| 1201 | if (zlookup->sock < 0) |
| 1202 | return 0; |
| 1203 | |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 1204 | rn1 = bgp_node_match (bgp_connected_table[AFI_IP], &p1); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1205 | if (! rn1) |
| 1206 | return 0; |
Chris Caputo | 6c88b44 | 2010-07-27 16:28:55 +0000 | [diff] [blame] | 1207 | bgp_unlock_node (rn1); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1208 | |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 1209 | rn2 = bgp_node_match (bgp_connected_table[AFI_IP], &p2); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1210 | if (! rn2) |
| 1211 | return 0; |
Chris Caputo | 6c88b44 | 2010-07-27 16:28:55 +0000 | [diff] [blame] | 1212 | bgp_unlock_node (rn2); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1213 | |
Chris Caputo | 6c88b44 | 2010-07-27 16:28:55 +0000 | [diff] [blame] | 1214 | /* This is safe, even with above unlocks, since we are just |
| 1215 | comparing pointers to the objects, not the objects themselves. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1216 | if (rn1 == rn2) |
| 1217 | return 1; |
| 1218 | |
| 1219 | return 0; |
| 1220 | } |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 1221 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1222 | DEFUN (bgp_scan_time, |
| 1223 | bgp_scan_time_cmd, |
| 1224 | "bgp scan-time <5-60>", |
| 1225 | "BGP specific commands\n" |
| 1226 | "Configure background scanner interval\n" |
| 1227 | "Scanner interval (seconds)\n") |
| 1228 | { |
| 1229 | bgp_scan_interval = atoi (argv[0]); |
| 1230 | |
| 1231 | if (bgp_scan_thread) |
| 1232 | { |
| 1233 | thread_cancel (bgp_scan_thread); |
| 1234 | bgp_scan_thread = |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 1235 | thread_add_timer (master, bgp_scan_timer, NULL, bgp_scan_interval); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1236 | } |
| 1237 | |
| 1238 | return CMD_SUCCESS; |
| 1239 | } |
| 1240 | |
| 1241 | DEFUN (no_bgp_scan_time, |
| 1242 | no_bgp_scan_time_cmd, |
| 1243 | "no bgp scan-time", |
| 1244 | NO_STR |
| 1245 | "BGP specific commands\n" |
| 1246 | "Configure background scanner interval\n") |
| 1247 | { |
| 1248 | bgp_scan_interval = BGP_SCAN_INTERVAL_DEFAULT; |
| 1249 | |
| 1250 | if (bgp_scan_thread) |
| 1251 | { |
| 1252 | thread_cancel (bgp_scan_thread); |
| 1253 | bgp_scan_thread = |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 1254 | thread_add_timer (master, bgp_scan_timer, NULL, bgp_scan_interval); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1255 | } |
| 1256 | |
| 1257 | return CMD_SUCCESS; |
| 1258 | } |
| 1259 | |
| 1260 | ALIAS (no_bgp_scan_time, |
| 1261 | no_bgp_scan_time_val_cmd, |
| 1262 | "no bgp scan-time <5-60>", |
| 1263 | NO_STR |
| 1264 | "BGP specific commands\n" |
| 1265 | "Configure background scanner interval\n" |
| 1266 | "Scanner interval (seconds)\n") |
| 1267 | |
Denis Ovsienko | 318f0d8 | 2011-08-05 21:47:08 +0400 | [diff] [blame] | 1268 | static int |
| 1269 | show_ip_bgp_scan_tables (struct vty *vty, const char detail) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1270 | { |
| 1271 | struct bgp_node *rn; |
| 1272 | struct bgp_nexthop_cache *bnc; |
Denis Ovsienko | 318f0d8 | 2011-08-05 21:47:08 +0400 | [diff] [blame] | 1273 | char buf[INET6_ADDRSTRLEN]; |
| 1274 | u_char i; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1275 | |
| 1276 | if (bgp_scan_thread) |
| 1277 | vty_out (vty, "BGP scan is running%s", VTY_NEWLINE); |
| 1278 | else |
| 1279 | vty_out (vty, "BGP scan is not running%s", VTY_NEWLINE); |
| 1280 | vty_out (vty, "BGP scan interval is %d%s", bgp_scan_interval, VTY_NEWLINE); |
| 1281 | |
| 1282 | vty_out (vty, "Current BGP nexthop cache:%s", VTY_NEWLINE); |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 1283 | for (rn = bgp_table_top (bgp_nexthop_cache_table[AFI_IP]); rn; rn = bgp_route_next (rn)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1284 | if ((bnc = rn->info) != NULL) |
| 1285 | { |
| 1286 | if (bnc->valid) |
Denis Ovsienko | 318f0d8 | 2011-08-05 21:47:08 +0400 | [diff] [blame] | 1287 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1288 | vty_out (vty, " %s valid [IGP metric %d]%s", |
Denis Ovsienko | 318f0d8 | 2011-08-05 21:47:08 +0400 | [diff] [blame] | 1289 | inet_ntop (AF_INET, &rn->p.u.prefix4, buf, INET6_ADDRSTRLEN), bnc->metric, VTY_NEWLINE); |
| 1290 | if (detail) |
| 1291 | for (i = 0; i < bnc->nexthop_num; i++) |
Denis Ovsienko | 0e8032d | 2011-08-09 14:42:58 +0400 | [diff] [blame] | 1292 | switch (bnc->nexthop[i].type) |
| 1293 | { |
| 1294 | case NEXTHOP_TYPE_IPV4: |
| 1295 | vty_out (vty, " gate %s%s", inet_ntop (AF_INET, &bnc->nexthop[i].gate.ipv4, buf, INET6_ADDRSTRLEN), VTY_NEWLINE); |
| 1296 | break; |
Christian Franke | bb97e46 | 2013-05-25 14:01:35 +0000 | [diff] [blame] | 1297 | case NEXTHOP_TYPE_IPV4_IFINDEX: |
| 1298 | vty_out (vty, " gate %s", inet_ntop (AF_INET, &bnc->nexthop[i].gate.ipv4, buf, INET6_ADDRSTRLEN)); |
| 1299 | vty_out (vty, " ifidx %u%s", bnc->nexthop[i].ifindex, VTY_NEWLINE); |
| 1300 | break; |
Denis Ovsienko | 0e8032d | 2011-08-09 14:42:58 +0400 | [diff] [blame] | 1301 | case NEXTHOP_TYPE_IFINDEX: |
| 1302 | vty_out (vty, " ifidx %u%s", bnc->nexthop[i].ifindex, VTY_NEWLINE); |
| 1303 | break; |
| 1304 | default: |
| 1305 | vty_out (vty, " invalid nexthop type %u%s", bnc->nexthop[i].type, VTY_NEWLINE); |
| 1306 | } |
Denis Ovsienko | 318f0d8 | 2011-08-05 21:47:08 +0400 | [diff] [blame] | 1307 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1308 | else |
| 1309 | vty_out (vty, " %s invalid%s", |
Denis Ovsienko | 318f0d8 | 2011-08-05 21:47:08 +0400 | [diff] [blame] | 1310 | inet_ntop (AF_INET, &rn->p.u.prefix4, buf, INET6_ADDRSTRLEN), VTY_NEWLINE); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1311 | } |
| 1312 | |
| 1313 | #ifdef HAVE_IPV6 |
| 1314 | { |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 1315 | for (rn = bgp_table_top (bgp_nexthop_cache_table[AFI_IP6]); |
| 1316 | rn; |
| 1317 | rn = bgp_route_next (rn)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1318 | if ((bnc = rn->info) != NULL) |
| 1319 | { |
| 1320 | if (bnc->valid) |
Denis Ovsienko | 318f0d8 | 2011-08-05 21:47:08 +0400 | [diff] [blame] | 1321 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1322 | vty_out (vty, " %s valid [IGP metric %d]%s", |
Denis Ovsienko | 318f0d8 | 2011-08-05 21:47:08 +0400 | [diff] [blame] | 1323 | inet_ntop (AF_INET6, &rn->p.u.prefix6, buf, INET6_ADDRSTRLEN), |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1324 | bnc->metric, VTY_NEWLINE); |
Denis Ovsienko | 318f0d8 | 2011-08-05 21:47:08 +0400 | [diff] [blame] | 1325 | if (detail) |
| 1326 | for (i = 0; i < bnc->nexthop_num; i++) |
Denis Ovsienko | 0e8032d | 2011-08-09 14:42:58 +0400 | [diff] [blame] | 1327 | switch (bnc->nexthop[i].type) |
| 1328 | { |
| 1329 | case NEXTHOP_TYPE_IPV6: |
| 1330 | vty_out (vty, " gate %s%s", inet_ntop (AF_INET6, &bnc->nexthop[i].gate.ipv6, buf, INET6_ADDRSTRLEN), VTY_NEWLINE); |
| 1331 | break; |
| 1332 | case NEXTHOP_TYPE_IFINDEX: |
| 1333 | vty_out (vty, " ifidx %u%s", bnc->nexthop[i].ifindex, VTY_NEWLINE); |
| 1334 | break; |
| 1335 | default: |
| 1336 | vty_out (vty, " invalid nexthop type %u%s", bnc->nexthop[i].type, VTY_NEWLINE); |
| 1337 | } |
Denis Ovsienko | 318f0d8 | 2011-08-05 21:47:08 +0400 | [diff] [blame] | 1338 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1339 | else |
| 1340 | vty_out (vty, " %s invalid%s", |
Denis Ovsienko | 318f0d8 | 2011-08-05 21:47:08 +0400 | [diff] [blame] | 1341 | inet_ntop (AF_INET6, &rn->p.u.prefix6, buf, INET6_ADDRSTRLEN), |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1342 | VTY_NEWLINE); |
| 1343 | } |
| 1344 | } |
| 1345 | #endif /* HAVE_IPV6 */ |
| 1346 | |
| 1347 | vty_out (vty, "BGP connected route:%s", VTY_NEWLINE); |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 1348 | for (rn = bgp_table_top (bgp_connected_table[AFI_IP]); |
| 1349 | rn; |
| 1350 | rn = bgp_route_next (rn)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1351 | if (rn->info != NULL) |
| 1352 | vty_out (vty, " %s/%d%s", inet_ntoa (rn->p.u.prefix4), rn->p.prefixlen, |
| 1353 | VTY_NEWLINE); |
| 1354 | |
| 1355 | #ifdef HAVE_IPV6 |
| 1356 | { |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 1357 | for (rn = bgp_table_top (bgp_connected_table[AFI_IP6]); |
| 1358 | rn; |
| 1359 | rn = bgp_route_next (rn)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1360 | if (rn->info != NULL) |
| 1361 | vty_out (vty, " %s/%d%s", |
Denis Ovsienko | 318f0d8 | 2011-08-05 21:47:08 +0400 | [diff] [blame] | 1362 | inet_ntop (AF_INET6, &rn->p.u.prefix6, buf, INET6_ADDRSTRLEN), |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1363 | rn->p.prefixlen, |
| 1364 | VTY_NEWLINE); |
| 1365 | } |
| 1366 | #endif /* HAVE_IPV6 */ |
| 1367 | |
| 1368 | return CMD_SUCCESS; |
| 1369 | } |
| 1370 | |
Denis Ovsienko | 318f0d8 | 2011-08-05 21:47:08 +0400 | [diff] [blame] | 1371 | DEFUN (show_ip_bgp_scan, |
| 1372 | show_ip_bgp_scan_cmd, |
| 1373 | "show ip bgp scan", |
| 1374 | SHOW_STR |
| 1375 | IP_STR |
| 1376 | BGP_STR |
| 1377 | "BGP scan status\n") |
| 1378 | { |
| 1379 | return show_ip_bgp_scan_tables (vty, 0); |
| 1380 | } |
| 1381 | |
| 1382 | DEFUN (show_ip_bgp_scan_detail, |
| 1383 | show_ip_bgp_scan_detail_cmd, |
| 1384 | "show ip bgp scan detail", |
| 1385 | SHOW_STR |
| 1386 | IP_STR |
| 1387 | BGP_STR |
| 1388 | "BGP scan status\n" |
| 1389 | "More detailed output\n") |
| 1390 | { |
| 1391 | return show_ip_bgp_scan_tables (vty, 1); |
| 1392 | } |
| 1393 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1394 | int |
| 1395 | bgp_config_write_scan_time (struct vty *vty) |
| 1396 | { |
| 1397 | if (bgp_scan_interval != BGP_SCAN_INTERVAL_DEFAULT) |
| 1398 | vty_out (vty, " bgp scan-time %d%s", bgp_scan_interval, VTY_NEWLINE); |
| 1399 | return CMD_SUCCESS; |
| 1400 | } |
| 1401 | |
| 1402 | void |
Stephen Hemminger | 66e5cd8 | 2009-02-09 10:14:16 -0800 | [diff] [blame] | 1403 | bgp_scan_init (void) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1404 | { |
| 1405 | zlookup = zclient_new (); |
| 1406 | zlookup->sock = -1; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1407 | zlookup->t_connect = thread_add_event (master, zlookup_connect, zlookup, 0); |
| 1408 | |
| 1409 | bgp_scan_interval = BGP_SCAN_INTERVAL_DEFAULT; |
| 1410 | bgp_import_interval = BGP_IMPORT_INTERVAL_DEFAULT; |
| 1411 | |
Paul Jakma | 64e580a | 2006-02-21 01:09:01 +0000 | [diff] [blame] | 1412 | cache1_table[AFI_IP] = bgp_table_init (AFI_IP, SAFI_UNICAST); |
| 1413 | cache2_table[AFI_IP] = bgp_table_init (AFI_IP, SAFI_UNICAST); |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 1414 | bgp_nexthop_cache_table[AFI_IP] = cache1_table[AFI_IP]; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1415 | |
Paul Jakma | 64e580a | 2006-02-21 01:09:01 +0000 | [diff] [blame] | 1416 | bgp_connected_table[AFI_IP] = bgp_table_init (AFI_IP, SAFI_UNICAST); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1417 | |
| 1418 | #ifdef HAVE_IPV6 |
Paul Jakma | 64e580a | 2006-02-21 01:09:01 +0000 | [diff] [blame] | 1419 | cache1_table[AFI_IP6] = bgp_table_init (AFI_IP6, SAFI_UNICAST); |
| 1420 | cache2_table[AFI_IP6] = bgp_table_init (AFI_IP6, SAFI_UNICAST); |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 1421 | bgp_nexthop_cache_table[AFI_IP6] = cache1_table[AFI_IP6]; |
Paul Jakma | 64e580a | 2006-02-21 01:09:01 +0000 | [diff] [blame] | 1422 | bgp_connected_table[AFI_IP6] = bgp_table_init (AFI_IP6, SAFI_UNICAST); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1423 | #endif /* HAVE_IPV6 */ |
| 1424 | |
| 1425 | /* Make BGP scan thread. */ |
paul | 5932020 | 2004-11-09 01:54:03 +0000 | [diff] [blame] | 1426 | bgp_scan_thread = thread_add_timer (master, bgp_scan_timer, |
| 1427 | NULL, bgp_scan_interval); |
paul | 6cbbc3c | 2003-04-28 17:11:02 +0000 | [diff] [blame] | 1428 | /* Make BGP import there. */ |
| 1429 | bgp_import_thread = thread_add_timer (master, bgp_import, NULL, 0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1430 | |
| 1431 | install_element (BGP_NODE, &bgp_scan_time_cmd); |
| 1432 | install_element (BGP_NODE, &no_bgp_scan_time_cmd); |
| 1433 | install_element (BGP_NODE, &no_bgp_scan_time_val_cmd); |
| 1434 | install_element (VIEW_NODE, &show_ip_bgp_scan_cmd); |
Denis Ovsienko | 318f0d8 | 2011-08-05 21:47:08 +0400 | [diff] [blame] | 1435 | install_element (VIEW_NODE, &show_ip_bgp_scan_detail_cmd); |
Paul Jakma | 62687ff | 2008-08-23 14:27:06 +0100 | [diff] [blame] | 1436 | install_element (RESTRICTED_NODE, &show_ip_bgp_scan_cmd); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1437 | install_element (ENABLE_NODE, &show_ip_bgp_scan_cmd); |
Denis Ovsienko | 318f0d8 | 2011-08-05 21:47:08 +0400 | [diff] [blame] | 1438 | install_element (ENABLE_NODE, &show_ip_bgp_scan_detail_cmd); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1439 | } |
Chris Caputo | 228da42 | 2009-07-18 05:44:03 +0000 | [diff] [blame] | 1440 | |
| 1441 | void |
| 1442 | bgp_scan_finish (void) |
| 1443 | { |
Chris Caputo | 6c88b44 | 2010-07-27 16:28:55 +0000 | [diff] [blame] | 1444 | /* Only the current one needs to be reset. */ |
| 1445 | bgp_nexthop_cache_reset (bgp_nexthop_cache_table[AFI_IP]); |
| 1446 | |
Chris Caputo | 228da42 | 2009-07-18 05:44:03 +0000 | [diff] [blame] | 1447 | bgp_table_unlock (cache1_table[AFI_IP]); |
| 1448 | cache1_table[AFI_IP] = NULL; |
| 1449 | |
| 1450 | bgp_table_unlock (cache2_table[AFI_IP]); |
| 1451 | cache2_table[AFI_IP] = NULL; |
| 1452 | |
| 1453 | bgp_table_unlock (bgp_connected_table[AFI_IP]); |
| 1454 | bgp_connected_table[AFI_IP] = NULL; |
| 1455 | |
| 1456 | #ifdef HAVE_IPV6 |
Chris Caputo | 6c88b44 | 2010-07-27 16:28:55 +0000 | [diff] [blame] | 1457 | /* Only the current one needs to be reset. */ |
| 1458 | bgp_nexthop_cache_reset (bgp_nexthop_cache_table[AFI_IP6]); |
| 1459 | |
Chris Caputo | 228da42 | 2009-07-18 05:44:03 +0000 | [diff] [blame] | 1460 | bgp_table_unlock (cache1_table[AFI_IP6]); |
| 1461 | cache1_table[AFI_IP6] = NULL; |
| 1462 | |
| 1463 | bgp_table_unlock (cache2_table[AFI_IP6]); |
| 1464 | cache2_table[AFI_IP6] = NULL; |
| 1465 | |
| 1466 | bgp_table_unlock (bgp_connected_table[AFI_IP6]); |
| 1467 | bgp_connected_table[AFI_IP6] = NULL; |
| 1468 | #endif /* HAVE_IPV6 */ |
| 1469 | } |