]> git.proxmox.com Git - mirror_frr.git/blame - ospfd/ospf_ia.c
2005-04-07 Paul Jakma <paul.jakma@sun.com>
[mirror_frr.git] / ospfd / ospf_ia.c
CommitLineData
718e3744 1/*
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
49#define DEBUG
50
51struct ospf_route *
52ospf_find_abr_route (struct route_table *rtrs,
53 struct prefix_ipv4 *abr,
54 struct ospf_area *area)
55{
56 struct route_node *rn;
57 struct ospf_route *or;
52dc7ee6 58 struct listnode *node;
718e3744 59
60 if ((rn = route_node_lookup (rtrs, (struct prefix *) abr)) == NULL)
61 return NULL;
62
63 route_unlock_node (rn);
64
1eb8ef25 65 for (ALL_LIST_ELEMENTS_RO ((struct list *) rn->info, node, or))
66 if (IPV4_ADDR_SAME (&or->u.std.area_id, &area->area_id)
67 && (or->u.std.flags & ROUTER_LSA_BORDER))
68 return or;
718e3744 69
70 return NULL;
71}
72
73void
96735eea 74ospf_ia_network_route (struct ospf *ospf, struct route_table *rt,
75 struct prefix_ipv4 *p, struct ospf_route *new_or,
76 struct ospf_route *abr_or)
718e3744 77{
78 struct route_node *rn1;
79 struct ospf_route *or;
80
81 if (IS_DEBUG_OSPF_EVENT)
60925303 82 zlog_debug ("ospf_ia_network_route(): processing summary route to %s/%d",
718e3744 83 inet_ntoa (p->prefix), p->prefixlen);
84
85 /* Find a route to the same dest */
86 if ((rn1 = route_node_lookup (rt, (struct prefix *) p)))
87 {
88 int res;
89
90 route_unlock_node (rn1);
91
92 if ((or = rn1->info))
93 {
94 if (IS_DEBUG_OSPF_EVENT)
60925303 95 zlog_debug ("ospf_ia_network_route(): "
718e3744 96 "Found a route to the same network");
97 /* Check the existing route. */
96735eea 98 if ((res = ospf_route_cmp (ospf, new_or, or)) < 0)
718e3744 99 {
100 /* New route is better, so replace old one. */
101 ospf_route_subst (rn1, new_or, abr_or);
102 }
103 else if (res == 0)
104 {
105 /* New and old route are equal, so next hops can be added. */
106 route_lock_node (rn1);
96735eea 107 ospf_route_copy_nexthops (or, abr_or->paths);
718e3744 108 route_unlock_node (rn1);
109
110 /* new route can be deleted, because existing route has been updated. */
111 ospf_route_free (new_or);
112 }
113 else
114 {
115 /* New route is worse, so free it. */
116 ospf_route_free (new_or);
117 return;
118 }
119 } /* if (or)*/
120 } /*if (rn1)*/
121 else
122 { /* no route */
123 if (IS_DEBUG_OSPF_EVENT)
60925303 124 zlog_debug ("ospf_ia_network_route(): add new route to %s/%d",
718e3744 125 inet_ntoa (p->prefix), p->prefixlen);
126 ospf_route_add (rt, p, new_or, abr_or);
127 }
128}
129
130void
96735eea 131ospf_ia_router_route (struct ospf *ospf, struct route_table *rtrs,
132 struct prefix_ipv4 *p,
718e3744 133 struct ospf_route *new_or, struct ospf_route *abr_or)
134{
718e3744 135 struct ospf_route *or = NULL;
96735eea 136 struct route_node *rn;
718e3744 137 int ret;
138
139 if (IS_DEBUG_OSPF_EVENT)
60925303 140 zlog_debug ("ospf_ia_router_route(): considering %s/%d",
718e3744 141 inet_ntoa (p->prefix), p->prefixlen);
142 /* Find a route to the same dest */
96735eea 143 rn = route_node_get (rtrs, (struct prefix *) p);
718e3744 144
145 if (rn->info == NULL)
146 /* This is a new route */
147 rn->info = list_new ();
148 else
149 {
150 struct ospf_area *or_area;
96735eea 151 or_area = ospf_area_lookup_by_area_id (ospf, new_or->u.std.area_id);
718e3744 152 assert (or_area);
153 /* This is an additional route */
154 route_unlock_node (rn);
96735eea 155 or = ospf_find_asbr_route_through_area (rtrs, p, or_area);
718e3744 156 }
157
158 if (or)
159 {
160 if (IS_DEBUG_OSPF_EVENT)
60925303 161 zlog_debug ("ospf_ia_router_route(): "
718e3744 162 "a route to the same ABR through the same area exists");
163 /* New route is better */
96735eea 164 if ((ret = ospf_route_cmp (ospf, new_or, or)) < 0)
718e3744 165 {
166 listnode_delete (rn->info, or);
167 ospf_route_free (or);
168 /* proceed down */
169 }
170 /* Routes are the same */
171 else if (ret == 0)
172 {
173 if (IS_DEBUG_OSPF_EVENT)
60925303 174 zlog_debug ("ospf_ia_router_route(): merging the new route");
718e3744 175
96735eea 176 ospf_route_copy_nexthops (or, abr_or->paths);
718e3744 177 ospf_route_free (new_or);
178 return;
179 }
180 /* New route is worse */
181 else
182 {
183 if (IS_DEBUG_OSPF_EVENT)
60925303 184 zlog_debug ("ospf_ia_router_route(): skipping the new route");
718e3744 185 ospf_route_free (new_or);
186 return;
187 }
188 }
189
96735eea 190 ospf_route_copy_nexthops (new_or, abr_or->paths);
718e3744 191
192 if (IS_DEBUG_OSPF_EVENT)
60925303 193 zlog_debug ("ospf_ia_router_route(): adding the new route");
718e3744 194
195 listnode_add (rn->info, new_or);
196}
197
198\f
718e3744 199int
96735eea 200process_summary_lsa (struct ospf_area *area, struct route_table *rt,
201 struct route_table *rtrs, struct ospf_lsa *lsa)
718e3744 202{
96735eea 203 struct ospf *ospf = area->ospf;
718e3744 204 struct ospf_area_range *range;
205 struct ospf_route *abr_or, *new_or;
206 struct summary_lsa *sl;
207 struct prefix_ipv4 p, abr;
208 u_int32_t metric;
718e3744 209
96735eea 210 if (lsa == NULL)
718e3744 211 return 0;
212
96735eea 213 sl = (struct summary_lsa *) lsa->data;
718e3744 214
215 if (IS_DEBUG_OSPF_EVENT)
60925303 216 zlog_debug ("process_summary_lsa(): LS ID: %s", inet_ntoa (sl->header.id));
718e3744 217
218 metric = GET_METRIC (sl->metric);
219
220 if (metric == OSPF_LS_INFINITY)
221 return 0;
222
96735eea 223 if (IS_LSA_MAXAGE (lsa))
718e3744 224 return 0;
225
96735eea 226 if (ospf_lsa_is_self_originated (area->ospf, lsa))
718e3744 227 return 0;
228
229 p.family = AF_INET;
230 p.prefix = sl->header.id;
231
232 if (sl->header.type == OSPF_SUMMARY_LSA)
233 p.prefixlen = ip_masklen (sl->mask);
234 else
235 p.prefixlen = IPV4_MAX_BITLEN;
236
237 apply_mask_ipv4 (&p);
238
239 if (sl->header.type == OSPF_SUMMARY_LSA &&
96735eea 240 (range = ospf_area_range_match_any (ospf, &p)) &&
718e3744 241 ospf_area_range_active (range))
242 return 0;
243
05e85fa9 244 /* XXX: This check seems dubious to me. If an ABR has already decided
245 * to consider summaries received in this area, then why would one wish
246 * to exclude default?
247 */
248 if (IS_OSPF_ABR(ospf) &&
249 ospf->abr_type != OSPF_ABR_STAND &&
96735eea 250 area->external_routing != OSPF_AREA_DEFAULT &&
718e3744 251 p.prefix.s_addr == OSPF_DEFAULT_DESTINATION &&
252 p.prefixlen == 0)
253 return 0; /* Ignore summary default from a stub area */
254
255 abr.family = AF_INET;
256 abr.prefix = sl->header.adv_router;
257 abr.prefixlen = IPV4_MAX_BITLEN;
258 apply_mask_ipv4 (&abr);
259
96735eea 260 abr_or = ospf_find_abr_route (rtrs, &abr, area);
718e3744 261
262 if (abr_or == NULL)
263 return 0;
264
265 new_or = ospf_route_new ();
266 new_or->type = OSPF_DESTINATION_NETWORK;
267 new_or->id = sl->header.id;
268 new_or->mask = sl->mask;
269 new_or->u.std.options = sl->header.options;
270 new_or->u.std.origin = (struct lsa_header *) sl;
271 new_or->cost = abr_or->cost + metric;
96735eea 272 new_or->u.std.area_id = area->area_id;
96735eea 273 new_or->u.std.external_routing = area->external_routing;
718e3744 274 new_or->path_type = OSPF_PATH_INTER_AREA;
275
276 if (sl->header.type == OSPF_SUMMARY_LSA)
96735eea 277 ospf_ia_network_route (ospf, rt, &p, new_or, abr_or);
718e3744 278 else
279 {
280 new_or->type = OSPF_DESTINATION_ROUTER;
281 new_or->u.std.flags = ROUTER_LSA_EXTERNAL;
96735eea 282 ospf_ia_router_route (ospf, rtrs, &p, new_or, abr_or);
718e3744 283 }
284
285 return 0;
286}
287
288void
96735eea 289ospf_examine_summaries (struct ospf_area *area,
718e3744 290 struct route_table *lsdb_rt,
291 struct route_table *rt,
292 struct route_table *rtrs)
293{
96735eea 294 struct ospf_lsa *lsa;
295 struct route_node *rn;
296
297 LSDB_LOOP (lsdb_rt, rn, lsa)
298 process_summary_lsa (area, rt, rtrs, lsa);
718e3744 299}
300
301int
302ospf_area_is_transit (struct ospf_area *area)
303{
304 return (area->transit == OSPF_TRANSIT_TRUE) ||
305 ospf_full_virtual_nbrs(area); /* Cisco forgets to set the V-bit :( */
306}
307
308void
96735eea 309ospf_update_network_route (struct ospf *ospf,
310 struct route_table *rt,
718e3744 311 struct route_table *rtrs,
312 struct summary_lsa *lsa,
313 struct prefix_ipv4 *p,
314 struct ospf_area *area)
315{
316 struct route_node *rn;
317 struct ospf_route *or, *abr_or, *new_or;
318 struct prefix_ipv4 abr;
319 u_int32_t cost;
320
321 abr.family = AF_INET;
322 abr.prefix =lsa->header.adv_router;
323 abr.prefixlen = IPV4_MAX_BITLEN;
324 apply_mask_ipv4 (&abr);
325
326 abr_or = ospf_find_abr_route (rtrs, &abr, area);
327
328 if (abr_or == NULL)
329 {
330 if (IS_DEBUG_OSPF_EVENT)
60925303 331 zlog_debug ("ospf_update_network_route(): can't find a route to the ABR");
718e3744 332 return;
333 }
334
335 cost = abr_or->cost + GET_METRIC (lsa->metric);
336
337 rn = route_node_lookup (rt, (struct prefix *) p);
338
339 if (! rn)
340 {
96735eea 341 if (ospf->abr_type != OSPF_ABR_SHORTCUT)
718e3744 342 return; /* Standard ABR can update only already installed
343 backbone paths */
344 if (IS_DEBUG_OSPF_EVENT)
60925303 345 zlog_debug ("ospf_update_network_route(): "
718e3744 346 "Allowing Shortcut ABR to add new route");
347 new_or = ospf_route_new ();
348 new_or->type = OSPF_DESTINATION_NETWORK;
349 new_or->id = lsa->header.id;
350 new_or->mask = lsa->mask;
351 new_or->u.std.options = lsa->header.options;
352 new_or->u.std.origin = (struct lsa_header *) lsa;
353 new_or->cost = cost;
354 new_or->u.std.area_id = area->area_id;
718e3744 355 new_or->u.std.external_routing = area->external_routing;
718e3744 356 new_or->path_type = OSPF_PATH_INTER_AREA;
357 ospf_route_add (rt, p, new_or, abr_or);
358
359 return;
360 }
361 else
362 {
363 route_unlock_node (rn);
364 if (rn->info == NULL)
365 return;
366 }
367
368 or = rn->info;
369
370 if (or->path_type != OSPF_PATH_INTRA_AREA &&
371 or->path_type != OSPF_PATH_INTER_AREA)
372 {
373 if (IS_DEBUG_OSPF_EVENT)
60925303 374 zlog_debug ("ospf_update_network_route(): ERR: path type is wrong");
718e3744 375 return;
376 }
377
96735eea 378 if (ospf->abr_type == OSPF_ABR_SHORTCUT)
718e3744 379 {
380 if (or->path_type == OSPF_PATH_INTRA_AREA &&
381 !OSPF_IS_AREA_ID_BACKBONE (or->u.std.area_id))
382 {
383 if (IS_DEBUG_OSPF_EVENT)
60925303 384 zlog_debug ("ospf_update_network_route(): Shortcut: "
718e3744 385 "this intra-area path is not backbone");
386 return;
387 }
388 }
389 else /* Not Shortcut ABR */
390 {
391 if (!OSPF_IS_AREA_ID_BACKBONE (or->u.std.area_id))
392 {
393 if (IS_DEBUG_OSPF_EVENT)
60925303 394 zlog_debug ("ospf_update_network_route(): "
718e3744 395 "route is not BB-associated");
396 return; /* We can update only BB routes */
397 }
398 }
399
400 if (or->cost < cost)
401 {
402 if (IS_DEBUG_OSPF_EVENT)
60925303 403 zlog_debug ("ospf_update_network_route(): new route is worse");
718e3744 404 return;
405 }
406
407 if (or->cost == cost)
408 {
409 if (IS_DEBUG_OSPF_EVENT)
60925303 410 zlog_debug ("ospf_update_network_route(): "
718e3744 411 "new route is same distance, adding nexthops");
96735eea 412 ospf_route_copy_nexthops (or, abr_or->paths);
718e3744 413 }
414
415 if (or->cost > cost)
416 {
417 if (IS_DEBUG_OSPF_EVENT)
60925303 418 zlog_debug ("ospf_update_network_route(): "
718e3744 419 "new route is better, overriding nexthops");
96735eea 420 ospf_route_subst_nexthops (or, abr_or->paths);
718e3744 421 or->cost = cost;
422
96735eea 423 if ((ospf->abr_type == OSPF_ABR_SHORTCUT) &&
718e3744 424 !OSPF_IS_AREA_ID_BACKBONE (or->u.std.area_id))
425 {
426 or->path_type = OSPF_PATH_INTER_AREA;
427 or->u.std.area_id = area->area_id;
718e3744 428 or->u.std.external_routing = area->external_routing;
718e3744 429 /* Note that we can do this only in Shortcut ABR mode,
430 because standard ABR must leave the route type and area
431 unchanged
432 */
433 }
434 }
435}
436
437void
96735eea 438ospf_update_router_route (struct ospf *ospf,
439 struct route_table *rtrs,
718e3744 440 struct summary_lsa *lsa,
441 struct prefix_ipv4 *p,
442 struct ospf_area *area)
443{
444 struct ospf_route *or, *abr_or, *new_or;
445 struct prefix_ipv4 abr;
446 u_int32_t cost;
447
448 abr.family = AF_INET;
449 abr.prefix = lsa->header.adv_router;
450 abr.prefixlen = IPV4_MAX_BITLEN;
451 apply_mask_ipv4 (&abr);
452
453 abr_or = ospf_find_abr_route (rtrs, &abr, area);
454
455 if (abr_or == NULL)
456 {
457 if (IS_DEBUG_OSPF_EVENT)
60925303 458 zlog_debug ("ospf_update_router_route(): can't find a route to the ABR");
718e3744 459 return;
460 }
461
462 cost = abr_or->cost + GET_METRIC (lsa->metric);
463
464 /* First try to find a backbone path,
465 because standard ABR can update only BB-associated paths */
466
96735eea 467 if ((ospf->backbone == NULL) &&
468 (ospf->abr_type != OSPF_ABR_SHORTCUT))
718e3744 469
470 /* no BB area, not Shortcut ABR, exiting */
471 return;
472
96735eea 473 or = ospf_find_asbr_route_through_area (rtrs, p, ospf->backbone);
718e3744 474
475 if (or == NULL)
476 {
96735eea 477 if (ospf->abr_type != OSPF_ABR_SHORTCUT)
718e3744 478
479 /* route to ASBR through the BB not found
480 the router is not Shortcut ABR, exiting */
481
482 return;
483 else
484 /* We're a Shortcut ABR*/
485 {
486 /* Let it either add a new router or update the route
487 through the same (non-BB) area. */
488
489 new_or = ospf_route_new ();
490 new_or->type = OSPF_DESTINATION_ROUTER;
491 new_or->id = lsa->header.id;
492 new_or->mask = lsa->mask;
493 new_or->u.std.options = lsa->header.options;
494 new_or->u.std.origin = (struct lsa_header *)lsa;
495 new_or->cost = cost;
496 new_or->u.std.area_id = area->area_id;
718e3744 497 new_or->u.std.external_routing = area->external_routing;
718e3744 498 new_or->path_type = OSPF_PATH_INTER_AREA;
499 new_or->u.std.flags = ROUTER_LSA_EXTERNAL;
96735eea 500 ospf_ia_router_route (ospf, rtrs, p, new_or, abr_or);
718e3744 501
502 return;
503 }
504 }
505
506 /* At this point the "or" is always bb-associated */
507
508 if (!(or->u.std.flags & ROUTER_LSA_EXTERNAL))
509 {
510 if (IS_DEBUG_OSPF_EVENT)
60925303 511 zlog_debug ("ospf_upd_router_route(): the remote router is not an ASBR");
718e3744 512 return;
513 }
514
515 if (or->path_type != OSPF_PATH_INTRA_AREA &&
516 or->path_type != OSPF_PATH_INTER_AREA)
517 return;
518
519 if (or->cost < cost)
520 return;
521
522 else if (or->cost == cost)
96735eea 523 ospf_route_copy_nexthops (or, abr_or->paths);
718e3744 524
525 else if (or->cost > cost)
526 {
96735eea 527 ospf_route_subst_nexthops (or, abr_or->paths);
718e3744 528 or->cost = cost;
529
530 /* Even if the ABR runs in Shortcut mode, we can't change
531 the path type and area, because the "or" is always bb-associated
532 at this point and even Shortcut ABR can't change these attributes */
533 }
534}
535
536int
96735eea 537process_transit_summary_lsa (struct ospf_area *area, struct route_table *rt,
538 struct route_table *rtrs, struct ospf_lsa *lsa)
718e3744 539{
96735eea 540 struct ospf *ospf = area->ospf;
718e3744 541 struct summary_lsa *sl;
542 struct prefix_ipv4 p;
543 u_int32_t metric;
718e3744 544
96735eea 545 if (lsa == NULL)
718e3744 546 return 0;
547
96735eea 548 sl = (struct summary_lsa *) lsa->data;
718e3744 549
550 if (IS_DEBUG_OSPF_EVENT)
60925303 551 zlog_debug ("process_transit_summaries(): LS ID: %s",
96735eea 552 inet_ntoa (lsa->data->id));
718e3744 553 metric = GET_METRIC (sl->metric);
554
555 if (metric == OSPF_LS_INFINITY)
556 {
557 if (IS_DEBUG_OSPF_EVENT)
60925303 558 zlog_debug ("process_transit_summaries(): metric is infinity, skip");
718e3744 559 return 0;
560 }
561
96735eea 562 if (IS_LSA_MAXAGE (lsa))
718e3744 563 {
564 if (IS_DEBUG_OSPF_EVENT)
60925303 565 zlog_debug ("process_transit_summaries(): This LSA is too old");
718e3744 566 return 0;
567 }
568
96735eea 569 if (ospf_lsa_is_self_originated (area->ospf, lsa))
718e3744 570 {
571 if (IS_DEBUG_OSPF_EVENT)
60925303 572 zlog_debug ("process_transit_summaries(): This LSA is mine, skip");
718e3744 573 return 0;
574 }
575
576 p.family = AF_INET;
577 p.prefix = sl->header.id;
578
579 if (sl->header.type == OSPF_SUMMARY_LSA)
580 p.prefixlen = ip_masklen (sl->mask);
581 else
582 p.prefixlen = IPV4_MAX_BITLEN;
583
584 apply_mask_ipv4 (&p);
585
586 if (sl->header.type == OSPF_SUMMARY_LSA)
96735eea 587 ospf_update_network_route (ospf, rt, rtrs, sl, &p, area);
718e3744 588 else
96735eea 589 ospf_update_router_route (ospf, rtrs, sl, &p, area);
718e3744 590
591 return 0;
592}
593
594void
595ospf_examine_transit_summaries (struct ospf_area *area,
718e3744 596 struct route_table *lsdb_rt,
597 struct route_table *rt,
598 struct route_table *rtrs)
599{
96735eea 600 struct ospf_lsa *lsa;
601 struct route_node *rn;
718e3744 602
96735eea 603 LSDB_LOOP (lsdb_rt, rn, lsa)
604 process_transit_summary_lsa (area, rt, rtrs, lsa);
718e3744 605}
606
607void
96735eea 608ospf_ia_routing (struct ospf *ospf,
609 struct route_table *rt,
718e3744 610 struct route_table *rtrs)
611{
612 struct ospf_area * area;
613
614 if (IS_DEBUG_OSPF_EVENT)
60925303 615 zlog_debug ("ospf_ia_routing():start");
718e3744 616
96735eea 617 if (IS_OSPF_ABR (ospf))
718e3744 618 {
52dc7ee6 619 struct listnode *node;
718e3744 620 struct ospf_area *area;
621
96735eea 622 switch (ospf->abr_type)
718e3744 623 {
624 case OSPF_ABR_STAND:
625 if (IS_DEBUG_OSPF_EVENT)
60925303 626 zlog_debug ("ospf_ia_routing():Standard ABR");
718e3744 627
96735eea 628 if ((area = ospf->backbone))
718e3744 629 {
52dc7ee6 630 struct listnode *node;
718e3744 631
632 if (IS_DEBUG_OSPF_EVENT)
633 {
60925303 634 zlog_debug ("ospf_ia_routing():backbone area found");
635 zlog_debug ("ospf_ia_routing():examining summaries");
718e3744 636 }
637
638 OSPF_EXAMINE_SUMMARIES_ALL (area, rt, rtrs);
639
1eb8ef25 640 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
641 if (area != ospf->backbone)
642 if (ospf_area_is_transit (area))
643 OSPF_EXAMINE_TRANSIT_SUMMARIES_ALL (area, rt, rtrs);
718e3744 644 }
645 else
646 if (IS_DEBUG_OSPF_EVENT)
60925303 647 zlog_debug ("ospf_ia_routing():backbone area NOT found");
718e3744 648 break;
649 case OSPF_ABR_IBM:
650 case OSPF_ABR_CISCO:
651 if (IS_DEBUG_OSPF_EVENT)
60925303 652 zlog_debug ("ospf_ia_routing():Alternative Cisco/IBM ABR");
96735eea 653 area = ospf->backbone; /* Find the BB */
718e3744 654
655 /* If we have an active BB connection */
96735eea 656 if (area && ospf_act_bb_connection (ospf))
718e3744 657 {
658 if (IS_DEBUG_OSPF_EVENT)
659 {
60925303 660 zlog_debug ("ospf_ia_routing(): backbone area found");
661 zlog_debug ("ospf_ia_routing(): examining BB summaries");
718e3744 662 }
663
664 OSPF_EXAMINE_SUMMARIES_ALL (area, rt, rtrs);
665
1eb8ef25 666 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
667 if (area != ospf->backbone)
668 if (ospf_area_is_transit (area))
669 OSPF_EXAMINE_TRANSIT_SUMMARIES_ALL (area, rt, rtrs);
718e3744 670 }
671 else
672 { /* No active BB connection--consider all areas */
673 if (IS_DEBUG_OSPF_EVENT)
60925303 674 zlog_debug ("ospf_ia_routing(): "
718e3744 675 "Active BB connection not found");
1eb8ef25 676 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
677 OSPF_EXAMINE_SUMMARIES_ALL (area, rt, rtrs);
718e3744 678 }
679 break;
680 case OSPF_ABR_SHORTCUT:
681 if (IS_DEBUG_OSPF_EVENT)
60925303 682 zlog_debug ("ospf_ia_routing():Alternative Shortcut");
96735eea 683 area = ospf->backbone; /* Find the BB */
718e3744 684
685 /* If we have an active BB connection */
96735eea 686 if (area && ospf_act_bb_connection (ospf))
718e3744 687 {
688 if (IS_DEBUG_OSPF_EVENT)
689 {
60925303 690 zlog_debug ("ospf_ia_routing(): backbone area found");
691 zlog_debug ("ospf_ia_routing(): examining BB summaries");
718e3744 692 }
693 OSPF_EXAMINE_SUMMARIES_ALL (area, rt, rtrs);
694 }
695
1eb8ef25 696 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
697 if (area != ospf->backbone)
698 if (ospf_area_is_transit (area) ||
699 ((area->shortcut_configured != OSPF_SHORTCUT_DISABLE) &&
700 ((ospf->backbone == NULL) ||
701 ((area->shortcut_configured == OSPF_SHORTCUT_ENABLE) &&
702 area->shortcut_capability))))
703 OSPF_EXAMINE_TRANSIT_SUMMARIES_ALL (area, rt, rtrs);
718e3744 704 break;
705 default:
706 break;
707 }
708 }
709 else
710 {
52dc7ee6 711 struct listnode *node;
718e3744 712
713 if (IS_DEBUG_OSPF_EVENT)
60925303 714 zlog_debug ("ospf_ia_routing():not ABR, considering all areas");
718e3744 715
1eb8ef25 716 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
717 OSPF_EXAMINE_SUMMARIES_ALL (area, rt, rtrs);
718e3744 718 }
719}