blob: e4c146862308ab6cf446c395695f2027bc8fe16a [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
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;
58 listnode node;
59
60 if ((rn = route_node_lookup (rtrs, (struct prefix *) abr)) == NULL)
61 return NULL;
62
63 route_unlock_node (rn);
64
65 for (node = listhead ((list) rn->info); node; nextnode (node))
66 if ((or = getdata (node)) != NULL)
67 if (IPV4_ADDR_SAME (&or->u.std.area_id, &area->area_id) && (or->u.std.flags & ROUTER_LSA_BORDER))
68 return or;
69
70 return NULL;
71}
72
73void
paul96735ee2003-08-10 02:51:22 +000074ospf_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)
paul718e3742002-12-13 20:15:29 +000077{
78 struct route_node *rn1;
79 struct ospf_route *or;
80
81 if (IS_DEBUG_OSPF_EVENT)
82 zlog_info ("ospf_ia_network_route(): processing summary route to %s/%d",
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)
95 zlog_info ("ospf_ia_network_route(): "
96 "Found a route to the same network");
97 /* Check the existing route. */
paul96735ee2003-08-10 02:51:22 +000098 if ((res = ospf_route_cmp (ospf, new_or, or)) < 0)
paul718e3742002-12-13 20:15:29 +000099 {
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);
paul96735ee2003-08-10 02:51:22 +0000107 ospf_route_copy_nexthops (or, abr_or->paths);
paul718e3742002-12-13 20:15:29 +0000108 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)
124 zlog_info ("ospf_ia_network_route(): add new route to %s/%d",
125 inet_ntoa (p->prefix), p->prefixlen);
126 ospf_route_add (rt, p, new_or, abr_or);
127 }
128}
129
130void
paul96735ee2003-08-10 02:51:22 +0000131ospf_ia_router_route (struct ospf *ospf, struct route_table *rtrs,
132 struct prefix_ipv4 *p,
paul718e3742002-12-13 20:15:29 +0000133 struct ospf_route *new_or, struct ospf_route *abr_or)
134{
paul718e3742002-12-13 20:15:29 +0000135 struct ospf_route *or = NULL;
paul96735ee2003-08-10 02:51:22 +0000136 struct route_node *rn;
paul718e3742002-12-13 20:15:29 +0000137 int ret;
138
139 if (IS_DEBUG_OSPF_EVENT)
140 zlog_info ("ospf_ia_router_route(): considering %s/%d",
141 inet_ntoa (p->prefix), p->prefixlen);
142 /* Find a route to the same dest */
paul96735ee2003-08-10 02:51:22 +0000143 rn = route_node_get (rtrs, (struct prefix *) p);
paul718e3742002-12-13 20:15:29 +0000144
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;
paul96735ee2003-08-10 02:51:22 +0000151 or_area = ospf_area_lookup_by_area_id (ospf, new_or->u.std.area_id);
paul718e3742002-12-13 20:15:29 +0000152 assert (or_area);
153 /* This is an additional route */
154 route_unlock_node (rn);
paul96735ee2003-08-10 02:51:22 +0000155 or = ospf_find_asbr_route_through_area (rtrs, p, or_area);
paul718e3742002-12-13 20:15:29 +0000156 }
157
158 if (or)
159 {
160 if (IS_DEBUG_OSPF_EVENT)
161 zlog_info ("ospf_ia_router_route(): "
162 "a route to the same ABR through the same area exists");
163 /* New route is better */
paul96735ee2003-08-10 02:51:22 +0000164 if ((ret = ospf_route_cmp (ospf, new_or, or)) < 0)
paul718e3742002-12-13 20:15:29 +0000165 {
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)
174 zlog_info ("ospf_ia_router_route(): merging the new route");
175
paul96735ee2003-08-10 02:51:22 +0000176 ospf_route_copy_nexthops (or, abr_or->paths);
paul718e3742002-12-13 20:15:29 +0000177 ospf_route_free (new_or);
178 return;
179 }
180 /* New route is worse */
181 else
182 {
183 if (IS_DEBUG_OSPF_EVENT)
184 zlog_info ("ospf_ia_router_route(): skipping the new route");
185 ospf_route_free (new_or);
186 return;
187 }
188 }
189
paul96735ee2003-08-10 02:51:22 +0000190 ospf_route_copy_nexthops (new_or, abr_or->paths);
paul718e3742002-12-13 20:15:29 +0000191
192 if (IS_DEBUG_OSPF_EVENT)
193 zlog_info ("ospf_ia_router_route(): adding the new route");
194
195 listnode_add (rn->info, new_or);
196}
197
198
paul718e3742002-12-13 20:15:29 +0000199int
paul96735ee2003-08-10 02:51:22 +0000200process_summary_lsa (struct ospf_area *area, struct route_table *rt,
201 struct route_table *rtrs, struct ospf_lsa *lsa)
paul718e3742002-12-13 20:15:29 +0000202{
paul96735ee2003-08-10 02:51:22 +0000203 struct ospf *ospf = area->ospf;
paul718e3742002-12-13 20:15:29 +0000204 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;
paul718e3742002-12-13 20:15:29 +0000209
paul96735ee2003-08-10 02:51:22 +0000210 if (lsa == NULL)
paul718e3742002-12-13 20:15:29 +0000211 return 0;
212
paul96735ee2003-08-10 02:51:22 +0000213 sl = (struct summary_lsa *) lsa->data;
paul718e3742002-12-13 20:15:29 +0000214
215 if (IS_DEBUG_OSPF_EVENT)
216 zlog_info ("process_summary_lsa(): LS ID: %s", inet_ntoa (sl->header.id));
217
218 metric = GET_METRIC (sl->metric);
219
220 if (metric == OSPF_LS_INFINITY)
221 return 0;
222
paul96735ee2003-08-10 02:51:22 +0000223 if (IS_LSA_MAXAGE (lsa))
paul718e3742002-12-13 20:15:29 +0000224 return 0;
225
paul96735ee2003-08-10 02:51:22 +0000226 if (ospf_lsa_is_self_originated (area->ospf, lsa))
paul718e3742002-12-13 20:15:29 +0000227 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 &&
paul96735ee2003-08-10 02:51:22 +0000240 (range = ospf_area_range_match_any (ospf, &p)) &&
paul718e3742002-12-13 20:15:29 +0000241 ospf_area_range_active (range))
242 return 0;
243
paul96735ee2003-08-10 02:51:22 +0000244 if (ospf->abr_type != OSPF_ABR_STAND &&
245 area->external_routing != OSPF_AREA_DEFAULT &&
paul718e3742002-12-13 20:15:29 +0000246 p.prefix.s_addr == OSPF_DEFAULT_DESTINATION &&
247 p.prefixlen == 0)
248 return 0; /* Ignore summary default from a stub area */
249
250 abr.family = AF_INET;
251 abr.prefix = sl->header.adv_router;
252 abr.prefixlen = IPV4_MAX_BITLEN;
253 apply_mask_ipv4 (&abr);
254
paul96735ee2003-08-10 02:51:22 +0000255 abr_or = ospf_find_abr_route (rtrs, &abr, area);
paul718e3742002-12-13 20:15:29 +0000256
257 if (abr_or == NULL)
258 return 0;
259
260 new_or = ospf_route_new ();
261 new_or->type = OSPF_DESTINATION_NETWORK;
262 new_or->id = sl->header.id;
263 new_or->mask = sl->mask;
264 new_or->u.std.options = sl->header.options;
265 new_or->u.std.origin = (struct lsa_header *) sl;
266 new_or->cost = abr_or->cost + metric;
paul96735ee2003-08-10 02:51:22 +0000267 new_or->u.std.area_id = area->area_id;
paul718e3742002-12-13 20:15:29 +0000268#ifdef HAVE_NSSA
paul96735ee2003-08-10 02:51:22 +0000269 new_or->u.std.external_routing = area->external_routing;
paul718e3742002-12-13 20:15:29 +0000270#endif /* HAVE_NSSA */
271 new_or->path_type = OSPF_PATH_INTER_AREA;
272
273 if (sl->header.type == OSPF_SUMMARY_LSA)
paul96735ee2003-08-10 02:51:22 +0000274 ospf_ia_network_route (ospf, rt, &p, new_or, abr_or);
paul718e3742002-12-13 20:15:29 +0000275 else
276 {
277 new_or->type = OSPF_DESTINATION_ROUTER;
278 new_or->u.std.flags = ROUTER_LSA_EXTERNAL;
paul96735ee2003-08-10 02:51:22 +0000279 ospf_ia_router_route (ospf, rtrs, &p, new_or, abr_or);
paul718e3742002-12-13 20:15:29 +0000280 }
281
282 return 0;
283}
284
285void
paul96735ee2003-08-10 02:51:22 +0000286ospf_examine_summaries (struct ospf_area *area,
paul718e3742002-12-13 20:15:29 +0000287 struct route_table *lsdb_rt,
288 struct route_table *rt,
289 struct route_table *rtrs)
290{
paul96735ee2003-08-10 02:51:22 +0000291 struct ospf_lsa *lsa;
292 struct route_node *rn;
293
294 LSDB_LOOP (lsdb_rt, rn, lsa)
295 process_summary_lsa (area, rt, rtrs, lsa);
paul718e3742002-12-13 20:15:29 +0000296}
297
298int
299ospf_area_is_transit (struct ospf_area *area)
300{
301 return (area->transit == OSPF_TRANSIT_TRUE) ||
302 ospf_full_virtual_nbrs(area); /* Cisco forgets to set the V-bit :( */
303}
304
305void
paul96735ee2003-08-10 02:51:22 +0000306ospf_update_network_route (struct ospf *ospf,
307 struct route_table *rt,
paul718e3742002-12-13 20:15:29 +0000308 struct route_table *rtrs,
309 struct summary_lsa *lsa,
310 struct prefix_ipv4 *p,
311 struct ospf_area *area)
312{
313 struct route_node *rn;
314 struct ospf_route *or, *abr_or, *new_or;
315 struct prefix_ipv4 abr;
316 u_int32_t cost;
317
318 abr.family = AF_INET;
319 abr.prefix =lsa->header.adv_router;
320 abr.prefixlen = IPV4_MAX_BITLEN;
321 apply_mask_ipv4 (&abr);
322
323 abr_or = ospf_find_abr_route (rtrs, &abr, area);
324
325 if (abr_or == NULL)
326 {
327 if (IS_DEBUG_OSPF_EVENT)
328 zlog_info ("ospf_update_network_route(): can't find a route to the ABR");
329 return;
330 }
331
332 cost = abr_or->cost + GET_METRIC (lsa->metric);
333
334 rn = route_node_lookup (rt, (struct prefix *) p);
335
336 if (! rn)
337 {
paul96735ee2003-08-10 02:51:22 +0000338 if (ospf->abr_type != OSPF_ABR_SHORTCUT)
paul718e3742002-12-13 20:15:29 +0000339 return; /* Standard ABR can update only already installed
340 backbone paths */
341 if (IS_DEBUG_OSPF_EVENT)
342 zlog_info ("ospf_update_network_route(): "
343 "Allowing Shortcut ABR to add new route");
344 new_or = ospf_route_new ();
345 new_or->type = OSPF_DESTINATION_NETWORK;
346 new_or->id = lsa->header.id;
347 new_or->mask = lsa->mask;
348 new_or->u.std.options = lsa->header.options;
349 new_or->u.std.origin = (struct lsa_header *) lsa;
350 new_or->cost = cost;
351 new_or->u.std.area_id = area->area_id;
352#ifdef HAVE_NSSA
353 new_or->u.std.external_routing = area->external_routing;
354#endif /* HAVE_NSSA */
355 new_or->path_type = OSPF_PATH_INTER_AREA;
356 ospf_route_add (rt, p, new_or, abr_or);
357
358 return;
359 }
360 else
361 {
362 route_unlock_node (rn);
363 if (rn->info == NULL)
364 return;
365 }
366
367 or = rn->info;
368
369 if (or->path_type != OSPF_PATH_INTRA_AREA &&
370 or->path_type != OSPF_PATH_INTER_AREA)
371 {
372 if (IS_DEBUG_OSPF_EVENT)
373 zlog_info ("ospf_update_network_route(): ERR: path type is wrong");
374 return;
375 }
376
paul96735ee2003-08-10 02:51:22 +0000377 if (ospf->abr_type == OSPF_ABR_SHORTCUT)
paul718e3742002-12-13 20:15:29 +0000378 {
379 if (or->path_type == OSPF_PATH_INTRA_AREA &&
380 !OSPF_IS_AREA_ID_BACKBONE (or->u.std.area_id))
381 {
382 if (IS_DEBUG_OSPF_EVENT)
383 zlog_info ("ospf_update_network_route(): Shortcut: "
384 "this intra-area path is not backbone");
385 return;
386 }
387 }
388 else /* Not Shortcut ABR */
389 {
390 if (!OSPF_IS_AREA_ID_BACKBONE (or->u.std.area_id))
391 {
392 if (IS_DEBUG_OSPF_EVENT)
393 zlog_info ("ospf_update_network_route(): "
394 "route is not BB-associated");
395 return; /* We can update only BB routes */
396 }
397 }
398
399 if (or->cost < cost)
400 {
401 if (IS_DEBUG_OSPF_EVENT)
402 zlog_info ("ospf_update_network_route(): new route is worse");
403 return;
404 }
405
406 if (or->cost == cost)
407 {
408 if (IS_DEBUG_OSPF_EVENT)
409 zlog_info ("ospf_update_network_route(): "
410 "new route is same distance, adding nexthops");
paul96735ee2003-08-10 02:51:22 +0000411 ospf_route_copy_nexthops (or, abr_or->paths);
paul718e3742002-12-13 20:15:29 +0000412 }
413
414 if (or->cost > cost)
415 {
416 if (IS_DEBUG_OSPF_EVENT)
417 zlog_info ("ospf_update_network_route(): "
418 "new route is better, overriding nexthops");
paul96735ee2003-08-10 02:51:22 +0000419 ospf_route_subst_nexthops (or, abr_or->paths);
paul718e3742002-12-13 20:15:29 +0000420 or->cost = cost;
421
paul96735ee2003-08-10 02:51:22 +0000422 if ((ospf->abr_type == OSPF_ABR_SHORTCUT) &&
paul718e3742002-12-13 20:15:29 +0000423 !OSPF_IS_AREA_ID_BACKBONE (or->u.std.area_id))
424 {
425 or->path_type = OSPF_PATH_INTER_AREA;
426 or->u.std.area_id = area->area_id;
427#ifdef HAVE_NSSA
428 or->u.std.external_routing = area->external_routing;
429#endif /* HAVE_NSSA */
430 /* Note that we can do this only in Shortcut ABR mode,
431 because standard ABR must leave the route type and area
432 unchanged
433 */
434 }
435 }
436}
437
438void
paul96735ee2003-08-10 02:51:22 +0000439ospf_update_router_route (struct ospf *ospf,
440 struct route_table *rtrs,
paul718e3742002-12-13 20:15:29 +0000441 struct summary_lsa *lsa,
442 struct prefix_ipv4 *p,
443 struct ospf_area *area)
444{
445 struct ospf_route *or, *abr_or, *new_or;
446 struct prefix_ipv4 abr;
447 u_int32_t cost;
448
449 abr.family = AF_INET;
450 abr.prefix = lsa->header.adv_router;
451 abr.prefixlen = IPV4_MAX_BITLEN;
452 apply_mask_ipv4 (&abr);
453
454 abr_or = ospf_find_abr_route (rtrs, &abr, area);
455
456 if (abr_or == NULL)
457 {
458 if (IS_DEBUG_OSPF_EVENT)
459 zlog_info ("ospf_update_router_route(): can't find a route to the ABR");
460 return;
461 }
462
463 cost = abr_or->cost + GET_METRIC (lsa->metric);
464
465 /* First try to find a backbone path,
466 because standard ABR can update only BB-associated paths */
467
paul96735ee2003-08-10 02:51:22 +0000468 if ((ospf->backbone == NULL) &&
469 (ospf->abr_type != OSPF_ABR_SHORTCUT))
paul718e3742002-12-13 20:15:29 +0000470
471 /* no BB area, not Shortcut ABR, exiting */
472 return;
473
paul96735ee2003-08-10 02:51:22 +0000474 or = ospf_find_asbr_route_through_area (rtrs, p, ospf->backbone);
paul718e3742002-12-13 20:15:29 +0000475
476 if (or == NULL)
477 {
paul96735ee2003-08-10 02:51:22 +0000478 if (ospf->abr_type != OSPF_ABR_SHORTCUT)
paul718e3742002-12-13 20:15:29 +0000479
480 /* route to ASBR through the BB not found
481 the router is not Shortcut ABR, exiting */
482
483 return;
484 else
485 /* We're a Shortcut ABR*/
486 {
487 /* Let it either add a new router or update the route
488 through the same (non-BB) area. */
489
490 new_or = ospf_route_new ();
491 new_or->type = OSPF_DESTINATION_ROUTER;
492 new_or->id = lsa->header.id;
493 new_or->mask = lsa->mask;
494 new_or->u.std.options = lsa->header.options;
495 new_or->u.std.origin = (struct lsa_header *)lsa;
496 new_or->cost = cost;
497 new_or->u.std.area_id = area->area_id;
498#ifdef HAVE_NSSA
499 new_or->u.std.external_routing = area->external_routing;
500#endif /* HAVE_NSSA */
501 new_or->path_type = OSPF_PATH_INTER_AREA;
502 new_or->u.std.flags = ROUTER_LSA_EXTERNAL;
paul96735ee2003-08-10 02:51:22 +0000503 ospf_ia_router_route (ospf, rtrs, p, new_or, abr_or);
paul718e3742002-12-13 20:15:29 +0000504
505 return;
506 }
507 }
508
509 /* At this point the "or" is always bb-associated */
510
511 if (!(or->u.std.flags & ROUTER_LSA_EXTERNAL))
512 {
513 if (IS_DEBUG_OSPF_EVENT)
514 zlog_info ("ospf_upd_router_route(): the remote router is not an ASBR");
515 return;
516 }
517
518 if (or->path_type != OSPF_PATH_INTRA_AREA &&
519 or->path_type != OSPF_PATH_INTER_AREA)
520 return;
521
522 if (or->cost < cost)
523 return;
524
525 else if (or->cost == cost)
paul96735ee2003-08-10 02:51:22 +0000526 ospf_route_copy_nexthops (or, abr_or->paths);
paul718e3742002-12-13 20:15:29 +0000527
528 else if (or->cost > cost)
529 {
paul96735ee2003-08-10 02:51:22 +0000530 ospf_route_subst_nexthops (or, abr_or->paths);
paul718e3742002-12-13 20:15:29 +0000531 or->cost = cost;
532
533 /* Even if the ABR runs in Shortcut mode, we can't change
534 the path type and area, because the "or" is always bb-associated
535 at this point and even Shortcut ABR can't change these attributes */
536 }
537}
538
539int
paul96735ee2003-08-10 02:51:22 +0000540process_transit_summary_lsa (struct ospf_area *area, struct route_table *rt,
541 struct route_table *rtrs, struct ospf_lsa *lsa)
paul718e3742002-12-13 20:15:29 +0000542{
paul96735ee2003-08-10 02:51:22 +0000543 struct ospf *ospf = area->ospf;
paul718e3742002-12-13 20:15:29 +0000544 struct summary_lsa *sl;
545 struct prefix_ipv4 p;
546 u_int32_t metric;
paul718e3742002-12-13 20:15:29 +0000547
paul96735ee2003-08-10 02:51:22 +0000548 if (lsa == NULL)
paul718e3742002-12-13 20:15:29 +0000549 return 0;
550
paul96735ee2003-08-10 02:51:22 +0000551 sl = (struct summary_lsa *) lsa->data;
paul718e3742002-12-13 20:15:29 +0000552
553 if (IS_DEBUG_OSPF_EVENT)
554 zlog_info ("process_transit_summaries(): LS ID: %s",
paul96735ee2003-08-10 02:51:22 +0000555 inet_ntoa (lsa->data->id));
paul718e3742002-12-13 20:15:29 +0000556 metric = GET_METRIC (sl->metric);
557
558 if (metric == OSPF_LS_INFINITY)
559 {
560 if (IS_DEBUG_OSPF_EVENT)
561 zlog_info ("process_transit_summaries(): metric is infinity, skip");
562 return 0;
563 }
564
paul96735ee2003-08-10 02:51:22 +0000565 if (IS_LSA_MAXAGE (lsa))
paul718e3742002-12-13 20:15:29 +0000566 {
567 if (IS_DEBUG_OSPF_EVENT)
568 zlog_info ("process_transit_summaries(): This LSA is too old");
569 return 0;
570 }
571
paul96735ee2003-08-10 02:51:22 +0000572 if (ospf_lsa_is_self_originated (area->ospf, lsa))
paul718e3742002-12-13 20:15:29 +0000573 {
574 if (IS_DEBUG_OSPF_EVENT)
575 zlog_info ("process_transit_summaries(): This LSA is mine, skip");
576 return 0;
577 }
578
579 p.family = AF_INET;
580 p.prefix = sl->header.id;
581
582 if (sl->header.type == OSPF_SUMMARY_LSA)
583 p.prefixlen = ip_masklen (sl->mask);
584 else
585 p.prefixlen = IPV4_MAX_BITLEN;
586
587 apply_mask_ipv4 (&p);
588
589 if (sl->header.type == OSPF_SUMMARY_LSA)
paul96735ee2003-08-10 02:51:22 +0000590 ospf_update_network_route (ospf, rt, rtrs, sl, &p, area);
paul718e3742002-12-13 20:15:29 +0000591 else
paul96735ee2003-08-10 02:51:22 +0000592 ospf_update_router_route (ospf, rtrs, sl, &p, area);
paul718e3742002-12-13 20:15:29 +0000593
594 return 0;
595}
596
597void
598ospf_examine_transit_summaries (struct ospf_area *area,
paul718e3742002-12-13 20:15:29 +0000599 struct route_table *lsdb_rt,
600 struct route_table *rt,
601 struct route_table *rtrs)
602{
paul96735ee2003-08-10 02:51:22 +0000603 struct ospf_lsa *lsa;
604 struct route_node *rn;
paul718e3742002-12-13 20:15:29 +0000605
paul96735ee2003-08-10 02:51:22 +0000606 LSDB_LOOP (lsdb_rt, rn, lsa)
607 process_transit_summary_lsa (area, rt, rtrs, lsa);
paul718e3742002-12-13 20:15:29 +0000608}
609
610void
paul96735ee2003-08-10 02:51:22 +0000611ospf_ia_routing (struct ospf *ospf,
612 struct route_table *rt,
paul718e3742002-12-13 20:15:29 +0000613 struct route_table *rtrs)
614{
615 struct ospf_area * area;
616
617 if (IS_DEBUG_OSPF_EVENT)
618 zlog_info ("ospf_ia_routing():start");
619
paul96735ee2003-08-10 02:51:22 +0000620 if (IS_OSPF_ABR (ospf))
paul718e3742002-12-13 20:15:29 +0000621 {
622 listnode node;
623 struct ospf_area *area;
624
paul96735ee2003-08-10 02:51:22 +0000625 switch (ospf->abr_type)
paul718e3742002-12-13 20:15:29 +0000626 {
627 case OSPF_ABR_STAND:
628 if (IS_DEBUG_OSPF_EVENT)
629 zlog_info ("ospf_ia_routing():Standard ABR");
630
paul96735ee2003-08-10 02:51:22 +0000631 if ((area = ospf->backbone))
paul718e3742002-12-13 20:15:29 +0000632 {
633 listnode node;
634
635 if (IS_DEBUG_OSPF_EVENT)
636 {
637 zlog_info ("ospf_ia_routing():backbone area found");
638 zlog_info ("ospf_ia_routing():examining summaries");
639 }
640
641 OSPF_EXAMINE_SUMMARIES_ALL (area, rt, rtrs);
642
paul96735ee2003-08-10 02:51:22 +0000643 for (node = listhead (ospf->areas); node; nextnode (node))
paul718e3742002-12-13 20:15:29 +0000644 if ((area = getdata (node)) != NULL)
paul96735ee2003-08-10 02:51:22 +0000645 if (area != ospf->backbone)
paul718e3742002-12-13 20:15:29 +0000646 if (ospf_area_is_transit (area))
647 OSPF_EXAMINE_TRANSIT_SUMMARIES_ALL (area, rt, rtrs);
648 }
649 else
650 if (IS_DEBUG_OSPF_EVENT)
651 zlog_info ("ospf_ia_routing():backbone area NOT found");
652 break;
653 case OSPF_ABR_IBM:
654 case OSPF_ABR_CISCO:
655 if (IS_DEBUG_OSPF_EVENT)
656 zlog_info ("ospf_ia_routing():Alternative Cisco/IBM ABR");
paul96735ee2003-08-10 02:51:22 +0000657 area = ospf->backbone; /* Find the BB */
paul718e3742002-12-13 20:15:29 +0000658
659 /* If we have an active BB connection */
paul96735ee2003-08-10 02:51:22 +0000660 if (area && ospf_act_bb_connection (ospf))
paul718e3742002-12-13 20:15:29 +0000661 {
662 if (IS_DEBUG_OSPF_EVENT)
663 {
664 zlog_info ("ospf_ia_routing(): backbone area found");
665 zlog_info ("ospf_ia_routing(): examining BB summaries");
666 }
667
668 OSPF_EXAMINE_SUMMARIES_ALL (area, rt, rtrs);
669
paul96735ee2003-08-10 02:51:22 +0000670 for (node = listhead (ospf->areas); node; nextnode (node))
paul718e3742002-12-13 20:15:29 +0000671 if ((area = getdata (node)) != NULL)
paul96735ee2003-08-10 02:51:22 +0000672 if (area != ospf->backbone)
paul718e3742002-12-13 20:15:29 +0000673 if (ospf_area_is_transit (area))
674 OSPF_EXAMINE_TRANSIT_SUMMARIES_ALL (area, rt, rtrs);
675 }
676 else
677 { /* No active BB connection--consider all areas */
678 if (IS_DEBUG_OSPF_EVENT)
679 zlog_info ("ospf_ia_routing(): "
680 "Active BB connection not found");
paul96735ee2003-08-10 02:51:22 +0000681 for (node = listhead (ospf->areas); node; nextnode (node))
paul718e3742002-12-13 20:15:29 +0000682 if ((area = getdata (node)) != NULL)
683 OSPF_EXAMINE_SUMMARIES_ALL (area, rt, rtrs);
684 }
685 break;
686 case OSPF_ABR_SHORTCUT:
687 if (IS_DEBUG_OSPF_EVENT)
688 zlog_info ("ospf_ia_routing():Alternative Shortcut");
paul96735ee2003-08-10 02:51:22 +0000689 area = ospf->backbone; /* Find the BB */
paul718e3742002-12-13 20:15:29 +0000690
691 /* If we have an active BB connection */
paul96735ee2003-08-10 02:51:22 +0000692 if (area && ospf_act_bb_connection (ospf))
paul718e3742002-12-13 20:15:29 +0000693 {
694 if (IS_DEBUG_OSPF_EVENT)
695 {
696 zlog_info ("ospf_ia_routing(): backbone area found");
697 zlog_info ("ospf_ia_routing(): examining BB summaries");
698 }
699 OSPF_EXAMINE_SUMMARIES_ALL (area, rt, rtrs);
700 }
701
paul96735ee2003-08-10 02:51:22 +0000702 for (node = listhead (ospf->areas); node; nextnode (node))
paul718e3742002-12-13 20:15:29 +0000703 if ((area = getdata (node)) != NULL)
paul96735ee2003-08-10 02:51:22 +0000704 if (area != ospf->backbone)
paul718e3742002-12-13 20:15:29 +0000705 if (ospf_area_is_transit (area) ||
706 ((area->shortcut_configured != OSPF_SHORTCUT_DISABLE) &&
paul96735ee2003-08-10 02:51:22 +0000707 ((ospf->backbone == NULL) ||
paul718e3742002-12-13 20:15:29 +0000708 ((area->shortcut_configured == OSPF_SHORTCUT_ENABLE) &&
709 area->shortcut_capability))))
710 OSPF_EXAMINE_TRANSIT_SUMMARIES_ALL (area, rt, rtrs);
711 break;
712 default:
713 break;
714 }
715 }
716 else
717 {
718 listnode node;
719
720 if (IS_DEBUG_OSPF_EVENT)
721 zlog_info ("ospf_ia_routing():not ABR, considering all areas");
722
paul96735ee2003-08-10 02:51:22 +0000723 for (node = listhead (ospf->areas); node; nextnode (node))
paul718e3742002-12-13 20:15:29 +0000724 if ((area = getdata (node)) != NULL)
725 OSPF_EXAMINE_SUMMARIES_ALL (area, rt, rtrs);
726 }
727}