paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | /* Routing Information Base. |
| 2 | * Copyright (C) 1997, 98, 99, 2001 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 | |
| 22 | #include <zebra.h> |
| 23 | |
| 24 | #include "prefix.h" |
| 25 | #include "table.h" |
| 26 | #include "memory.h" |
| 27 | #include "str.h" |
| 28 | #include "command.h" |
| 29 | #include "if.h" |
| 30 | #include "log.h" |
| 31 | #include "sockunion.h" |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 32 | #include "linklist.h" |
| 33 | #include "thread.h" |
| 34 | #include "workqueue.h" |
Paul Jakma | 7514fb7 | 2007-05-02 16:05:35 +0000 | [diff] [blame] | 35 | #include "prefix.h" |
| 36 | #include "routemap.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 37 | |
| 38 | #include "zebra/rib.h" |
| 39 | #include "zebra/rt.h" |
| 40 | #include "zebra/zserv.h" |
| 41 | #include "zebra/redistribute.h" |
| 42 | #include "zebra/debug.h" |
Avneesh Sachdev | 5adc252 | 2012-11-13 22:48:59 +0000 | [diff] [blame] | 43 | #include "zebra/zebra_fpm.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 44 | |
| 45 | /* Default rtm_table for all clients */ |
paul | b21b19c | 2003-06-15 01:28:29 +0000 | [diff] [blame] | 46 | extern struct zebra_t zebrad; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 47 | |
Paul Jakma | 457eb9a | 2006-07-27 19:59:58 +0000 | [diff] [blame] | 48 | /* Hold time for RIB process, should be very minimal. |
| 49 | * it is useful to able to set it otherwise for testing, hence exported |
| 50 | * as global here for test-rig code. |
| 51 | */ |
| 52 | int rib_process_hold_time = 10; |
| 53 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 54 | /* Each route type's string and default distance value. */ |
Stephen Hemminger | d145bc0 | 2008-08-17 17:41:37 +0100 | [diff] [blame] | 55 | static const struct |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 56 | { |
| 57 | int key; |
| 58 | int distance; |
Paul Jakma | 5734509 | 2011-12-25 17:52:09 +0100 | [diff] [blame] | 59 | } route_info[ZEBRA_ROUTE_MAX] = |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 60 | { |
Paul Jakma | 5734509 | 2011-12-25 17:52:09 +0100 | [diff] [blame] | 61 | [ZEBRA_ROUTE_SYSTEM] = {ZEBRA_ROUTE_SYSTEM, 0}, |
| 62 | [ZEBRA_ROUTE_KERNEL] = {ZEBRA_ROUTE_KERNEL, 0}, |
| 63 | [ZEBRA_ROUTE_CONNECT] = {ZEBRA_ROUTE_CONNECT, 0}, |
| 64 | [ZEBRA_ROUTE_STATIC] = {ZEBRA_ROUTE_STATIC, 1}, |
| 65 | [ZEBRA_ROUTE_RIP] = {ZEBRA_ROUTE_RIP, 120}, |
| 66 | [ZEBRA_ROUTE_RIPNG] = {ZEBRA_ROUTE_RIPNG, 120}, |
| 67 | [ZEBRA_ROUTE_OSPF] = {ZEBRA_ROUTE_OSPF, 110}, |
| 68 | [ZEBRA_ROUTE_OSPF6] = {ZEBRA_ROUTE_OSPF6, 110}, |
| 69 | [ZEBRA_ROUTE_ISIS] = {ZEBRA_ROUTE_ISIS, 115}, |
| 70 | [ZEBRA_ROUTE_BGP] = {ZEBRA_ROUTE_BGP, 20 /* IBGP is 200. */}, |
| 71 | [ZEBRA_ROUTE_BABEL] = {ZEBRA_ROUTE_BABEL, 95}, |
David Lamparter | 7052f22 | 2009-08-27 00:28:28 +0200 | [diff] [blame] | 72 | /* no entry/default: 150 */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 73 | }; |
| 74 | |
| 75 | /* Vector for routing table. */ |
Stephen Hemminger | d145bc0 | 2008-08-17 17:41:37 +0100 | [diff] [blame] | 76 | static vector vrf_vector; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 77 | |
Avneesh Sachdev | 1b5ed1b | 2012-11-13 22:48:54 +0000 | [diff] [blame] | 78 | /* |
| 79 | * vrf_table_create |
| 80 | */ |
| 81 | static void |
| 82 | vrf_table_create (struct vrf *vrf, afi_t afi, safi_t safi) |
| 83 | { |
| 84 | rib_table_info_t *info; |
| 85 | struct route_table *table; |
| 86 | |
| 87 | assert (!vrf->table[afi][safi]); |
| 88 | |
| 89 | table = route_table_init (); |
| 90 | vrf->table[afi][safi] = table; |
| 91 | |
| 92 | info = XCALLOC (MTYPE_RIB_TABLE_INFO, sizeof (*info)); |
| 93 | info->vrf = vrf; |
| 94 | info->afi = afi; |
| 95 | info->safi = safi; |
| 96 | table->info = info; |
| 97 | } |
| 98 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 99 | /* Allocate new VRF. */ |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 100 | static struct vrf * |
hasso | fce954f | 2004-10-07 20:29:24 +0000 | [diff] [blame] | 101 | vrf_alloc (const char *name) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 102 | { |
| 103 | struct vrf *vrf; |
| 104 | |
| 105 | vrf = XCALLOC (MTYPE_VRF, sizeof (struct vrf)); |
| 106 | |
| 107 | /* Put name. */ |
| 108 | if (name) |
| 109 | vrf->name = XSTRDUP (MTYPE_VRF_NAME, name); |
| 110 | |
| 111 | /* Allocate routing table and static table. */ |
Avneesh Sachdev | 1b5ed1b | 2012-11-13 22:48:54 +0000 | [diff] [blame] | 112 | vrf_table_create (vrf, AFI_IP, SAFI_UNICAST); |
| 113 | vrf_table_create (vrf, AFI_IP6, SAFI_UNICAST); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 114 | vrf->stable[AFI_IP][SAFI_UNICAST] = route_table_init (); |
| 115 | vrf->stable[AFI_IP6][SAFI_UNICAST] = route_table_init (); |
Avneesh Sachdev | 1b5ed1b | 2012-11-13 22:48:54 +0000 | [diff] [blame] | 116 | vrf_table_create (vrf, AFI_IP, SAFI_MULTICAST); |
| 117 | vrf_table_create (vrf, AFI_IP6, SAFI_MULTICAST); |
G.Balaji | cddf391 | 2011-11-26 21:59:32 +0400 | [diff] [blame] | 118 | vrf->stable[AFI_IP][SAFI_MULTICAST] = route_table_init (); |
| 119 | vrf->stable[AFI_IP6][SAFI_MULTICAST] = route_table_init (); |
| 120 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 121 | |
| 122 | return vrf; |
| 123 | } |
| 124 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 125 | /* Lookup VRF by identifier. */ |
| 126 | struct vrf * |
| 127 | vrf_lookup (u_int32_t id) |
| 128 | { |
| 129 | return vector_lookup (vrf_vector, id); |
| 130 | } |
| 131 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 132 | /* Initialize VRF. */ |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 133 | static void |
| 134 | vrf_init (void) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 135 | { |
| 136 | struct vrf *default_table; |
| 137 | |
| 138 | /* Allocate VRF vector. */ |
| 139 | vrf_vector = vector_init (1); |
| 140 | |
| 141 | /* Allocate default main table. */ |
| 142 | default_table = vrf_alloc ("Default-IP-Routing-Table"); |
| 143 | |
| 144 | /* Default table index must be 0. */ |
| 145 | vector_set_index (vrf_vector, 0, default_table); |
| 146 | } |
| 147 | |
| 148 | /* Lookup route table. */ |
| 149 | struct route_table * |
| 150 | vrf_table (afi_t afi, safi_t safi, u_int32_t id) |
| 151 | { |
| 152 | struct vrf *vrf; |
| 153 | |
| 154 | vrf = vrf_lookup (id); |
| 155 | if (! vrf) |
| 156 | return NULL; |
| 157 | |
Leonid Rosenboim | 9499bf2 | 2012-12-06 20:17:41 +0000 | [diff] [blame] | 158 | if( afi >= AFI_MAX || safi >= SAFI_MAX ) |
| 159 | return NULL; |
| 160 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 161 | return vrf->table[afi][safi]; |
| 162 | } |
| 163 | |
| 164 | /* Lookup static route table. */ |
| 165 | struct route_table * |
| 166 | vrf_static_table (afi_t afi, safi_t safi, u_int32_t id) |
| 167 | { |
| 168 | struct vrf *vrf; |
| 169 | |
| 170 | vrf = vrf_lookup (id); |
| 171 | if (! vrf) |
| 172 | return NULL; |
| 173 | |
Leonid Rosenboim | 9499bf2 | 2012-12-06 20:17:41 +0000 | [diff] [blame] | 174 | if( afi >= AFI_MAX || safi >= SAFI_MAX ) |
| 175 | return NULL; |
| 176 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 177 | return vrf->stable[afi][safi]; |
| 178 | } |
| 179 | |
Avneesh Sachdev | 78deec4 | 2012-11-13 22:48:56 +0000 | [diff] [blame] | 180 | /* |
| 181 | * nexthop_type_to_str |
| 182 | */ |
| 183 | const char * |
| 184 | nexthop_type_to_str (enum nexthop_types_t nh_type) |
| 185 | { |
| 186 | static const char *desc[] = { |
| 187 | "none", |
| 188 | "Directly connected", |
| 189 | "Interface route", |
| 190 | "IPv4 nexthop", |
| 191 | "IPv4 nexthop with ifindex", |
| 192 | "IPv4 nexthop with ifname", |
| 193 | "IPv6 nexthop", |
| 194 | "IPv6 nexthop with ifindex", |
| 195 | "IPv6 nexthop with ifname", |
| 196 | "Null0 nexthop", |
| 197 | }; |
| 198 | |
| 199 | if (nh_type >= ZEBRA_NUM_OF (desc)) |
| 200 | return "<Invalid nh type>"; |
| 201 | |
| 202 | return desc[nh_type]; |
| 203 | } |
| 204 | |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 205 | /* Add nexthop to the end of a nexthop list. */ |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 206 | static void |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 207 | _nexthop_add (struct nexthop **target, struct nexthop *nexthop) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 208 | { |
| 209 | struct nexthop *last; |
| 210 | |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 211 | for (last = *target; last && last->next; last = last->next) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 212 | ; |
| 213 | if (last) |
| 214 | last->next = nexthop; |
| 215 | else |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 216 | *target = nexthop; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 217 | nexthop->prev = last; |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 218 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 219 | |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 220 | /* Add nexthop to the end of a rib node's nexthop list */ |
| 221 | static void |
| 222 | nexthop_add (struct rib *rib, struct nexthop *nexthop) |
| 223 | { |
| 224 | _nexthop_add(&rib->nexthop, nexthop); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 225 | rib->nexthop_num++; |
| 226 | } |
| 227 | |
| 228 | /* Delete specified nexthop from the list. */ |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 229 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 230 | nexthop_delete (struct rib *rib, struct nexthop *nexthop) |
| 231 | { |
| 232 | if (nexthop->next) |
| 233 | nexthop->next->prev = nexthop->prev; |
| 234 | if (nexthop->prev) |
| 235 | nexthop->prev->next = nexthop->next; |
| 236 | else |
| 237 | rib->nexthop = nexthop->next; |
| 238 | rib->nexthop_num--; |
| 239 | } |
| 240 | |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 241 | static void nexthops_free(struct nexthop *nexthop); |
| 242 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 243 | /* Free nexthop. */ |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 244 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 245 | nexthop_free (struct nexthop *nexthop) |
| 246 | { |
paul | a4b7076 | 2003-05-16 17:19:48 +0000 | [diff] [blame] | 247 | if (nexthop->ifname) |
| 248 | XFREE (0, nexthop->ifname); |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 249 | if (nexthop->resolved) |
| 250 | nexthops_free(nexthop->resolved); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 251 | XFREE (MTYPE_NEXTHOP, nexthop); |
| 252 | } |
| 253 | |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 254 | /* Frees a list of nexthops */ |
| 255 | static void |
| 256 | nexthops_free (struct nexthop *nexthop) |
| 257 | { |
| 258 | struct nexthop *nh, *next; |
| 259 | |
| 260 | for (nh = nexthop; nh; nh = next) |
| 261 | { |
| 262 | next = nh->next; |
| 263 | nexthop_free (nh); |
| 264 | } |
| 265 | } |
| 266 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 267 | struct nexthop * |
| 268 | nexthop_ifindex_add (struct rib *rib, unsigned int ifindex) |
| 269 | { |
| 270 | struct nexthop *nexthop; |
| 271 | |
Stephen Hemminger | 393deb9 | 2008-08-18 14:13:29 -0700 | [diff] [blame] | 272 | nexthop = XCALLOC (MTYPE_NEXTHOP, sizeof (struct nexthop)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 273 | nexthop->type = NEXTHOP_TYPE_IFINDEX; |
| 274 | nexthop->ifindex = ifindex; |
| 275 | |
| 276 | nexthop_add (rib, nexthop); |
| 277 | |
| 278 | return nexthop; |
| 279 | } |
| 280 | |
| 281 | struct nexthop * |
| 282 | nexthop_ifname_add (struct rib *rib, char *ifname) |
| 283 | { |
| 284 | struct nexthop *nexthop; |
| 285 | |
Stephen Hemminger | 393deb9 | 2008-08-18 14:13:29 -0700 | [diff] [blame] | 286 | nexthop = XCALLOC (MTYPE_NEXTHOP, sizeof (struct nexthop)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 287 | nexthop->type = NEXTHOP_TYPE_IFNAME; |
paul | a4b7076 | 2003-05-16 17:19:48 +0000 | [diff] [blame] | 288 | nexthop->ifname = XSTRDUP (0, ifname); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 289 | |
| 290 | nexthop_add (rib, nexthop); |
| 291 | |
| 292 | return nexthop; |
| 293 | } |
| 294 | |
| 295 | struct nexthop * |
Paul Jakma | 7514fb7 | 2007-05-02 16:05:35 +0000 | [diff] [blame] | 296 | nexthop_ipv4_add (struct rib *rib, struct in_addr *ipv4, struct in_addr *src) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 297 | { |
| 298 | struct nexthop *nexthop; |
| 299 | |
Stephen Hemminger | 393deb9 | 2008-08-18 14:13:29 -0700 | [diff] [blame] | 300 | nexthop = XCALLOC (MTYPE_NEXTHOP, sizeof (struct nexthop)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 301 | nexthop->type = NEXTHOP_TYPE_IPV4; |
| 302 | nexthop->gate.ipv4 = *ipv4; |
Paul Jakma | 7514fb7 | 2007-05-02 16:05:35 +0000 | [diff] [blame] | 303 | if (src) |
| 304 | nexthop->src.ipv4 = *src; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 305 | |
| 306 | nexthop_add (rib, nexthop); |
| 307 | |
| 308 | return nexthop; |
| 309 | } |
| 310 | |
Josh Bailey | 26e2ae3 | 2012-03-22 01:09:21 -0700 | [diff] [blame] | 311 | struct nexthop * |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 312 | nexthop_ipv4_ifindex_add (struct rib *rib, struct in_addr *ipv4, |
Paul Jakma | 7514fb7 | 2007-05-02 16:05:35 +0000 | [diff] [blame] | 313 | struct in_addr *src, unsigned int ifindex) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 314 | { |
| 315 | struct nexthop *nexthop; |
| 316 | |
Stephen Hemminger | 393deb9 | 2008-08-18 14:13:29 -0700 | [diff] [blame] | 317 | nexthop = XCALLOC (MTYPE_NEXTHOP, sizeof (struct nexthop)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 318 | nexthop->type = NEXTHOP_TYPE_IPV4_IFINDEX; |
| 319 | nexthop->gate.ipv4 = *ipv4; |
Paul Jakma | 7514fb7 | 2007-05-02 16:05:35 +0000 | [diff] [blame] | 320 | if (src) |
| 321 | nexthop->src.ipv4 = *src; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 322 | nexthop->ifindex = ifindex; |
| 323 | |
| 324 | nexthop_add (rib, nexthop); |
| 325 | |
| 326 | return nexthop; |
| 327 | } |
| 328 | |
| 329 | #ifdef HAVE_IPV6 |
| 330 | struct nexthop * |
| 331 | nexthop_ipv6_add (struct rib *rib, struct in6_addr *ipv6) |
| 332 | { |
| 333 | struct nexthop *nexthop; |
| 334 | |
Stephen Hemminger | 393deb9 | 2008-08-18 14:13:29 -0700 | [diff] [blame] | 335 | nexthop = XCALLOC (MTYPE_NEXTHOP, sizeof (struct nexthop)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 336 | nexthop->type = NEXTHOP_TYPE_IPV6; |
| 337 | nexthop->gate.ipv6 = *ipv6; |
| 338 | |
| 339 | nexthop_add (rib, nexthop); |
| 340 | |
| 341 | return nexthop; |
| 342 | } |
| 343 | |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 344 | static struct nexthop * |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 345 | nexthop_ipv6_ifname_add (struct rib *rib, struct in6_addr *ipv6, |
| 346 | char *ifname) |
| 347 | { |
| 348 | struct nexthop *nexthop; |
| 349 | |
Stephen Hemminger | 393deb9 | 2008-08-18 14:13:29 -0700 | [diff] [blame] | 350 | nexthop = XCALLOC (MTYPE_NEXTHOP, sizeof (struct nexthop)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 351 | nexthop->type = NEXTHOP_TYPE_IPV6_IFNAME; |
| 352 | nexthop->gate.ipv6 = *ipv6; |
| 353 | nexthop->ifname = XSTRDUP (0, ifname); |
| 354 | |
| 355 | nexthop_add (rib, nexthop); |
| 356 | |
| 357 | return nexthop; |
| 358 | } |
| 359 | |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 360 | static struct nexthop * |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 361 | nexthop_ipv6_ifindex_add (struct rib *rib, struct in6_addr *ipv6, |
| 362 | unsigned int ifindex) |
| 363 | { |
| 364 | struct nexthop *nexthop; |
| 365 | |
Stephen Hemminger | 393deb9 | 2008-08-18 14:13:29 -0700 | [diff] [blame] | 366 | nexthop = XCALLOC (MTYPE_NEXTHOP, sizeof (struct nexthop)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 367 | nexthop->type = NEXTHOP_TYPE_IPV6_IFINDEX; |
| 368 | nexthop->gate.ipv6 = *ipv6; |
| 369 | nexthop->ifindex = ifindex; |
| 370 | |
| 371 | nexthop_add (rib, nexthop); |
| 372 | |
| 373 | return nexthop; |
| 374 | } |
| 375 | #endif /* HAVE_IPV6 */ |
| 376 | |
paul | 595db7f | 2003-05-25 21:35:06 +0000 | [diff] [blame] | 377 | struct nexthop * |
| 378 | nexthop_blackhole_add (struct rib *rib) |
| 379 | { |
| 380 | struct nexthop *nexthop; |
| 381 | |
Stephen Hemminger | 393deb9 | 2008-08-18 14:13:29 -0700 | [diff] [blame] | 382 | nexthop = XCALLOC (MTYPE_NEXTHOP, sizeof (struct nexthop)); |
paul | 595db7f | 2003-05-25 21:35:06 +0000 | [diff] [blame] | 383 | nexthop->type = NEXTHOP_TYPE_BLACKHOLE; |
| 384 | SET_FLAG (rib->flags, ZEBRA_FLAG_BLACKHOLE); |
| 385 | |
| 386 | nexthop_add (rib, nexthop); |
| 387 | |
| 388 | return nexthop; |
| 389 | } |
| 390 | |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 391 | /* This method checks whether a recursive nexthop has at |
| 392 | * least one resolved nexthop in the fib. |
| 393 | */ |
| 394 | int |
| 395 | nexthop_has_fib_child(struct nexthop *nexthop) |
| 396 | { |
| 397 | struct nexthop *nh; |
| 398 | |
| 399 | if (! CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_RECURSIVE)) |
| 400 | return 0; |
| 401 | |
| 402 | for (nh = nexthop->resolved; nh; nh = nh->next) |
| 403 | if (CHECK_FLAG (nh->flags, NEXTHOP_FLAG_FIB)) |
| 404 | return 1; |
| 405 | |
| 406 | return 0; |
| 407 | } |
| 408 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 409 | /* If force flag is not set, do not modify falgs at all for uninstall |
| 410 | the route from FIB. */ |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 411 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 412 | nexthop_active_ipv4 (struct rib *rib, struct nexthop *nexthop, int set, |
| 413 | struct route_node *top) |
| 414 | { |
| 415 | struct prefix_ipv4 p; |
| 416 | struct route_table *table; |
| 417 | struct route_node *rn; |
| 418 | struct rib *match; |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 419 | int resolved; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 420 | struct nexthop *newhop; |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 421 | struct nexthop *resolved_hop; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 422 | |
| 423 | if (nexthop->type == NEXTHOP_TYPE_IPV4) |
| 424 | nexthop->ifindex = 0; |
| 425 | |
| 426 | if (set) |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 427 | { |
| 428 | UNSET_FLAG (nexthop->flags, NEXTHOP_FLAG_RECURSIVE); |
| 429 | nexthops_free(nexthop->resolved); |
| 430 | nexthop->resolved = NULL; |
| 431 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 432 | |
| 433 | /* Make lookup prefix. */ |
| 434 | memset (&p, 0, sizeof (struct prefix_ipv4)); |
| 435 | p.family = AF_INET; |
| 436 | p.prefixlen = IPV4_MAX_PREFIXLEN; |
| 437 | p.prefix = nexthop->gate.ipv4; |
| 438 | |
| 439 | /* Lookup table. */ |
| 440 | table = vrf_table (AFI_IP, SAFI_UNICAST, 0); |
| 441 | if (! table) |
| 442 | return 0; |
| 443 | |
| 444 | rn = route_node_match (table, (struct prefix *) &p); |
| 445 | while (rn) |
| 446 | { |
| 447 | route_unlock_node (rn); |
| 448 | |
David Ward | a50c107 | 2009-12-03 15:34:39 +0300 | [diff] [blame] | 449 | /* If lookup self prefix return immediately. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 450 | if (rn == top) |
| 451 | return 0; |
| 452 | |
| 453 | /* Pick up selected route. */ |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 454 | RNODE_FOREACH_RIB (rn, match) |
Stephen Hemminger | 16814f9 | 2008-08-17 17:39:31 +0100 | [diff] [blame] | 455 | { |
| 456 | if (CHECK_FLAG (match->status, RIB_ENTRY_REMOVED)) |
| 457 | continue; |
| 458 | if (CHECK_FLAG (match->flags, ZEBRA_FLAG_SELECTED)) |
| 459 | break; |
| 460 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 461 | |
| 462 | /* If there is no selected route or matched route is EGP, go up |
| 463 | tree. */ |
| 464 | if (! match |
| 465 | || match->type == ZEBRA_ROUTE_BGP) |
| 466 | { |
| 467 | do { |
| 468 | rn = rn->parent; |
| 469 | } while (rn && rn->info == NULL); |
| 470 | if (rn) |
| 471 | route_lock_node (rn); |
| 472 | } |
| 473 | else |
| 474 | { |
Christian Franke | 48a53dc | 2013-07-05 15:35:38 +0000 | [diff] [blame] | 475 | /* If the longest prefix match for the nexthop yields |
| 476 | * a blackhole, mark it as inactive. */ |
| 477 | if (CHECK_FLAG (match->flags, ZEBRA_FLAG_BLACKHOLE) |
| 478 | || CHECK_FLAG (match->flags, ZEBRA_FLAG_REJECT)) |
| 479 | return 0; |
| 480 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 481 | if (match->type == ZEBRA_ROUTE_CONNECT) |
| 482 | { |
| 483 | /* Directly point connected route. */ |
| 484 | newhop = match->nexthop; |
| 485 | if (newhop && nexthop->type == NEXTHOP_TYPE_IPV4) |
| 486 | nexthop->ifindex = newhop->ifindex; |
| 487 | |
| 488 | return 1; |
| 489 | } |
| 490 | else if (CHECK_FLAG (rib->flags, ZEBRA_FLAG_INTERNAL)) |
| 491 | { |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 492 | resolved = 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 493 | for (newhop = match->nexthop; newhop; newhop = newhop->next) |
| 494 | if (CHECK_FLAG (newhop->flags, NEXTHOP_FLAG_FIB) |
| 495 | && ! CHECK_FLAG (newhop->flags, NEXTHOP_FLAG_RECURSIVE)) |
| 496 | { |
| 497 | if (set) |
| 498 | { |
| 499 | SET_FLAG (nexthop->flags, NEXTHOP_FLAG_RECURSIVE); |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 500 | |
| 501 | resolved_hop = XCALLOC(MTYPE_NEXTHOP, sizeof (struct nexthop)); |
| 502 | SET_FLAG (resolved_hop->flags, NEXTHOP_FLAG_ACTIVE); |
Christian Franke | c3e6b59 | 2013-07-05 15:35:40 +0000 | [diff] [blame] | 503 | /* If the resolving route specifies a gateway, use it */ |
| 504 | if (newhop->type == NEXTHOP_TYPE_IPV4 |
| 505 | || newhop->type == NEXTHOP_TYPE_IPV4_IFINDEX |
| 506 | || newhop->type == NEXTHOP_TYPE_IPV4_IFNAME) |
| 507 | { |
| 508 | resolved_hop->type = newhop->type; |
| 509 | resolved_hop->gate.ipv4 = newhop->gate.ipv4; |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 510 | |
Christian Franke | c3e6b59 | 2013-07-05 15:35:40 +0000 | [diff] [blame] | 511 | if (newhop->ifindex) |
| 512 | { |
| 513 | resolved_hop->type = NEXTHOP_TYPE_IPV4_IFINDEX; |
| 514 | resolved_hop->ifindex = newhop->ifindex; |
| 515 | } |
| 516 | } |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 517 | |
Christian Franke | c3e6b59 | 2013-07-05 15:35:40 +0000 | [diff] [blame] | 518 | /* If the resolving route is an interface route, |
| 519 | * it means the gateway we are looking up is connected |
| 520 | * to that interface. (The actual network is _not_ onlink). |
| 521 | * Therefore, the resolved route should have the original |
| 522 | * gateway as nexthop as it is directly connected. |
| 523 | * |
| 524 | * On Linux, we have to set the onlink netlink flag because |
| 525 | * otherwise, the kernel won't accept the route. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 526 | if (newhop->type == NEXTHOP_TYPE_IFINDEX |
Christian Franke | c3e6b59 | 2013-07-05 15:35:40 +0000 | [diff] [blame] | 527 | || newhop->type == NEXTHOP_TYPE_IFNAME) |
| 528 | { |
| 529 | resolved_hop->flags |= NEXTHOP_FLAG_ONLINK; |
| 530 | resolved_hop->type = NEXTHOP_TYPE_IPV4_IFINDEX; |
| 531 | resolved_hop->gate.ipv4 = nexthop->gate.ipv4; |
| 532 | resolved_hop->ifindex = newhop->ifindex; |
| 533 | } |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 534 | |
| 535 | _nexthop_add(&nexthop->resolved, resolved_hop); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 536 | } |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 537 | resolved = 1; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 538 | } |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 539 | return resolved; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 540 | } |
| 541 | else |
| 542 | { |
| 543 | return 0; |
| 544 | } |
| 545 | } |
| 546 | } |
| 547 | return 0; |
| 548 | } |
| 549 | |
| 550 | #ifdef HAVE_IPV6 |
| 551 | /* If force flag is not set, do not modify falgs at all for uninstall |
| 552 | the route from FIB. */ |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 553 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 554 | nexthop_active_ipv6 (struct rib *rib, struct nexthop *nexthop, int set, |
| 555 | struct route_node *top) |
| 556 | { |
| 557 | struct prefix_ipv6 p; |
| 558 | struct route_table *table; |
| 559 | struct route_node *rn; |
| 560 | struct rib *match; |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 561 | int resolved; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 562 | struct nexthop *newhop; |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 563 | struct nexthop *resolved_hop; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 564 | |
| 565 | if (nexthop->type == NEXTHOP_TYPE_IPV6) |
| 566 | nexthop->ifindex = 0; |
| 567 | |
| 568 | if (set) |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 569 | { |
| 570 | UNSET_FLAG (nexthop->flags, NEXTHOP_FLAG_RECURSIVE); |
| 571 | nexthops_free(nexthop->resolved); |
| 572 | nexthop->resolved = NULL; |
| 573 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 574 | |
| 575 | /* Make lookup prefix. */ |
| 576 | memset (&p, 0, sizeof (struct prefix_ipv6)); |
| 577 | p.family = AF_INET6; |
| 578 | p.prefixlen = IPV6_MAX_PREFIXLEN; |
| 579 | p.prefix = nexthop->gate.ipv6; |
| 580 | |
| 581 | /* Lookup table. */ |
| 582 | table = vrf_table (AFI_IP6, SAFI_UNICAST, 0); |
| 583 | if (! table) |
| 584 | return 0; |
| 585 | |
| 586 | rn = route_node_match (table, (struct prefix *) &p); |
| 587 | while (rn) |
| 588 | { |
| 589 | route_unlock_node (rn); |
| 590 | |
David Ward | a50c107 | 2009-12-03 15:34:39 +0300 | [diff] [blame] | 591 | /* If lookup self prefix return immediately. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 592 | if (rn == top) |
| 593 | return 0; |
| 594 | |
| 595 | /* Pick up selected route. */ |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 596 | RNODE_FOREACH_RIB (rn, match) |
Stephen Hemminger | 16814f9 | 2008-08-17 17:39:31 +0100 | [diff] [blame] | 597 | { |
| 598 | if (CHECK_FLAG (match->status, RIB_ENTRY_REMOVED)) |
| 599 | continue; |
| 600 | if (CHECK_FLAG (match->flags, ZEBRA_FLAG_SELECTED)) |
| 601 | break; |
| 602 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 603 | |
| 604 | /* If there is no selected route or matched route is EGP, go up |
| 605 | tree. */ |
| 606 | if (! match |
| 607 | || match->type == ZEBRA_ROUTE_BGP) |
| 608 | { |
| 609 | do { |
| 610 | rn = rn->parent; |
| 611 | } while (rn && rn->info == NULL); |
| 612 | if (rn) |
| 613 | route_lock_node (rn); |
| 614 | } |
| 615 | else |
| 616 | { |
Christian Franke | 48a53dc | 2013-07-05 15:35:38 +0000 | [diff] [blame] | 617 | /* If the longest prefix match for the nexthop yields |
| 618 | * a blackhole, mark it as inactive. */ |
| 619 | if (CHECK_FLAG (match->flags, ZEBRA_FLAG_BLACKHOLE) |
| 620 | || CHECK_FLAG (match->flags, ZEBRA_FLAG_REJECT)) |
| 621 | return 0; |
| 622 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 623 | if (match->type == ZEBRA_ROUTE_CONNECT) |
| 624 | { |
| 625 | /* Directly point connected route. */ |
| 626 | newhop = match->nexthop; |
| 627 | |
| 628 | if (newhop && nexthop->type == NEXTHOP_TYPE_IPV6) |
| 629 | nexthop->ifindex = newhop->ifindex; |
| 630 | |
| 631 | return 1; |
| 632 | } |
| 633 | else if (CHECK_FLAG (rib->flags, ZEBRA_FLAG_INTERNAL)) |
| 634 | { |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 635 | resolved = 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 636 | for (newhop = match->nexthop; newhop; newhop = newhop->next) |
| 637 | if (CHECK_FLAG (newhop->flags, NEXTHOP_FLAG_FIB) |
| 638 | && ! CHECK_FLAG (newhop->flags, NEXTHOP_FLAG_RECURSIVE)) |
| 639 | { |
| 640 | if (set) |
| 641 | { |
| 642 | SET_FLAG (nexthop->flags, NEXTHOP_FLAG_RECURSIVE); |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 643 | |
| 644 | resolved_hop = XCALLOC(MTYPE_NEXTHOP, sizeof (struct nexthop)); |
| 645 | SET_FLAG (resolved_hop->flags, NEXTHOP_FLAG_ACTIVE); |
Christian Franke | c3e6b59 | 2013-07-05 15:35:40 +0000 | [diff] [blame] | 646 | /* See nexthop_active_ipv4 for a description how the |
| 647 | * resolved nexthop is constructed. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 648 | if (newhop->type == NEXTHOP_TYPE_IPV6 |
| 649 | || newhop->type == NEXTHOP_TYPE_IPV6_IFINDEX |
| 650 | || newhop->type == NEXTHOP_TYPE_IPV6_IFNAME) |
Christian Franke | c3e6b59 | 2013-07-05 15:35:40 +0000 | [diff] [blame] | 651 | { |
| 652 | resolved_hop->type = newhop->type; |
| 653 | resolved_hop->gate.ipv6 = newhop->gate.ipv6; |
| 654 | |
| 655 | if (newhop->ifindex) |
| 656 | { |
| 657 | resolved_hop->type = NEXTHOP_TYPE_IPV6_IFINDEX; |
| 658 | resolved_hop->ifindex = newhop->ifindex; |
| 659 | } |
| 660 | } |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 661 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 662 | if (newhop->type == NEXTHOP_TYPE_IFINDEX |
Christian Franke | c3e6b59 | 2013-07-05 15:35:40 +0000 | [diff] [blame] | 663 | || newhop->type == NEXTHOP_TYPE_IFNAME) |
| 664 | { |
| 665 | resolved_hop->flags |= NEXTHOP_FLAG_ONLINK; |
| 666 | resolved_hop->type = NEXTHOP_TYPE_IPV6_IFINDEX; |
| 667 | resolved_hop->gate.ipv6 = nexthop->gate.ipv6; |
| 668 | resolved_hop->ifindex = newhop->ifindex; |
| 669 | } |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 670 | |
| 671 | _nexthop_add(&nexthop->resolved, resolved_hop); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 672 | } |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 673 | resolved = 1; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 674 | } |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 675 | return resolved; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 676 | } |
| 677 | else |
| 678 | { |
| 679 | return 0; |
| 680 | } |
| 681 | } |
| 682 | } |
| 683 | return 0; |
| 684 | } |
| 685 | #endif /* HAVE_IPV6 */ |
| 686 | |
| 687 | struct rib * |
| 688 | rib_match_ipv4 (struct in_addr addr) |
| 689 | { |
| 690 | struct prefix_ipv4 p; |
| 691 | struct route_table *table; |
| 692 | struct route_node *rn; |
| 693 | struct rib *match; |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 694 | struct nexthop *newhop, *tnewhop; |
| 695 | int recursing; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 696 | |
| 697 | /* Lookup table. */ |
| 698 | table = vrf_table (AFI_IP, SAFI_UNICAST, 0); |
| 699 | if (! table) |
| 700 | return 0; |
| 701 | |
| 702 | memset (&p, 0, sizeof (struct prefix_ipv4)); |
| 703 | p.family = AF_INET; |
| 704 | p.prefixlen = IPV4_MAX_PREFIXLEN; |
| 705 | p.prefix = addr; |
| 706 | |
| 707 | rn = route_node_match (table, (struct prefix *) &p); |
| 708 | |
| 709 | while (rn) |
| 710 | { |
| 711 | route_unlock_node (rn); |
| 712 | |
| 713 | /* Pick up selected route. */ |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 714 | RNODE_FOREACH_RIB (rn, match) |
Stephen Hemminger | 16814f9 | 2008-08-17 17:39:31 +0100 | [diff] [blame] | 715 | { |
| 716 | if (CHECK_FLAG (match->status, RIB_ENTRY_REMOVED)) |
| 717 | continue; |
| 718 | if (CHECK_FLAG (match->flags, ZEBRA_FLAG_SELECTED)) |
| 719 | break; |
| 720 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 721 | |
| 722 | /* If there is no selected route or matched route is EGP, go up |
| 723 | tree. */ |
| 724 | if (! match |
| 725 | || match->type == ZEBRA_ROUTE_BGP) |
| 726 | { |
| 727 | do { |
| 728 | rn = rn->parent; |
| 729 | } while (rn && rn->info == NULL); |
| 730 | if (rn) |
| 731 | route_lock_node (rn); |
| 732 | } |
| 733 | else |
| 734 | { |
| 735 | if (match->type == ZEBRA_ROUTE_CONNECT) |
| 736 | /* Directly point connected route. */ |
| 737 | return match; |
| 738 | else |
| 739 | { |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 740 | for (ALL_NEXTHOPS_RO(match->nexthop, newhop, tnewhop, recursing)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 741 | if (CHECK_FLAG (newhop->flags, NEXTHOP_FLAG_FIB)) |
| 742 | return match; |
| 743 | return NULL; |
| 744 | } |
| 745 | } |
| 746 | } |
| 747 | return NULL; |
| 748 | } |
| 749 | |
| 750 | struct rib * |
| 751 | rib_lookup_ipv4 (struct prefix_ipv4 *p) |
| 752 | { |
| 753 | struct route_table *table; |
| 754 | struct route_node *rn; |
| 755 | struct rib *match; |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 756 | struct nexthop *nexthop, *tnexthop; |
| 757 | int recursing; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 758 | |
| 759 | /* Lookup table. */ |
| 760 | table = vrf_table (AFI_IP, SAFI_UNICAST, 0); |
| 761 | if (! table) |
| 762 | return 0; |
| 763 | |
| 764 | rn = route_node_lookup (table, (struct prefix *) p); |
| 765 | |
| 766 | /* No route for this prefix. */ |
| 767 | if (! rn) |
| 768 | return NULL; |
| 769 | |
| 770 | /* Unlock node. */ |
| 771 | route_unlock_node (rn); |
| 772 | |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 773 | RNODE_FOREACH_RIB (rn, match) |
Stephen Hemminger | 16814f9 | 2008-08-17 17:39:31 +0100 | [diff] [blame] | 774 | { |
| 775 | if (CHECK_FLAG (match->status, RIB_ENTRY_REMOVED)) |
| 776 | continue; |
| 777 | if (CHECK_FLAG (match->flags, ZEBRA_FLAG_SELECTED)) |
| 778 | break; |
| 779 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 780 | |
| 781 | if (! match || match->type == ZEBRA_ROUTE_BGP) |
| 782 | return NULL; |
| 783 | |
| 784 | if (match->type == ZEBRA_ROUTE_CONNECT) |
| 785 | return match; |
| 786 | |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 787 | for (ALL_NEXTHOPS_RO(match->nexthop, nexthop, tnexthop, recursing)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 788 | if (CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB)) |
| 789 | return match; |
| 790 | |
| 791 | return NULL; |
| 792 | } |
| 793 | |
Denis Ovsienko | dc95824 | 2007-08-13 16:03:06 +0000 | [diff] [blame] | 794 | /* |
| 795 | * This clone function, unlike its original rib_lookup_ipv4(), checks |
| 796 | * if specified IPv4 route record (prefix/mask -> gate) exists in |
| 797 | * the whole RIB and has ZEBRA_FLAG_SELECTED set. |
| 798 | * |
| 799 | * Return values: |
| 800 | * -1: error |
| 801 | * 0: exact match found |
| 802 | * 1: a match was found with a different gate |
| 803 | * 2: connected route found |
| 804 | * 3: no matches found |
| 805 | */ |
| 806 | int |
| 807 | rib_lookup_ipv4_route (struct prefix_ipv4 *p, union sockunion * qgate) |
| 808 | { |
| 809 | struct route_table *table; |
| 810 | struct route_node *rn; |
| 811 | struct rib *match; |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 812 | struct nexthop *nexthop, *tnexthop; |
| 813 | int recursing; |
| 814 | int nexthops_active; |
Denis Ovsienko | dc95824 | 2007-08-13 16:03:06 +0000 | [diff] [blame] | 815 | |
| 816 | /* Lookup table. */ |
| 817 | table = vrf_table (AFI_IP, SAFI_UNICAST, 0); |
| 818 | if (! table) |
| 819 | return ZEBRA_RIB_LOOKUP_ERROR; |
| 820 | |
| 821 | /* Scan the RIB table for exactly matching RIB entry. */ |
| 822 | rn = route_node_lookup (table, (struct prefix *) p); |
| 823 | |
| 824 | /* No route for this prefix. */ |
| 825 | if (! rn) |
| 826 | return ZEBRA_RIB_NOTFOUND; |
| 827 | |
| 828 | /* Unlock node. */ |
| 829 | route_unlock_node (rn); |
| 830 | |
| 831 | /* Find out if a "selected" RR for the discovered RIB entry exists ever. */ |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 832 | RNODE_FOREACH_RIB (rn, match) |
Stephen Hemminger | 16814f9 | 2008-08-17 17:39:31 +0100 | [diff] [blame] | 833 | { |
| 834 | if (CHECK_FLAG (match->status, RIB_ENTRY_REMOVED)) |
| 835 | continue; |
| 836 | if (CHECK_FLAG (match->flags, ZEBRA_FLAG_SELECTED)) |
| 837 | break; |
| 838 | } |
Denis Ovsienko | dc95824 | 2007-08-13 16:03:06 +0000 | [diff] [blame] | 839 | |
| 840 | /* None such found :( */ |
| 841 | if (!match) |
| 842 | return ZEBRA_RIB_NOTFOUND; |
| 843 | |
| 844 | if (match->type == ZEBRA_ROUTE_CONNECT) |
| 845 | return ZEBRA_RIB_FOUND_CONNECTED; |
| 846 | |
| 847 | /* Ok, we have a cood candidate, let's check it's nexthop list... */ |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 848 | nexthops_active = 0; |
| 849 | for (ALL_NEXTHOPS_RO(match->nexthop, nexthop, tnexthop, recursing)) |
Denis Ovsienko | dc95824 | 2007-08-13 16:03:06 +0000 | [diff] [blame] | 850 | if (CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB)) |
Denis Ovsienko | dc95824 | 2007-08-13 16:03:06 +0000 | [diff] [blame] | 851 | { |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 852 | nexthops_active = 1; |
| 853 | if (nexthop->gate.ipv4.s_addr == sockunion2ip (qgate)) |
| 854 | return ZEBRA_RIB_FOUND_EXACT; |
Denis Ovsienko | dc95824 | 2007-08-13 16:03:06 +0000 | [diff] [blame] | 855 | if (IS_ZEBRA_DEBUG_RIB) |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 856 | { |
| 857 | char gate_buf[INET_ADDRSTRLEN], qgate_buf[INET_ADDRSTRLEN]; |
| 858 | inet_ntop (AF_INET, &nexthop->gate.ipv4.s_addr, gate_buf, INET_ADDRSTRLEN); |
| 859 | inet_ntop (AF_INET, &sockunion2ip(qgate), qgate_buf, INET_ADDRSTRLEN); |
| 860 | zlog_debug ("%s: qgate == %s, %s == %s", __func__, |
| 861 | qgate_buf, recursing ? "rgate" : "gate", gate_buf); |
| 862 | } |
Denis Ovsienko | dc95824 | 2007-08-13 16:03:06 +0000 | [diff] [blame] | 863 | } |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 864 | |
| 865 | if (nexthops_active) |
| 866 | return ZEBRA_RIB_FOUND_NOGATE; |
Denis Ovsienko | dc95824 | 2007-08-13 16:03:06 +0000 | [diff] [blame] | 867 | |
| 868 | return ZEBRA_RIB_NOTFOUND; |
| 869 | } |
| 870 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 871 | #ifdef HAVE_IPV6 |
| 872 | struct rib * |
| 873 | rib_match_ipv6 (struct in6_addr *addr) |
| 874 | { |
| 875 | struct prefix_ipv6 p; |
| 876 | struct route_table *table; |
| 877 | struct route_node *rn; |
| 878 | struct rib *match; |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 879 | struct nexthop *newhop, *tnewhop; |
| 880 | int recursing; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 881 | |
| 882 | /* Lookup table. */ |
| 883 | table = vrf_table (AFI_IP6, SAFI_UNICAST, 0); |
| 884 | if (! table) |
| 885 | return 0; |
| 886 | |
| 887 | memset (&p, 0, sizeof (struct prefix_ipv6)); |
| 888 | p.family = AF_INET6; |
| 889 | p.prefixlen = IPV6_MAX_PREFIXLEN; |
| 890 | IPV6_ADDR_COPY (&p.prefix, addr); |
| 891 | |
| 892 | rn = route_node_match (table, (struct prefix *) &p); |
| 893 | |
| 894 | while (rn) |
| 895 | { |
| 896 | route_unlock_node (rn); |
| 897 | |
| 898 | /* Pick up selected route. */ |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 899 | RNODE_FOREACH_RIB (rn, match) |
Stephen Hemminger | 16814f9 | 2008-08-17 17:39:31 +0100 | [diff] [blame] | 900 | { |
| 901 | if (CHECK_FLAG (match->status, RIB_ENTRY_REMOVED)) |
| 902 | continue; |
| 903 | if (CHECK_FLAG (match->flags, ZEBRA_FLAG_SELECTED)) |
| 904 | break; |
| 905 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 906 | |
| 907 | /* If there is no selected route or matched route is EGP, go up |
| 908 | tree. */ |
| 909 | if (! match |
| 910 | || match->type == ZEBRA_ROUTE_BGP) |
| 911 | { |
| 912 | do { |
| 913 | rn = rn->parent; |
| 914 | } while (rn && rn->info == NULL); |
| 915 | if (rn) |
| 916 | route_lock_node (rn); |
| 917 | } |
| 918 | else |
| 919 | { |
| 920 | if (match->type == ZEBRA_ROUTE_CONNECT) |
| 921 | /* Directly point connected route. */ |
| 922 | return match; |
| 923 | else |
| 924 | { |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 925 | for (ALL_NEXTHOPS_RO(match->nexthop, newhop, tnewhop, recursing)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 926 | if (CHECK_FLAG (newhop->flags, NEXTHOP_FLAG_FIB)) |
| 927 | return match; |
| 928 | return NULL; |
| 929 | } |
| 930 | } |
| 931 | } |
| 932 | return NULL; |
| 933 | } |
| 934 | #endif /* HAVE_IPV6 */ |
| 935 | |
Paul Jakma | 7514fb7 | 2007-05-02 16:05:35 +0000 | [diff] [blame] | 936 | #define RIB_SYSTEM_ROUTE(R) \ |
| 937 | ((R)->type == ZEBRA_ROUTE_KERNEL || (R)->type == ZEBRA_ROUTE_CONNECT) |
| 938 | |
Denis Ovsienko | dc95824 | 2007-08-13 16:03:06 +0000 | [diff] [blame] | 939 | /* This function verifies reachability of one given nexthop, which can be |
| 940 | * numbered or unnumbered, IPv4 or IPv6. The result is unconditionally stored |
| 941 | * in nexthop->flags field. If the 4th parameter, 'set', is non-zero, |
| 942 | * nexthop->ifindex will be updated appropriately as well. |
| 943 | * An existing route map can turn (otherwise active) nexthop into inactive, but |
| 944 | * not vice versa. |
| 945 | * |
| 946 | * The return value is the final value of 'ACTIVE' flag. |
| 947 | */ |
| 948 | |
Stephen Hemminger | d02c56c | 2009-12-08 13:14:27 +0300 | [diff] [blame] | 949 | static unsigned |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 950 | nexthop_active_check (struct route_node *rn, struct rib *rib, |
| 951 | struct nexthop *nexthop, int set) |
| 952 | { |
Christian Franke | f3a1732 | 2013-07-05 15:35:41 +0000 | [diff] [blame] | 953 | rib_table_info_t *info = rn->table->info; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 954 | struct interface *ifp; |
Paul Jakma | 7514fb7 | 2007-05-02 16:05:35 +0000 | [diff] [blame] | 955 | route_map_result_t ret = RMAP_MATCH; |
| 956 | extern char *proto_rm[AFI_MAX][ZEBRA_ROUTE_MAX+1]; |
| 957 | struct route_map *rmap; |
| 958 | int family; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 959 | |
Paul Jakma | 7514fb7 | 2007-05-02 16:05:35 +0000 | [diff] [blame] | 960 | family = 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 961 | switch (nexthop->type) |
| 962 | { |
| 963 | case NEXTHOP_TYPE_IFINDEX: |
| 964 | ifp = if_lookup_by_index (nexthop->ifindex); |
Andrew J. Schorr | 3f08767 | 2008-01-08 20:12:46 +0000 | [diff] [blame] | 965 | if (ifp && if_is_operative(ifp)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 966 | SET_FLAG (nexthop->flags, NEXTHOP_FLAG_ACTIVE); |
| 967 | else |
| 968 | UNSET_FLAG (nexthop->flags, NEXTHOP_FLAG_ACTIVE); |
| 969 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 970 | case NEXTHOP_TYPE_IPV6_IFNAME: |
Paul Jakma | 7514fb7 | 2007-05-02 16:05:35 +0000 | [diff] [blame] | 971 | family = AFI_IP6; |
| 972 | case NEXTHOP_TYPE_IFNAME: |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 973 | ifp = if_lookup_by_name (nexthop->ifname); |
Andrew J. Schorr | 3f08767 | 2008-01-08 20:12:46 +0000 | [diff] [blame] | 974 | if (ifp && if_is_operative(ifp)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 975 | { |
| 976 | if (set) |
| 977 | nexthop->ifindex = ifp->ifindex; |
| 978 | SET_FLAG (nexthop->flags, NEXTHOP_FLAG_ACTIVE); |
| 979 | } |
| 980 | else |
| 981 | { |
| 982 | if (set) |
| 983 | nexthop->ifindex = 0; |
| 984 | UNSET_FLAG (nexthop->flags, NEXTHOP_FLAG_ACTIVE); |
| 985 | } |
| 986 | break; |
| 987 | case NEXTHOP_TYPE_IPV4: |
| 988 | case NEXTHOP_TYPE_IPV4_IFINDEX: |
Paul Jakma | 7514fb7 | 2007-05-02 16:05:35 +0000 | [diff] [blame] | 989 | family = AFI_IP; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 990 | if (nexthop_active_ipv4 (rib, nexthop, set, rn)) |
| 991 | SET_FLAG (nexthop->flags, NEXTHOP_FLAG_ACTIVE); |
| 992 | else |
| 993 | UNSET_FLAG (nexthop->flags, NEXTHOP_FLAG_ACTIVE); |
| 994 | break; |
| 995 | #ifdef HAVE_IPV6 |
| 996 | case NEXTHOP_TYPE_IPV6: |
Paul Jakma | 7514fb7 | 2007-05-02 16:05:35 +0000 | [diff] [blame] | 997 | family = AFI_IP6; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 998 | if (nexthop_active_ipv6 (rib, nexthop, set, rn)) |
| 999 | SET_FLAG (nexthop->flags, NEXTHOP_FLAG_ACTIVE); |
| 1000 | else |
| 1001 | UNSET_FLAG (nexthop->flags, NEXTHOP_FLAG_ACTIVE); |
| 1002 | break; |
| 1003 | case NEXTHOP_TYPE_IPV6_IFINDEX: |
Paul Jakma | 7514fb7 | 2007-05-02 16:05:35 +0000 | [diff] [blame] | 1004 | family = AFI_IP6; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1005 | if (IN6_IS_ADDR_LINKLOCAL (&nexthop->gate.ipv6)) |
| 1006 | { |
| 1007 | ifp = if_lookup_by_index (nexthop->ifindex); |
Andrew J. Schorr | 3f08767 | 2008-01-08 20:12:46 +0000 | [diff] [blame] | 1008 | if (ifp && if_is_operative(ifp)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1009 | SET_FLAG (nexthop->flags, NEXTHOP_FLAG_ACTIVE); |
| 1010 | else |
| 1011 | UNSET_FLAG (nexthop->flags, NEXTHOP_FLAG_ACTIVE); |
| 1012 | } |
| 1013 | else |
| 1014 | { |
| 1015 | if (nexthop_active_ipv6 (rib, nexthop, set, rn)) |
| 1016 | SET_FLAG (nexthop->flags, NEXTHOP_FLAG_ACTIVE); |
| 1017 | else |
| 1018 | UNSET_FLAG (nexthop->flags, NEXTHOP_FLAG_ACTIVE); |
| 1019 | } |
| 1020 | break; |
| 1021 | #endif /* HAVE_IPV6 */ |
paul | 595db7f | 2003-05-25 21:35:06 +0000 | [diff] [blame] | 1022 | case NEXTHOP_TYPE_BLACKHOLE: |
| 1023 | SET_FLAG (nexthop->flags, NEXTHOP_FLAG_ACTIVE); |
| 1024 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1025 | default: |
| 1026 | break; |
| 1027 | } |
Paul Jakma | 7514fb7 | 2007-05-02 16:05:35 +0000 | [diff] [blame] | 1028 | if (! CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_ACTIVE)) |
| 1029 | return 0; |
| 1030 | |
Christian Franke | f3a1732 | 2013-07-05 15:35:41 +0000 | [diff] [blame] | 1031 | /* XXX: What exactly do those checks do? Do we support |
| 1032 | * e.g. IPv4 routes with IPv6 nexthops or vice versa? */ |
Paul Jakma | 7514fb7 | 2007-05-02 16:05:35 +0000 | [diff] [blame] | 1033 | if (RIB_SYSTEM_ROUTE(rib) || |
| 1034 | (family == AFI_IP && rn->p.family != AF_INET) || |
| 1035 | (family == AFI_IP6 && rn->p.family != AF_INET6)) |
| 1036 | return CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_ACTIVE); |
| 1037 | |
Christian Franke | f3a1732 | 2013-07-05 15:35:41 +0000 | [diff] [blame] | 1038 | /* The original code didn't determine the family correctly |
| 1039 | * e.g. for NEXTHOP_TYPE_IFINDEX. Retrieve the correct afi |
| 1040 | * from the rib_table_info in those cases. |
| 1041 | * Possibly it may be better to use only the rib_table_info |
| 1042 | * in every case. |
| 1043 | */ |
| 1044 | if (!family) |
| 1045 | family = info->afi; |
| 1046 | |
Paul Jakma | 7514fb7 | 2007-05-02 16:05:35 +0000 | [diff] [blame] | 1047 | rmap = 0; |
| 1048 | if (rib->type >= 0 && rib->type < ZEBRA_ROUTE_MAX && |
| 1049 | proto_rm[family][rib->type]) |
| 1050 | rmap = route_map_lookup_by_name (proto_rm[family][rib->type]); |
| 1051 | if (!rmap && proto_rm[family][ZEBRA_ROUTE_MAX]) |
| 1052 | rmap = route_map_lookup_by_name (proto_rm[family][ZEBRA_ROUTE_MAX]); |
| 1053 | if (rmap) { |
| 1054 | ret = route_map_apply(rmap, &rn->p, RMAP_ZEBRA, nexthop); |
| 1055 | } |
| 1056 | |
| 1057 | if (ret == RMAP_DENYMATCH) |
| 1058 | UNSET_FLAG (nexthop->flags, NEXTHOP_FLAG_ACTIVE); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1059 | return CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_ACTIVE); |
| 1060 | } |
| 1061 | |
Denis Ovsienko | 03e232a | 2007-08-14 09:46:48 +0000 | [diff] [blame] | 1062 | /* Iterate over all nexthops of the given RIB entry and refresh their |
| 1063 | * ACTIVE flag. rib->nexthop_active_num is updated accordingly. If any |
| 1064 | * nexthop is found to toggle the ACTIVE flag, the whole rib structure |
| 1065 | * is flagged with ZEBRA_FLAG_CHANGED. The 4th 'set' argument is |
| 1066 | * transparently passed to nexthop_active_check(). |
| 1067 | * |
| 1068 | * Return value is the new number of active nexthops. |
| 1069 | */ |
| 1070 | |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 1071 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1072 | nexthop_active_update (struct route_node *rn, struct rib *rib, int set) |
| 1073 | { |
| 1074 | struct nexthop *nexthop; |
Stephen Hemminger | d02c56c | 2009-12-08 13:14:27 +0300 | [diff] [blame] | 1075 | unsigned int prev_active, prev_index, new_active; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1076 | |
| 1077 | rib->nexthop_active_num = 0; |
| 1078 | UNSET_FLAG (rib->flags, ZEBRA_FLAG_CHANGED); |
| 1079 | |
| 1080 | for (nexthop = rib->nexthop; nexthop; nexthop = nexthop->next) |
Denis Ovsienko | 03e232a | 2007-08-14 09:46:48 +0000 | [diff] [blame] | 1081 | { |
| 1082 | prev_active = CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_ACTIVE); |
Joakim Tjernlund | c3a5606 | 2009-06-24 19:15:36 +0200 | [diff] [blame] | 1083 | prev_index = nexthop->ifindex; |
Denis Ovsienko | 03e232a | 2007-08-14 09:46:48 +0000 | [diff] [blame] | 1084 | if ((new_active = nexthop_active_check (rn, rib, nexthop, set))) |
| 1085 | rib->nexthop_active_num++; |
Joakim Tjernlund | c3a5606 | 2009-06-24 19:15:36 +0200 | [diff] [blame] | 1086 | if (prev_active != new_active || |
| 1087 | prev_index != nexthop->ifindex) |
Denis Ovsienko | 03e232a | 2007-08-14 09:46:48 +0000 | [diff] [blame] | 1088 | SET_FLAG (rib->flags, ZEBRA_FLAG_CHANGED); |
| 1089 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1090 | return rib->nexthop_active_num; |
| 1091 | } |
paul | 6baeb98 | 2003-10-28 03:47:15 +0000 | [diff] [blame] | 1092 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1093 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1094 | |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 1095 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1096 | rib_install_kernel (struct route_node *rn, struct rib *rib) |
| 1097 | { |
| 1098 | int ret = 0; |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 1099 | struct nexthop *nexthop, *tnexthop; |
| 1100 | int recursing; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1101 | |
Avneesh Sachdev | 5adc252 | 2012-11-13 22:48:59 +0000 | [diff] [blame] | 1102 | /* |
| 1103 | * Make sure we update the FPM any time we send new information to |
| 1104 | * the kernel. |
| 1105 | */ |
| 1106 | zfpm_trigger_update (rn, "installing in kernel"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1107 | switch (PREFIX_FAMILY (&rn->p)) |
| 1108 | { |
| 1109 | case AF_INET: |
| 1110 | ret = kernel_add_ipv4 (&rn->p, rib); |
| 1111 | break; |
| 1112 | #ifdef HAVE_IPV6 |
| 1113 | case AF_INET6: |
| 1114 | ret = kernel_add_ipv6 (&rn->p, rib); |
| 1115 | break; |
| 1116 | #endif /* HAVE_IPV6 */ |
| 1117 | } |
| 1118 | |
Denis Ovsienko | dc95824 | 2007-08-13 16:03:06 +0000 | [diff] [blame] | 1119 | /* This condition is never met, if we are using rt_socket.c */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1120 | if (ret < 0) |
| 1121 | { |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 1122 | for (ALL_NEXTHOPS_RO(rib->nexthop, nexthop, tnexthop, recursing)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1123 | UNSET_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB); |
| 1124 | } |
| 1125 | } |
| 1126 | |
| 1127 | /* Uninstall the route from kernel. */ |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 1128 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1129 | rib_uninstall_kernel (struct route_node *rn, struct rib *rib) |
| 1130 | { |
| 1131 | int ret = 0; |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 1132 | struct nexthop *nexthop, *tnexthop; |
| 1133 | int recursing; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1134 | |
Avneesh Sachdev | 5adc252 | 2012-11-13 22:48:59 +0000 | [diff] [blame] | 1135 | /* |
| 1136 | * Make sure we update the FPM any time we send new information to |
| 1137 | * the kernel. |
| 1138 | */ |
| 1139 | zfpm_trigger_update (rn, "uninstalling from kernel"); |
| 1140 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1141 | switch (PREFIX_FAMILY (&rn->p)) |
| 1142 | { |
| 1143 | case AF_INET: |
| 1144 | ret = kernel_delete_ipv4 (&rn->p, rib); |
| 1145 | break; |
| 1146 | #ifdef HAVE_IPV6 |
| 1147 | case AF_INET6: |
| 1148 | ret = kernel_delete_ipv6 (&rn->p, rib); |
| 1149 | break; |
| 1150 | #endif /* HAVE_IPV6 */ |
| 1151 | } |
| 1152 | |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 1153 | for (ALL_NEXTHOPS_RO(rib->nexthop, nexthop, tnexthop, recursing)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1154 | UNSET_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB); |
| 1155 | |
| 1156 | return ret; |
| 1157 | } |
| 1158 | |
| 1159 | /* Uninstall the route from kernel. */ |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 1160 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1161 | rib_uninstall (struct route_node *rn, struct rib *rib) |
| 1162 | { |
| 1163 | if (CHECK_FLAG (rib->flags, ZEBRA_FLAG_SELECTED)) |
| 1164 | { |
Avneesh Sachdev | 5adc252 | 2012-11-13 22:48:59 +0000 | [diff] [blame] | 1165 | zfpm_trigger_update (rn, "rib_uninstall"); |
| 1166 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1167 | redistribute_delete (&rn->p, rib); |
| 1168 | if (! RIB_SYSTEM_ROUTE (rib)) |
| 1169 | rib_uninstall_kernel (rn, rib); |
| 1170 | UNSET_FLAG (rib->flags, ZEBRA_FLAG_SELECTED); |
| 1171 | } |
| 1172 | } |
| 1173 | |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1174 | static void rib_unlink (struct route_node *, struct rib *); |
| 1175 | |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 1176 | /* |
| 1177 | * rib_can_delete_dest |
| 1178 | * |
| 1179 | * Returns TRUE if the given dest can be deleted from the table. |
| 1180 | */ |
| 1181 | static int |
| 1182 | rib_can_delete_dest (rib_dest_t *dest) |
| 1183 | { |
| 1184 | if (dest->routes) |
| 1185 | { |
| 1186 | return 0; |
| 1187 | } |
| 1188 | |
Avneesh Sachdev | 5adc252 | 2012-11-13 22:48:59 +0000 | [diff] [blame] | 1189 | /* |
| 1190 | * Don't delete the dest if we have to update the FPM about this |
| 1191 | * prefix. |
| 1192 | */ |
| 1193 | if (CHECK_FLAG (dest->flags, RIB_DEST_UPDATE_FPM) || |
| 1194 | CHECK_FLAG (dest->flags, RIB_DEST_SENT_TO_FPM)) |
| 1195 | return 0; |
| 1196 | |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 1197 | return 1; |
| 1198 | } |
| 1199 | |
| 1200 | /* |
| 1201 | * rib_gc_dest |
| 1202 | * |
| 1203 | * Garbage collect the rib dest corresponding to the given route node |
| 1204 | * if appropriate. |
| 1205 | * |
| 1206 | * Returns TRUE if the dest was deleted, FALSE otherwise. |
| 1207 | */ |
| 1208 | int |
| 1209 | rib_gc_dest (struct route_node *rn) |
| 1210 | { |
| 1211 | rib_dest_t *dest; |
| 1212 | char buf[INET6_ADDRSTRLEN]; |
| 1213 | |
| 1214 | dest = rib_dest_from_rnode (rn); |
| 1215 | if (!dest) |
| 1216 | return 0; |
| 1217 | |
| 1218 | if (!rib_can_delete_dest (dest)) |
| 1219 | return 0; |
| 1220 | |
| 1221 | if (IS_ZEBRA_DEBUG_RIB) |
| 1222 | { |
| 1223 | inet_ntop (rn->p.family, &rn->p.u.prefix, buf, sizeof (buf)); |
| 1224 | zlog_debug ("%s: %s/%d: removing dest from table", __func__, |
| 1225 | buf, rn->p.prefixlen); |
| 1226 | } |
| 1227 | |
| 1228 | dest->rnode = NULL; |
| 1229 | XFREE (MTYPE_RIB_DEST, dest); |
| 1230 | rn->info = NULL; |
| 1231 | |
| 1232 | /* |
| 1233 | * Release the one reference that we keep on the route node. |
| 1234 | */ |
| 1235 | route_unlock_node (rn); |
| 1236 | return 1; |
| 1237 | } |
| 1238 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1239 | /* Core function for processing routing information base. */ |
Denis Ovsienko | e96f920 | 2008-06-02 12:03:22 +0000 | [diff] [blame] | 1240 | static void |
| 1241 | rib_process (struct route_node *rn) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1242 | { |
| 1243 | struct rib *rib; |
| 1244 | struct rib *next; |
| 1245 | struct rib *fib = NULL; |
| 1246 | struct rib *select = NULL; |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1247 | struct rib *del = NULL; |
paul | d753e9e | 2003-01-22 19:45:50 +0000 | [diff] [blame] | 1248 | int installed = 0; |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 1249 | struct nexthop *nexthop = NULL, *tnexthop; |
| 1250 | int recursing; |
Denis Ovsienko | f304cb4 | 2007-10-03 12:27:16 +0000 | [diff] [blame] | 1251 | char buf[INET6_ADDRSTRLEN]; |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1252 | |
| 1253 | assert (rn); |
| 1254 | |
Paul Jakma | 93bdada | 2007-08-06 19:25:11 +0000 | [diff] [blame] | 1255 | if (IS_ZEBRA_DEBUG_RIB || IS_ZEBRA_DEBUG_RIB_Q) |
Denis Ovsienko | f304cb4 | 2007-10-03 12:27:16 +0000 | [diff] [blame] | 1256 | inet_ntop (rn->p.family, &rn->p.u.prefix, buf, INET6_ADDRSTRLEN); |
Paul Jakma | 93bdada | 2007-08-06 19:25:11 +0000 | [diff] [blame] | 1257 | |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 1258 | RNODE_FOREACH_RIB_SAFE (rn, rib, next) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1259 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1260 | /* Currently installed rib. */ |
| 1261 | if (CHECK_FLAG (rib->flags, ZEBRA_FLAG_SELECTED)) |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1262 | { |
| 1263 | assert (fib == NULL); |
| 1264 | fib = rib; |
| 1265 | } |
| 1266 | |
| 1267 | /* Unlock removed routes, so they'll be freed, bar the FIB entry, |
| 1268 | * which we need to do do further work with below. |
| 1269 | */ |
| 1270 | if (CHECK_FLAG (rib->status, RIB_ENTRY_REMOVED)) |
| 1271 | { |
| 1272 | if (rib != fib) |
| 1273 | { |
| 1274 | if (IS_ZEBRA_DEBUG_RIB) |
Paul Jakma | 93bdada | 2007-08-06 19:25:11 +0000 | [diff] [blame] | 1275 | zlog_debug ("%s: %s/%d: rn %p, removing rib %p", __func__, |
| 1276 | buf, rn->p.prefixlen, rn, rib); |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 1277 | rib_unlink (rn, rib); |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1278 | } |
| 1279 | else |
| 1280 | del = rib; |
| 1281 | |
| 1282 | continue; |
| 1283 | } |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1284 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1285 | /* Skip unreachable nexthop. */ |
| 1286 | if (! nexthop_active_update (rn, rib, 0)) |
paul | 7021c42 | 2003-07-15 12:52:22 +0000 | [diff] [blame] | 1287 | continue; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1288 | |
| 1289 | /* Infinit distance. */ |
| 1290 | if (rib->distance == DISTANCE_INFINITY) |
paul | 7021c42 | 2003-07-15 12:52:22 +0000 | [diff] [blame] | 1291 | continue; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1292 | |
paul | af887b5 | 2006-01-18 14:52:52 +0000 | [diff] [blame] | 1293 | /* Newly selected rib, the common case. */ |
| 1294 | if (!select) |
| 1295 | { |
| 1296 | select = rib; |
| 1297 | continue; |
| 1298 | } |
| 1299 | |
| 1300 | /* filter route selection in following order: |
paul | af887b5 | 2006-01-18 14:52:52 +0000 | [diff] [blame] | 1301 | * - connected beats other types |
paul | a8d9c1f | 2006-01-25 06:31:04 +0000 | [diff] [blame] | 1302 | * - lower distance beats higher |
paul | af887b5 | 2006-01-18 14:52:52 +0000 | [diff] [blame] | 1303 | * - lower metric beats higher for equal distance |
| 1304 | * - last, hence oldest, route wins tie break. |
| 1305 | */ |
paul | a1038a1 | 2006-01-30 14:08:51 +0000 | [diff] [blame] | 1306 | |
| 1307 | /* Connected routes. Pick the last connected |
| 1308 | * route of the set of lowest metric connected routes. |
| 1309 | */ |
paul | a8d9c1f | 2006-01-25 06:31:04 +0000 | [diff] [blame] | 1310 | if (rib->type == ZEBRA_ROUTE_CONNECT) |
| 1311 | { |
paul | a1038a1 | 2006-01-30 14:08:51 +0000 | [diff] [blame] | 1312 | if (select->type != ZEBRA_ROUTE_CONNECT |
paul | a8d9c1f | 2006-01-25 06:31:04 +0000 | [diff] [blame] | 1313 | || rib->metric <= select->metric) |
paul | a1038a1 | 2006-01-30 14:08:51 +0000 | [diff] [blame] | 1314 | select = rib; |
| 1315 | continue; |
paul | a8d9c1f | 2006-01-25 06:31:04 +0000 | [diff] [blame] | 1316 | } |
| 1317 | else if (select->type == ZEBRA_ROUTE_CONNECT) |
| 1318 | continue; |
| 1319 | |
| 1320 | /* higher distance loses */ |
| 1321 | if (rib->distance > select->distance) |
| 1322 | continue; |
| 1323 | |
| 1324 | /* lower wins */ |
| 1325 | if (rib->distance < select->distance) |
| 1326 | { |
paul | af887b5 | 2006-01-18 14:52:52 +0000 | [diff] [blame] | 1327 | select = rib; |
paul | a8d9c1f | 2006-01-25 06:31:04 +0000 | [diff] [blame] | 1328 | continue; |
| 1329 | } |
| 1330 | |
| 1331 | /* metric tie-breaks equal distance */ |
| 1332 | if (rib->metric <= select->metric) |
| 1333 | select = rib; |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 1334 | } /* RNODE_FOREACH_RIB_SAFE */ |
Denis Ovsienko | dc95824 | 2007-08-13 16:03:06 +0000 | [diff] [blame] | 1335 | |
| 1336 | /* After the cycle is finished, the following pointers will be set: |
| 1337 | * select --- the winner RIB entry, if any was found, otherwise NULL |
| 1338 | * fib --- the SELECTED RIB entry, if any, otherwise NULL |
| 1339 | * del --- equal to fib, if fib is queued for deletion, NULL otherwise |
| 1340 | * rib --- NULL |
| 1341 | */ |
| 1342 | |
| 1343 | /* Same RIB entry is selected. Update FIB and finish. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1344 | if (select && select == fib) |
| 1345 | { |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1346 | if (IS_ZEBRA_DEBUG_RIB) |
Paul Jakma | 93bdada | 2007-08-06 19:25:11 +0000 | [diff] [blame] | 1347 | zlog_debug ("%s: %s/%d: Updating existing route, select %p, fib %p", |
| 1348 | __func__, buf, rn->p.prefixlen, select, fib); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1349 | if (CHECK_FLAG (select->flags, ZEBRA_FLAG_CHANGED)) |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1350 | { |
Avneesh Sachdev | 5adc252 | 2012-11-13 22:48:59 +0000 | [diff] [blame] | 1351 | zfpm_trigger_update (rn, "updating existing route"); |
| 1352 | |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1353 | redistribute_delete (&rn->p, select); |
| 1354 | if (! RIB_SYSTEM_ROUTE (select)) |
| 1355 | rib_uninstall_kernel (rn, select); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1356 | |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1357 | /* Set real nexthop. */ |
| 1358 | nexthop_active_update (rn, select, 1); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1359 | |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1360 | if (! RIB_SYSTEM_ROUTE (select)) |
| 1361 | rib_install_kernel (rn, select); |
| 1362 | redistribute_add (&rn->p, select); |
| 1363 | } |
paul | d753e9e | 2003-01-22 19:45:50 +0000 | [diff] [blame] | 1364 | else if (! RIB_SYSTEM_ROUTE (select)) |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1365 | { |
| 1366 | /* Housekeeping code to deal with |
| 1367 | race conditions in kernel with linux |
| 1368 | netlink reporting interface up before IPv4 or IPv6 protocol |
| 1369 | is ready to add routes. |
| 1370 | This makes sure the routes are IN the kernel. |
| 1371 | */ |
paul | d753e9e | 2003-01-22 19:45:50 +0000 | [diff] [blame] | 1372 | |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 1373 | for (ALL_NEXTHOPS_RO(select->nexthop, nexthop, tnexthop, recursing)) |
Denis Ovsienko | a3aaf5b | 2007-10-04 10:49:21 +0000 | [diff] [blame] | 1374 | if (CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB)) |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1375 | { |
Denis Ovsienko | a3aaf5b | 2007-10-04 10:49:21 +0000 | [diff] [blame] | 1376 | installed = 1; |
| 1377 | break; |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1378 | } |
| 1379 | if (! installed) |
| 1380 | rib_install_kernel (rn, select); |
| 1381 | } |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1382 | goto end; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1383 | } |
| 1384 | |
Denis Ovsienko | dc95824 | 2007-08-13 16:03:06 +0000 | [diff] [blame] | 1385 | /* At this point we either haven't found the best RIB entry or it is |
| 1386 | * different from what we currently intend to flag with SELECTED. In both |
| 1387 | * cases, if a RIB block is present in FIB, it should be withdrawn. |
| 1388 | */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1389 | if (fib) |
| 1390 | { |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1391 | if (IS_ZEBRA_DEBUG_RIB) |
Paul Jakma | 93bdada | 2007-08-06 19:25:11 +0000 | [diff] [blame] | 1392 | zlog_debug ("%s: %s/%d: Removing existing route, fib %p", __func__, |
| 1393 | buf, rn->p.prefixlen, fib); |
Avneesh Sachdev | 5adc252 | 2012-11-13 22:48:59 +0000 | [diff] [blame] | 1394 | |
| 1395 | zfpm_trigger_update (rn, "removing existing route"); |
| 1396 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1397 | redistribute_delete (&rn->p, fib); |
| 1398 | if (! RIB_SYSTEM_ROUTE (fib)) |
| 1399 | rib_uninstall_kernel (rn, fib); |
| 1400 | UNSET_FLAG (fib->flags, ZEBRA_FLAG_SELECTED); |
| 1401 | |
| 1402 | /* Set real nexthop. */ |
| 1403 | nexthop_active_update (rn, fib, 1); |
| 1404 | } |
| 1405 | |
Denis Ovsienko | dc95824 | 2007-08-13 16:03:06 +0000 | [diff] [blame] | 1406 | /* Regardless of some RIB entry being SELECTED or not before, now we can |
| 1407 | * tell, that if a new winner exists, FIB is still not updated with this |
| 1408 | * data, but ready to be. |
| 1409 | */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1410 | if (select) |
| 1411 | { |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1412 | if (IS_ZEBRA_DEBUG_RIB) |
Paul Jakma | 93bdada | 2007-08-06 19:25:11 +0000 | [diff] [blame] | 1413 | zlog_debug ("%s: %s/%d: Adding route, select %p", __func__, buf, |
| 1414 | rn->p.prefixlen, select); |
Avneesh Sachdev | 5adc252 | 2012-11-13 22:48:59 +0000 | [diff] [blame] | 1415 | |
| 1416 | zfpm_trigger_update (rn, "new route selected"); |
| 1417 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1418 | /* Set real nexthop. */ |
| 1419 | nexthop_active_update (rn, select, 1); |
| 1420 | |
| 1421 | if (! RIB_SYSTEM_ROUTE (select)) |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1422 | rib_install_kernel (rn, select); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1423 | SET_FLAG (select->flags, ZEBRA_FLAG_SELECTED); |
| 1424 | redistribute_add (&rn->p, select); |
| 1425 | } |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1426 | |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1427 | /* FIB route was removed, should be deleted */ |
| 1428 | if (del) |
| 1429 | { |
| 1430 | if (IS_ZEBRA_DEBUG_RIB) |
Paul Jakma | 93bdada | 2007-08-06 19:25:11 +0000 | [diff] [blame] | 1431 | zlog_debug ("%s: %s/%d: Deleting fib %p, rn %p", __func__, buf, |
| 1432 | rn->p.prefixlen, del, rn); |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1433 | rib_unlink (rn, del); |
| 1434 | } |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1435 | |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1436 | end: |
| 1437 | if (IS_ZEBRA_DEBUG_RIB_Q) |
Paul Jakma | 93bdada | 2007-08-06 19:25:11 +0000 | [diff] [blame] | 1438 | zlog_debug ("%s: %s/%d: rn %p dequeued", __func__, buf, rn->p.prefixlen, rn); |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 1439 | |
| 1440 | /* |
| 1441 | * Check if the dest can be deleted now. |
| 1442 | */ |
| 1443 | rib_gc_dest (rn); |
Denis Ovsienko | e96f920 | 2008-06-02 12:03:22 +0000 | [diff] [blame] | 1444 | } |
| 1445 | |
Stephen Hemminger | 5110a0c | 2008-08-11 16:22:15 -0700 | [diff] [blame] | 1446 | /* Take a list of route_node structs and return 1, if there was a record |
| 1447 | * picked from it and processed by rib_process(). Don't process more, |
| 1448 | * than one RN record; operate only in the specified sub-queue. |
Denis Ovsienko | e96f920 | 2008-06-02 12:03:22 +0000 | [diff] [blame] | 1449 | */ |
Stephen Hemminger | ef9b113 | 2008-08-17 17:44:47 +0100 | [diff] [blame] | 1450 | static unsigned int |
Denis Ovsienko | e96f920 | 2008-06-02 12:03:22 +0000 | [diff] [blame] | 1451 | process_subq (struct list * subq, u_char qindex) |
| 1452 | { |
Stephen Hemminger | 5110a0c | 2008-08-11 16:22:15 -0700 | [diff] [blame] | 1453 | struct listnode *lnode = listhead (subq); |
Denis Ovsienko | e96f920 | 2008-06-02 12:03:22 +0000 | [diff] [blame] | 1454 | struct route_node *rnode; |
Stephen Hemminger | 5110a0c | 2008-08-11 16:22:15 -0700 | [diff] [blame] | 1455 | |
| 1456 | if (!lnode) |
Denis Ovsienko | e96f920 | 2008-06-02 12:03:22 +0000 | [diff] [blame] | 1457 | return 0; |
Stephen Hemminger | 5110a0c | 2008-08-11 16:22:15 -0700 | [diff] [blame] | 1458 | |
Denis Ovsienko | e96f920 | 2008-06-02 12:03:22 +0000 | [diff] [blame] | 1459 | rnode = listgetdata (lnode); |
| 1460 | rib_process (rnode); |
Stephen Hemminger | 5110a0c | 2008-08-11 16:22:15 -0700 | [diff] [blame] | 1461 | |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 1462 | if (rnode->info) |
| 1463 | UNSET_FLAG (rib_dest_from_rnode (rnode)->flags, RIB_ROUTE_QUEUED (qindex)); |
| 1464 | |
Chris Caputo | 67b9467 | 2009-07-18 04:02:26 +0000 | [diff] [blame] | 1465 | #if 0 |
Stephen Hemminger | 5110a0c | 2008-08-11 16:22:15 -0700 | [diff] [blame] | 1466 | else |
| 1467 | { |
| 1468 | zlog_debug ("%s: called for route_node (%p, %d) with no ribs", |
| 1469 | __func__, rnode, rnode->lock); |
| 1470 | zlog_backtrace(LOG_DEBUG); |
| 1471 | } |
Chris Caputo | 67b9467 | 2009-07-18 04:02:26 +0000 | [diff] [blame] | 1472 | #endif |
Denis Ovsienko | e96f920 | 2008-06-02 12:03:22 +0000 | [diff] [blame] | 1473 | route_unlock_node (rnode); |
| 1474 | list_delete_node (subq, lnode); |
| 1475 | return 1; |
| 1476 | } |
| 1477 | |
| 1478 | /* Dispatch the meta queue by picking, processing and unlocking the next RN from |
| 1479 | * a non-empty sub-queue with lowest priority. wq is equal to zebra->ribq and data |
| 1480 | * is pointed to the meta queue structure. |
| 1481 | */ |
| 1482 | static wq_item_status |
| 1483 | meta_queue_process (struct work_queue *dummy, void *data) |
| 1484 | { |
| 1485 | struct meta_queue * mq = data; |
Stephen Hemminger | 5110a0c | 2008-08-11 16:22:15 -0700 | [diff] [blame] | 1486 | unsigned i; |
| 1487 | |
Denis Ovsienko | e96f920 | 2008-06-02 12:03:22 +0000 | [diff] [blame] | 1488 | for (i = 0; i < MQ_SIZE; i++) |
| 1489 | if (process_subq (mq->subq[i], i)) |
Stephen Hemminger | 5110a0c | 2008-08-11 16:22:15 -0700 | [diff] [blame] | 1490 | { |
| 1491 | mq->size--; |
| 1492 | break; |
| 1493 | } |
Denis Ovsienko | e96f920 | 2008-06-02 12:03:22 +0000 | [diff] [blame] | 1494 | return mq->size ? WQ_REQUEUE : WQ_SUCCESS; |
| 1495 | } |
| 1496 | |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 1497 | /* |
| 1498 | * Map from rib types to queue type (priority) in meta queue |
| 1499 | */ |
Stephen Hemminger | 5110a0c | 2008-08-11 16:22:15 -0700 | [diff] [blame] | 1500 | static const u_char meta_queue_map[ZEBRA_ROUTE_MAX] = { |
| 1501 | [ZEBRA_ROUTE_SYSTEM] = 4, |
| 1502 | [ZEBRA_ROUTE_KERNEL] = 0, |
| 1503 | [ZEBRA_ROUTE_CONNECT] = 0, |
| 1504 | [ZEBRA_ROUTE_STATIC] = 1, |
| 1505 | [ZEBRA_ROUTE_RIP] = 2, |
| 1506 | [ZEBRA_ROUTE_RIPNG] = 2, |
| 1507 | [ZEBRA_ROUTE_OSPF] = 2, |
| 1508 | [ZEBRA_ROUTE_OSPF6] = 2, |
| 1509 | [ZEBRA_ROUTE_ISIS] = 2, |
| 1510 | [ZEBRA_ROUTE_BGP] = 3, |
| 1511 | [ZEBRA_ROUTE_HSLS] = 4, |
Paul Jakma | 5734509 | 2011-12-25 17:52:09 +0100 | [diff] [blame] | 1512 | [ZEBRA_ROUTE_BABEL] = 2, |
Stephen Hemminger | 5110a0c | 2008-08-11 16:22:15 -0700 | [diff] [blame] | 1513 | }; |
| 1514 | |
| 1515 | /* Look into the RN and queue it into one or more priority queues, |
| 1516 | * increasing the size for each data push done. |
Denis Ovsienko | e96f920 | 2008-06-02 12:03:22 +0000 | [diff] [blame] | 1517 | */ |
Stephen Hemminger | ef9b113 | 2008-08-17 17:44:47 +0100 | [diff] [blame] | 1518 | static void |
| 1519 | rib_meta_queue_add (struct meta_queue *mq, struct route_node *rn) |
Denis Ovsienko | e96f920 | 2008-06-02 12:03:22 +0000 | [diff] [blame] | 1520 | { |
Denis Ovsienko | e96f920 | 2008-06-02 12:03:22 +0000 | [diff] [blame] | 1521 | struct rib *rib; |
| 1522 | char buf[INET6_ADDRSTRLEN]; |
Stephen Hemminger | 5110a0c | 2008-08-11 16:22:15 -0700 | [diff] [blame] | 1523 | |
Denis Ovsienko | e96f920 | 2008-06-02 12:03:22 +0000 | [diff] [blame] | 1524 | if (IS_ZEBRA_DEBUG_RIB_Q) |
| 1525 | inet_ntop (rn->p.family, &rn->p.u.prefix, buf, INET6_ADDRSTRLEN); |
Stephen Hemminger | 5110a0c | 2008-08-11 16:22:15 -0700 | [diff] [blame] | 1526 | |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 1527 | RNODE_FOREACH_RIB (rn, rib) |
Denis Ovsienko | e96f920 | 2008-06-02 12:03:22 +0000 | [diff] [blame] | 1528 | { |
Stephen Hemminger | 5110a0c | 2008-08-11 16:22:15 -0700 | [diff] [blame] | 1529 | u_char qindex = meta_queue_map[rib->type]; |
| 1530 | |
| 1531 | /* Invariant: at this point we always have rn->info set. */ |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 1532 | if (CHECK_FLAG (rib_dest_from_rnode (rn)->flags, |
| 1533 | RIB_ROUTE_QUEUED (qindex))) |
Stephen Hemminger | 5110a0c | 2008-08-11 16:22:15 -0700 | [diff] [blame] | 1534 | { |
| 1535 | if (IS_ZEBRA_DEBUG_RIB_Q) |
| 1536 | zlog_debug ("%s: %s/%d: rn %p is already queued in sub-queue %u", |
| 1537 | __func__, buf, rn->p.prefixlen, rn, qindex); |
| 1538 | continue; |
| 1539 | } |
| 1540 | |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 1541 | SET_FLAG (rib_dest_from_rnode (rn)->flags, RIB_ROUTE_QUEUED (qindex)); |
Stephen Hemminger | 5110a0c | 2008-08-11 16:22:15 -0700 | [diff] [blame] | 1542 | listnode_add (mq->subq[qindex], rn); |
| 1543 | route_lock_node (rn); |
| 1544 | mq->size++; |
| 1545 | |
Denis Ovsienko | e96f920 | 2008-06-02 12:03:22 +0000 | [diff] [blame] | 1546 | if (IS_ZEBRA_DEBUG_RIB_Q) |
Stephen Hemminger | 5110a0c | 2008-08-11 16:22:15 -0700 | [diff] [blame] | 1547 | zlog_debug ("%s: %s/%d: queued rn %p into sub-queue %u", |
| 1548 | __func__, buf, rn->p.prefixlen, rn, qindex); |
Denis Ovsienko | e96f920 | 2008-06-02 12:03:22 +0000 | [diff] [blame] | 1549 | } |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1550 | } |
| 1551 | |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1552 | /* Add route_node to work queue and schedule processing */ |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 1553 | static void |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1554 | rib_queue_add (struct zebra_t *zebra, struct route_node *rn) |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1555 | { |
Subbaiah Venkata | fc328ac | 2012-03-27 16:35:22 -0700 | [diff] [blame] | 1556 | char buf[INET_ADDRSTRLEN]; |
| 1557 | assert (zebra && rn); |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1558 | |
Paul Jakma | 93bdada | 2007-08-06 19:25:11 +0000 | [diff] [blame] | 1559 | if (IS_ZEBRA_DEBUG_RIB_Q) |
Subbaiah Venkata | fc328ac | 2012-03-27 16:35:22 -0700 | [diff] [blame] | 1560 | inet_ntop (AF_INET, &rn->p.u.prefix, buf, INET_ADDRSTRLEN); |
Stephen Hemminger | cc2dd92 | 2009-12-09 17:54:49 +0300 | [diff] [blame] | 1561 | |
Subbaiah Venkata | fc328ac | 2012-03-27 16:35:22 -0700 | [diff] [blame] | 1562 | /* Pointless to queue a route_node with no RIB entries to add or remove */ |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 1563 | if (!rnode_to_ribs (rn)) |
Subbaiah Venkata | fc328ac | 2012-03-27 16:35:22 -0700 | [diff] [blame] | 1564 | { |
| 1565 | zlog_debug ("%s: called for route_node (%p, %d) with no ribs", |
| 1566 | __func__, rn, rn->lock); |
| 1567 | zlog_backtrace(LOG_DEBUG); |
| 1568 | return; |
| 1569 | } |
| 1570 | |
| 1571 | if (IS_ZEBRA_DEBUG_RIB_Q) |
| 1572 | zlog_info ("%s: %s/%d: work queue added", __func__, buf, rn->p.prefixlen); |
| 1573 | |
| 1574 | assert (zebra); |
| 1575 | |
| 1576 | if (zebra->ribq == NULL) |
| 1577 | { |
| 1578 | zlog_err ("%s: work_queue does not exist!", __func__); |
| 1579 | return; |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1580 | } |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1581 | |
Stephen Hemminger | cc2dd92 | 2009-12-09 17:54:49 +0300 | [diff] [blame] | 1582 | /* |
| 1583 | * The RIB queue should normally be either empty or holding the only |
| 1584 | * work_queue_item element. In the latter case this element would |
| 1585 | * hold a pointer to the meta queue structure, which must be used to |
| 1586 | * actually queue the route nodes to process. So create the MQ |
| 1587 | * holder, if necessary, then push the work into it in any case. |
Denis Ovsienko | e96f920 | 2008-06-02 12:03:22 +0000 | [diff] [blame] | 1588 | * This semantics was introduced after 0.99.9 release. |
| 1589 | */ |
Denis Ovsienko | e96f920 | 2008-06-02 12:03:22 +0000 | [diff] [blame] | 1590 | if (!zebra->ribq->items->count) |
| 1591 | work_queue_add (zebra->ribq, zebra->mq); |
| 1592 | |
| 1593 | rib_meta_queue_add (zebra->mq, rn); |
Subbaiah Venkata | fc328ac | 2012-03-27 16:35:22 -0700 | [diff] [blame] | 1594 | |
| 1595 | if (IS_ZEBRA_DEBUG_RIB_Q) |
| 1596 | zlog_debug ("%s: %s/%d: rn %p queued", __func__, buf, rn->p.prefixlen, rn); |
| 1597 | |
| 1598 | return; |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1599 | } |
| 1600 | |
Stephen Hemminger | 5110a0c | 2008-08-11 16:22:15 -0700 | [diff] [blame] | 1601 | /* Create new meta queue. |
| 1602 | A destructor function doesn't seem to be necessary here. |
| 1603 | */ |
Stephen Hemminger | ef9b113 | 2008-08-17 17:44:47 +0100 | [diff] [blame] | 1604 | static struct meta_queue * |
| 1605 | meta_queue_new (void) |
Denis Ovsienko | e96f920 | 2008-06-02 12:03:22 +0000 | [diff] [blame] | 1606 | { |
| 1607 | struct meta_queue *new; |
Stephen Hemminger | 5110a0c | 2008-08-11 16:22:15 -0700 | [diff] [blame] | 1608 | unsigned i; |
Denis Ovsienko | e96f920 | 2008-06-02 12:03:22 +0000 | [diff] [blame] | 1609 | |
Stephen Hemminger | 5110a0c | 2008-08-11 16:22:15 -0700 | [diff] [blame] | 1610 | new = XCALLOC (MTYPE_WORK_QUEUE, sizeof (struct meta_queue)); |
| 1611 | assert(new); |
| 1612 | |
Denis Ovsienko | e96f920 | 2008-06-02 12:03:22 +0000 | [diff] [blame] | 1613 | for (i = 0; i < MQ_SIZE; i++) |
Stephen Hemminger | 5110a0c | 2008-08-11 16:22:15 -0700 | [diff] [blame] | 1614 | { |
| 1615 | new->subq[i] = list_new (); |
| 1616 | assert(new->subq[i]); |
| 1617 | } |
| 1618 | |
Denis Ovsienko | e96f920 | 2008-06-02 12:03:22 +0000 | [diff] [blame] | 1619 | return new; |
| 1620 | } |
| 1621 | |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1622 | /* initialise zebra rib work queue */ |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 1623 | static void |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1624 | rib_queue_init (struct zebra_t *zebra) |
| 1625 | { |
Subbaiah Venkata | fc328ac | 2012-03-27 16:35:22 -0700 | [diff] [blame] | 1626 | assert (zebra); |
| 1627 | |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1628 | if (! (zebra->ribq = work_queue_new (zebra->master, |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1629 | "route_node processing"))) |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1630 | { |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1631 | zlog_err ("%s: could not initialise work queue!", __func__); |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1632 | return; |
| 1633 | } |
| 1634 | |
| 1635 | /* fill in the work queue spec */ |
Denis Ovsienko | e96f920 | 2008-06-02 12:03:22 +0000 | [diff] [blame] | 1636 | zebra->ribq->spec.workfunc = &meta_queue_process; |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1637 | zebra->ribq->spec.errorfunc = NULL; |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1638 | /* XXX: TODO: These should be runtime configurable via vty */ |
| 1639 | zebra->ribq->spec.max_retries = 3; |
Paul Jakma | 457eb9a | 2006-07-27 19:59:58 +0000 | [diff] [blame] | 1640 | zebra->ribq->spec.hold = rib_process_hold_time; |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1641 | |
Denis Ovsienko | e96f920 | 2008-06-02 12:03:22 +0000 | [diff] [blame] | 1642 | if (!(zebra->mq = meta_queue_new ())) |
Subbaiah Venkata | fc328ac | 2012-03-27 16:35:22 -0700 | [diff] [blame] | 1643 | { |
Denis Ovsienko | e96f920 | 2008-06-02 12:03:22 +0000 | [diff] [blame] | 1644 | zlog_err ("%s: could not initialise meta queue!", __func__); |
Subbaiah Venkata | fc328ac | 2012-03-27 16:35:22 -0700 | [diff] [blame] | 1645 | return; |
| 1646 | } |
| 1647 | return; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1648 | } |
| 1649 | |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1650 | /* RIB updates are processed via a queue of pointers to route_nodes. |
| 1651 | * |
| 1652 | * The queue length is bounded by the maximal size of the routing table, |
| 1653 | * as a route_node will not be requeued, if already queued. |
| 1654 | * |
Paul Jakma | 3c0755d | 2006-12-08 00:53:14 +0000 | [diff] [blame] | 1655 | * RIBs are submitted via rib_addnode or rib_delnode which set minimal |
| 1656 | * state, or static_install_ipv{4,6} (when an existing RIB is updated) |
| 1657 | * and then submit route_node to queue for best-path selection later. |
| 1658 | * Order of add/delete state changes are preserved for any given RIB. |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1659 | * |
| 1660 | * Deleted RIBs are reaped during best-path selection. |
| 1661 | * |
| 1662 | * rib_addnode |
| 1663 | * |-> rib_link or unset RIB_ENTRY_REMOVE |->Update kernel with |
Paul Jakma | 3c0755d | 2006-12-08 00:53:14 +0000 | [diff] [blame] | 1664 | * |-------->| | best RIB, if required |
| 1665 | * | | |
| 1666 | * static_install->|->rib_addqueue...... -> rib_process |
| 1667 | * | | |
| 1668 | * |-------->| |-> rib_unlink |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1669 | * |-> set RIB_ENTRY_REMOVE | |
| 1670 | * rib_delnode (RIB freed) |
| 1671 | * |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 1672 | * The 'info' pointer of a route_node points to a rib_dest_t |
| 1673 | * ('dest'). Queueing state for a route_node is kept on the dest. The |
| 1674 | * dest is created on-demand by rib_link() and is kept around at least |
| 1675 | * as long as there are ribs hanging off it (@see rib_gc_dest()). |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1676 | * |
| 1677 | * Refcounting (aka "locking" throughout the GNU Zebra and Quagga code): |
| 1678 | * |
| 1679 | * - route_nodes: refcounted by: |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 1680 | * - dest attached to route_node: |
| 1681 | * - managed by: rib_link/rib_gc_dest |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1682 | * - route_node processing queue |
| 1683 | * - managed by: rib_addqueue, rib_process. |
| 1684 | * |
| 1685 | */ |
| 1686 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1687 | /* Add RIB to head of the route node. */ |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 1688 | static void |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1689 | rib_link (struct route_node *rn, struct rib *rib) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1690 | { |
| 1691 | struct rib *head; |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 1692 | rib_dest_t *dest; |
Denis Ovsienko | f304cb4 | 2007-10-03 12:27:16 +0000 | [diff] [blame] | 1693 | char buf[INET6_ADDRSTRLEN]; |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 1694 | |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1695 | assert (rib && rn); |
| 1696 | |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1697 | if (IS_ZEBRA_DEBUG_RIB) |
Paul Jakma | 93bdada | 2007-08-06 19:25:11 +0000 | [diff] [blame] | 1698 | { |
Denis Ovsienko | f304cb4 | 2007-10-03 12:27:16 +0000 | [diff] [blame] | 1699 | inet_ntop (rn->p.family, &rn->p.u.prefix, buf, INET6_ADDRSTRLEN); |
Paul Jakma | 93bdada | 2007-08-06 19:25:11 +0000 | [diff] [blame] | 1700 | zlog_debug ("%s: %s/%d: rn %p, rib %p", __func__, |
| 1701 | buf, rn->p.prefixlen, rn, rib); |
| 1702 | } |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1703 | |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 1704 | dest = rib_dest_from_rnode (rn); |
| 1705 | if (!dest) |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1706 | { |
| 1707 | if (IS_ZEBRA_DEBUG_RIB) |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 1708 | { |
| 1709 | zlog_debug ("%s: %s/%d: adding dest to table", __func__, |
| 1710 | buf, rn->p.prefixlen); |
| 1711 | } |
| 1712 | |
| 1713 | dest = XCALLOC (MTYPE_RIB_DEST, sizeof (rib_dest_t)); |
| 1714 | route_lock_node (rn); /* rn route table reference */ |
| 1715 | rn->info = dest; |
| 1716 | dest->rnode = rn; |
| 1717 | } |
| 1718 | |
| 1719 | head = dest->routes; |
| 1720 | if (head) |
| 1721 | { |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1722 | head->prev = rib; |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1723 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1724 | rib->next = head; |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 1725 | dest->routes = rib; |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1726 | rib_queue_add (&zebrad, rn); |
| 1727 | } |
| 1728 | |
| 1729 | static void |
| 1730 | rib_addnode (struct route_node *rn, struct rib *rib) |
| 1731 | { |
| 1732 | /* RIB node has been un-removed before route-node is processed. |
| 1733 | * route_node must hence already be on the queue for processing.. |
| 1734 | */ |
| 1735 | if (CHECK_FLAG (rib->status, RIB_ENTRY_REMOVED)) |
| 1736 | { |
| 1737 | if (IS_ZEBRA_DEBUG_RIB) |
Paul Jakma | 93bdada | 2007-08-06 19:25:11 +0000 | [diff] [blame] | 1738 | { |
Denis Ovsienko | f304cb4 | 2007-10-03 12:27:16 +0000 | [diff] [blame] | 1739 | char buf[INET6_ADDRSTRLEN]; |
| 1740 | inet_ntop (rn->p.family, &rn->p.u.prefix, buf, INET6_ADDRSTRLEN); |
Paul Jakma | 93bdada | 2007-08-06 19:25:11 +0000 | [diff] [blame] | 1741 | zlog_debug ("%s: %s/%d: rn %p, un-removed rib %p", |
| 1742 | __func__, buf, rn->p.prefixlen, rn, rib); |
| 1743 | } |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1744 | UNSET_FLAG (rib->status, RIB_ENTRY_REMOVED); |
| 1745 | return; |
| 1746 | } |
| 1747 | rib_link (rn, rib); |
| 1748 | } |
| 1749 | |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 1750 | /* |
| 1751 | * rib_unlink |
| 1752 | * |
| 1753 | * Detach a rib structure from a route_node. |
| 1754 | * |
| 1755 | * Note that a call to rib_unlink() should be followed by a call to |
| 1756 | * rib_gc_dest() at some point. This allows a rib_dest_t that is no |
| 1757 | * longer required to be deleted. |
| 1758 | */ |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1759 | static void |
| 1760 | rib_unlink (struct route_node *rn, struct rib *rib) |
| 1761 | { |
Denis Ovsienko | f304cb4 | 2007-10-03 12:27:16 +0000 | [diff] [blame] | 1762 | char buf[INET6_ADDRSTRLEN]; |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 1763 | rib_dest_t *dest; |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1764 | |
| 1765 | assert (rn && rib); |
| 1766 | |
| 1767 | if (IS_ZEBRA_DEBUG_RIB) |
Paul Jakma | 93bdada | 2007-08-06 19:25:11 +0000 | [diff] [blame] | 1768 | { |
Denis Ovsienko | f304cb4 | 2007-10-03 12:27:16 +0000 | [diff] [blame] | 1769 | inet_ntop (rn->p.family, &rn->p.u.prefix, buf, INET6_ADDRSTRLEN); |
Paul Jakma | 93bdada | 2007-08-06 19:25:11 +0000 | [diff] [blame] | 1770 | zlog_debug ("%s: %s/%d: rn %p, rib %p", |
| 1771 | __func__, buf, rn->p.prefixlen, rn, rib); |
| 1772 | } |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1773 | |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 1774 | dest = rib_dest_from_rnode (rn); |
| 1775 | |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1776 | if (rib->next) |
| 1777 | rib->next->prev = rib->prev; |
| 1778 | |
| 1779 | if (rib->prev) |
| 1780 | rib->prev->next = rib->next; |
| 1781 | else |
| 1782 | { |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 1783 | dest->routes = rib->next; |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1784 | } |
| 1785 | |
| 1786 | /* free RIB and nexthops */ |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 1787 | nexthops_free(rib->nexthop); |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1788 | XFREE (MTYPE_RIB, rib); |
| 1789 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1790 | } |
| 1791 | |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 1792 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1793 | rib_delnode (struct route_node *rn, struct rib *rib) |
| 1794 | { |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1795 | if (IS_ZEBRA_DEBUG_RIB) |
Paul Jakma | 93bdada | 2007-08-06 19:25:11 +0000 | [diff] [blame] | 1796 | { |
Denis Ovsienko | f304cb4 | 2007-10-03 12:27:16 +0000 | [diff] [blame] | 1797 | char buf[INET6_ADDRSTRLEN]; |
| 1798 | inet_ntop (rn->p.family, &rn->p.u.prefix, buf, INET6_ADDRSTRLEN); |
Paul Jakma | 93bdada | 2007-08-06 19:25:11 +0000 | [diff] [blame] | 1799 | zlog_debug ("%s: %s/%d: rn %p, rib %p, removing", __func__, |
| 1800 | buf, rn->p.prefixlen, rn, rib); |
| 1801 | } |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1802 | SET_FLAG (rib->status, RIB_ENTRY_REMOVED); |
| 1803 | rib_queue_add (&zebrad, rn); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1804 | } |
| 1805 | |
| 1806 | int |
| 1807 | rib_add_ipv4 (int type, int flags, struct prefix_ipv4 *p, |
Paul Jakma | 7514fb7 | 2007-05-02 16:05:35 +0000 | [diff] [blame] | 1808 | struct in_addr *gate, struct in_addr *src, |
| 1809 | unsigned int ifindex, u_int32_t vrf_id, |
G.Balaji | cddf391 | 2011-11-26 21:59:32 +0400 | [diff] [blame] | 1810 | u_int32_t metric, u_char distance, safi_t safi) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1811 | { |
| 1812 | struct rib *rib; |
| 1813 | struct rib *same = NULL; |
| 1814 | struct route_table *table; |
| 1815 | struct route_node *rn; |
| 1816 | struct nexthop *nexthop; |
| 1817 | |
| 1818 | /* Lookup table. */ |
G.Balaji | cddf391 | 2011-11-26 21:59:32 +0400 | [diff] [blame] | 1819 | table = vrf_table (AFI_IP, safi, 0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1820 | if (! table) |
| 1821 | return 0; |
| 1822 | |
| 1823 | /* Make it sure prefixlen is applied to the prefix. */ |
| 1824 | apply_mask_ipv4 (p); |
| 1825 | |
| 1826 | /* Set default distance by route type. */ |
| 1827 | if (distance == 0) |
| 1828 | { |
Balaji.G | 837d16c | 2012-09-26 14:09:10 +0530 | [diff] [blame] | 1829 | if ((unsigned)type >= array_size(route_info)) |
David Lamparter | 7052f22 | 2009-08-27 00:28:28 +0200 | [diff] [blame] | 1830 | distance = 150; |
| 1831 | else |
| 1832 | distance = route_info[type].distance; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1833 | |
| 1834 | /* iBGP distance is 200. */ |
| 1835 | if (type == ZEBRA_ROUTE_BGP && CHECK_FLAG (flags, ZEBRA_FLAG_IBGP)) |
| 1836 | distance = 200; |
| 1837 | } |
| 1838 | |
| 1839 | /* Lookup route node.*/ |
| 1840 | rn = route_node_get (table, (struct prefix *) p); |
| 1841 | |
| 1842 | /* If same type of route are installed, treat it as a implicit |
| 1843 | withdraw. */ |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 1844 | RNODE_FOREACH_RIB (rn, rib) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1845 | { |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1846 | if (CHECK_FLAG (rib->status, RIB_ENTRY_REMOVED)) |
| 1847 | continue; |
| 1848 | |
hasso | ebf1ead | 2005-09-21 14:58:20 +0000 | [diff] [blame] | 1849 | if (rib->type != type) |
| 1850 | continue; |
| 1851 | if (rib->type != ZEBRA_ROUTE_CONNECT) |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1852 | { |
| 1853 | same = rib; |
| 1854 | break; |
| 1855 | } |
hasso | ebf1ead | 2005-09-21 14:58:20 +0000 | [diff] [blame] | 1856 | /* Duplicate connected route comes in. */ |
| 1857 | else if ((nexthop = rib->nexthop) && |
| 1858 | nexthop->type == NEXTHOP_TYPE_IFINDEX && |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 1859 | nexthop->ifindex == ifindex && |
| 1860 | !CHECK_FLAG (rib->status, RIB_ENTRY_REMOVED)) |
hasso | ebf1ead | 2005-09-21 14:58:20 +0000 | [diff] [blame] | 1861 | { |
| 1862 | rib->refcnt++; |
| 1863 | return 0 ; |
| 1864 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1865 | } |
| 1866 | |
| 1867 | /* Allocate new rib structure. */ |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1868 | rib = XCALLOC (MTYPE_RIB, sizeof (struct rib)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1869 | rib->type = type; |
| 1870 | rib->distance = distance; |
| 1871 | rib->flags = flags; |
| 1872 | rib->metric = metric; |
paul | b5f4502 | 2003-11-02 07:28:05 +0000 | [diff] [blame] | 1873 | rib->table = vrf_id; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1874 | rib->nexthop_num = 0; |
| 1875 | rib->uptime = time (NULL); |
| 1876 | |
| 1877 | /* Nexthop settings. */ |
| 1878 | if (gate) |
| 1879 | { |
| 1880 | if (ifindex) |
Paul Jakma | 7514fb7 | 2007-05-02 16:05:35 +0000 | [diff] [blame] | 1881 | nexthop_ipv4_ifindex_add (rib, gate, src, ifindex); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1882 | else |
Paul Jakma | 7514fb7 | 2007-05-02 16:05:35 +0000 | [diff] [blame] | 1883 | nexthop_ipv4_add (rib, gate, src); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1884 | } |
| 1885 | else |
| 1886 | nexthop_ifindex_add (rib, ifindex); |
| 1887 | |
| 1888 | /* If this route is kernel route, set FIB flag to the route. */ |
| 1889 | if (type == ZEBRA_ROUTE_KERNEL || type == ZEBRA_ROUTE_CONNECT) |
| 1890 | for (nexthop = rib->nexthop; nexthop; nexthop = nexthop->next) |
| 1891 | SET_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB); |
| 1892 | |
| 1893 | /* Link new rib to node.*/ |
Denis Ovsienko | dc95824 | 2007-08-13 16:03:06 +0000 | [diff] [blame] | 1894 | if (IS_ZEBRA_DEBUG_RIB) |
| 1895 | zlog_debug ("%s: calling rib_addnode (%p, %p)", __func__, rn, rib); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1896 | rib_addnode (rn, rib); |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1897 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1898 | /* Free implicit route.*/ |
| 1899 | if (same) |
Denis Ovsienko | dc95824 | 2007-08-13 16:03:06 +0000 | [diff] [blame] | 1900 | { |
| 1901 | if (IS_ZEBRA_DEBUG_RIB) |
| 1902 | zlog_debug ("%s: calling rib_delnode (%p, %p)", __func__, rn, rib); |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1903 | rib_delnode (rn, same); |
Denis Ovsienko | dc95824 | 2007-08-13 16:03:06 +0000 | [diff] [blame] | 1904 | } |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 1905 | |
| 1906 | route_unlock_node (rn); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1907 | return 0; |
| 1908 | } |
| 1909 | |
Denis Ovsienko | dc95824 | 2007-08-13 16:03:06 +0000 | [diff] [blame] | 1910 | /* This function dumps the contents of a given RIB entry into |
| 1911 | * standard debug log. Calling function name and IP prefix in |
| 1912 | * question are passed as 1st and 2nd arguments. |
| 1913 | */ |
| 1914 | |
David Lamparter | f7bf415 | 2013-10-22 17:10:21 +0000 | [diff] [blame] | 1915 | void _rib_dump (const char * func, |
| 1916 | union prefix46constptr pp, const struct rib * rib) |
Denis Ovsienko | dc95824 | 2007-08-13 16:03:06 +0000 | [diff] [blame] | 1917 | { |
David Lamparter | f7bf415 | 2013-10-22 17:10:21 +0000 | [diff] [blame] | 1918 | const struct prefix *p = pp.p; |
Vincent Bernat | fed643f | 2012-10-23 16:00:42 +0000 | [diff] [blame] | 1919 | char straddr[INET6_ADDRSTRLEN]; |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 1920 | struct nexthop *nexthop, *tnexthop; |
| 1921 | int recursing; |
Denis Ovsienko | dc95824 | 2007-08-13 16:03:06 +0000 | [diff] [blame] | 1922 | |
Vincent Bernat | fed643f | 2012-10-23 16:00:42 +0000 | [diff] [blame] | 1923 | inet_ntop (p->family, &p->u.prefix, straddr, INET6_ADDRSTRLEN); |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 1924 | zlog_debug ("%s: dumping RIB entry %p for %s/%d", func, rib, straddr, p->prefixlen); |
Denis Ovsienko | dc95824 | 2007-08-13 16:03:06 +0000 | [diff] [blame] | 1925 | zlog_debug |
| 1926 | ( |
Stephen Hemminger | d02c56c | 2009-12-08 13:14:27 +0300 | [diff] [blame] | 1927 | "%s: refcnt == %lu, uptime == %lu, type == %u, table == %d", |
Denis Ovsienko | dc95824 | 2007-08-13 16:03:06 +0000 | [diff] [blame] | 1928 | func, |
| 1929 | rib->refcnt, |
Stephen Hemminger | d02c56c | 2009-12-08 13:14:27 +0300 | [diff] [blame] | 1930 | (unsigned long) rib->uptime, |
Denis Ovsienko | dc95824 | 2007-08-13 16:03:06 +0000 | [diff] [blame] | 1931 | rib->type, |
| 1932 | rib->table |
| 1933 | ); |
| 1934 | zlog_debug |
| 1935 | ( |
| 1936 | "%s: metric == %u, distance == %u, flags == %u, status == %u", |
| 1937 | func, |
| 1938 | rib->metric, |
| 1939 | rib->distance, |
| 1940 | rib->flags, |
| 1941 | rib->status |
| 1942 | ); |
| 1943 | zlog_debug |
| 1944 | ( |
| 1945 | "%s: nexthop_num == %u, nexthop_active_num == %u, nexthop_fib_num == %u", |
| 1946 | func, |
| 1947 | rib->nexthop_num, |
| 1948 | rib->nexthop_active_num, |
| 1949 | rib->nexthop_fib_num |
| 1950 | ); |
Vincent Bernat | fed643f | 2012-10-23 16:00:42 +0000 | [diff] [blame] | 1951 | |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 1952 | for (ALL_NEXTHOPS_RO(rib->nexthop, nexthop, tnexthop, recursing)) |
| 1953 | { |
Vincent Bernat | fed643f | 2012-10-23 16:00:42 +0000 | [diff] [blame] | 1954 | inet_ntop (p->family, &nexthop->gate, straddr, INET6_ADDRSTRLEN); |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 1955 | zlog_debug |
| 1956 | ( |
| 1957 | "%s: %s %s with flags %s%s%s", |
| 1958 | func, |
| 1959 | (recursing ? " NH" : "NH"), |
| 1960 | straddr, |
| 1961 | (CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_ACTIVE) ? "ACTIVE " : ""), |
| 1962 | (CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB) ? "FIB " : ""), |
| 1963 | (CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_RECURSIVE) ? "RECURSIVE" : "") |
| 1964 | ); |
| 1965 | } |
Denis Ovsienko | dc95824 | 2007-08-13 16:03:06 +0000 | [diff] [blame] | 1966 | zlog_debug ("%s: dump complete", func); |
| 1967 | } |
| 1968 | |
| 1969 | /* This is an exported helper to rtm_read() to dump the strange |
| 1970 | * RIB entry found by rib_lookup_ipv4_route() |
| 1971 | */ |
| 1972 | |
| 1973 | void rib_lookup_and_dump (struct prefix_ipv4 * p) |
| 1974 | { |
| 1975 | struct route_table *table; |
| 1976 | struct route_node *rn; |
| 1977 | struct rib *rib; |
| 1978 | char prefix_buf[INET_ADDRSTRLEN]; |
| 1979 | |
| 1980 | /* Lookup table. */ |
| 1981 | table = vrf_table (AFI_IP, SAFI_UNICAST, 0); |
| 1982 | if (! table) |
| 1983 | { |
| 1984 | zlog_err ("%s: vrf_table() returned NULL", __func__); |
| 1985 | return; |
| 1986 | } |
| 1987 | |
| 1988 | inet_ntop (AF_INET, &p->prefix.s_addr, prefix_buf, INET_ADDRSTRLEN); |
| 1989 | /* Scan the RIB table for exactly matching RIB entry. */ |
| 1990 | rn = route_node_lookup (table, (struct prefix *) p); |
| 1991 | |
| 1992 | /* No route for this prefix. */ |
| 1993 | if (! rn) |
| 1994 | { |
| 1995 | zlog_debug ("%s: lookup failed for %s/%d", __func__, prefix_buf, p->prefixlen); |
| 1996 | return; |
| 1997 | } |
| 1998 | |
| 1999 | /* Unlock node. */ |
| 2000 | route_unlock_node (rn); |
| 2001 | |
| 2002 | /* let's go */ |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 2003 | RNODE_FOREACH_RIB (rn, rib) |
Denis Ovsienko | dc95824 | 2007-08-13 16:03:06 +0000 | [diff] [blame] | 2004 | { |
| 2005 | zlog_debug |
| 2006 | ( |
| 2007 | "%s: rn %p, rib %p: %s, %s", |
| 2008 | __func__, |
| 2009 | rn, |
| 2010 | rib, |
| 2011 | (CHECK_FLAG (rib->status, RIB_ENTRY_REMOVED) ? "removed" : "NOT removed"), |
| 2012 | (CHECK_FLAG (rib->flags, ZEBRA_FLAG_SELECTED) ? "selected" : "NOT selected") |
| 2013 | ); |
David Lamparter | f7bf415 | 2013-10-22 17:10:21 +0000 | [diff] [blame] | 2014 | rib_dump (p, rib); |
Denis Ovsienko | dc95824 | 2007-08-13 16:03:06 +0000 | [diff] [blame] | 2015 | } |
| 2016 | } |
| 2017 | |
Denis Ovsienko | 20e5ff0 | 2008-02-26 14:02:24 +0000 | [diff] [blame] | 2018 | /* Check if requested address assignment will fail due to another |
| 2019 | * route being installed by zebra in FIB already. Take necessary |
| 2020 | * actions, if needed: remove such a route from FIB and deSELECT |
| 2021 | * corresponding RIB entry. Then put affected RN into RIBQ head. |
| 2022 | */ |
| 2023 | void rib_lookup_and_pushup (struct prefix_ipv4 * p) |
| 2024 | { |
| 2025 | struct route_table *table; |
| 2026 | struct route_node *rn; |
| 2027 | struct rib *rib; |
| 2028 | unsigned changed = 0; |
| 2029 | |
| 2030 | if (NULL == (table = vrf_table (AFI_IP, SAFI_UNICAST, 0))) |
| 2031 | { |
| 2032 | zlog_err ("%s: vrf_table() returned NULL", __func__); |
| 2033 | return; |
| 2034 | } |
| 2035 | |
| 2036 | /* No matches would be the simplest case. */ |
| 2037 | if (NULL == (rn = route_node_lookup (table, (struct prefix *) p))) |
| 2038 | return; |
| 2039 | |
| 2040 | /* Unlock node. */ |
| 2041 | route_unlock_node (rn); |
| 2042 | |
| 2043 | /* Check all RIB entries. In case any changes have to be done, requeue |
| 2044 | * the RN into RIBQ head. If the routing message about the new connected |
| 2045 | * route (generated by the IP address we are going to assign very soon) |
| 2046 | * comes before the RIBQ is processed, the new RIB entry will join |
| 2047 | * RIBQ record already on head. This is necessary for proper revalidation |
| 2048 | * of the rest of the RIB. |
| 2049 | */ |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 2050 | RNODE_FOREACH_RIB (rn, rib) |
Denis Ovsienko | 20e5ff0 | 2008-02-26 14:02:24 +0000 | [diff] [blame] | 2051 | { |
| 2052 | if (CHECK_FLAG (rib->flags, ZEBRA_FLAG_SELECTED) && |
| 2053 | ! RIB_SYSTEM_ROUTE (rib)) |
| 2054 | { |
| 2055 | changed = 1; |
| 2056 | if (IS_ZEBRA_DEBUG_RIB) |
| 2057 | { |
| 2058 | char buf[INET_ADDRSTRLEN]; |
| 2059 | inet_ntop (rn->p.family, &p->prefix, buf, INET_ADDRSTRLEN); |
| 2060 | zlog_debug ("%s: freeing way for connected prefix %s/%d", __func__, buf, p->prefixlen); |
David Lamparter | f7bf415 | 2013-10-22 17:10:21 +0000 | [diff] [blame] | 2061 | rib_dump (&rn->p, rib); |
Denis Ovsienko | 20e5ff0 | 2008-02-26 14:02:24 +0000 | [diff] [blame] | 2062 | } |
| 2063 | rib_uninstall (rn, rib); |
| 2064 | } |
| 2065 | } |
| 2066 | if (changed) |
Denis Ovsienko | 20e5ff0 | 2008-02-26 14:02:24 +0000 | [diff] [blame] | 2067 | rib_queue_add (&zebrad, rn); |
Denis Ovsienko | 20e5ff0 | 2008-02-26 14:02:24 +0000 | [diff] [blame] | 2068 | } |
| 2069 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2070 | int |
G.Balaji | cddf391 | 2011-11-26 21:59:32 +0400 | [diff] [blame] | 2071 | rib_add_ipv4_multipath (struct prefix_ipv4 *p, struct rib *rib, safi_t safi) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2072 | { |
| 2073 | struct route_table *table; |
| 2074 | struct route_node *rn; |
| 2075 | struct rib *same; |
| 2076 | struct nexthop *nexthop; |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 2077 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2078 | /* Lookup table. */ |
G.Balaji | cddf391 | 2011-11-26 21:59:32 +0400 | [diff] [blame] | 2079 | table = vrf_table (AFI_IP, safi, 0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2080 | if (! table) |
| 2081 | return 0; |
G.Balaji | cddf391 | 2011-11-26 21:59:32 +0400 | [diff] [blame] | 2082 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2083 | /* Make it sure prefixlen is applied to the prefix. */ |
| 2084 | apply_mask_ipv4 (p); |
| 2085 | |
| 2086 | /* Set default distance by route type. */ |
| 2087 | if (rib->distance == 0) |
| 2088 | { |
| 2089 | rib->distance = route_info[rib->type].distance; |
| 2090 | |
| 2091 | /* iBGP distance is 200. */ |
| 2092 | if (rib->type == ZEBRA_ROUTE_BGP |
| 2093 | && CHECK_FLAG (rib->flags, ZEBRA_FLAG_IBGP)) |
| 2094 | rib->distance = 200; |
| 2095 | } |
| 2096 | |
| 2097 | /* Lookup route node.*/ |
| 2098 | rn = route_node_get (table, (struct prefix *) p); |
| 2099 | |
| 2100 | /* If same type of route are installed, treat it as a implicit |
| 2101 | withdraw. */ |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 2102 | RNODE_FOREACH_RIB (rn, same) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2103 | { |
Paul Jakma | 0b8c4f1 | 2007-06-27 11:12:38 +0000 | [diff] [blame] | 2104 | if (CHECK_FLAG (same->status, RIB_ENTRY_REMOVED)) |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 2105 | continue; |
| 2106 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2107 | if (same->type == rib->type && same->table == rib->table |
| 2108 | && same->type != ZEBRA_ROUTE_CONNECT) |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 2109 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2110 | } |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 2111 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2112 | /* If this route is kernel route, set FIB flag to the route. */ |
| 2113 | if (rib->type == ZEBRA_ROUTE_KERNEL || rib->type == ZEBRA_ROUTE_CONNECT) |
| 2114 | for (nexthop = rib->nexthop; nexthop; nexthop = nexthop->next) |
| 2115 | SET_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB); |
| 2116 | |
| 2117 | /* Link new rib to node.*/ |
| 2118 | rib_addnode (rn, rib); |
Denis Ovsienko | dc95824 | 2007-08-13 16:03:06 +0000 | [diff] [blame] | 2119 | if (IS_ZEBRA_DEBUG_RIB) |
| 2120 | { |
| 2121 | zlog_debug ("%s: called rib_addnode (%p, %p) on new RIB entry", |
| 2122 | __func__, rn, rib); |
David Lamparter | f7bf415 | 2013-10-22 17:10:21 +0000 | [diff] [blame] | 2123 | rib_dump (p, rib); |
Denis Ovsienko | dc95824 | 2007-08-13 16:03:06 +0000 | [diff] [blame] | 2124 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2125 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2126 | /* Free implicit route.*/ |
| 2127 | if (same) |
Denis Ovsienko | dc95824 | 2007-08-13 16:03:06 +0000 | [diff] [blame] | 2128 | { |
| 2129 | if (IS_ZEBRA_DEBUG_RIB) |
| 2130 | { |
| 2131 | zlog_debug ("%s: calling rib_delnode (%p, %p) on existing RIB entry", |
| 2132 | __func__, rn, same); |
David Lamparter | f7bf415 | 2013-10-22 17:10:21 +0000 | [diff] [blame] | 2133 | rib_dump (p, same); |
Denis Ovsienko | dc95824 | 2007-08-13 16:03:06 +0000 | [diff] [blame] | 2134 | } |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 2135 | rib_delnode (rn, same); |
Denis Ovsienko | dc95824 | 2007-08-13 16:03:06 +0000 | [diff] [blame] | 2136 | } |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 2137 | |
| 2138 | route_unlock_node (rn); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2139 | return 0; |
| 2140 | } |
| 2141 | |
hasso | ebf1ead | 2005-09-21 14:58:20 +0000 | [diff] [blame] | 2142 | /* XXX factor with rib_delete_ipv6 */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2143 | int |
| 2144 | rib_delete_ipv4 (int type, int flags, struct prefix_ipv4 *p, |
G.Balaji | cddf391 | 2011-11-26 21:59:32 +0400 | [diff] [blame] | 2145 | struct in_addr *gate, unsigned int ifindex, u_int32_t vrf_id, safi_t safi) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2146 | { |
| 2147 | struct route_table *table; |
| 2148 | struct route_node *rn; |
| 2149 | struct rib *rib; |
| 2150 | struct rib *fib = NULL; |
| 2151 | struct rib *same = NULL; |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 2152 | struct nexthop *nexthop, *tnexthop; |
| 2153 | int recursing; |
Stephen Hemminger | 81cce01 | 2009-04-28 14:28:00 -0700 | [diff] [blame] | 2154 | char buf1[INET_ADDRSTRLEN]; |
| 2155 | char buf2[INET_ADDRSTRLEN]; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2156 | |
| 2157 | /* Lookup table. */ |
G.Balaji | cddf391 | 2011-11-26 21:59:32 +0400 | [diff] [blame] | 2158 | table = vrf_table (AFI_IP, safi, 0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2159 | if (! table) |
| 2160 | return 0; |
| 2161 | |
| 2162 | /* Apply mask. */ |
| 2163 | apply_mask_ipv4 (p); |
| 2164 | |
Christian Franke | b52aef1 | 2013-11-27 17:06:15 +0000 | [diff] [blame] | 2165 | if (IS_ZEBRA_DEBUG_KERNEL) |
| 2166 | { |
| 2167 | if (gate) |
| 2168 | zlog_debug ("rib_delete_ipv4(): route delete %s/%d via %s ifindex %d", |
| 2169 | inet_ntop (AF_INET, &p->prefix, buf1, INET_ADDRSTRLEN), |
| 2170 | p->prefixlen, |
| 2171 | inet_ntoa (*gate), |
| 2172 | ifindex); |
| 2173 | else |
| 2174 | zlog_debug ("rib_delete_ipv4(): route delete %s/%d ifindex %d", |
| 2175 | inet_ntop (AF_INET, &p->prefix, buf1, INET_ADDRSTRLEN), |
| 2176 | p->prefixlen, |
| 2177 | ifindex); |
| 2178 | } |
paul | 5ec90d2 | 2003-06-19 01:41:37 +0000 | [diff] [blame] | 2179 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2180 | /* Lookup route node. */ |
| 2181 | rn = route_node_lookup (table, (struct prefix *) p); |
| 2182 | if (! rn) |
| 2183 | { |
| 2184 | if (IS_ZEBRA_DEBUG_KERNEL) |
| 2185 | { |
| 2186 | if (gate) |
ajs | b617800 | 2004-12-07 21:12:56 +0000 | [diff] [blame] | 2187 | zlog_debug ("route %s/%d via %s ifindex %d doesn't exist in rib", |
Stephen Hemminger | 81cce01 | 2009-04-28 14:28:00 -0700 | [diff] [blame] | 2188 | inet_ntop (AF_INET, &p->prefix, buf1, INET_ADDRSTRLEN), |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2189 | p->prefixlen, |
Stephen Hemminger | 81cce01 | 2009-04-28 14:28:00 -0700 | [diff] [blame] | 2190 | inet_ntop (AF_INET, gate, buf2, INET_ADDRSTRLEN), |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2191 | ifindex); |
| 2192 | else |
ajs | b617800 | 2004-12-07 21:12:56 +0000 | [diff] [blame] | 2193 | zlog_debug ("route %s/%d ifindex %d doesn't exist in rib", |
Stephen Hemminger | 81cce01 | 2009-04-28 14:28:00 -0700 | [diff] [blame] | 2194 | inet_ntop (AF_INET, &p->prefix, buf1, INET_ADDRSTRLEN), |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2195 | p->prefixlen, |
| 2196 | ifindex); |
| 2197 | } |
| 2198 | return ZEBRA_ERR_RTNOEXIST; |
| 2199 | } |
| 2200 | |
| 2201 | /* Lookup same type route. */ |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 2202 | RNODE_FOREACH_RIB (rn, rib) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2203 | { |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 2204 | if (CHECK_FLAG (rib->status, RIB_ENTRY_REMOVED)) |
| 2205 | continue; |
| 2206 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2207 | if (CHECK_FLAG (rib->flags, ZEBRA_FLAG_SELECTED)) |
| 2208 | fib = rib; |
| 2209 | |
hasso | ebf1ead | 2005-09-21 14:58:20 +0000 | [diff] [blame] | 2210 | if (rib->type != type) |
| 2211 | continue; |
| 2212 | if (rib->type == ZEBRA_ROUTE_CONNECT && (nexthop = rib->nexthop) && |
Matthias Ferdinand | 4f1735f | 2011-12-26 16:35:30 +0400 | [diff] [blame] | 2213 | nexthop->type == NEXTHOP_TYPE_IFINDEX) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2214 | { |
Matthias Ferdinand | 4f1735f | 2011-12-26 16:35:30 +0400 | [diff] [blame] | 2215 | if (nexthop->ifindex != ifindex) |
| 2216 | continue; |
hasso | ebf1ead | 2005-09-21 14:58:20 +0000 | [diff] [blame] | 2217 | if (rib->refcnt) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2218 | { |
hasso | ebf1ead | 2005-09-21 14:58:20 +0000 | [diff] [blame] | 2219 | rib->refcnt--; |
| 2220 | route_unlock_node (rn); |
| 2221 | route_unlock_node (rn); |
| 2222 | return 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2223 | } |
hasso | ebf1ead | 2005-09-21 14:58:20 +0000 | [diff] [blame] | 2224 | same = rib; |
| 2225 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2226 | } |
hasso | ebf1ead | 2005-09-21 14:58:20 +0000 | [diff] [blame] | 2227 | /* Make sure that the route found has the same gateway. */ |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 2228 | else |
paul | 5ec90d2 | 2003-06-19 01:41:37 +0000 | [diff] [blame] | 2229 | { |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 2230 | if (gate == NULL) |
| 2231 | { |
| 2232 | same = rib; |
| 2233 | break; |
| 2234 | } |
| 2235 | for (ALL_NEXTHOPS_RO(rib->nexthop, nexthop, tnexthop, recursing)) |
| 2236 | if (IPV4_ADDR_SAME (&nexthop->gate.ipv4, gate)) |
| 2237 | { |
| 2238 | same = rib; |
| 2239 | break; |
| 2240 | } |
| 2241 | if (same) |
| 2242 | break; |
| 2243 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2244 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2245 | /* If same type of route can't be found and this message is from |
| 2246 | kernel. */ |
| 2247 | if (! same) |
| 2248 | { |
| 2249 | if (fib && type == ZEBRA_ROUTE_KERNEL) |
| 2250 | { |
| 2251 | /* Unset flags. */ |
| 2252 | for (nexthop = fib->nexthop; nexthop; nexthop = nexthop->next) |
| 2253 | UNSET_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB); |
| 2254 | |
| 2255 | UNSET_FLAG (fib->flags, ZEBRA_FLAG_SELECTED); |
| 2256 | } |
| 2257 | else |
| 2258 | { |
| 2259 | if (IS_ZEBRA_DEBUG_KERNEL) |
| 2260 | { |
| 2261 | if (gate) |
ajs | b617800 | 2004-12-07 21:12:56 +0000 | [diff] [blame] | 2262 | zlog_debug ("route %s/%d via %s ifindex %d type %d doesn't exist in rib", |
Stephen Hemminger | 81cce01 | 2009-04-28 14:28:00 -0700 | [diff] [blame] | 2263 | inet_ntop (AF_INET, &p->prefix, buf1, INET_ADDRSTRLEN), |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2264 | p->prefixlen, |
Stephen Hemminger | 81cce01 | 2009-04-28 14:28:00 -0700 | [diff] [blame] | 2265 | inet_ntop (AF_INET, gate, buf2, INET_ADDRSTRLEN), |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2266 | ifindex, |
| 2267 | type); |
| 2268 | else |
ajs | b617800 | 2004-12-07 21:12:56 +0000 | [diff] [blame] | 2269 | zlog_debug ("route %s/%d ifindex %d type %d doesn't exist in rib", |
Stephen Hemminger | 81cce01 | 2009-04-28 14:28:00 -0700 | [diff] [blame] | 2270 | inet_ntop (AF_INET, &p->prefix, buf1, INET_ADDRSTRLEN), |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2271 | p->prefixlen, |
| 2272 | ifindex, |
| 2273 | type); |
| 2274 | } |
| 2275 | route_unlock_node (rn); |
| 2276 | return ZEBRA_ERR_RTNOEXIST; |
| 2277 | } |
| 2278 | } |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 2279 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2280 | if (same) |
| 2281 | rib_delnode (rn, same); |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 2282 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2283 | route_unlock_node (rn); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2284 | return 0; |
| 2285 | } |
| 2286 | |
| 2287 | /* Install static route into rib. */ |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 2288 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2289 | static_install_ipv4 (struct prefix *p, struct static_ipv4 *si) |
| 2290 | { |
| 2291 | struct rib *rib; |
| 2292 | struct route_node *rn; |
| 2293 | struct route_table *table; |
| 2294 | |
| 2295 | /* Lookup table. */ |
| 2296 | table = vrf_table (AFI_IP, SAFI_UNICAST, 0); |
| 2297 | if (! table) |
| 2298 | return; |
| 2299 | |
| 2300 | /* Lookup existing route */ |
| 2301 | rn = route_node_get (table, p); |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 2302 | RNODE_FOREACH_RIB (rn, rib) |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 2303 | { |
| 2304 | if (CHECK_FLAG (rib->status, RIB_ENTRY_REMOVED)) |
| 2305 | continue; |
| 2306 | |
| 2307 | if (rib->type == ZEBRA_ROUTE_STATIC && rib->distance == si->distance) |
| 2308 | break; |
| 2309 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2310 | |
| 2311 | if (rib) |
| 2312 | { |
| 2313 | /* Same distance static route is there. Update it with new |
| 2314 | nexthop. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2315 | route_unlock_node (rn); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2316 | switch (si->type) |
paul | 7021c42 | 2003-07-15 12:52:22 +0000 | [diff] [blame] | 2317 | { |
| 2318 | case STATIC_IPV4_GATEWAY: |
Paul Jakma | 7514fb7 | 2007-05-02 16:05:35 +0000 | [diff] [blame] | 2319 | nexthop_ipv4_add (rib, &si->gate.ipv4, NULL); |
paul | 7021c42 | 2003-07-15 12:52:22 +0000 | [diff] [blame] | 2320 | break; |
| 2321 | case STATIC_IPV4_IFNAME: |
| 2322 | nexthop_ifname_add (rib, si->gate.ifname); |
| 2323 | break; |
| 2324 | case STATIC_IPV4_BLACKHOLE: |
| 2325 | nexthop_blackhole_add (rib); |
| 2326 | break; |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 2327 | } |
Paul Jakma | 3c0755d | 2006-12-08 00:53:14 +0000 | [diff] [blame] | 2328 | rib_queue_add (&zebrad, rn); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2329 | } |
| 2330 | else |
| 2331 | { |
| 2332 | /* This is new static route. */ |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 2333 | rib = XCALLOC (MTYPE_RIB, sizeof (struct rib)); |
| 2334 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2335 | rib->type = ZEBRA_ROUTE_STATIC; |
| 2336 | rib->distance = si->distance; |
| 2337 | rib->metric = 0; |
Nolan Leake | b0145dd | 2012-09-13 17:17:31 +0000 | [diff] [blame] | 2338 | rib->table = zebrad.rtm_table_default; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2339 | rib->nexthop_num = 0; |
| 2340 | |
| 2341 | switch (si->type) |
paul | 7021c42 | 2003-07-15 12:52:22 +0000 | [diff] [blame] | 2342 | { |
| 2343 | case STATIC_IPV4_GATEWAY: |
Paul Jakma | 7514fb7 | 2007-05-02 16:05:35 +0000 | [diff] [blame] | 2344 | nexthop_ipv4_add (rib, &si->gate.ipv4, NULL); |
paul | 7021c42 | 2003-07-15 12:52:22 +0000 | [diff] [blame] | 2345 | break; |
| 2346 | case STATIC_IPV4_IFNAME: |
| 2347 | nexthop_ifname_add (rib, si->gate.ifname); |
| 2348 | break; |
| 2349 | case STATIC_IPV4_BLACKHOLE: |
| 2350 | nexthop_blackhole_add (rib); |
| 2351 | break; |
| 2352 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2353 | |
hasso | 81dfcaa | 2003-05-25 19:21:25 +0000 | [diff] [blame] | 2354 | /* Save the flags of this static routes (reject, blackhole) */ |
| 2355 | rib->flags = si->flags; |
| 2356 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2357 | /* Link this rib to the tree. */ |
| 2358 | rib_addnode (rn, rib); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2359 | } |
| 2360 | } |
| 2361 | |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 2362 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2363 | static_ipv4_nexthop_same (struct nexthop *nexthop, struct static_ipv4 *si) |
| 2364 | { |
| 2365 | if (nexthop->type == NEXTHOP_TYPE_IPV4 |
| 2366 | && si->type == STATIC_IPV4_GATEWAY |
| 2367 | && IPV4_ADDR_SAME (&nexthop->gate.ipv4, &si->gate.ipv4)) |
| 2368 | return 1; |
| 2369 | if (nexthop->type == NEXTHOP_TYPE_IFNAME |
| 2370 | && si->type == STATIC_IPV4_IFNAME |
| 2371 | && strcmp (nexthop->ifname, si->gate.ifname) == 0) |
| 2372 | return 1; |
paul | 595db7f | 2003-05-25 21:35:06 +0000 | [diff] [blame] | 2373 | if (nexthop->type == NEXTHOP_TYPE_BLACKHOLE |
| 2374 | && si->type == STATIC_IPV4_BLACKHOLE) |
| 2375 | return 1; |
paul | e8e1946 | 2006-01-19 20:16:55 +0000 | [diff] [blame] | 2376 | return 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2377 | } |
| 2378 | |
| 2379 | /* Uninstall static route from RIB. */ |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 2380 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2381 | static_uninstall_ipv4 (struct prefix *p, struct static_ipv4 *si) |
| 2382 | { |
| 2383 | struct route_node *rn; |
| 2384 | struct rib *rib; |
| 2385 | struct nexthop *nexthop; |
| 2386 | struct route_table *table; |
| 2387 | |
| 2388 | /* Lookup table. */ |
| 2389 | table = vrf_table (AFI_IP, SAFI_UNICAST, 0); |
| 2390 | if (! table) |
| 2391 | return; |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 2392 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2393 | /* Lookup existing route with type and distance. */ |
| 2394 | rn = route_node_lookup (table, p); |
| 2395 | if (! rn) |
| 2396 | return; |
| 2397 | |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 2398 | RNODE_FOREACH_RIB (rn, rib) |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 2399 | { |
| 2400 | if (CHECK_FLAG (rib->status, RIB_ENTRY_REMOVED)) |
| 2401 | continue; |
| 2402 | |
| 2403 | if (rib->type == ZEBRA_ROUTE_STATIC && rib->distance == si->distance) |
| 2404 | break; |
| 2405 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2406 | |
| 2407 | if (! rib) |
| 2408 | { |
| 2409 | route_unlock_node (rn); |
| 2410 | return; |
| 2411 | } |
| 2412 | |
| 2413 | /* Lookup nexthop. */ |
| 2414 | for (nexthop = rib->nexthop; nexthop; nexthop = nexthop->next) |
| 2415 | if (static_ipv4_nexthop_same (nexthop, si)) |
| 2416 | break; |
| 2417 | |
| 2418 | /* Can't find nexthop. */ |
| 2419 | if (! nexthop) |
| 2420 | { |
| 2421 | route_unlock_node (rn); |
| 2422 | return; |
| 2423 | } |
| 2424 | |
| 2425 | /* Check nexthop. */ |
| 2426 | if (rib->nexthop_num == 1) |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 2427 | rib_delnode (rn, rib); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2428 | else |
| 2429 | { |
paul | 6baeb98 | 2003-10-28 03:47:15 +0000 | [diff] [blame] | 2430 | if (CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB)) |
| 2431 | rib_uninstall (rn, rib); |
paul | 319572c | 2005-09-21 12:30:08 +0000 | [diff] [blame] | 2432 | nexthop_delete (rib, nexthop); |
| 2433 | nexthop_free (nexthop); |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 2434 | rib_queue_add (&zebrad, rn); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2435 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2436 | /* Unlock node. */ |
| 2437 | route_unlock_node (rn); |
| 2438 | } |
| 2439 | |
| 2440 | /* Add static route into static route configuration. */ |
| 2441 | int |
hasso | 39db97e | 2004-10-12 20:50:58 +0000 | [diff] [blame] | 2442 | static_add_ipv4 (struct prefix *p, struct in_addr *gate, const char *ifname, |
hasso | 81dfcaa | 2003-05-25 19:21:25 +0000 | [diff] [blame] | 2443 | u_char flags, u_char distance, u_int32_t vrf_id) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2444 | { |
| 2445 | u_char type = 0; |
| 2446 | struct route_node *rn; |
| 2447 | struct static_ipv4 *si; |
| 2448 | struct static_ipv4 *pp; |
| 2449 | struct static_ipv4 *cp; |
| 2450 | struct static_ipv4 *update = NULL; |
| 2451 | struct route_table *stable; |
| 2452 | |
| 2453 | /* Lookup table. */ |
| 2454 | stable = vrf_static_table (AFI_IP, SAFI_UNICAST, vrf_id); |
| 2455 | if (! stable) |
| 2456 | return -1; |
| 2457 | |
| 2458 | /* Lookup static route prefix. */ |
| 2459 | rn = route_node_get (stable, p); |
| 2460 | |
| 2461 | /* Make flags. */ |
| 2462 | if (gate) |
| 2463 | type = STATIC_IPV4_GATEWAY; |
paul | 368aa3f | 2003-05-25 23:24:50 +0000 | [diff] [blame] | 2464 | else if (ifname) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2465 | type = STATIC_IPV4_IFNAME; |
paul | 595db7f | 2003-05-25 21:35:06 +0000 | [diff] [blame] | 2466 | else |
| 2467 | type = STATIC_IPV4_BLACKHOLE; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2468 | |
| 2469 | /* Do nothing if there is a same static route. */ |
| 2470 | for (si = rn->info; si; si = si->next) |
| 2471 | { |
| 2472 | if (type == si->type |
| 2473 | && (! gate || IPV4_ADDR_SAME (gate, &si->gate.ipv4)) |
| 2474 | && (! ifname || strcmp (ifname, si->gate.ifname) == 0)) |
| 2475 | { |
| 2476 | if (distance == si->distance) |
| 2477 | { |
| 2478 | route_unlock_node (rn); |
| 2479 | return 0; |
| 2480 | } |
| 2481 | else |
| 2482 | update = si; |
| 2483 | } |
| 2484 | } |
| 2485 | |
Paul Jakma | 3c0755d | 2006-12-08 00:53:14 +0000 | [diff] [blame] | 2486 | /* Distance changed. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2487 | if (update) |
| 2488 | static_delete_ipv4 (p, gate, ifname, update->distance, vrf_id); |
| 2489 | |
| 2490 | /* Make new static route structure. */ |
Stephen Hemminger | 393deb9 | 2008-08-18 14:13:29 -0700 | [diff] [blame] | 2491 | si = XCALLOC (MTYPE_STATIC_IPV4, sizeof (struct static_ipv4)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2492 | |
| 2493 | si->type = type; |
| 2494 | si->distance = distance; |
hasso | 81dfcaa | 2003-05-25 19:21:25 +0000 | [diff] [blame] | 2495 | si->flags = flags; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2496 | |
| 2497 | if (gate) |
| 2498 | si->gate.ipv4 = *gate; |
| 2499 | if (ifname) |
| 2500 | si->gate.ifname = XSTRDUP (0, ifname); |
| 2501 | |
| 2502 | /* Add new static route information to the tree with sort by |
| 2503 | distance value and gateway address. */ |
| 2504 | for (pp = NULL, cp = rn->info; cp; pp = cp, cp = cp->next) |
| 2505 | { |
| 2506 | if (si->distance < cp->distance) |
| 2507 | break; |
| 2508 | if (si->distance > cp->distance) |
| 2509 | continue; |
| 2510 | if (si->type == STATIC_IPV4_GATEWAY && cp->type == STATIC_IPV4_GATEWAY) |
| 2511 | { |
| 2512 | if (ntohl (si->gate.ipv4.s_addr) < ntohl (cp->gate.ipv4.s_addr)) |
| 2513 | break; |
| 2514 | if (ntohl (si->gate.ipv4.s_addr) > ntohl (cp->gate.ipv4.s_addr)) |
| 2515 | continue; |
| 2516 | } |
| 2517 | } |
| 2518 | |
| 2519 | /* Make linked list. */ |
| 2520 | if (pp) |
| 2521 | pp->next = si; |
| 2522 | else |
| 2523 | rn->info = si; |
| 2524 | if (cp) |
| 2525 | cp->prev = si; |
| 2526 | si->prev = pp; |
| 2527 | si->next = cp; |
| 2528 | |
| 2529 | /* Install into rib. */ |
| 2530 | static_install_ipv4 (p, si); |
| 2531 | |
| 2532 | return 1; |
| 2533 | } |
| 2534 | |
| 2535 | /* Delete static route from static route configuration. */ |
| 2536 | int |
hasso | 39db97e | 2004-10-12 20:50:58 +0000 | [diff] [blame] | 2537 | static_delete_ipv4 (struct prefix *p, struct in_addr *gate, const char *ifname, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2538 | u_char distance, u_int32_t vrf_id) |
| 2539 | { |
| 2540 | u_char type = 0; |
| 2541 | struct route_node *rn; |
| 2542 | struct static_ipv4 *si; |
| 2543 | struct route_table *stable; |
| 2544 | |
| 2545 | /* Lookup table. */ |
| 2546 | stable = vrf_static_table (AFI_IP, SAFI_UNICAST, vrf_id); |
| 2547 | if (! stable) |
| 2548 | return -1; |
| 2549 | |
| 2550 | /* Lookup static route prefix. */ |
| 2551 | rn = route_node_lookup (stable, p); |
| 2552 | if (! rn) |
| 2553 | return 0; |
| 2554 | |
| 2555 | /* Make flags. */ |
| 2556 | if (gate) |
| 2557 | type = STATIC_IPV4_GATEWAY; |
| 2558 | else if (ifname) |
| 2559 | type = STATIC_IPV4_IFNAME; |
paul | 595db7f | 2003-05-25 21:35:06 +0000 | [diff] [blame] | 2560 | else |
| 2561 | type = STATIC_IPV4_BLACKHOLE; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2562 | |
| 2563 | /* Find same static route is the tree */ |
| 2564 | for (si = rn->info; si; si = si->next) |
| 2565 | if (type == si->type |
| 2566 | && (! gate || IPV4_ADDR_SAME (gate, &si->gate.ipv4)) |
| 2567 | && (! ifname || strcmp (ifname, si->gate.ifname) == 0)) |
| 2568 | break; |
| 2569 | |
| 2570 | /* Can't find static route. */ |
| 2571 | if (! si) |
| 2572 | { |
| 2573 | route_unlock_node (rn); |
| 2574 | return 0; |
| 2575 | } |
| 2576 | |
| 2577 | /* Install into rib. */ |
| 2578 | static_uninstall_ipv4 (p, si); |
| 2579 | |
| 2580 | /* Unlink static route from linked list. */ |
| 2581 | if (si->prev) |
| 2582 | si->prev->next = si->next; |
| 2583 | else |
| 2584 | rn->info = si->next; |
| 2585 | if (si->next) |
| 2586 | si->next->prev = si->prev; |
paul | 143a385 | 2003-09-29 20:06:13 +0000 | [diff] [blame] | 2587 | route_unlock_node (rn); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2588 | |
| 2589 | /* Free static route configuration. */ |
paul | a0f6acd | 2003-05-14 18:29:13 +0000 | [diff] [blame] | 2590 | if (ifname) |
| 2591 | XFREE (0, si->gate.ifname); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2592 | XFREE (MTYPE_STATIC_IPV4, si); |
| 2593 | |
paul | 143a385 | 2003-09-29 20:06:13 +0000 | [diff] [blame] | 2594 | route_unlock_node (rn); |
| 2595 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2596 | return 1; |
| 2597 | } |
| 2598 | |
| 2599 | |
| 2600 | #ifdef HAVE_IPV6 |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 2601 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2602 | rib_bogus_ipv6 (int type, struct prefix_ipv6 *p, |
| 2603 | struct in6_addr *gate, unsigned int ifindex, int table) |
| 2604 | { |
hasso | 726f9b2 | 2003-05-25 21:04:54 +0000 | [diff] [blame] | 2605 | if (type == ZEBRA_ROUTE_CONNECT && IN6_IS_ADDR_UNSPECIFIED (&p->prefix)) { |
| 2606 | #if defined (MUSICA) || defined (LINUX) |
| 2607 | /* IN6_IS_ADDR_V4COMPAT(&p->prefix) */ |
| 2608 | if (p->prefixlen == 96) |
| 2609 | return 0; |
| 2610 | #endif /* MUSICA */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2611 | return 1; |
hasso | 726f9b2 | 2003-05-25 21:04:54 +0000 | [diff] [blame] | 2612 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2613 | if (type == ZEBRA_ROUTE_KERNEL && IN6_IS_ADDR_UNSPECIFIED (&p->prefix) |
| 2614 | && p->prefixlen == 96 && gate && IN6_IS_ADDR_UNSPECIFIED (gate)) |
| 2615 | { |
| 2616 | kernel_delete_ipv6_old (p, gate, ifindex, 0, table); |
| 2617 | return 1; |
| 2618 | } |
| 2619 | return 0; |
| 2620 | } |
| 2621 | |
| 2622 | int |
| 2623 | rib_add_ipv6 (int type, int flags, struct prefix_ipv6 *p, |
hasso | be61c4e | 2005-08-27 06:05:47 +0000 | [diff] [blame] | 2624 | struct in6_addr *gate, unsigned int ifindex, u_int32_t vrf_id, |
G.Balaji | f768f36 | 2011-11-26 22:10:39 +0400 | [diff] [blame] | 2625 | u_int32_t metric, u_char distance, safi_t safi) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2626 | { |
| 2627 | struct rib *rib; |
| 2628 | struct rib *same = NULL; |
| 2629 | struct route_table *table; |
| 2630 | struct route_node *rn; |
| 2631 | struct nexthop *nexthop; |
| 2632 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2633 | /* Lookup table. */ |
G.Balaji | f768f36 | 2011-11-26 22:10:39 +0400 | [diff] [blame] | 2634 | table = vrf_table (AFI_IP6, safi, 0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2635 | if (! table) |
| 2636 | return 0; |
| 2637 | |
| 2638 | /* Make sure mask is applied. */ |
| 2639 | apply_mask_ipv6 (p); |
| 2640 | |
| 2641 | /* Set default distance by route type. */ |
hasso | be61c4e | 2005-08-27 06:05:47 +0000 | [diff] [blame] | 2642 | if (!distance) |
| 2643 | distance = route_info[type].distance; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2644 | |
| 2645 | if (type == ZEBRA_ROUTE_BGP && CHECK_FLAG (flags, ZEBRA_FLAG_IBGP)) |
| 2646 | distance = 200; |
| 2647 | |
| 2648 | /* Filter bogus route. */ |
| 2649 | if (rib_bogus_ipv6 (type, p, gate, ifindex, 0)) |
| 2650 | return 0; |
| 2651 | |
| 2652 | /* Lookup route node.*/ |
| 2653 | rn = route_node_get (table, (struct prefix *) p); |
| 2654 | |
| 2655 | /* If same type of route are installed, treat it as a implicit |
| 2656 | withdraw. */ |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 2657 | RNODE_FOREACH_RIB (rn, rib) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2658 | { |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 2659 | if (CHECK_FLAG (rib->status, RIB_ENTRY_REMOVED)) |
| 2660 | continue; |
| 2661 | |
hasso | ebf1ead | 2005-09-21 14:58:20 +0000 | [diff] [blame] | 2662 | if (rib->type != type) |
| 2663 | continue; |
| 2664 | if (rib->type != ZEBRA_ROUTE_CONNECT) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2665 | { |
| 2666 | same = rib; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2667 | break; |
| 2668 | } |
hasso | ebf1ead | 2005-09-21 14:58:20 +0000 | [diff] [blame] | 2669 | else if ((nexthop = rib->nexthop) && |
| 2670 | nexthop->type == NEXTHOP_TYPE_IFINDEX && |
| 2671 | nexthop->ifindex == ifindex) |
| 2672 | { |
| 2673 | rib->refcnt++; |
| 2674 | return 0; |
| 2675 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2676 | } |
| 2677 | |
| 2678 | /* Allocate new rib structure. */ |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 2679 | rib = XCALLOC (MTYPE_RIB, sizeof (struct rib)); |
| 2680 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2681 | rib->type = type; |
| 2682 | rib->distance = distance; |
| 2683 | rib->flags = flags; |
| 2684 | rib->metric = metric; |
paul | b5f4502 | 2003-11-02 07:28:05 +0000 | [diff] [blame] | 2685 | rib->table = vrf_id; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2686 | rib->nexthop_num = 0; |
| 2687 | rib->uptime = time (NULL); |
| 2688 | |
| 2689 | /* Nexthop settings. */ |
| 2690 | if (gate) |
| 2691 | { |
| 2692 | if (ifindex) |
| 2693 | nexthop_ipv6_ifindex_add (rib, gate, ifindex); |
| 2694 | else |
| 2695 | nexthop_ipv6_add (rib, gate); |
| 2696 | } |
| 2697 | else |
| 2698 | nexthop_ifindex_add (rib, ifindex); |
| 2699 | |
| 2700 | /* If this route is kernel route, set FIB flag to the route. */ |
| 2701 | if (type == ZEBRA_ROUTE_KERNEL || type == ZEBRA_ROUTE_CONNECT) |
| 2702 | for (nexthop = rib->nexthop; nexthop; nexthop = nexthop->next) |
| 2703 | SET_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB); |
| 2704 | |
| 2705 | /* Link new rib to node.*/ |
| 2706 | rib_addnode (rn, rib); |
Vincent Bernat | fed643f | 2012-10-23 16:00:42 +0000 | [diff] [blame] | 2707 | if (IS_ZEBRA_DEBUG_RIB) |
| 2708 | { |
| 2709 | zlog_debug ("%s: called rib_addnode (%p, %p) on new RIB entry", |
| 2710 | __func__, rn, rib); |
David Lamparter | f7bf415 | 2013-10-22 17:10:21 +0000 | [diff] [blame] | 2711 | rib_dump (p, rib); |
Vincent Bernat | fed643f | 2012-10-23 16:00:42 +0000 | [diff] [blame] | 2712 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2713 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2714 | /* Free implicit route.*/ |
| 2715 | if (same) |
Vincent Bernat | fed643f | 2012-10-23 16:00:42 +0000 | [diff] [blame] | 2716 | { |
| 2717 | if (IS_ZEBRA_DEBUG_RIB) |
| 2718 | { |
| 2719 | zlog_debug ("%s: calling rib_delnode (%p, %p) on existing RIB entry", |
| 2720 | __func__, rn, same); |
David Lamparter | f7bf415 | 2013-10-22 17:10:21 +0000 | [diff] [blame] | 2721 | rib_dump (p, same); |
Vincent Bernat | fed643f | 2012-10-23 16:00:42 +0000 | [diff] [blame] | 2722 | } |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 2723 | rib_delnode (rn, same); |
Vincent Bernat | fed643f | 2012-10-23 16:00:42 +0000 | [diff] [blame] | 2724 | } |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 2725 | |
| 2726 | route_unlock_node (rn); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2727 | return 0; |
| 2728 | } |
| 2729 | |
hasso | ebf1ead | 2005-09-21 14:58:20 +0000 | [diff] [blame] | 2730 | /* XXX factor with rib_delete_ipv6 */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2731 | int |
| 2732 | rib_delete_ipv6 (int type, int flags, struct prefix_ipv6 *p, |
G.Balaji | f768f36 | 2011-11-26 22:10:39 +0400 | [diff] [blame] | 2733 | struct in6_addr *gate, unsigned int ifindex, u_int32_t vrf_id, safi_t safi) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2734 | { |
| 2735 | struct route_table *table; |
| 2736 | struct route_node *rn; |
| 2737 | struct rib *rib; |
| 2738 | struct rib *fib = NULL; |
| 2739 | struct rib *same = NULL; |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 2740 | struct nexthop *nexthop, *tnexthop; |
| 2741 | int recursing; |
Stephen Hemminger | 81cce01 | 2009-04-28 14:28:00 -0700 | [diff] [blame] | 2742 | char buf1[INET6_ADDRSTRLEN]; |
| 2743 | char buf2[INET6_ADDRSTRLEN]; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2744 | |
| 2745 | /* Apply mask. */ |
| 2746 | apply_mask_ipv6 (p); |
| 2747 | |
| 2748 | /* Lookup table. */ |
G.Balaji | f768f36 | 2011-11-26 22:10:39 +0400 | [diff] [blame] | 2749 | table = vrf_table (AFI_IP6, safi, 0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2750 | if (! table) |
| 2751 | return 0; |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 2752 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2753 | /* Lookup route node. */ |
| 2754 | rn = route_node_lookup (table, (struct prefix *) p); |
| 2755 | if (! rn) |
| 2756 | { |
| 2757 | if (IS_ZEBRA_DEBUG_KERNEL) |
| 2758 | { |
| 2759 | if (gate) |
ajs | b617800 | 2004-12-07 21:12:56 +0000 | [diff] [blame] | 2760 | zlog_debug ("route %s/%d via %s ifindex %d doesn't exist in rib", |
Stephen Hemminger | 81cce01 | 2009-04-28 14:28:00 -0700 | [diff] [blame] | 2761 | inet_ntop (AF_INET6, &p->prefix, buf1, INET6_ADDRSTRLEN), |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2762 | p->prefixlen, |
Stephen Hemminger | 81cce01 | 2009-04-28 14:28:00 -0700 | [diff] [blame] | 2763 | inet_ntop (AF_INET6, gate, buf2, INET6_ADDRSTRLEN), |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2764 | ifindex); |
| 2765 | else |
ajs | b617800 | 2004-12-07 21:12:56 +0000 | [diff] [blame] | 2766 | zlog_debug ("route %s/%d ifindex %d doesn't exist in rib", |
Stephen Hemminger | 81cce01 | 2009-04-28 14:28:00 -0700 | [diff] [blame] | 2767 | inet_ntop (AF_INET6, &p->prefix, buf1, INET6_ADDRSTRLEN), |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2768 | p->prefixlen, |
| 2769 | ifindex); |
| 2770 | } |
| 2771 | return ZEBRA_ERR_RTNOEXIST; |
| 2772 | } |
| 2773 | |
| 2774 | /* Lookup same type route. */ |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 2775 | RNODE_FOREACH_RIB (rn, rib) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2776 | { |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 2777 | if (CHECK_FLAG(rib->status, RIB_ENTRY_REMOVED)) |
| 2778 | continue; |
| 2779 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2780 | if (CHECK_FLAG (rib->flags, ZEBRA_FLAG_SELECTED)) |
| 2781 | fib = rib; |
| 2782 | |
hasso | ebf1ead | 2005-09-21 14:58:20 +0000 | [diff] [blame] | 2783 | if (rib->type != type) |
| 2784 | continue; |
| 2785 | if (rib->type == ZEBRA_ROUTE_CONNECT && (nexthop = rib->nexthop) && |
Matthias Ferdinand | 4f1735f | 2011-12-26 16:35:30 +0400 | [diff] [blame] | 2786 | nexthop->type == NEXTHOP_TYPE_IFINDEX) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2787 | { |
Matthias Ferdinand | 4f1735f | 2011-12-26 16:35:30 +0400 | [diff] [blame] | 2788 | if (nexthop->ifindex != ifindex) |
| 2789 | continue; |
hasso | ebf1ead | 2005-09-21 14:58:20 +0000 | [diff] [blame] | 2790 | if (rib->refcnt) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2791 | { |
hasso | ebf1ead | 2005-09-21 14:58:20 +0000 | [diff] [blame] | 2792 | rib->refcnt--; |
| 2793 | route_unlock_node (rn); |
| 2794 | route_unlock_node (rn); |
| 2795 | return 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2796 | } |
hasso | ebf1ead | 2005-09-21 14:58:20 +0000 | [diff] [blame] | 2797 | same = rib; |
| 2798 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2799 | } |
hasso | ebf1ead | 2005-09-21 14:58:20 +0000 | [diff] [blame] | 2800 | /* Make sure that the route found has the same gateway. */ |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 2801 | else |
| 2802 | { |
| 2803 | if (gate == NULL) |
| 2804 | { |
| 2805 | same = rib; |
| 2806 | break; |
| 2807 | } |
| 2808 | for (ALL_NEXTHOPS_RO(rib->nexthop, nexthop, tnexthop, recursing)) |
| 2809 | if (IPV6_ADDR_SAME (&nexthop->gate.ipv6, gate)) |
| 2810 | { |
| 2811 | same = rib; |
| 2812 | break; |
| 2813 | } |
| 2814 | if (same) |
| 2815 | break; |
| 2816 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2817 | } |
| 2818 | |
| 2819 | /* If same type of route can't be found and this message is from |
| 2820 | kernel. */ |
| 2821 | if (! same) |
| 2822 | { |
| 2823 | if (fib && type == ZEBRA_ROUTE_KERNEL) |
| 2824 | { |
| 2825 | /* Unset flags. */ |
| 2826 | for (nexthop = fib->nexthop; nexthop; nexthop = nexthop->next) |
| 2827 | UNSET_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB); |
| 2828 | |
| 2829 | UNSET_FLAG (fib->flags, ZEBRA_FLAG_SELECTED); |
| 2830 | } |
| 2831 | else |
| 2832 | { |
| 2833 | if (IS_ZEBRA_DEBUG_KERNEL) |
| 2834 | { |
| 2835 | if (gate) |
ajs | b617800 | 2004-12-07 21:12:56 +0000 | [diff] [blame] | 2836 | zlog_debug ("route %s/%d via %s ifindex %d type %d doesn't exist in rib", |
Stephen Hemminger | 81cce01 | 2009-04-28 14:28:00 -0700 | [diff] [blame] | 2837 | inet_ntop (AF_INET6, &p->prefix, buf1, INET6_ADDRSTRLEN), |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2838 | p->prefixlen, |
Stephen Hemminger | 81cce01 | 2009-04-28 14:28:00 -0700 | [diff] [blame] | 2839 | inet_ntop (AF_INET6, gate, buf2, INET6_ADDRSTRLEN), |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2840 | ifindex, |
| 2841 | type); |
| 2842 | else |
ajs | b617800 | 2004-12-07 21:12:56 +0000 | [diff] [blame] | 2843 | zlog_debug ("route %s/%d ifindex %d type %d doesn't exist in rib", |
Stephen Hemminger | 81cce01 | 2009-04-28 14:28:00 -0700 | [diff] [blame] | 2844 | inet_ntop (AF_INET6, &p->prefix, buf1, INET6_ADDRSTRLEN), |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2845 | p->prefixlen, |
| 2846 | ifindex, |
| 2847 | type); |
| 2848 | } |
| 2849 | route_unlock_node (rn); |
| 2850 | return ZEBRA_ERR_RTNOEXIST; |
| 2851 | } |
| 2852 | } |
| 2853 | |
| 2854 | if (same) |
| 2855 | rib_delnode (rn, same); |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 2856 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2857 | route_unlock_node (rn); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2858 | return 0; |
| 2859 | } |
| 2860 | |
| 2861 | /* Install static route into rib. */ |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 2862 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2863 | static_install_ipv6 (struct prefix *p, struct static_ipv6 *si) |
| 2864 | { |
| 2865 | struct rib *rib; |
| 2866 | struct route_table *table; |
| 2867 | struct route_node *rn; |
| 2868 | |
| 2869 | /* Lookup table. */ |
| 2870 | table = vrf_table (AFI_IP6, SAFI_UNICAST, 0); |
| 2871 | if (! table) |
| 2872 | return; |
| 2873 | |
| 2874 | /* Lookup existing route */ |
| 2875 | rn = route_node_get (table, p); |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 2876 | RNODE_FOREACH_RIB (rn, rib) |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 2877 | { |
| 2878 | if (CHECK_FLAG(rib->status, RIB_ENTRY_REMOVED)) |
| 2879 | continue; |
| 2880 | |
| 2881 | if (rib->type == ZEBRA_ROUTE_STATIC && rib->distance == si->distance) |
| 2882 | break; |
| 2883 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2884 | |
| 2885 | if (rib) |
| 2886 | { |
| 2887 | /* Same distance static route is there. Update it with new |
| 2888 | nexthop. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2889 | route_unlock_node (rn); |
| 2890 | |
| 2891 | switch (si->type) |
| 2892 | { |
| 2893 | case STATIC_IPV6_GATEWAY: |
| 2894 | nexthop_ipv6_add (rib, &si->ipv6); |
| 2895 | break; |
| 2896 | case STATIC_IPV6_IFNAME: |
| 2897 | nexthop_ifname_add (rib, si->ifname); |
| 2898 | break; |
| 2899 | case STATIC_IPV6_GATEWAY_IFNAME: |
| 2900 | nexthop_ipv6_ifname_add (rib, &si->ipv6, si->ifname); |
| 2901 | break; |
| 2902 | } |
Paul Jakma | 3c0755d | 2006-12-08 00:53:14 +0000 | [diff] [blame] | 2903 | rib_queue_add (&zebrad, rn); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2904 | } |
| 2905 | else |
| 2906 | { |
| 2907 | /* This is new static route. */ |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 2908 | rib = XCALLOC (MTYPE_RIB, sizeof (struct rib)); |
| 2909 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2910 | rib->type = ZEBRA_ROUTE_STATIC; |
| 2911 | rib->distance = si->distance; |
| 2912 | rib->metric = 0; |
| 2913 | rib->nexthop_num = 0; |
| 2914 | |
| 2915 | switch (si->type) |
| 2916 | { |
| 2917 | case STATIC_IPV6_GATEWAY: |
| 2918 | nexthop_ipv6_add (rib, &si->ipv6); |
| 2919 | break; |
| 2920 | case STATIC_IPV6_IFNAME: |
| 2921 | nexthop_ifname_add (rib, si->ifname); |
| 2922 | break; |
| 2923 | case STATIC_IPV6_GATEWAY_IFNAME: |
| 2924 | nexthop_ipv6_ifname_add (rib, &si->ipv6, si->ifname); |
| 2925 | break; |
| 2926 | } |
| 2927 | |
hasso | 81dfcaa | 2003-05-25 19:21:25 +0000 | [diff] [blame] | 2928 | /* Save the flags of this static routes (reject, blackhole) */ |
| 2929 | rib->flags = si->flags; |
| 2930 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2931 | /* Link this rib to the tree. */ |
| 2932 | rib_addnode (rn, rib); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2933 | } |
| 2934 | } |
| 2935 | |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 2936 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2937 | static_ipv6_nexthop_same (struct nexthop *nexthop, struct static_ipv6 *si) |
| 2938 | { |
| 2939 | if (nexthop->type == NEXTHOP_TYPE_IPV6 |
| 2940 | && si->type == STATIC_IPV6_GATEWAY |
| 2941 | && IPV6_ADDR_SAME (&nexthop->gate.ipv6, &si->ipv6)) |
| 2942 | return 1; |
| 2943 | if (nexthop->type == NEXTHOP_TYPE_IFNAME |
| 2944 | && si->type == STATIC_IPV6_IFNAME |
| 2945 | && strcmp (nexthop->ifname, si->ifname) == 0) |
| 2946 | return 1; |
| 2947 | if (nexthop->type == NEXTHOP_TYPE_IPV6_IFNAME |
| 2948 | && si->type == STATIC_IPV6_GATEWAY_IFNAME |
| 2949 | && IPV6_ADDR_SAME (&nexthop->gate.ipv6, &si->ipv6) |
| 2950 | && strcmp (nexthop->ifname, si->ifname) == 0) |
| 2951 | return 1; |
paul | e8e1946 | 2006-01-19 20:16:55 +0000 | [diff] [blame] | 2952 | return 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2953 | } |
| 2954 | |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 2955 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2956 | static_uninstall_ipv6 (struct prefix *p, struct static_ipv6 *si) |
| 2957 | { |
| 2958 | struct route_table *table; |
| 2959 | struct route_node *rn; |
| 2960 | struct rib *rib; |
| 2961 | struct nexthop *nexthop; |
| 2962 | |
| 2963 | /* Lookup table. */ |
| 2964 | table = vrf_table (AFI_IP6, SAFI_UNICAST, 0); |
| 2965 | if (! table) |
| 2966 | return; |
| 2967 | |
| 2968 | /* Lookup existing route with type and distance. */ |
| 2969 | rn = route_node_lookup (table, (struct prefix *) p); |
| 2970 | if (! rn) |
| 2971 | return; |
| 2972 | |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 2973 | RNODE_FOREACH_RIB (rn, rib) |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 2974 | { |
| 2975 | if (CHECK_FLAG (rib->status, RIB_ENTRY_REMOVED)) |
| 2976 | continue; |
| 2977 | |
| 2978 | if (rib->type == ZEBRA_ROUTE_STATIC && rib->distance == si->distance) |
| 2979 | break; |
| 2980 | } |
| 2981 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2982 | if (! rib) |
| 2983 | { |
| 2984 | route_unlock_node (rn); |
| 2985 | return; |
| 2986 | } |
| 2987 | |
| 2988 | /* Lookup nexthop. */ |
| 2989 | for (nexthop = rib->nexthop; nexthop; nexthop = nexthop->next) |
| 2990 | if (static_ipv6_nexthop_same (nexthop, si)) |
| 2991 | break; |
| 2992 | |
| 2993 | /* Can't find nexthop. */ |
| 2994 | if (! nexthop) |
| 2995 | { |
| 2996 | route_unlock_node (rn); |
| 2997 | return; |
| 2998 | } |
| 2999 | |
| 3000 | /* Check nexthop. */ |
| 3001 | if (rib->nexthop_num == 1) |
| 3002 | { |
| 3003 | rib_delnode (rn, rib); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3004 | } |
| 3005 | else |
| 3006 | { |
paul | 6baeb98 | 2003-10-28 03:47:15 +0000 | [diff] [blame] | 3007 | if (CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB)) |
| 3008 | rib_uninstall (rn, rib); |
paul | 319572c | 2005-09-21 12:30:08 +0000 | [diff] [blame] | 3009 | nexthop_delete (rib, nexthop); |
| 3010 | nexthop_free (nexthop); |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 3011 | rib_queue_add (&zebrad, rn); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3012 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3013 | /* Unlock node. */ |
| 3014 | route_unlock_node (rn); |
| 3015 | } |
| 3016 | |
| 3017 | /* Add static route into static route configuration. */ |
| 3018 | int |
| 3019 | static_add_ipv6 (struct prefix *p, u_char type, struct in6_addr *gate, |
hasso | 39db97e | 2004-10-12 20:50:58 +0000 | [diff] [blame] | 3020 | const char *ifname, u_char flags, u_char distance, |
| 3021 | u_int32_t vrf_id) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3022 | { |
| 3023 | struct route_node *rn; |
| 3024 | struct static_ipv6 *si; |
| 3025 | struct static_ipv6 *pp; |
| 3026 | struct static_ipv6 *cp; |
| 3027 | struct route_table *stable; |
| 3028 | |
| 3029 | /* Lookup table. */ |
| 3030 | stable = vrf_static_table (AFI_IP6, SAFI_UNICAST, vrf_id); |
| 3031 | if (! stable) |
| 3032 | return -1; |
Paul Jakma | 27b4725 | 2006-07-02 16:38:54 +0000 | [diff] [blame] | 3033 | |
| 3034 | if (!gate && |
| 3035 | (type == STATIC_IPV6_GATEWAY || type == STATIC_IPV6_GATEWAY_IFNAME)) |
| 3036 | return -1; |
| 3037 | |
| 3038 | if (!ifname && |
| 3039 | (type == STATIC_IPV6_GATEWAY_IFNAME || type == STATIC_IPV6_IFNAME)) |
| 3040 | return -1; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3041 | |
| 3042 | /* Lookup static route prefix. */ |
| 3043 | rn = route_node_get (stable, p); |
| 3044 | |
| 3045 | /* Do nothing if there is a same static route. */ |
| 3046 | for (si = rn->info; si; si = si->next) |
| 3047 | { |
| 3048 | if (distance == si->distance |
| 3049 | && type == si->type |
| 3050 | && (! gate || IPV6_ADDR_SAME (gate, &si->ipv6)) |
| 3051 | && (! ifname || strcmp (ifname, si->ifname) == 0)) |
| 3052 | { |
| 3053 | route_unlock_node (rn); |
| 3054 | return 0; |
| 3055 | } |
| 3056 | } |
| 3057 | |
| 3058 | /* Make new static route structure. */ |
Stephen Hemminger | 393deb9 | 2008-08-18 14:13:29 -0700 | [diff] [blame] | 3059 | si = XCALLOC (MTYPE_STATIC_IPV6, sizeof (struct static_ipv6)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3060 | |
| 3061 | si->type = type; |
| 3062 | si->distance = distance; |
hasso | 81dfcaa | 2003-05-25 19:21:25 +0000 | [diff] [blame] | 3063 | si->flags = flags; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3064 | |
| 3065 | switch (type) |
| 3066 | { |
| 3067 | case STATIC_IPV6_GATEWAY: |
| 3068 | si->ipv6 = *gate; |
| 3069 | break; |
| 3070 | case STATIC_IPV6_IFNAME: |
| 3071 | si->ifname = XSTRDUP (0, ifname); |
| 3072 | break; |
| 3073 | case STATIC_IPV6_GATEWAY_IFNAME: |
| 3074 | si->ipv6 = *gate; |
| 3075 | si->ifname = XSTRDUP (0, ifname); |
| 3076 | break; |
| 3077 | } |
| 3078 | |
| 3079 | /* Add new static route information to the tree with sort by |
| 3080 | distance value and gateway address. */ |
| 3081 | for (pp = NULL, cp = rn->info; cp; pp = cp, cp = cp->next) |
| 3082 | { |
| 3083 | if (si->distance < cp->distance) |
| 3084 | break; |
| 3085 | if (si->distance > cp->distance) |
| 3086 | continue; |
| 3087 | } |
| 3088 | |
| 3089 | /* Make linked list. */ |
| 3090 | if (pp) |
| 3091 | pp->next = si; |
| 3092 | else |
| 3093 | rn->info = si; |
| 3094 | if (cp) |
| 3095 | cp->prev = si; |
| 3096 | si->prev = pp; |
| 3097 | si->next = cp; |
| 3098 | |
| 3099 | /* Install into rib. */ |
| 3100 | static_install_ipv6 (p, si); |
| 3101 | |
| 3102 | return 1; |
| 3103 | } |
| 3104 | |
| 3105 | /* Delete static route from static route configuration. */ |
| 3106 | int |
| 3107 | static_delete_ipv6 (struct prefix *p, u_char type, struct in6_addr *gate, |
hasso | 39db97e | 2004-10-12 20:50:58 +0000 | [diff] [blame] | 3108 | const char *ifname, u_char distance, u_int32_t vrf_id) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3109 | { |
| 3110 | struct route_node *rn; |
| 3111 | struct static_ipv6 *si; |
| 3112 | struct route_table *stable; |
| 3113 | |
| 3114 | /* Lookup table. */ |
| 3115 | stable = vrf_static_table (AFI_IP6, SAFI_UNICAST, vrf_id); |
| 3116 | if (! stable) |
| 3117 | return -1; |
| 3118 | |
| 3119 | /* Lookup static route prefix. */ |
| 3120 | rn = route_node_lookup (stable, p); |
| 3121 | if (! rn) |
| 3122 | return 0; |
| 3123 | |
| 3124 | /* Find same static route is the tree */ |
| 3125 | for (si = rn->info; si; si = si->next) |
| 3126 | if (distance == si->distance |
| 3127 | && type == si->type |
| 3128 | && (! gate || IPV6_ADDR_SAME (gate, &si->ipv6)) |
| 3129 | && (! ifname || strcmp (ifname, si->ifname) == 0)) |
| 3130 | break; |
| 3131 | |
| 3132 | /* Can't find static route. */ |
| 3133 | if (! si) |
| 3134 | { |
| 3135 | route_unlock_node (rn); |
| 3136 | return 0; |
| 3137 | } |
| 3138 | |
| 3139 | /* Install into rib. */ |
| 3140 | static_uninstall_ipv6 (p, si); |
| 3141 | |
| 3142 | /* Unlink static route from linked list. */ |
| 3143 | if (si->prev) |
| 3144 | si->prev->next = si->next; |
| 3145 | else |
| 3146 | rn->info = si->next; |
| 3147 | if (si->next) |
| 3148 | si->next->prev = si->prev; |
| 3149 | |
| 3150 | /* Free static route configuration. */ |
paul | a0f6acd | 2003-05-14 18:29:13 +0000 | [diff] [blame] | 3151 | if (ifname) |
| 3152 | XFREE (0, si->ifname); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3153 | XFREE (MTYPE_STATIC_IPV6, si); |
| 3154 | |
| 3155 | return 1; |
| 3156 | } |
| 3157 | #endif /* HAVE_IPV6 */ |
| 3158 | |
| 3159 | /* RIB update function. */ |
| 3160 | void |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 3161 | rib_update (void) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3162 | { |
| 3163 | struct route_node *rn; |
| 3164 | struct route_table *table; |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 3165 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3166 | table = vrf_table (AFI_IP, SAFI_UNICAST, 0); |
| 3167 | if (table) |
| 3168 | for (rn = route_top (table); rn; rn = route_next (rn)) |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 3169 | if (rnode_to_ribs (rn)) |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 3170 | rib_queue_add (&zebrad, rn); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3171 | |
| 3172 | table = vrf_table (AFI_IP6, SAFI_UNICAST, 0); |
| 3173 | if (table) |
| 3174 | for (rn = route_top (table); rn; rn = route_next (rn)) |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 3175 | if (rnode_to_ribs (rn)) |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 3176 | rib_queue_add (&zebrad, rn); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3177 | } |
| 3178 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3179 | |
| 3180 | /* Remove all routes which comes from non main table. */ |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 3181 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3182 | rib_weed_table (struct route_table *table) |
| 3183 | { |
| 3184 | struct route_node *rn; |
| 3185 | struct rib *rib; |
| 3186 | struct rib *next; |
| 3187 | |
| 3188 | if (table) |
| 3189 | for (rn = route_top (table); rn; rn = route_next (rn)) |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 3190 | RNODE_FOREACH_RIB_SAFE (rn, rib, next) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3191 | { |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 3192 | if (CHECK_FLAG (rib->status, RIB_ENTRY_REMOVED)) |
| 3193 | continue; |
| 3194 | |
paul | b21b19c | 2003-06-15 01:28:29 +0000 | [diff] [blame] | 3195 | if (rib->table != zebrad.rtm_table_default && |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3196 | rib->table != RT_TABLE_MAIN) |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 3197 | rib_delnode (rn, rib); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3198 | } |
| 3199 | } |
| 3200 | |
| 3201 | /* Delete all routes from non main table. */ |
| 3202 | void |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 3203 | rib_weed_tables (void) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3204 | { |
| 3205 | rib_weed_table (vrf_table (AFI_IP, SAFI_UNICAST, 0)); |
| 3206 | rib_weed_table (vrf_table (AFI_IP6, SAFI_UNICAST, 0)); |
| 3207 | } |
| 3208 | |
| 3209 | /* Delete self installed routes after zebra is relaunched. */ |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 3210 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3211 | rib_sweep_table (struct route_table *table) |
| 3212 | { |
| 3213 | struct route_node *rn; |
| 3214 | struct rib *rib; |
| 3215 | struct rib *next; |
| 3216 | int ret = 0; |
| 3217 | |
| 3218 | if (table) |
| 3219 | for (rn = route_top (table); rn; rn = route_next (rn)) |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 3220 | RNODE_FOREACH_RIB_SAFE (rn, rib, next) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3221 | { |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 3222 | if (CHECK_FLAG (rib->status, RIB_ENTRY_REMOVED)) |
| 3223 | continue; |
| 3224 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3225 | if (rib->type == ZEBRA_ROUTE_KERNEL && |
| 3226 | CHECK_FLAG (rib->flags, ZEBRA_FLAG_SELFROUTE)) |
| 3227 | { |
| 3228 | ret = rib_uninstall_kernel (rn, rib); |
| 3229 | if (! ret) |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 3230 | rib_delnode (rn, rib); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3231 | } |
| 3232 | } |
| 3233 | } |
| 3234 | |
| 3235 | /* Sweep all RIB tables. */ |
| 3236 | void |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 3237 | rib_sweep_route (void) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3238 | { |
| 3239 | rib_sweep_table (vrf_table (AFI_IP, SAFI_UNICAST, 0)); |
| 3240 | rib_sweep_table (vrf_table (AFI_IP6, SAFI_UNICAST, 0)); |
| 3241 | } |
Vyacheslav Trushkin | 2ea1ab1 | 2011-12-11 18:48:47 +0400 | [diff] [blame] | 3242 | |
| 3243 | /* Remove specific by protocol routes from 'table'. */ |
| 3244 | static unsigned long |
| 3245 | rib_score_proto_table (u_char proto, struct route_table *table) |
| 3246 | { |
| 3247 | struct route_node *rn; |
| 3248 | struct rib *rib; |
| 3249 | struct rib *next; |
| 3250 | unsigned long n = 0; |
| 3251 | |
| 3252 | if (table) |
| 3253 | for (rn = route_top (table); rn; rn = route_next (rn)) |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 3254 | RNODE_FOREACH_RIB_SAFE (rn, rib, next) |
Vyacheslav Trushkin | 2ea1ab1 | 2011-12-11 18:48:47 +0400 | [diff] [blame] | 3255 | { |
Vyacheslav Trushkin | 2ea1ab1 | 2011-12-11 18:48:47 +0400 | [diff] [blame] | 3256 | if (CHECK_FLAG (rib->status, RIB_ENTRY_REMOVED)) |
| 3257 | continue; |
| 3258 | if (rib->type == proto) |
| 3259 | { |
| 3260 | rib_delnode (rn, rib); |
| 3261 | n++; |
| 3262 | } |
| 3263 | } |
| 3264 | |
| 3265 | return n; |
| 3266 | } |
| 3267 | |
| 3268 | /* Remove specific by protocol routes. */ |
| 3269 | unsigned long |
| 3270 | rib_score_proto (u_char proto) |
| 3271 | { |
| 3272 | return rib_score_proto_table (proto, vrf_table (AFI_IP, SAFI_UNICAST, 0)) |
| 3273 | +rib_score_proto_table (proto, vrf_table (AFI_IP6, SAFI_UNICAST, 0)); |
| 3274 | } |
| 3275 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3276 | /* Close RIB and clean up kernel routes. */ |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 3277 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3278 | rib_close_table (struct route_table *table) |
| 3279 | { |
| 3280 | struct route_node *rn; |
| 3281 | struct rib *rib; |
| 3282 | |
| 3283 | if (table) |
| 3284 | for (rn = route_top (table); rn; rn = route_next (rn)) |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 3285 | RNODE_FOREACH_RIB (rn, rib) |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 3286 | { |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 3287 | if (!CHECK_FLAG (rib->flags, ZEBRA_FLAG_SELECTED)) |
| 3288 | continue; |
| 3289 | |
Avneesh Sachdev | 5adc252 | 2012-11-13 22:48:59 +0000 | [diff] [blame] | 3290 | zfpm_trigger_update (rn, NULL); |
| 3291 | |
Avneesh Sachdev | 9fd92e3 | 2012-11-13 22:48:53 +0000 | [diff] [blame] | 3292 | if (! RIB_SYSTEM_ROUTE (rib)) |
| 3293 | rib_uninstall_kernel (rn, rib); |
Paul Jakma | 6d69112 | 2006-07-27 21:49:00 +0000 | [diff] [blame] | 3294 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3295 | } |
| 3296 | |
| 3297 | /* Close all RIB tables. */ |
| 3298 | void |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 3299 | rib_close (void) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3300 | { |
| 3301 | rib_close_table (vrf_table (AFI_IP, SAFI_UNICAST, 0)); |
| 3302 | rib_close_table (vrf_table (AFI_IP6, SAFI_UNICAST, 0)); |
| 3303 | } |
| 3304 | |
| 3305 | /* Routing information base initialize. */ |
| 3306 | void |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 3307 | rib_init (void) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3308 | { |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 3309 | rib_queue_init (&zebrad); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3310 | /* VRF initialization. */ |
| 3311 | vrf_init (); |
| 3312 | } |
Avneesh Sachdev | 0915bb0 | 2012-11-13 22:48:55 +0000 | [diff] [blame] | 3313 | |
| 3314 | /* |
| 3315 | * vrf_id_get_next |
| 3316 | * |
| 3317 | * Get the first vrf id that is greater than the given vrf id if any. |
| 3318 | * |
| 3319 | * Returns TRUE if a vrf id was found, FALSE otherwise. |
| 3320 | */ |
| 3321 | static inline int |
| 3322 | vrf_id_get_next (uint32_t id, uint32_t *next_id_p) |
| 3323 | { |
| 3324 | while (++id < vector_active (vrf_vector)) |
| 3325 | { |
| 3326 | if (vrf_lookup (id)) |
| 3327 | { |
| 3328 | *next_id_p = id; |
| 3329 | return 1; |
| 3330 | } |
| 3331 | } |
| 3332 | |
| 3333 | return 0; |
| 3334 | } |
| 3335 | |
| 3336 | /* |
| 3337 | * rib_tables_iter_next |
| 3338 | * |
| 3339 | * Returns the next table in the iteration. |
| 3340 | */ |
| 3341 | struct route_table * |
| 3342 | rib_tables_iter_next (rib_tables_iter_t *iter) |
| 3343 | { |
| 3344 | struct route_table *table; |
| 3345 | |
| 3346 | /* |
| 3347 | * Array that helps us go over all AFI/SAFI combinations via one |
| 3348 | * index. |
| 3349 | */ |
| 3350 | static struct { |
| 3351 | afi_t afi; |
| 3352 | safi_t safi; |
| 3353 | } afi_safis[] = { |
| 3354 | { AFI_IP, SAFI_UNICAST }, |
| 3355 | { AFI_IP, SAFI_MULTICAST }, |
| 3356 | { AFI_IP6, SAFI_UNICAST }, |
| 3357 | { AFI_IP6, SAFI_MULTICAST }, |
| 3358 | }; |
| 3359 | |
| 3360 | table = NULL; |
| 3361 | |
| 3362 | switch (iter->state) |
| 3363 | { |
| 3364 | |
| 3365 | case RIB_TABLES_ITER_S_INIT: |
| 3366 | iter->vrf_id = 0; |
| 3367 | iter->afi_safi_ix = -1; |
| 3368 | |
| 3369 | /* Fall through */ |
| 3370 | |
| 3371 | case RIB_TABLES_ITER_S_ITERATING: |
| 3372 | iter->afi_safi_ix++; |
| 3373 | while (1) |
| 3374 | { |
| 3375 | |
| 3376 | while (iter->afi_safi_ix < (int) ZEBRA_NUM_OF (afi_safis)) |
| 3377 | { |
| 3378 | table = vrf_table (afi_safis[iter->afi_safi_ix].afi, |
| 3379 | afi_safis[iter->afi_safi_ix].safi, |
| 3380 | iter->vrf_id); |
| 3381 | if (table) |
| 3382 | break; |
| 3383 | |
| 3384 | iter->afi_safi_ix++; |
| 3385 | } |
| 3386 | |
| 3387 | /* |
| 3388 | * Found another table in this vrf. |
| 3389 | */ |
| 3390 | if (table) |
| 3391 | break; |
| 3392 | |
| 3393 | /* |
| 3394 | * Done with all tables in the current vrf, go to the next |
| 3395 | * one. |
| 3396 | */ |
| 3397 | if (!vrf_id_get_next (iter->vrf_id, &iter->vrf_id)) |
| 3398 | break; |
| 3399 | |
| 3400 | iter->afi_safi_ix = 0; |
| 3401 | } |
| 3402 | |
| 3403 | break; |
| 3404 | |
| 3405 | case RIB_TABLES_ITER_S_DONE: |
| 3406 | return NULL; |
| 3407 | } |
| 3408 | |
| 3409 | if (table) |
| 3410 | iter->state = RIB_TABLES_ITER_S_ITERATING; |
| 3411 | else |
| 3412 | iter->state = RIB_TABLES_ITER_S_DONE; |
| 3413 | |
| 3414 | return table; |
| 3415 | } |