blob: b2d0faeb79f3613b225a030cb15fcef364088736 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/*
2 * OSPF inter-area routing.
3 * Copyright (C) 1999, 2000 Alex Zinin, Toshiaki Takada
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with GNU Zebra; see the file COPYING. If not, write to the Free
19 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 * 02111-1307, USA.
21 */
22
23
24#include <zebra.h>
25
26#include "thread.h"
27#include "memory.h"
28#include "hash.h"
29#include "linklist.h"
30#include "prefix.h"
31#include "table.h"
32#include "log.h"
33
34#include "ospfd/ospfd.h"
35#include "ospfd/ospf_interface.h"
36#include "ospfd/ospf_ism.h"
37#include "ospfd/ospf_asbr.h"
38#include "ospfd/ospf_lsa.h"
39#include "ospfd/ospf_lsdb.h"
40#include "ospfd/ospf_neighbor.h"
41#include "ospfd/ospf_nsm.h"
42#include "ospfd/ospf_spf.h"
43#include "ospfd/ospf_route.h"
44#include "ospfd/ospf_ase.h"
45#include "ospfd/ospf_abr.h"
46#include "ospfd/ospf_ia.h"
47#include "ospfd/ospf_dump.h"
48
paul4dadc292005-05-06 21:37:42 +000049static struct ospf_route *
paul718e3742002-12-13 20:15:29 +000050ospf_find_abr_route (struct route_table *rtrs,
51 struct prefix_ipv4 *abr,
52 struct ospf_area *area)
53{
54 struct route_node *rn;
55 struct ospf_route *or;
hasso52dc7ee2004-09-23 19:18:23 +000056 struct listnode *node;
paul718e3742002-12-13 20:15:29 +000057
58 if ((rn = route_node_lookup (rtrs, (struct prefix *) abr)) == NULL)
59 return NULL;
60
61 route_unlock_node (rn);
62
paul1eb8ef22005-04-07 07:30:20 +000063 for (ALL_LIST_ELEMENTS_RO ((struct list *) rn->info, node, or))
64 if (IPV4_ADDR_SAME (&or->u.std.area_id, &area->area_id)
65 && (or->u.std.flags & ROUTER_LSA_BORDER))
66 return or;
paul718e3742002-12-13 20:15:29 +000067
68 return NULL;
69}
70
paul4dadc292005-05-06 21:37:42 +000071static void
paul96735ee2003-08-10 02:51:22 +000072ospf_ia_network_route (struct ospf *ospf, struct route_table *rt,
73 struct prefix_ipv4 *p, struct ospf_route *new_or,
74 struct ospf_route *abr_or)
paul718e3742002-12-13 20:15:29 +000075{
76 struct route_node *rn1;
77 struct ospf_route *or;
78
79 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +000080 zlog_debug ("ospf_ia_network_route(): processing summary route to %s/%d",
paul718e3742002-12-13 20:15:29 +000081 inet_ntoa (p->prefix), p->prefixlen);
82
83 /* Find a route to the same dest */
84 if ((rn1 = route_node_lookup (rt, (struct prefix *) p)))
85 {
86 int res;
87
88 route_unlock_node (rn1);
89
90 if ((or = rn1->info))
91 {
92 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +000093 zlog_debug ("ospf_ia_network_route(): "
paul718e3742002-12-13 20:15:29 +000094 "Found a route to the same network");
95 /* Check the existing route. */
paul96735ee2003-08-10 02:51:22 +000096 if ((res = ospf_route_cmp (ospf, new_or, or)) < 0)
paul718e3742002-12-13 20:15:29 +000097 {
98 /* New route is better, so replace old one. */
99 ospf_route_subst (rn1, new_or, abr_or);
100 }
101 else if (res == 0)
102 {
103 /* New and old route are equal, so next hops can be added. */
104 route_lock_node (rn1);
paul96735ee2003-08-10 02:51:22 +0000105 ospf_route_copy_nexthops (or, abr_or->paths);
paul718e3742002-12-13 20:15:29 +0000106 route_unlock_node (rn1);
107
108 /* new route can be deleted, because existing route has been updated. */
109 ospf_route_free (new_or);
110 }
111 else
112 {
113 /* New route is worse, so free it. */
114 ospf_route_free (new_or);
115 return;
116 }
117 } /* if (or)*/
118 } /*if (rn1)*/
119 else
120 { /* no route */
121 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000122 zlog_debug ("ospf_ia_network_route(): add new route to %s/%d",
paul718e3742002-12-13 20:15:29 +0000123 inet_ntoa (p->prefix), p->prefixlen);
124 ospf_route_add (rt, p, new_or, abr_or);
125 }
126}
127
paul4dadc292005-05-06 21:37:42 +0000128static void
paul96735ee2003-08-10 02:51:22 +0000129ospf_ia_router_route (struct ospf *ospf, struct route_table *rtrs,
130 struct prefix_ipv4 *p,
paul718e3742002-12-13 20:15:29 +0000131 struct ospf_route *new_or, struct ospf_route *abr_or)
132{
paul718e3742002-12-13 20:15:29 +0000133 struct ospf_route *or = NULL;
paul96735ee2003-08-10 02:51:22 +0000134 struct route_node *rn;
paul718e3742002-12-13 20:15:29 +0000135 int ret;
136
137 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000138 zlog_debug ("ospf_ia_router_route(): considering %s/%d",
paul718e3742002-12-13 20:15:29 +0000139 inet_ntoa (p->prefix), p->prefixlen);
140 /* Find a route to the same dest */
paul96735ee2003-08-10 02:51:22 +0000141 rn = route_node_get (rtrs, (struct prefix *) p);
paul718e3742002-12-13 20:15:29 +0000142
143 if (rn->info == NULL)
144 /* This is a new route */
145 rn->info = list_new ();
146 else
147 {
148 struct ospf_area *or_area;
paul96735ee2003-08-10 02:51:22 +0000149 or_area = ospf_area_lookup_by_area_id (ospf, new_or->u.std.area_id);
paul718e3742002-12-13 20:15:29 +0000150 assert (or_area);
151 /* This is an additional route */
152 route_unlock_node (rn);
paul96735ee2003-08-10 02:51:22 +0000153 or = ospf_find_asbr_route_through_area (rtrs, p, or_area);
paul718e3742002-12-13 20:15:29 +0000154 }
155
156 if (or)
157 {
158 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000159 zlog_debug ("ospf_ia_router_route(): "
paul718e3742002-12-13 20:15:29 +0000160 "a route to the same ABR through the same area exists");
161 /* New route is better */
paul96735ee2003-08-10 02:51:22 +0000162 if ((ret = ospf_route_cmp (ospf, new_or, or)) < 0)
paul718e3742002-12-13 20:15:29 +0000163 {
164 listnode_delete (rn->info, or);
165 ospf_route_free (or);
166 /* proceed down */
167 }
168 /* Routes are the same */
169 else if (ret == 0)
170 {
171 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000172 zlog_debug ("ospf_ia_router_route(): merging the new route");
paul718e3742002-12-13 20:15:29 +0000173
paul96735ee2003-08-10 02:51:22 +0000174 ospf_route_copy_nexthops (or, abr_or->paths);
paul718e3742002-12-13 20:15:29 +0000175 ospf_route_free (new_or);
176 return;
177 }
178 /* New route is worse */
179 else
180 {
181 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000182 zlog_debug ("ospf_ia_router_route(): skipping the new route");
paul718e3742002-12-13 20:15:29 +0000183 ospf_route_free (new_or);
184 return;
185 }
186 }
187
paul96735ee2003-08-10 02:51:22 +0000188 ospf_route_copy_nexthops (new_or, abr_or->paths);
paul718e3742002-12-13 20:15:29 +0000189
190 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000191 zlog_debug ("ospf_ia_router_route(): adding the new route");
paul718e3742002-12-13 20:15:29 +0000192
193 listnode_add (rn->info, new_or);
194}
195
David Lamparter6b0655a2014-06-04 06:53:35 +0200196
paul4dadc292005-05-06 21:37:42 +0000197static int
paul96735ee2003-08-10 02:51:22 +0000198process_summary_lsa (struct ospf_area *area, struct route_table *rt,
199 struct route_table *rtrs, struct ospf_lsa *lsa)
paul718e3742002-12-13 20:15:29 +0000200{
paul96735ee2003-08-10 02:51:22 +0000201 struct ospf *ospf = area->ospf;
paul718e3742002-12-13 20:15:29 +0000202 struct ospf_area_range *range;
203 struct ospf_route *abr_or, *new_or;
204 struct summary_lsa *sl;
205 struct prefix_ipv4 p, abr;
206 u_int32_t metric;
paul718e3742002-12-13 20:15:29 +0000207
paul96735ee2003-08-10 02:51:22 +0000208 if (lsa == NULL)
paul718e3742002-12-13 20:15:29 +0000209 return 0;
210
paul96735ee2003-08-10 02:51:22 +0000211 sl = (struct summary_lsa *) lsa->data;
paul718e3742002-12-13 20:15:29 +0000212
213 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000214 zlog_debug ("process_summary_lsa(): LS ID: %s", inet_ntoa (sl->header.id));
paul718e3742002-12-13 20:15:29 +0000215
216 metric = GET_METRIC (sl->metric);
217
218 if (metric == OSPF_LS_INFINITY)
219 return 0;
220
paul96735ee2003-08-10 02:51:22 +0000221 if (IS_LSA_MAXAGE (lsa))
paul718e3742002-12-13 20:15:29 +0000222 return 0;
223
paul96735ee2003-08-10 02:51:22 +0000224 if (ospf_lsa_is_self_originated (area->ospf, lsa))
paul718e3742002-12-13 20:15:29 +0000225 return 0;
226
227 p.family = AF_INET;
228 p.prefix = sl->header.id;
229
230 if (sl->header.type == OSPF_SUMMARY_LSA)
231 p.prefixlen = ip_masklen (sl->mask);
232 else
233 p.prefixlen = IPV4_MAX_BITLEN;
234
235 apply_mask_ipv4 (&p);
236
237 if (sl->header.type == OSPF_SUMMARY_LSA &&
paul96735ee2003-08-10 02:51:22 +0000238 (range = ospf_area_range_match_any (ospf, &p)) &&
paul718e3742002-12-13 20:15:29 +0000239 ospf_area_range_active (range))
240 return 0;
241
paul05e85fa2004-11-12 10:52:19 +0000242 /* XXX: This check seems dubious to me. If an ABR has already decided
243 * to consider summaries received in this area, then why would one wish
244 * to exclude default?
245 */
246 if (IS_OSPF_ABR(ospf) &&
247 ospf->abr_type != OSPF_ABR_STAND &&
paul96735ee2003-08-10 02:51:22 +0000248 area->external_routing != OSPF_AREA_DEFAULT &&
paul718e3742002-12-13 20:15:29 +0000249 p.prefix.s_addr == OSPF_DEFAULT_DESTINATION &&
250 p.prefixlen == 0)
251 return 0; /* Ignore summary default from a stub area */
252
253 abr.family = AF_INET;
254 abr.prefix = sl->header.adv_router;
255 abr.prefixlen = IPV4_MAX_BITLEN;
256 apply_mask_ipv4 (&abr);
257
paul96735ee2003-08-10 02:51:22 +0000258 abr_or = ospf_find_abr_route (rtrs, &abr, area);
paul718e3742002-12-13 20:15:29 +0000259
260 if (abr_or == NULL)
261 return 0;
262
263 new_or = ospf_route_new ();
264 new_or->type = OSPF_DESTINATION_NETWORK;
265 new_or->id = sl->header.id;
266 new_or->mask = sl->mask;
267 new_or->u.std.options = sl->header.options;
268 new_or->u.std.origin = (struct lsa_header *) sl;
269 new_or->cost = abr_or->cost + metric;
paul96735ee2003-08-10 02:51:22 +0000270 new_or->u.std.area_id = area->area_id;
paul96735ee2003-08-10 02:51:22 +0000271 new_or->u.std.external_routing = area->external_routing;
paul718e3742002-12-13 20:15:29 +0000272 new_or->path_type = OSPF_PATH_INTER_AREA;
273
274 if (sl->header.type == OSPF_SUMMARY_LSA)
paul96735ee2003-08-10 02:51:22 +0000275 ospf_ia_network_route (ospf, rt, &p, new_or, abr_or);
paul718e3742002-12-13 20:15:29 +0000276 else
277 {
278 new_or->type = OSPF_DESTINATION_ROUTER;
279 new_or->u.std.flags = ROUTER_LSA_EXTERNAL;
paul96735ee2003-08-10 02:51:22 +0000280 ospf_ia_router_route (ospf, rtrs, &p, new_or, abr_or);
paul718e3742002-12-13 20:15:29 +0000281 }
282
283 return 0;
284}
285
paul4dadc292005-05-06 21:37:42 +0000286static void
paul96735ee2003-08-10 02:51:22 +0000287ospf_examine_summaries (struct ospf_area *area,
paul718e3742002-12-13 20:15:29 +0000288 struct route_table *lsdb_rt,
289 struct route_table *rt,
290 struct route_table *rtrs)
291{
paul96735ee2003-08-10 02:51:22 +0000292 struct ospf_lsa *lsa;
293 struct route_node *rn;
294
295 LSDB_LOOP (lsdb_rt, rn, lsa)
296 process_summary_lsa (area, rt, rtrs, lsa);
paul718e3742002-12-13 20:15:29 +0000297}
298
299int
300ospf_area_is_transit (struct ospf_area *area)
301{
302 return (area->transit == OSPF_TRANSIT_TRUE) ||
303 ospf_full_virtual_nbrs(area); /* Cisco forgets to set the V-bit :( */
304}
305
paul4dadc292005-05-06 21:37:42 +0000306static void
paul96735ee2003-08-10 02:51:22 +0000307ospf_update_network_route (struct ospf *ospf,
308 struct route_table *rt,
paul718e3742002-12-13 20:15:29 +0000309 struct route_table *rtrs,
310 struct summary_lsa *lsa,
311 struct prefix_ipv4 *p,
312 struct ospf_area *area)
313{
314 struct route_node *rn;
315 struct ospf_route *or, *abr_or, *new_or;
316 struct prefix_ipv4 abr;
317 u_int32_t cost;
318
319 abr.family = AF_INET;
320 abr.prefix =lsa->header.adv_router;
321 abr.prefixlen = IPV4_MAX_BITLEN;
322 apply_mask_ipv4 (&abr);
323
324 abr_or = ospf_find_abr_route (rtrs, &abr, area);
325
326 if (abr_or == NULL)
327 {
328 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000329 zlog_debug ("ospf_update_network_route(): can't find a route to the ABR");
paul718e3742002-12-13 20:15:29 +0000330 return;
331 }
332
333 cost = abr_or->cost + GET_METRIC (lsa->metric);
334
335 rn = route_node_lookup (rt, (struct prefix *) p);
336
337 if (! rn)
338 {
paul96735ee2003-08-10 02:51:22 +0000339 if (ospf->abr_type != OSPF_ABR_SHORTCUT)
paul718e3742002-12-13 20:15:29 +0000340 return; /* Standard ABR can update only already installed
341 backbone paths */
342 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000343 zlog_debug ("ospf_update_network_route(): "
paul718e3742002-12-13 20:15:29 +0000344 "Allowing Shortcut ABR to add new route");
345 new_or = ospf_route_new ();
346 new_or->type = OSPF_DESTINATION_NETWORK;
347 new_or->id = lsa->header.id;
348 new_or->mask = lsa->mask;
349 new_or->u.std.options = lsa->header.options;
350 new_or->u.std.origin = (struct lsa_header *) lsa;
351 new_or->cost = cost;
352 new_or->u.std.area_id = area->area_id;
paul718e3742002-12-13 20:15:29 +0000353 new_or->u.std.external_routing = area->external_routing;
paul718e3742002-12-13 20:15:29 +0000354 new_or->path_type = OSPF_PATH_INTER_AREA;
355 ospf_route_add (rt, p, new_or, abr_or);
356
357 return;
358 }
359 else
360 {
361 route_unlock_node (rn);
362 if (rn->info == NULL)
363 return;
364 }
365
366 or = rn->info;
367
368 if (or->path_type != OSPF_PATH_INTRA_AREA &&
369 or->path_type != OSPF_PATH_INTER_AREA)
370 {
371 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000372 zlog_debug ("ospf_update_network_route(): ERR: path type is wrong");
paul718e3742002-12-13 20:15:29 +0000373 return;
374 }
375
paul96735ee2003-08-10 02:51:22 +0000376 if (ospf->abr_type == OSPF_ABR_SHORTCUT)
paul718e3742002-12-13 20:15:29 +0000377 {
378 if (or->path_type == OSPF_PATH_INTRA_AREA &&
379 !OSPF_IS_AREA_ID_BACKBONE (or->u.std.area_id))
380 {
381 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000382 zlog_debug ("ospf_update_network_route(): Shortcut: "
paul718e3742002-12-13 20:15:29 +0000383 "this intra-area path is not backbone");
384 return;
385 }
386 }
387 else /* Not Shortcut ABR */
388 {
389 if (!OSPF_IS_AREA_ID_BACKBONE (or->u.std.area_id))
390 {
391 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000392 zlog_debug ("ospf_update_network_route(): "
paul718e3742002-12-13 20:15:29 +0000393 "route is not BB-associated");
394 return; /* We can update only BB routes */
395 }
396 }
397
398 if (or->cost < cost)
399 {
400 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000401 zlog_debug ("ospf_update_network_route(): new route is worse");
paul718e3742002-12-13 20:15:29 +0000402 return;
403 }
404
405 if (or->cost == cost)
406 {
407 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000408 zlog_debug ("ospf_update_network_route(): "
paul718e3742002-12-13 20:15:29 +0000409 "new route is same distance, adding nexthops");
paul96735ee2003-08-10 02:51:22 +0000410 ospf_route_copy_nexthops (or, abr_or->paths);
paul718e3742002-12-13 20:15:29 +0000411 }
412
413 if (or->cost > cost)
414 {
415 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000416 zlog_debug ("ospf_update_network_route(): "
paul718e3742002-12-13 20:15:29 +0000417 "new route is better, overriding nexthops");
paul96735ee2003-08-10 02:51:22 +0000418 ospf_route_subst_nexthops (or, abr_or->paths);
paul718e3742002-12-13 20:15:29 +0000419 or->cost = cost;
420
paul96735ee2003-08-10 02:51:22 +0000421 if ((ospf->abr_type == OSPF_ABR_SHORTCUT) &&
paul718e3742002-12-13 20:15:29 +0000422 !OSPF_IS_AREA_ID_BACKBONE (or->u.std.area_id))
423 {
424 or->path_type = OSPF_PATH_INTER_AREA;
425 or->u.std.area_id = area->area_id;
paul718e3742002-12-13 20:15:29 +0000426 or->u.std.external_routing = area->external_routing;
paul718e3742002-12-13 20:15:29 +0000427 /* Note that we can do this only in Shortcut ABR mode,
428 because standard ABR must leave the route type and area
429 unchanged
430 */
431 }
432 }
433}
434
paul4dadc292005-05-06 21:37:42 +0000435static void
paul96735ee2003-08-10 02:51:22 +0000436ospf_update_router_route (struct ospf *ospf,
437 struct route_table *rtrs,
paul718e3742002-12-13 20:15:29 +0000438 struct summary_lsa *lsa,
439 struct prefix_ipv4 *p,
440 struct ospf_area *area)
441{
442 struct ospf_route *or, *abr_or, *new_or;
443 struct prefix_ipv4 abr;
444 u_int32_t cost;
445
446 abr.family = AF_INET;
447 abr.prefix = lsa->header.adv_router;
448 abr.prefixlen = IPV4_MAX_BITLEN;
449 apply_mask_ipv4 (&abr);
450
451 abr_or = ospf_find_abr_route (rtrs, &abr, area);
452
453 if (abr_or == NULL)
454 {
455 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000456 zlog_debug ("ospf_update_router_route(): can't find a route to the ABR");
paul718e3742002-12-13 20:15:29 +0000457 return;
458 }
459
460 cost = abr_or->cost + GET_METRIC (lsa->metric);
461
462 /* First try to find a backbone path,
463 because standard ABR can update only BB-associated paths */
464
paul96735ee2003-08-10 02:51:22 +0000465 if ((ospf->backbone == NULL) &&
466 (ospf->abr_type != OSPF_ABR_SHORTCUT))
Paul Jakmabfd7c7d2006-05-12 23:04:45 +0000467 return; /* no BB area, not Shortcut ABR, exiting */
468
469 /* find the backbone route, if possible */
470 if ((ospf->backbone == NULL)
471 || !(or = ospf_find_asbr_route_through_area (rtrs, p, ospf->backbone)))
paul718e3742002-12-13 20:15:29 +0000472 {
paul96735ee2003-08-10 02:51:22 +0000473 if (ospf->abr_type != OSPF_ABR_SHORTCUT)
paul718e3742002-12-13 20:15:29 +0000474
475 /* route to ASBR through the BB not found
476 the router is not Shortcut ABR, exiting */
477
478 return;
479 else
480 /* We're a Shortcut ABR*/
481 {
482 /* Let it either add a new router or update the route
483 through the same (non-BB) area. */
484
485 new_or = ospf_route_new ();
486 new_or->type = OSPF_DESTINATION_ROUTER;
487 new_or->id = lsa->header.id;
488 new_or->mask = lsa->mask;
489 new_or->u.std.options = lsa->header.options;
490 new_or->u.std.origin = (struct lsa_header *)lsa;
491 new_or->cost = cost;
492 new_or->u.std.area_id = area->area_id;
paul718e3742002-12-13 20:15:29 +0000493 new_or->u.std.external_routing = area->external_routing;
paul718e3742002-12-13 20:15:29 +0000494 new_or->path_type = OSPF_PATH_INTER_AREA;
495 new_or->u.std.flags = ROUTER_LSA_EXTERNAL;
paul96735ee2003-08-10 02:51:22 +0000496 ospf_ia_router_route (ospf, rtrs, p, new_or, abr_or);
paul718e3742002-12-13 20:15:29 +0000497
498 return;
499 }
500 }
501
502 /* At this point the "or" is always bb-associated */
503
504 if (!(or->u.std.flags & ROUTER_LSA_EXTERNAL))
505 {
506 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000507 zlog_debug ("ospf_upd_router_route(): the remote router is not an ASBR");
paul718e3742002-12-13 20:15:29 +0000508 return;
509 }
510
511 if (or->path_type != OSPF_PATH_INTRA_AREA &&
512 or->path_type != OSPF_PATH_INTER_AREA)
513 return;
514
515 if (or->cost < cost)
516 return;
517
518 else if (or->cost == cost)
paul96735ee2003-08-10 02:51:22 +0000519 ospf_route_copy_nexthops (or, abr_or->paths);
paul718e3742002-12-13 20:15:29 +0000520
521 else if (or->cost > cost)
522 {
paul96735ee2003-08-10 02:51:22 +0000523 ospf_route_subst_nexthops (or, abr_or->paths);
paul718e3742002-12-13 20:15:29 +0000524 or->cost = cost;
525
526 /* Even if the ABR runs in Shortcut mode, we can't change
527 the path type and area, because the "or" is always bb-associated
528 at this point and even Shortcut ABR can't change these attributes */
529 }
530}
531
paul4dadc292005-05-06 21:37:42 +0000532static int
paul96735ee2003-08-10 02:51:22 +0000533process_transit_summary_lsa (struct ospf_area *area, struct route_table *rt,
534 struct route_table *rtrs, struct ospf_lsa *lsa)
paul718e3742002-12-13 20:15:29 +0000535{
paul96735ee2003-08-10 02:51:22 +0000536 struct ospf *ospf = area->ospf;
paul718e3742002-12-13 20:15:29 +0000537 struct summary_lsa *sl;
538 struct prefix_ipv4 p;
539 u_int32_t metric;
paul718e3742002-12-13 20:15:29 +0000540
paul96735ee2003-08-10 02:51:22 +0000541 if (lsa == NULL)
paul718e3742002-12-13 20:15:29 +0000542 return 0;
543
paul96735ee2003-08-10 02:51:22 +0000544 sl = (struct summary_lsa *) lsa->data;
paul718e3742002-12-13 20:15:29 +0000545
546 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000547 zlog_debug ("process_transit_summaries(): LS ID: %s",
paul96735ee2003-08-10 02:51:22 +0000548 inet_ntoa (lsa->data->id));
paul718e3742002-12-13 20:15:29 +0000549 metric = GET_METRIC (sl->metric);
550
551 if (metric == OSPF_LS_INFINITY)
552 {
553 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000554 zlog_debug ("process_transit_summaries(): metric is infinity, skip");
paul718e3742002-12-13 20:15:29 +0000555 return 0;
556 }
557
paul96735ee2003-08-10 02:51:22 +0000558 if (IS_LSA_MAXAGE (lsa))
paul718e3742002-12-13 20:15:29 +0000559 {
560 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000561 zlog_debug ("process_transit_summaries(): This LSA is too old");
paul718e3742002-12-13 20:15:29 +0000562 return 0;
563 }
564
paul96735ee2003-08-10 02:51:22 +0000565 if (ospf_lsa_is_self_originated (area->ospf, lsa))
paul718e3742002-12-13 20:15:29 +0000566 {
567 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000568 zlog_debug ("process_transit_summaries(): This LSA is mine, skip");
paul718e3742002-12-13 20:15:29 +0000569 return 0;
570 }
571
572 p.family = AF_INET;
573 p.prefix = sl->header.id;
574
575 if (sl->header.type == OSPF_SUMMARY_LSA)
576 p.prefixlen = ip_masklen (sl->mask);
577 else
578 p.prefixlen = IPV4_MAX_BITLEN;
579
580 apply_mask_ipv4 (&p);
581
582 if (sl->header.type == OSPF_SUMMARY_LSA)
paul96735ee2003-08-10 02:51:22 +0000583 ospf_update_network_route (ospf, rt, rtrs, sl, &p, area);
paul718e3742002-12-13 20:15:29 +0000584 else
paul96735ee2003-08-10 02:51:22 +0000585 ospf_update_router_route (ospf, rtrs, sl, &p, area);
paul718e3742002-12-13 20:15:29 +0000586
587 return 0;
588}
589
paul4dadc292005-05-06 21:37:42 +0000590static void
paul718e3742002-12-13 20:15:29 +0000591ospf_examine_transit_summaries (struct ospf_area *area,
paul718e3742002-12-13 20:15:29 +0000592 struct route_table *lsdb_rt,
593 struct route_table *rt,
594 struct route_table *rtrs)
595{
paul96735ee2003-08-10 02:51:22 +0000596 struct ospf_lsa *lsa;
597 struct route_node *rn;
paul718e3742002-12-13 20:15:29 +0000598
paul96735ee2003-08-10 02:51:22 +0000599 LSDB_LOOP (lsdb_rt, rn, lsa)
600 process_transit_summary_lsa (area, rt, rtrs, lsa);
paul718e3742002-12-13 20:15:29 +0000601}
602
603void
paul96735ee2003-08-10 02:51:22 +0000604ospf_ia_routing (struct ospf *ospf,
605 struct route_table *rt,
paul718e3742002-12-13 20:15:29 +0000606 struct route_table *rtrs)
607{
608 struct ospf_area * area;
609
610 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000611 zlog_debug ("ospf_ia_routing():start");
paul718e3742002-12-13 20:15:29 +0000612
paul96735ee2003-08-10 02:51:22 +0000613 if (IS_OSPF_ABR (ospf))
paul718e3742002-12-13 20:15:29 +0000614 {
hasso52dc7ee2004-09-23 19:18:23 +0000615 struct listnode *node;
paul718e3742002-12-13 20:15:29 +0000616 struct ospf_area *area;
617
paul96735ee2003-08-10 02:51:22 +0000618 switch (ospf->abr_type)
paul718e3742002-12-13 20:15:29 +0000619 {
620 case OSPF_ABR_STAND:
621 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000622 zlog_debug ("ospf_ia_routing():Standard ABR");
paul718e3742002-12-13 20:15:29 +0000623
paul96735ee2003-08-10 02:51:22 +0000624 if ((area = ospf->backbone))
paul718e3742002-12-13 20:15:29 +0000625 {
hasso52dc7ee2004-09-23 19:18:23 +0000626 struct listnode *node;
paul718e3742002-12-13 20:15:29 +0000627
628 if (IS_DEBUG_OSPF_EVENT)
629 {
ajs60925302004-12-08 17:45:02 +0000630 zlog_debug ("ospf_ia_routing():backbone area found");
631 zlog_debug ("ospf_ia_routing():examining summaries");
paul718e3742002-12-13 20:15:29 +0000632 }
633
634 OSPF_EXAMINE_SUMMARIES_ALL (area, rt, rtrs);
635
paul1eb8ef22005-04-07 07:30:20 +0000636 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
637 if (area != ospf->backbone)
638 if (ospf_area_is_transit (area))
639 OSPF_EXAMINE_TRANSIT_SUMMARIES_ALL (area, rt, rtrs);
paul718e3742002-12-13 20:15:29 +0000640 }
641 else
642 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000643 zlog_debug ("ospf_ia_routing():backbone area NOT found");
paul718e3742002-12-13 20:15:29 +0000644 break;
645 case OSPF_ABR_IBM:
646 case OSPF_ABR_CISCO:
647 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000648 zlog_debug ("ospf_ia_routing():Alternative Cisco/IBM ABR");
paul96735ee2003-08-10 02:51:22 +0000649 area = ospf->backbone; /* Find the BB */
paul718e3742002-12-13 20:15:29 +0000650
651 /* If we have an active BB connection */
paul96735ee2003-08-10 02:51:22 +0000652 if (area && ospf_act_bb_connection (ospf))
paul718e3742002-12-13 20:15:29 +0000653 {
654 if (IS_DEBUG_OSPF_EVENT)
655 {
ajs60925302004-12-08 17:45:02 +0000656 zlog_debug ("ospf_ia_routing(): backbone area found");
657 zlog_debug ("ospf_ia_routing(): examining BB summaries");
paul718e3742002-12-13 20:15:29 +0000658 }
659
660 OSPF_EXAMINE_SUMMARIES_ALL (area, rt, rtrs);
661
paul1eb8ef22005-04-07 07:30:20 +0000662 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
663 if (area != ospf->backbone)
664 if (ospf_area_is_transit (area))
665 OSPF_EXAMINE_TRANSIT_SUMMARIES_ALL (area, rt, rtrs);
paul718e3742002-12-13 20:15:29 +0000666 }
667 else
668 { /* No active BB connection--consider all areas */
669 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000670 zlog_debug ("ospf_ia_routing(): "
paul718e3742002-12-13 20:15:29 +0000671 "Active BB connection not found");
paul1eb8ef22005-04-07 07:30:20 +0000672 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
673 OSPF_EXAMINE_SUMMARIES_ALL (area, rt, rtrs);
paul718e3742002-12-13 20:15:29 +0000674 }
675 break;
676 case OSPF_ABR_SHORTCUT:
677 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000678 zlog_debug ("ospf_ia_routing():Alternative Shortcut");
paul96735ee2003-08-10 02:51:22 +0000679 area = ospf->backbone; /* Find the BB */
paul718e3742002-12-13 20:15:29 +0000680
681 /* If we have an active BB connection */
paul96735ee2003-08-10 02:51:22 +0000682 if (area && ospf_act_bb_connection (ospf))
paul718e3742002-12-13 20:15:29 +0000683 {
684 if (IS_DEBUG_OSPF_EVENT)
685 {
ajs60925302004-12-08 17:45:02 +0000686 zlog_debug ("ospf_ia_routing(): backbone area found");
687 zlog_debug ("ospf_ia_routing(): examining BB summaries");
paul718e3742002-12-13 20:15:29 +0000688 }
689 OSPF_EXAMINE_SUMMARIES_ALL (area, rt, rtrs);
690 }
691
paul1eb8ef22005-04-07 07:30:20 +0000692 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
693 if (area != ospf->backbone)
694 if (ospf_area_is_transit (area) ||
695 ((area->shortcut_configured != OSPF_SHORTCUT_DISABLE) &&
696 ((ospf->backbone == NULL) ||
697 ((area->shortcut_configured == OSPF_SHORTCUT_ENABLE) &&
698 area->shortcut_capability))))
699 OSPF_EXAMINE_TRANSIT_SUMMARIES_ALL (area, rt, rtrs);
paul718e3742002-12-13 20:15:29 +0000700 break;
701 default:
702 break;
703 }
704 }
705 else
706 {
hasso52dc7ee2004-09-23 19:18:23 +0000707 struct listnode *node;
paul718e3742002-12-13 20:15:29 +0000708
709 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000710 zlog_debug ("ospf_ia_routing():not ABR, considering all areas");
paul718e3742002-12-13 20:15:29 +0000711
paul1eb8ef22005-04-07 07:30:20 +0000712 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
713 OSPF_EXAMINE_SUMMARIES_ALL (area, rt, rtrs);
paul718e3742002-12-13 20:15:29 +0000714 }
715}