jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1 | /* |
| 2 | * IS-IS Rout(e)ing protocol - isis_route.c |
| 3 | * Copyright (C) 2001,2002 Sampo Saaristo |
| 4 | * Tampere University of Technology |
| 5 | * Institute of Communications Engineering |
| 6 | * |
| 7 | * based on ../ospf6d/ospf6_route.[ch] |
| 8 | * by Yasuhiro Ohara |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify it |
| 11 | * under the terms of the GNU General Public Licenseas published by the Free |
| 12 | * Software Foundation; either version 2 of the License, or (at your option) |
| 13 | * any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful,but WITHOUT |
| 16 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 17 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 18 | * more details. |
| 19 | |
| 20 | * You should have received a copy of the GNU General Public License along |
| 21 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 22 | * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 23 | */ |
| 24 | |
| 25 | #include <stdlib.h> |
| 26 | #include <stdio.h> |
| 27 | #include <zebra.h> |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 28 | |
| 29 | #include "thread.h" |
| 30 | #include "linklist.h" |
| 31 | #include "vty.h" |
| 32 | #include "log.h" |
| 33 | #include "memory.h" |
| 34 | #include "prefix.h" |
| 35 | #include "hash.h" |
| 36 | #include "if.h" |
| 37 | #include "table.h" |
| 38 | |
| 39 | #include "isis_constants.h" |
| 40 | #include "isis_common.h" |
| 41 | #include "dict.h" |
| 42 | #include "isisd.h" |
| 43 | #include "isis_misc.h" |
| 44 | #include "isis_adjacency.h" |
| 45 | #include "isis_circuit.h" |
| 46 | #include "isis_tlv.h" |
| 47 | #include "isis_pdu.h" |
| 48 | #include "isis_lsp.h" |
| 49 | #include "isis_spf.h" |
| 50 | #include "isis_route.h" |
| 51 | #include "isis_zebra.h" |
| 52 | |
| 53 | extern struct isis *isis; |
| 54 | extern struct thread_master *master; |
| 55 | |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 56 | static struct isis_nexthop * |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 57 | isis_nexthop_create (struct in_addr *ip, unsigned int ifindex) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 58 | { |
| 59 | struct listnode *node; |
| 60 | struct isis_nexthop *nexthop; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 61 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 62 | for (ALL_LIST_ELEMENTS_RO (isis->nexthops, node, nexthop)) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 63 | { |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 64 | if (nexthop->ifindex != ifindex) |
| 65 | continue; |
| 66 | if (ip && memcmp (&nexthop->ip, ip, sizeof (struct in_addr)) != 0) |
| 67 | continue; |
| 68 | |
| 69 | nexthop->lock++; |
| 70 | return nexthop; |
| 71 | } |
| 72 | |
hasso | 3fdb2dd | 2005-09-28 18:45:54 +0000 | [diff] [blame] | 73 | nexthop = XCALLOC (MTYPE_ISIS_NEXTHOP, sizeof (struct isis_nexthop)); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 74 | if (!nexthop) |
| 75 | { |
| 76 | zlog_err ("ISIS-Rte: isis_nexthop_create: out of memory!"); |
| 77 | } |
| 78 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 79 | nexthop->ifindex = ifindex; |
| 80 | memcpy (&nexthop->ip, ip, sizeof (struct in_addr)); |
| 81 | listnode_add (isis->nexthops, nexthop); |
| 82 | nexthop->lock++; |
| 83 | |
| 84 | return nexthop; |
| 85 | } |
| 86 | |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 87 | static void |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 88 | isis_nexthop_delete (struct isis_nexthop *nexthop) |
| 89 | { |
| 90 | nexthop->lock--; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 91 | if (nexthop->lock == 0) |
| 92 | { |
| 93 | listnode_delete (isis->nexthops, nexthop); |
| 94 | XFREE (MTYPE_ISIS_NEXTHOP, nexthop); |
| 95 | } |
| 96 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 97 | return; |
| 98 | } |
| 99 | |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 100 | static int |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 101 | nexthoplookup (struct list *nexthops, struct in_addr *ip, |
| 102 | unsigned int ifindex) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 103 | { |
| 104 | struct listnode *node; |
| 105 | struct isis_nexthop *nh; |
| 106 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 107 | for (ALL_LIST_ELEMENTS_RO (nexthops, node, nh)) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 108 | { |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 109 | if (!(memcmp (ip, &nh->ip, sizeof (struct in_addr))) && |
| 110 | ifindex == nh->ifindex) |
| 111 | return 1; |
| 112 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 113 | |
| 114 | return 0; |
| 115 | } |
| 116 | |
hasso | 3d54927 | 2005-09-21 18:52:14 +0000 | [diff] [blame] | 117 | #ifdef EXTREME_DEBUG |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 118 | static void |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 119 | nexthop_print (struct isis_nexthop *nh) |
| 120 | { |
| 121 | u_char buf[BUFSIZ]; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 122 | |
hasso | f7c43dc | 2004-09-26 16:24:14 +0000 | [diff] [blame] | 123 | inet_ntop (AF_INET, &nh->ip, (char *) buf, BUFSIZ); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 124 | |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 125 | zlog_debug (" %s %u", buf, nh->ifindex); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 126 | } |
| 127 | |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 128 | static void |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 129 | nexthops_print (struct list *nhs) |
| 130 | { |
| 131 | struct listnode *node; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 132 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 133 | for (ALL_LIST_ELEMENTS_RO (nhs, node, nh)) |
| 134 | nexthop_print (nh); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 135 | } |
hasso | 3d54927 | 2005-09-21 18:52:14 +0000 | [diff] [blame] | 136 | #endif /* EXTREME_DEBUG */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 137 | |
| 138 | #ifdef HAVE_IPV6 |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 139 | static struct isis_nexthop6 * |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 140 | isis_nexthop6_new (struct in6_addr *ip6, unsigned int ifindex) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 141 | { |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 142 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 143 | struct isis_nexthop6 *nexthop6; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 144 | |
hasso | 3fdb2dd | 2005-09-28 18:45:54 +0000 | [diff] [blame] | 145 | nexthop6 = XCALLOC (MTYPE_ISIS_NEXTHOP6, sizeof (struct isis_nexthop6)); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 146 | if (!nexthop6) |
| 147 | { |
| 148 | zlog_err ("ISIS-Rte: isis_nexthop_create6: out of memory!"); |
| 149 | } |
| 150 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 151 | nexthop6->ifindex = ifindex; |
| 152 | memcpy (&nexthop6->ip6, ip6, sizeof (struct in6_addr)); |
| 153 | nexthop6->lock++; |
| 154 | |
| 155 | return nexthop6; |
| 156 | } |
| 157 | |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 158 | static struct isis_nexthop6 * |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 159 | isis_nexthop6_create (struct in6_addr *ip6, unsigned int ifindex) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 160 | { |
| 161 | struct listnode *node; |
| 162 | struct isis_nexthop6 *nexthop6; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 163 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 164 | for (ALL_LIST_ELEMENTS_RO (isis->nexthops6, node, nexthop6)) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 165 | { |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 166 | if (nexthop6->ifindex != ifindex) |
| 167 | continue; |
| 168 | if (ip6 && memcmp (&nexthop6->ip6, ip6, sizeof (struct in6_addr)) != 0) |
| 169 | continue; |
| 170 | |
| 171 | nexthop6->lock++; |
| 172 | return nexthop6; |
| 173 | } |
| 174 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 175 | nexthop6 = isis_nexthop6_new (ip6, ifindex); |
| 176 | |
| 177 | return nexthop6; |
| 178 | } |
| 179 | |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 180 | static void |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 181 | isis_nexthop6_delete (struct isis_nexthop6 *nexthop6) |
| 182 | { |
| 183 | |
| 184 | nexthop6->lock--; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 185 | if (nexthop6->lock == 0) |
| 186 | { |
| 187 | listnode_delete (isis->nexthops6, nexthop6); |
| 188 | XFREE (MTYPE_ISIS_NEXTHOP6, nexthop6); |
| 189 | } |
| 190 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 191 | return; |
| 192 | } |
| 193 | |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 194 | static int |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 195 | nexthop6lookup (struct list *nexthops6, struct in6_addr *ip6, |
| 196 | unsigned int ifindex) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 197 | { |
| 198 | struct listnode *node; |
| 199 | struct isis_nexthop6 *nh6; |
| 200 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 201 | for (ALL_LIST_ELEMENTS_RO (nexthops6, node, nh6)) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 202 | { |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 203 | if (!(memcmp (ip6, &nh6->ip6, sizeof (struct in6_addr))) && |
| 204 | ifindex == nh6->ifindex) |
| 205 | return 1; |
| 206 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 207 | |
| 208 | return 0; |
| 209 | } |
| 210 | |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 211 | #ifdef EXTREME_DEBUG |
| 212 | static void |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 213 | nexthop6_print (struct isis_nexthop6 *nh6) |
| 214 | { |
| 215 | u_char buf[BUFSIZ]; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 216 | |
hasso | f7c43dc | 2004-09-26 16:24:14 +0000 | [diff] [blame] | 217 | inet_ntop (AF_INET6, &nh6->ip6, (char *) buf, BUFSIZ); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 218 | |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 219 | zlog_debug (" %s %u", buf, nh6->ifindex); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 220 | } |
| 221 | |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 222 | static void |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 223 | nexthops6_print (struct list *nhs6) |
| 224 | { |
| 225 | struct listnode *node; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 226 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 227 | for (ALL_LIST_ELEMENTS_RO (nhs6, node, nh6)) |
| 228 | nexthop6_print (nh6); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 229 | } |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 230 | #endif /* EXTREME_DEBUG */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 231 | #endif /* HAVE_IPV6 */ |
| 232 | |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 233 | static void |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 234 | adjinfo2nexthop (struct list *nexthops, struct isis_adjacency *adj) |
| 235 | { |
| 236 | struct isis_nexthop *nh; |
hasso | 3fdb2dd | 2005-09-28 18:45:54 +0000 | [diff] [blame] | 237 | struct listnode *node; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 238 | struct in_addr *ipv4_addr; |
| 239 | |
| 240 | if (adj->ipv4_addrs == NULL) |
| 241 | return; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 242 | |
hasso | 3fdb2dd | 2005-09-28 18:45:54 +0000 | [diff] [blame] | 243 | for (ALL_LIST_ELEMENTS_RO (adj->ipv4_addrs, node, ipv4_addr)) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 244 | { |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 245 | if (!nexthoplookup (nexthops, ipv4_addr, |
| 246 | adj->circuit->interface->ifindex)) |
| 247 | { |
| 248 | nh = isis_nexthop_create (ipv4_addr, |
| 249 | adj->circuit->interface->ifindex); |
| 250 | listnode_add (nexthops, nh); |
| 251 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 252 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 253 | } |
| 254 | |
| 255 | #ifdef HAVE_IPV6 |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 256 | static void |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 257 | adjinfo2nexthop6 (struct list *nexthops6, struct isis_adjacency *adj) |
| 258 | { |
hasso | 3fdb2dd | 2005-09-28 18:45:54 +0000 | [diff] [blame] | 259 | struct listnode *node; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 260 | struct in6_addr *ipv6_addr; |
| 261 | struct isis_nexthop6 *nh6; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 262 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 263 | if (!adj->ipv6_addrs) |
| 264 | return; |
| 265 | |
hasso | 3fdb2dd | 2005-09-28 18:45:54 +0000 | [diff] [blame] | 266 | for (ALL_LIST_ELEMENTS_RO (adj->ipv6_addrs, node, ipv6_addr)) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 267 | { |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 268 | if (!nexthop6lookup (nexthops6, ipv6_addr, |
| 269 | adj->circuit->interface->ifindex)) |
| 270 | { |
| 271 | nh6 = isis_nexthop6_create (ipv6_addr, |
| 272 | adj->circuit->interface->ifindex); |
| 273 | listnode_add (nexthops6, nh6); |
| 274 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 275 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 276 | } |
| 277 | #endif /* HAVE_IPV6 */ |
| 278 | |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 279 | static struct isis_route_info * |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 280 | isis_route_info_new (uint32_t cost, uint32_t depth, u_char family, |
| 281 | struct list *adjacencies) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 282 | { |
| 283 | struct isis_route_info *rinfo; |
| 284 | struct isis_adjacency *adj; |
hasso | 3fdb2dd | 2005-09-28 18:45:54 +0000 | [diff] [blame] | 285 | struct listnode *node; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 286 | |
hasso | 3fdb2dd | 2005-09-28 18:45:54 +0000 | [diff] [blame] | 287 | rinfo = XCALLOC (MTYPE_ISIS_ROUTE_INFO, sizeof (struct isis_route_info)); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 288 | if (!rinfo) |
| 289 | { |
| 290 | zlog_err ("ISIS-Rte: isis_route_info_new: out of memory!"); |
| 291 | return NULL; |
| 292 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 293 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 294 | if (family == AF_INET) |
| 295 | { |
| 296 | rinfo->nexthops = list_new (); |
hasso | 3fdb2dd | 2005-09-28 18:45:54 +0000 | [diff] [blame] | 297 | for (ALL_LIST_ELEMENTS_RO (adjacencies, node, adj)) |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 298 | adjinfo2nexthop (rinfo->nexthops, adj); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 299 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 300 | #ifdef HAVE_IPV6 |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 301 | if (family == AF_INET6) |
| 302 | { |
| 303 | rinfo->nexthops6 = list_new (); |
hasso | 3fdb2dd | 2005-09-28 18:45:54 +0000 | [diff] [blame] | 304 | for (ALL_LIST_ELEMENTS_RO (adjacencies, node, adj)) |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 305 | adjinfo2nexthop6 (rinfo->nexthops6, adj); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 306 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 307 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 308 | #endif /* HAVE_IPV6 */ |
| 309 | |
| 310 | rinfo->cost = cost; |
| 311 | rinfo->depth = depth; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 312 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 313 | return rinfo; |
| 314 | } |
| 315 | |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 316 | static void |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 317 | isis_route_info_delete (struct isis_route_info *route_info) |
| 318 | { |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 319 | if (route_info->nexthops) |
| 320 | { |
hasso | f7c43dc | 2004-09-26 16:24:14 +0000 | [diff] [blame] | 321 | route_info->nexthops->del = (void (*)(void *)) isis_nexthop_delete; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 322 | list_delete (route_info->nexthops); |
| 323 | } |
| 324 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 325 | #ifdef HAVE_IPV6 |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 326 | if (route_info->nexthops6) |
| 327 | { |
hasso | f7c43dc | 2004-09-26 16:24:14 +0000 | [diff] [blame] | 328 | route_info->nexthops6->del = (void (*)(void *)) isis_nexthop6_delete; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 329 | list_delete (route_info->nexthops6); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 330 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 331 | #endif /* HAVE_IPV6 */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 332 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 333 | XFREE (MTYPE_ISIS_ROUTE_INFO, route_info); |
| 334 | } |
| 335 | |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 336 | static int |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 337 | isis_route_info_same_attrib (struct isis_route_info *new, |
| 338 | struct isis_route_info *old) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 339 | { |
| 340 | if (new->cost != old->cost) |
| 341 | return 0; |
| 342 | if (new->depth != old->depth) |
| 343 | return 0; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 344 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 345 | return 1; |
| 346 | } |
| 347 | |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 348 | static int |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 349 | isis_route_info_same (struct isis_route_info *new, |
| 350 | struct isis_route_info *old, u_char family) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 351 | { |
hasso | 3fdb2dd | 2005-09-28 18:45:54 +0000 | [diff] [blame] | 352 | struct listnode *node; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 353 | struct isis_nexthop *nexthop; |
| 354 | #ifdef HAVE_IPV6 |
| 355 | struct isis_nexthop6 *nexthop6; |
| 356 | #endif /* HAVE_IPV6 */ |
| 357 | if (!isis_route_info_same_attrib (new, old)) |
| 358 | return 0; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 359 | |
| 360 | if (family == AF_INET) |
| 361 | { |
hasso | 3fdb2dd | 2005-09-28 18:45:54 +0000 | [diff] [blame] | 362 | for (ALL_LIST_ELEMENTS_RO (new->nexthops, node, nexthop)) |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 363 | if (nexthoplookup (old->nexthops, &nexthop->ip, nexthop->ifindex) |
| 364 | == 0) |
| 365 | return 0; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 366 | |
hasso | 3fdb2dd | 2005-09-28 18:45:54 +0000 | [diff] [blame] | 367 | for (ALL_LIST_ELEMENTS_RO (old->nexthops, node, nexthop)) |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 368 | if (nexthoplookup (new->nexthops, &nexthop->ip, nexthop->ifindex) |
| 369 | == 0) |
| 370 | return 0; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 371 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 372 | #ifdef HAVE_IPV6 |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 373 | else if (family == AF_INET6) |
| 374 | { |
hasso | 3fdb2dd | 2005-09-28 18:45:54 +0000 | [diff] [blame] | 375 | for (ALL_LIST_ELEMENTS_RO (new->nexthops6, node, nexthop6)) |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 376 | if (nexthop6lookup (old->nexthops6, &nexthop6->ip6, |
| 377 | nexthop6->ifindex) == 0) |
| 378 | return 0; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 379 | |
hasso | 3fdb2dd | 2005-09-28 18:45:54 +0000 | [diff] [blame] | 380 | for (ALL_LIST_ELEMENTS_RO (old->nexthops6, node, nexthop6)) |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 381 | if (nexthop6lookup (new->nexthops6, &nexthop6->ip6, |
| 382 | nexthop6->ifindex) == 0) |
| 383 | return 0; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 384 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 385 | #endif /* HAVE_IPV6 */ |
| 386 | |
| 387 | return 1; |
| 388 | } |
| 389 | |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 390 | static void |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 391 | isis_nexthops_merge (struct list *new, struct list *old) |
| 392 | { |
hasso | 3fdb2dd | 2005-09-28 18:45:54 +0000 | [diff] [blame] | 393 | struct listnode *node; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 394 | struct isis_nexthop *nexthop; |
| 395 | |
hasso | 3fdb2dd | 2005-09-28 18:45:54 +0000 | [diff] [blame] | 396 | for (ALL_LIST_ELEMENTS_RO (new, node, nexthop)) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 397 | { |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 398 | if (nexthoplookup (old, &nexthop->ip, nexthop->ifindex)) |
| 399 | continue; |
| 400 | listnode_add (old, nexthop); |
| 401 | nexthop->lock++; |
| 402 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 403 | } |
| 404 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 405 | #ifdef HAVE_IPV6 |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 406 | static void |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 407 | isis_nexthops6_merge (struct list *new, struct list *old) |
| 408 | { |
hasso | 3fdb2dd | 2005-09-28 18:45:54 +0000 | [diff] [blame] | 409 | struct listnode *node; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 410 | struct isis_nexthop6 *nexthop6; |
| 411 | |
hasso | 3fdb2dd | 2005-09-28 18:45:54 +0000 | [diff] [blame] | 412 | for (ALL_LIST_ELEMENTS_RO (new, node, nexthop6)) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 413 | { |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 414 | if (nexthop6lookup (old, &nexthop6->ip6, nexthop6->ifindex)) |
| 415 | continue; |
| 416 | listnode_add (old, nexthop6); |
| 417 | nexthop6->lock++; |
| 418 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 419 | } |
| 420 | #endif /* HAVE_IPV6 */ |
| 421 | |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 422 | static void |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 423 | isis_route_info_merge (struct isis_route_info *new, |
| 424 | struct isis_route_info *old, u_char family) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 425 | { |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 426 | if (family == AF_INET) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 427 | isis_nexthops_merge (new->nexthops, old->nexthops); |
| 428 | #ifdef HAVE_IPV6 |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 429 | else if (family == AF_INET6) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 430 | isis_nexthops6_merge (new->nexthops6, old->nexthops6); |
| 431 | #endif /* HAVE_IPV6 */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 432 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 433 | return; |
| 434 | } |
| 435 | |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 436 | static int |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 437 | isis_route_info_prefer_new (struct isis_route_info *new, |
| 438 | struct isis_route_info *old) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 439 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 440 | if (!CHECK_FLAG (old->flag, ISIS_ROUTE_FLAG_ACTIVE)) |
| 441 | return 1; |
| 442 | |
| 443 | if (new->cost < old->cost) |
| 444 | return 1; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 445 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 446 | return 0; |
| 447 | } |
| 448 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 449 | struct isis_route_info * |
| 450 | isis_route_create (struct prefix *prefix, u_int32_t cost, u_int32_t depth, |
hasso | fac1f7c | 2005-09-26 18:26:26 +0000 | [diff] [blame] | 451 | struct list *adjacencies, struct isis_area *area, |
| 452 | int level) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 453 | { |
| 454 | struct route_node *route_node; |
| 455 | struct isis_route_info *rinfo_new, *rinfo_old, *route_info = NULL; |
| 456 | u_char buff[BUFSIZ]; |
| 457 | u_char family; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 458 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 459 | family = prefix->family; |
| 460 | /* for debugs */ |
hasso | f7c43dc | 2004-09-26 16:24:14 +0000 | [diff] [blame] | 461 | prefix2str (prefix, (char *) buff, BUFSIZ); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 462 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 463 | rinfo_new = isis_route_info_new (cost, depth, family, adjacencies); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 464 | if (!rinfo_new) |
| 465 | { |
| 466 | zlog_err ("ISIS-Rte (%s): isis_route_create: out of memory!", |
| 467 | area->area_tag); |
| 468 | return NULL; |
| 469 | } |
| 470 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 471 | if (family == AF_INET) |
hasso | fac1f7c | 2005-09-26 18:26:26 +0000 | [diff] [blame] | 472 | route_node = route_node_get (area->route_table[level - 1], prefix); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 473 | #ifdef HAVE_IPV6 |
| 474 | else if (family == AF_INET6) |
hasso | fac1f7c | 2005-09-26 18:26:26 +0000 | [diff] [blame] | 475 | route_node = route_node_get (area->route_table6[level - 1], prefix); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 476 | #endif /* HAVE_IPV6 */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 477 | else |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 478 | return NULL; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 479 | rinfo_old = route_node->info; |
| 480 | if (!rinfo_old) |
| 481 | { |
| 482 | if (isis->debugs & DEBUG_RTE_EVENTS) |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 483 | zlog_debug ("ISIS-Rte (%s) route created: %s", area->area_tag, buff); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 484 | SET_FLAG (rinfo_new->flag, ISIS_ROUTE_FLAG_ACTIVE); |
| 485 | route_node->info = rinfo_new; |
| 486 | return rinfo_new; |
| 487 | } |
| 488 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 489 | if (isis->debugs & DEBUG_RTE_EVENTS) |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 490 | zlog_debug ("ISIS-Rte (%s) route already exists: %s", area->area_tag, |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 491 | buff); |
| 492 | |
| 493 | if (isis_route_info_same (rinfo_new, rinfo_old, family)) |
| 494 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 495 | if (isis->debugs & DEBUG_RTE_EVENTS) |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 496 | zlog_debug ("ISIS-Rte (%s) route unchanged: %s", area->area_tag, buff); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 497 | isis_route_info_delete (rinfo_new); |
| 498 | route_info = rinfo_old; |
| 499 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 500 | else if (isis_route_info_same_attrib (rinfo_new, rinfo_old)) |
| 501 | { |
| 502 | /* merge the nexthop lists */ |
| 503 | if (isis->debugs & DEBUG_RTE_EVENTS) |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 504 | zlog_debug ("ISIS-Rte (%s) route changed (same attribs): %s", |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 505 | area->area_tag, buff); |
| 506 | #ifdef EXTREME_DEBUG |
hasso | 3d54927 | 2005-09-21 18:52:14 +0000 | [diff] [blame] | 507 | if (family == AF_INET) |
| 508 | { |
| 509 | zlog_debug ("Old nexthops"); |
| 510 | nexthops_print (rinfo_old->nexthops); |
| 511 | zlog_debug ("New nexthops"); |
| 512 | nexthops_print (rinfo_new->nexthops); |
| 513 | } |
| 514 | else if (family == AF_INET6) |
| 515 | { |
| 516 | zlog_debug ("Old nexthops"); |
| 517 | nexthops6_print (rinfo_old->nexthops6); |
| 518 | zlog_debug ("New nexthops"); |
| 519 | nexthops6_print (rinfo_new->nexthops6); |
| 520 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 521 | #endif /* EXTREME_DEBUG */ |
| 522 | isis_route_info_merge (rinfo_new, rinfo_old, family); |
| 523 | isis_route_info_delete (rinfo_new); |
| 524 | route_info = rinfo_old; |
| 525 | } |
| 526 | else |
| 527 | { |
| 528 | if (isis_route_info_prefer_new (rinfo_new, rinfo_old)) |
| 529 | { |
| 530 | if (isis->debugs & DEBUG_RTE_EVENTS) |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 531 | zlog_debug ("ISIS-Rte (%s) route changed: %s", area->area_tag, |
| 532 | buff); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 533 | isis_route_info_delete (rinfo_old); |
| 534 | route_info = rinfo_new; |
| 535 | } |
| 536 | else |
| 537 | { |
| 538 | if (isis->debugs & DEBUG_RTE_EVENTS) |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 539 | zlog_debug ("ISIS-Rte (%s) route rejected: %s", area->area_tag, |
| 540 | buff); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 541 | isis_route_info_delete (rinfo_new); |
| 542 | route_info = rinfo_old; |
| 543 | } |
| 544 | } |
| 545 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 546 | SET_FLAG (route_info->flag, ISIS_ROUTE_FLAG_ACTIVE); |
| 547 | route_node->info = route_info; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 548 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 549 | return route_info; |
| 550 | } |
| 551 | |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 552 | static void |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 553 | isis_route_delete (struct prefix *prefix, struct route_table *table) |
| 554 | { |
| 555 | struct route_node *rode; |
| 556 | struct isis_route_info *rinfo; |
| 557 | char buff[BUFSIZ]; |
| 558 | |
| 559 | /* for log */ |
| 560 | prefix2str (prefix, buff, BUFSIZ); |
| 561 | |
| 562 | |
| 563 | rode = route_node_get (table, prefix); |
| 564 | rinfo = rode->info; |
| 565 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 566 | if (rinfo == NULL) |
| 567 | { |
| 568 | if (isis->debugs & DEBUG_RTE_EVENTS) |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 569 | zlog_debug ("ISIS-Rte: tried to delete non-existant route %s", buff); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 570 | return; |
| 571 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 572 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 573 | if (CHECK_FLAG (rinfo->flag, ISIS_ROUTE_FLAG_ZEBRA_SYNC)) |
| 574 | { |
| 575 | UNSET_FLAG (rinfo->flag, ISIS_ROUTE_FLAG_ACTIVE); |
| 576 | if (isis->debugs & DEBUG_RTE_EVENTS) |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 577 | zlog_debug ("ISIS-Rte: route delete %s", buff); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 578 | isis_zebra_route_update (prefix, rinfo); |
| 579 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 580 | isis_route_info_delete (rinfo); |
| 581 | rode->info = NULL; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 582 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 583 | return; |
| 584 | } |
| 585 | |
hasso | fac1f7c | 2005-09-26 18:26:26 +0000 | [diff] [blame] | 586 | /* Validating routes in particular table. */ |
| 587 | static void |
| 588 | isis_route_validate_table (struct isis_area *area, struct route_table *table) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 589 | { |
hasso | fac1f7c | 2005-09-26 18:26:26 +0000 | [diff] [blame] | 590 | struct route_node *rnode, *drnode; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 591 | struct isis_route_info *rinfo; |
| 592 | u_char buff[BUFSIZ]; |
hasso | fac1f7c | 2005-09-26 18:26:26 +0000 | [diff] [blame] | 593 | |
| 594 | for (rnode = route_top (table); rnode; rnode = route_next (rnode)) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 595 | { |
hasso | fac1f7c | 2005-09-26 18:26:26 +0000 | [diff] [blame] | 596 | if (rnode->info == NULL) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 597 | continue; |
hasso | fac1f7c | 2005-09-26 18:26:26 +0000 | [diff] [blame] | 598 | rinfo = rnode->info; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 599 | |
| 600 | if (isis->debugs & DEBUG_RTE_EVENTS) |
| 601 | { |
hasso | fac1f7c | 2005-09-26 18:26:26 +0000 | [diff] [blame] | 602 | prefix2str (&rnode->p, (char *) buff, BUFSIZ); |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 603 | zlog_debug ("ISIS-Rte (%s): route validate: %s %s %s", |
| 604 | area->area_tag, |
| 605 | (CHECK_FLAG (rinfo->flag, ISIS_ROUTE_FLAG_ZEBRA_SYNC) ? |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 606 | "sync'ed" : "nosync"), |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 607 | (CHECK_FLAG (rinfo->flag, ISIS_ROUTE_FLAG_ACTIVE) ? |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 608 | "active" : "inactive"), buff); |
| 609 | } |
| 610 | |
hasso | fac1f7c | 2005-09-26 18:26:26 +0000 | [diff] [blame] | 611 | isis_zebra_route_update (&rnode->p, rinfo); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 612 | if (!CHECK_FLAG (rinfo->flag, ISIS_ROUTE_FLAG_ACTIVE)) |
hasso | fac1f7c | 2005-09-26 18:26:26 +0000 | [diff] [blame] | 613 | { |
| 614 | /* Area is either L1 or L2 => we use level route tables directly for |
| 615 | * validating => no problems with deleting routes. */ |
| 616 | if (area->is_type != IS_LEVEL_1_AND_2) |
| 617 | { |
| 618 | isis_route_delete (&rnode->p, table); |
| 619 | continue; |
| 620 | } |
| 621 | /* If area is L1L2, we work with merge table and therefore must |
| 622 | * delete node from level tables as well before deleting route info. |
| 623 | * FIXME: Is it performance problem? There has to be the better way. |
| 624 | * Like not to deal with it here at all (see the next comment)? */ |
| 625 | if (rnode->p.family == AF_INET) |
| 626 | { |
| 627 | drnode = route_node_get (area->route_table[0], &rnode->p); |
| 628 | if (drnode->info == rnode->info) |
| 629 | drnode->info = NULL; |
| 630 | drnode = route_node_get (area->route_table[1], &rnode->p); |
| 631 | if (drnode->info == rnode->info) |
| 632 | drnode->info = NULL; |
| 633 | } |
| 634 | if (rnode->p.family == AF_INET6) |
| 635 | { |
| 636 | drnode = route_node_get (area->route_table6[0], &rnode->p); |
| 637 | if (drnode->info == rnode->info) |
| 638 | drnode->info = NULL; |
| 639 | drnode = route_node_get (area->route_table6[1], &rnode->p); |
| 640 | if (drnode->info == rnode->info) |
| 641 | drnode->info = NULL; |
| 642 | } |
| 643 | |
| 644 | isis_route_delete (&rnode->p, table); |
| 645 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 646 | } |
hasso | fac1f7c | 2005-09-26 18:26:26 +0000 | [diff] [blame] | 647 | } |
| 648 | |
| 649 | /* Function to validate route tables for L1L2 areas. In this case we can't use |
| 650 | * level route tables directly, we have to merge them at first. L1 routes are |
| 651 | * preferred over the L2 ones. |
| 652 | * |
| 653 | * Merge algorithm is trivial (at least for now). All L1 paths are copied into |
| 654 | * merge table at first, then L2 paths are added if L1 path for same prefix |
| 655 | * doesn't already exists there. |
| 656 | * |
| 657 | * FIXME: Is it right place to do it at all? Maybe we should push both levels |
| 658 | * to the RIB with different zebra route types and let RIB handle this? */ |
| 659 | static void |
| 660 | isis_route_validate_merge (struct isis_area *area, int family) |
| 661 | { |
| 662 | struct route_table *table = NULL; |
| 663 | struct route_table *merge; |
| 664 | struct route_node *rnode, *mrnode; |
| 665 | |
| 666 | merge = route_table_init (); |
| 667 | |
| 668 | if (family == AF_INET) |
| 669 | table = area->route_table[0]; |
| 670 | else if (family == AF_INET6) |
| 671 | table = area->route_table6[0]; |
| 672 | |
| 673 | for (rnode = route_top (table); rnode; rnode = route_next (rnode)) |
| 674 | { |
| 675 | if (rnode->info == NULL) |
| 676 | continue; |
| 677 | mrnode = route_node_get (merge, &rnode->p); |
| 678 | mrnode->info = rnode->info; |
| 679 | } |
| 680 | |
| 681 | if (family == AF_INET) |
| 682 | table = area->route_table[1]; |
| 683 | else if (family == AF_INET6) |
| 684 | table = area->route_table6[1]; |
| 685 | |
| 686 | for (rnode = route_top (table); rnode; rnode = route_next (rnode)) |
| 687 | { |
| 688 | if (rnode->info == NULL) |
| 689 | continue; |
| 690 | mrnode = route_node_get (merge, &rnode->p); |
| 691 | if (mrnode->info != NULL) |
| 692 | continue; |
| 693 | mrnode->info = rnode->info; |
| 694 | } |
| 695 | |
| 696 | isis_route_validate_table (area, merge); |
| 697 | route_table_finish (merge); |
| 698 | } |
| 699 | |
| 700 | /* Walk through route tables and propagate necessary changes into RIB. In case |
| 701 | * of L1L2 area, level tables have to be merged at first. */ |
| 702 | int |
| 703 | isis_route_validate (struct thread *thread) |
| 704 | { |
| 705 | struct isis_area *area; |
| 706 | |
| 707 | area = THREAD_ARG (thread); |
| 708 | |
| 709 | if (area->is_type == IS_LEVEL_1) |
| 710 | { |
| 711 | isis_route_validate_table (area, area->route_table[0]); |
| 712 | goto validate_ipv6; |
| 713 | } |
| 714 | if (area->is_type == IS_LEVEL_2) |
| 715 | { |
| 716 | isis_route_validate_table (area, area->route_table[1]); |
| 717 | goto validate_ipv6; |
| 718 | } |
| 719 | |
| 720 | isis_route_validate_merge (area, AF_INET); |
| 721 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 722 | #ifdef HAVE_IPV6 |
hasso | fac1f7c | 2005-09-26 18:26:26 +0000 | [diff] [blame] | 723 | validate_ipv6: |
| 724 | if (area->is_type == IS_LEVEL_1) |
| 725 | { |
| 726 | isis_route_validate_table (area, area->route_table6[0]); |
| 727 | return ISIS_OK; |
| 728 | } |
| 729 | if (area->is_type == IS_LEVEL_2) |
| 730 | { |
| 731 | isis_route_validate_table (area, area->route_table6[1]); |
| 732 | return ISIS_OK; |
| 733 | } |
| 734 | |
| 735 | isis_route_validate_merge (area, AF_INET6); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 736 | #endif |
| 737 | |
| 738 | return ISIS_OK; |
| 739 | } |