blob: 2d47efec1305f5ba9222eab335c9bc7369b6fdba [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/*
2 * OSPF ABR functions.
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 "linklist.h"
29#include "prefix.h"
30#include "if.h"
31#include "table.h"
32#include "vty.h"
33#include "filter.h"
34#include "plist.h"
35#include "log.h"
36
37#include "ospfd/ospfd.h"
38#include "ospfd/ospf_interface.h"
39#include "ospfd/ospf_ism.h"
40#include "ospfd/ospf_asbr.h"
41#include "ospfd/ospf_lsa.h"
42#include "ospfd/ospf_lsdb.h"
43#include "ospfd/ospf_neighbor.h"
44#include "ospfd/ospf_nsm.h"
45#include "ospfd/ospf_spf.h"
46#include "ospfd/ospf_route.h"
47#include "ospfd/ospf_ia.h"
48#include "ospfd/ospf_flood.h"
49#include "ospfd/ospf_abr.h"
50#include "ospfd/ospf_ase.h"
51#include "ospfd/ospf_zebra.h"
52#include "ospfd/ospf_dump.h"
paul718e3742002-12-13 20:15:29 +000053
paul4dadc292005-05-06 21:37:42 +000054static struct ospf_area_range *
paul718e3742002-12-13 20:15:29 +000055ospf_area_range_new (struct prefix_ipv4 *p)
56{
57 struct ospf_area_range *range;
58
59 range = XCALLOC (MTYPE_OSPF_AREA_RANGE, sizeof (struct ospf_area_range));
60 range->addr = p->prefix;
61 range->masklen = p->prefixlen;
62 range->cost_config = OSPF_AREA_RANGE_COST_UNSPEC;
63
64 return range;
65}
66
paul4dadc292005-05-06 21:37:42 +000067static void
paul718e3742002-12-13 20:15:29 +000068ospf_area_range_free (struct ospf_area_range *range)
69{
70 XFREE (MTYPE_OSPF_AREA_RANGE, range);
71}
72
paul4dadc292005-05-06 21:37:42 +000073static void
paul718e3742002-12-13 20:15:29 +000074ospf_area_range_add (struct ospf_area *area, struct ospf_area_range *range)
75{
76 struct route_node *rn;
77 struct prefix_ipv4 p;
78
79 p.family = AF_INET;
80 p.prefixlen = range->masklen;
81 p.prefix = range->addr;
82
83 rn = route_node_get (area->ranges, (struct prefix *)&p);
84 if (rn->info)
85 route_unlock_node (rn);
86 else
87 rn->info = range;
88}
89
paul4dadc292005-05-06 21:37:42 +000090static void
paul718e3742002-12-13 20:15:29 +000091ospf_area_range_delete (struct ospf_area *area, struct ospf_area_range *range)
92{
93 struct route_node *rn;
94 struct prefix_ipv4 p;
95
96 p.family = AF_INET;
97 p.prefixlen = range->masklen;
98 p.prefix = range->addr;
99
100 rn = route_node_lookup (area->ranges, (struct prefix *)&p);
101 if (rn)
102 {
103 ospf_area_range_free (rn->info);
104 rn->info = NULL;
105 route_unlock_node (rn);
106 route_unlock_node (rn);
107 }
108}
109
110struct ospf_area_range *
111ospf_area_range_lookup (struct ospf_area *area, struct prefix_ipv4 *p)
112{
113 struct route_node *rn;
114
115 rn = route_node_lookup (area->ranges, (struct prefix *)p);
116 if (rn)
117 {
118 route_unlock_node (rn);
119 return rn->info;
120 }
121 return NULL;
122}
123
124struct ospf_area_range *
pauld4a53d52003-07-12 21:30:57 +0000125ospf_area_range_lookup_next (struct ospf_area *area,
126 struct in_addr *range_net,
127 int first)
paul718e3742002-12-13 20:15:29 +0000128{
129 struct route_node *rn;
130 struct prefix_ipv4 p;
131 struct ospf_area_range *find;
132
133 p.family = AF_INET;
134 p.prefixlen = IPV4_MAX_BITLEN;
135 p.prefix = *range_net;
136
137 if (first)
138 rn = route_top (area->ranges);
139 else
140 {
141 rn = route_node_get (area->ranges, (struct prefix *) &p);
142 rn = route_next (rn);
143 }
144
145 for (; rn; rn = route_next (rn))
146 if (rn->info)
147 break;
148
149 if (rn && rn->info)
150 {
151 find = rn->info;
152 *range_net = rn->p.u.prefix4;
153 route_unlock_node (rn);
154 return find;
155 }
156 return NULL;
157}
158
paul4dadc292005-05-06 21:37:42 +0000159static struct ospf_area_range *
paul718e3742002-12-13 20:15:29 +0000160ospf_area_range_match (struct ospf_area *area, struct prefix_ipv4 *p)
161{
162 struct route_node *node;
163
164 node = route_node_match (area->ranges, (struct prefix *) p);
165 if (node)
166 {
167 route_unlock_node (node);
168 return node->info;
169 }
170 return NULL;
171}
172
173struct ospf_area_range *
174ospf_area_range_match_any (struct ospf *ospf, struct prefix_ipv4 *p)
175{
176 struct ospf_area_range *range;
paul1eb8ef22005-04-07 07:30:20 +0000177 struct ospf_area *area;
hasso52dc7ee2004-09-23 19:18:23 +0000178 struct listnode *node;
paul718e3742002-12-13 20:15:29 +0000179
paul1eb8ef22005-04-07 07:30:20 +0000180 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
181 if ((range = ospf_area_range_match (area, p)))
paul718e3742002-12-13 20:15:29 +0000182 return range;
183
184 return NULL;
185}
186
187int
188ospf_area_range_active (struct ospf_area_range *range)
189{
190 return range->specifics;
191}
192
paul4dadc292005-05-06 21:37:42 +0000193static int
paul718e3742002-12-13 20:15:29 +0000194ospf_area_actively_attached (struct ospf_area *area)
195{
196 return area->act_ints;
197}
198
199int
200ospf_area_range_set (struct ospf *ospf, struct in_addr area_id,
201 struct prefix_ipv4 *p, int advertise)
202{
203 struct ospf_area *area;
204 struct ospf_area_range *range;
paul147193a2003-04-19 00:31:59 +0000205 int ret = OSPF_AREA_ID_FORMAT_ADDRESS;
paul718e3742002-12-13 20:15:29 +0000206
paul147193a2003-04-19 00:31:59 +0000207 area = ospf_area_get (ospf, area_id, ret);
paul718e3742002-12-13 20:15:29 +0000208 if (area == NULL)
209 return 0;
210
211 range = ospf_area_range_lookup (area, p);
212 if (range != NULL)
213 {
214 if ((CHECK_FLAG (range->flags, OSPF_AREA_RANGE_ADVERTISE)
215 && !CHECK_FLAG (advertise, OSPF_AREA_RANGE_ADVERTISE))
216 || (!CHECK_FLAG (range->flags, OSPF_AREA_RANGE_ADVERTISE)
217 && CHECK_FLAG (advertise, OSPF_AREA_RANGE_ADVERTISE)))
paul147193a2003-04-19 00:31:59 +0000218 ospf_schedule_abr_task (ospf);
paul718e3742002-12-13 20:15:29 +0000219 }
220 else
221 {
222 range = ospf_area_range_new (p);
223 ospf_area_range_add (area, range);
paul147193a2003-04-19 00:31:59 +0000224 ospf_schedule_abr_task (ospf);
paul718e3742002-12-13 20:15:29 +0000225 }
226
227 if (CHECK_FLAG (advertise, OSPF_AREA_RANGE_ADVERTISE))
228 SET_FLAG (range->flags, OSPF_AREA_RANGE_ADVERTISE);
229 else
230 UNSET_FLAG (range->flags, OSPF_AREA_RANGE_ADVERTISE);
231
232 return 1;
233}
234
235int
236ospf_area_range_cost_set (struct ospf *ospf, struct in_addr area_id,
237 struct prefix_ipv4 *p, u_int32_t cost)
238{
239 struct ospf_area *area;
240 struct ospf_area_range *range;
paul147193a2003-04-19 00:31:59 +0000241 int ret = OSPF_AREA_ID_FORMAT_ADDRESS;
paul718e3742002-12-13 20:15:29 +0000242
paul147193a2003-04-19 00:31:59 +0000243 area = ospf_area_get (ospf, area_id, ret);
paul718e3742002-12-13 20:15:29 +0000244 if (area == NULL)
245 return 0;
246
247 range = ospf_area_range_new (p);
248 if (range == NULL)
249 return 0;
250
251 if (range->cost_config != cost)
252 {
253 range->cost_config = cost;
254 if (ospf_area_range_active (range))
paul147193a2003-04-19 00:31:59 +0000255 ospf_schedule_abr_task (ospf);
paul718e3742002-12-13 20:15:29 +0000256 }
257
258 return 1;
259}
260
261int
262ospf_area_range_unset (struct ospf *ospf, struct in_addr area_id,
263 struct prefix_ipv4 *p)
264{
265 struct ospf_area *area;
266 struct ospf_area_range *range;
267
paul147193a2003-04-19 00:31:59 +0000268 area = ospf_area_lookup_by_area_id (ospf, area_id);
paul718e3742002-12-13 20:15:29 +0000269 if (area == NULL)
270 return 0;
271
272 range = ospf_area_range_lookup (area, p);
273 if (range == NULL)
274 return 0;
275
276 if (ospf_area_range_active (range))
paul147193a2003-04-19 00:31:59 +0000277 ospf_schedule_abr_task (ospf);
paul718e3742002-12-13 20:15:29 +0000278
279 ospf_area_range_delete (area, range);
280
281 return 1;
282}
283
284int
285ospf_area_range_substitute_set (struct ospf *ospf, struct in_addr area_id,
286 struct prefix_ipv4 *p, struct prefix_ipv4 *s)
287{
288 struct ospf_area *area;
289 struct ospf_area_range *range;
paul147193a2003-04-19 00:31:59 +0000290 int ret = OSPF_AREA_ID_FORMAT_ADDRESS;
paul718e3742002-12-13 20:15:29 +0000291
paul147193a2003-04-19 00:31:59 +0000292 area = ospf_area_get (ospf, area_id, ret);
paul718e3742002-12-13 20:15:29 +0000293 range = ospf_area_range_lookup (area, p);
294
295 if (range != NULL)
296 {
297 if (!CHECK_FLAG (range->flags, OSPF_AREA_RANGE_ADVERTISE) ||
298 !CHECK_FLAG (range->flags, OSPF_AREA_RANGE_SUBSTITUTE))
paul147193a2003-04-19 00:31:59 +0000299 ospf_schedule_abr_task (ospf);
paul718e3742002-12-13 20:15:29 +0000300 }
301 else
302 {
303 range = ospf_area_range_new (p);
304 ospf_area_range_add (area, range);
paul147193a2003-04-19 00:31:59 +0000305 ospf_schedule_abr_task (ospf);
paul718e3742002-12-13 20:15:29 +0000306 }
307
308 SET_FLAG (range->flags, OSPF_AREA_RANGE_ADVERTISE);
309 SET_FLAG (range->flags, OSPF_AREA_RANGE_SUBSTITUTE);
310 range->subst_addr = s->prefix;
311 range->subst_masklen = s->prefixlen;
312
313 return 1;
314}
315
316int
317ospf_area_range_substitute_unset (struct ospf *ospf, struct in_addr area_id,
318 struct prefix_ipv4 *p)
319{
320 struct ospf_area *area;
321 struct ospf_area_range *range;
322
paul147193a2003-04-19 00:31:59 +0000323 area = ospf_area_lookup_by_area_id (ospf, area_id);
paul718e3742002-12-13 20:15:29 +0000324 if (area == NULL)
325 return 0;
326
327 range = ospf_area_range_lookup (area, p);
328 if (range == NULL)
329 return 0;
330
331 if (CHECK_FLAG (range->flags, OSPF_AREA_RANGE_SUBSTITUTE))
332 if (ospf_area_range_active (range))
paul147193a2003-04-19 00:31:59 +0000333 ospf_schedule_abr_task (ospf);
paul718e3742002-12-13 20:15:29 +0000334
335 UNSET_FLAG (range->flags, OSPF_AREA_RANGE_SUBSTITUTE);
336 range->subst_addr.s_addr = 0;
337 range->subst_masklen = 0;
338
339 return 1;
340}
341
342int
paul147193a2003-04-19 00:31:59 +0000343ospf_act_bb_connection (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +0000344{
paul147193a2003-04-19 00:31:59 +0000345 if (ospf->backbone == NULL)
paul718e3742002-12-13 20:15:29 +0000346 return 0;
347
paul147193a2003-04-19 00:31:59 +0000348 return ospf->backbone->full_nbrs;
paul718e3742002-12-13 20:15:29 +0000349}
350
paule2c6c152003-06-22 08:49:25 +0000351/* Determine whether this router is elected translator or not for area */
paul4dadc292005-05-06 21:37:42 +0000352static int
paule2c6c152003-06-22 08:49:25 +0000353ospf_abr_nssa_am_elected (struct ospf_area *area)
354{
355 struct route_node *rn;
356 struct ospf_lsa *lsa;
357 struct router_lsa *rlsa;
358 struct in_addr *best = NULL;
359
360 LSDB_LOOP ( ROUTER_LSDB (area), rn, lsa)
361 {
362 /* sanity checks */
363 if (!lsa
364 || (lsa->data->type != OSPF_ROUTER_LSA)
365 || IS_LSA_SELF (lsa))
366 continue;
367
368 rlsa = (struct router_lsa *) lsa->data;
369
370 /* ignore non-ABR routers */
371 if (!IS_ROUTER_LSA_BORDER (rlsa))
372 continue;
373
374 /* Router has Nt flag - always translate */
375 if (IS_ROUTER_LSA_NT (rlsa))
376 {
377 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +0000378 zlog_debug ("ospf_abr_nssa_am_elected: "
paule2c6c152003-06-22 08:49:25 +0000379 "router %s asserts Nt",
380 inet_ntoa (lsa->data->id) );
381 return 0;
382 }
383
384 if (best == NULL)
385 best = &lsa->data->id;
386 else
387 if ( IPV4_ADDR_CMP (&best, &lsa->data->id) < 0)
388 best = &lsa->data->id;
389 }
390
391 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +0000392 zlog_debug ("ospf_abr_nssa_am_elected: best electable ABR is: %s",
paule2c6c152003-06-22 08:49:25 +0000393 (best) ? inet_ntoa (*best) : "<none>" );
394
395 if (best == NULL)
396 return 1;
397
398 if ( IPV4_ADDR_CMP (&best, &area->ospf->router_id) < 0)
399 return 1;
400 else
401 return 0;
402}
403
404/* Check NSSA ABR status
405 * assumes there are nssa areas
406 */
paul4dadc292005-05-06 21:37:42 +0000407static void
paule2c6c152003-06-22 08:49:25 +0000408ospf_abr_nssa_check_status (struct ospf *ospf)
409{
410 struct ospf_area *area;
paul1eb8ef22005-04-07 07:30:20 +0000411 struct listnode *lnode, *nnode;
paule2c6c152003-06-22 08:49:25 +0000412
paul1eb8ef22005-04-07 07:30:20 +0000413 for (ALL_LIST_ELEMENTS (ospf->areas, lnode, nnode, area))
paule2c6c152003-06-22 08:49:25 +0000414 {
415
416 if (area->external_routing != OSPF_AREA_NSSA)
417 continue;
418
419 if (IS_DEBUG_OSPF (nssa, NSSA))
ajse84cc642004-12-08 17:28:56 +0000420 zlog_debug ("ospf_abr_nssa_check_status: "
paule2c6c152003-06-22 08:49:25 +0000421 "checking area %s",
422 inet_ntoa (area->area_id));
423
424 if (!IS_OSPF_ABR (area->ospf))
425 {
426 if (IS_DEBUG_OSPF (nssa, NSSA))
ajse84cc642004-12-08 17:28:56 +0000427 zlog_debug ("ospf_abr_nssa_check_status: "
428 "not ABR");
pauld4a53d52003-07-12 21:30:57 +0000429 area->NSSATranslatorState = OSPF_NSSA_TRANSLATE_DISABLED;
paule2c6c152003-06-22 08:49:25 +0000430 continue;
431 }
432
433 switch (area->NSSATranslatorRole)
434 {
435 case OSPF_NSSA_ROLE_NEVER:
436 /* We never Translate Type-7 LSA. */
437 /* TODO: check previous state and flush? */
438 if (IS_DEBUG_OSPF (nssa, NSSA))
ajse84cc642004-12-08 17:28:56 +0000439 zlog_debug ("ospf_abr_nssa_check_status: "
440 "never translate");
pauld4a53d52003-07-12 21:30:57 +0000441 area->NSSATranslatorState = OSPF_NSSA_TRANSLATE_DISABLED;
paule2c6c152003-06-22 08:49:25 +0000442 continue;
443
444 case OSPF_NSSA_ROLE_ALWAYS:
445 /* We always translate if we are an ABR
446 * TODO: originate new LSAs if state change?
447 * or let the nssa abr task take care of it?
448 */
449 if (IS_DEBUG_OSPF (nssa, NSSA))
ajse84cc642004-12-08 17:28:56 +0000450 zlog_debug ("ospf_abr_nssa_check_status: "
451 "translate always");
pauld4a53d52003-07-12 21:30:57 +0000452 area->NSSATranslatorState = OSPF_NSSA_TRANSLATE_ENABLED;
paule2c6c152003-06-22 08:49:25 +0000453 continue;
454
455 case OSPF_NSSA_ROLE_CANDIDATE:
456 /* We are a candidate for Translation */
457 if (ospf_abr_nssa_am_elected (area) > 0 )
458 {
pauld4a53d52003-07-12 21:30:57 +0000459 area->NSSATranslatorState = OSPF_NSSA_TRANSLATE_ENABLED;
paule2c6c152003-06-22 08:49:25 +0000460 if (IS_DEBUG_OSPF (nssa, NSSA))
ajse84cc642004-12-08 17:28:56 +0000461 zlog_debug ("ospf_abr_nssa_check_status: "
462 "elected translator");
paule2c6c152003-06-22 08:49:25 +0000463 }
464 else
465 {
pauld4a53d52003-07-12 21:30:57 +0000466 area->NSSATranslatorState = OSPF_NSSA_TRANSLATE_DISABLED;
paule2c6c152003-06-22 08:49:25 +0000467 if (IS_DEBUG_OSPF (nssa, NSSA))
ajse84cc642004-12-08 17:28:56 +0000468 zlog_debug ("ospf_abr_nssa_check_status: "
469 "not elected");
paule2c6c152003-06-22 08:49:25 +0000470 }
471 continue;
472 }
473 }
474}
paule2c6c152003-06-22 08:49:25 +0000475
paul718e3742002-12-13 20:15:29 +0000476/* Check area border router status. */
477void
paul147193a2003-04-19 00:31:59 +0000478ospf_check_abr_status (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +0000479{
480 struct ospf_area *area;
paul1eb8ef22005-04-07 07:30:20 +0000481 struct listnode *node, *nnode;
paul718e3742002-12-13 20:15:29 +0000482 int bb_configured = 0;
483 int bb_act_attached = 0;
484 int areas_configured = 0;
485 int areas_act_attached = 0;
paul147193a2003-04-19 00:31:59 +0000486 u_char new_flags = ospf->flags;
paul718e3742002-12-13 20:15:29 +0000487
488 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000489 zlog_debug ("ospf_check_abr_status(): Start");
paul718e3742002-12-13 20:15:29 +0000490
paul1eb8ef22005-04-07 07:30:20 +0000491 for (ALL_LIST_ELEMENTS (ospf->areas, node, nnode, area))
paul718e3742002-12-13 20:15:29 +0000492 {
paul718e3742002-12-13 20:15:29 +0000493 if (listcount (area->oiflist))
494 {
495 areas_configured++;
496
497 if (OSPF_IS_AREA_BACKBONE (area))
498 bb_configured = 1;
499 }
500
501 if (ospf_area_actively_attached (area))
502 {
503 areas_act_attached++;
504
505 if (OSPF_IS_AREA_BACKBONE (area))
506 bb_act_attached = 1;
507 }
508 }
509
510 if (IS_DEBUG_OSPF_EVENT)
511 {
ajse84cc642004-12-08 17:28:56 +0000512 zlog_debug ("ospf_check_abr_status(): looked through areas");
513 zlog_debug ("ospf_check_abr_status(): bb_configured: %d", bb_configured);
514 zlog_debug ("ospf_check_abr_status(): bb_act_attached: %d",
paul718e3742002-12-13 20:15:29 +0000515 bb_act_attached);
ajse84cc642004-12-08 17:28:56 +0000516 zlog_debug ("ospf_check_abr_status(): areas_configured: %d",
paul718e3742002-12-13 20:15:29 +0000517 areas_configured);
ajse84cc642004-12-08 17:28:56 +0000518 zlog_debug ("ospf_check_abr_status(): areas_act_attached: %d",
paul718e3742002-12-13 20:15:29 +0000519 areas_act_attached);
520 }
521
paul147193a2003-04-19 00:31:59 +0000522 switch (ospf->abr_type)
paul718e3742002-12-13 20:15:29 +0000523 {
524 case OSPF_ABR_SHORTCUT:
525 case OSPF_ABR_STAND:
526 if (areas_act_attached > 1)
527 SET_FLAG (new_flags, OSPF_FLAG_ABR);
528 else
529 UNSET_FLAG (new_flags, OSPF_FLAG_ABR);
530 break;
531
532 case OSPF_ABR_IBM:
533 if ((areas_act_attached > 1) && bb_configured)
534 SET_FLAG (new_flags, OSPF_FLAG_ABR);
535 else
536 UNSET_FLAG (new_flags, OSPF_FLAG_ABR);
537 break;
538
539 case OSPF_ABR_CISCO:
540 if ((areas_configured > 1) && bb_act_attached)
541 SET_FLAG (new_flags, OSPF_FLAG_ABR);
542 else
543 UNSET_FLAG (new_flags, OSPF_FLAG_ABR);
544 break;
545 default:
546 break;
547 }
548
paul147193a2003-04-19 00:31:59 +0000549 if (new_flags != ospf->flags)
paul718e3742002-12-13 20:15:29 +0000550 {
paul147193a2003-04-19 00:31:59 +0000551 ospf_spf_calculate_schedule (ospf);
paul718e3742002-12-13 20:15:29 +0000552 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000553 zlog_debug ("ospf_check_abr_status(): new router flags: %x",new_flags);
paul147193a2003-04-19 00:31:59 +0000554 ospf->flags = new_flags;
555 OSPF_TIMER_ON (ospf->t_router_lsa_update,
paul718e3742002-12-13 20:15:29 +0000556 ospf_router_lsa_update_timer, OSPF_LSA_UPDATE_DELAY);
557 }
558}
559
paul4dadc292005-05-06 21:37:42 +0000560static void
paul718e3742002-12-13 20:15:29 +0000561ospf_abr_update_aggregate (struct ospf_area_range *range,
paul7f352b82004-02-19 19:37:47 +0000562 struct ospf_route *or)
paul718e3742002-12-13 20:15:29 +0000563{
564 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000565 zlog_debug ("ospf_abr_update_aggregate(): Start");
paul718e3742002-12-13 20:15:29 +0000566
paul6c835672004-10-11 11:00:30 +0000567 if (range->cost_config != OSPF_AREA_RANGE_COST_UNSPEC)
paul718e3742002-12-13 20:15:29 +0000568 {
569 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000570 zlog_debug ("ospf_abr_update_aggregate(): use configured cost %d",
paul7f352b82004-02-19 19:37:47 +0000571 range->cost_config);
paul718e3742002-12-13 20:15:29 +0000572
573 range->cost = range->cost_config;
574 }
575 else
576 {
577 if (range->specifics == 0)
paul7f352b82004-02-19 19:37:47 +0000578 range->cost = or->cost; /* 1st time get 1st cost */
paul718e3742002-12-13 20:15:29 +0000579
paul7f352b82004-02-19 19:37:47 +0000580 if (or->cost > range->cost)
581 {
582 if (IS_DEBUG_OSPF_EVENT)
paul500e4182005-05-26 17:11:13 +0000583 zlog_debug ("ospf_abr_update_aggregate(): largest cost, update");
paul718e3742002-12-13 20:15:29 +0000584
paul7f352b82004-02-19 19:37:47 +0000585 range->cost = or->cost;
586 }
paul718e3742002-12-13 20:15:29 +0000587 }
588
589 range->specifics++;
590}
591
592static void
593set_metric (struct ospf_lsa *lsa, u_int32_t metric)
594{
595 struct summary_lsa *header;
596 u_char *mp;
597 metric = htonl (metric);
hassoc9e52be2004-09-26 16:09:34 +0000598 mp = (u_char *) &metric;
paul718e3742002-12-13 20:15:29 +0000599 mp++;
600 header = (struct summary_lsa *) lsa->data;
601 memcpy(header->metric, mp, 3);
602}
603
paul4dadc292005-05-06 21:37:42 +0000604static int
paul718e3742002-12-13 20:15:29 +0000605ospf_abr_check_nssa_range (struct prefix_ipv4 *p, u_int32_t cost,
606 struct ospf_area *area)
607{
608 /* The Type-7 is tested against the aggregated prefix and forwarded
609 for lsa installation and flooding */
610 return 0;
611}
612
613/* ospf_abr_translate_nssa */
paul4dadc292005-05-06 21:37:42 +0000614static int
paul147193a2003-04-19 00:31:59 +0000615ospf_abr_translate_nssa (struct ospf_area *area, struct ospf_lsa *lsa)
paul718e3742002-12-13 20:15:29 +0000616{
617 /* Incoming Type-7 or later aggregated Type-7
pauld4a53d52003-07-12 21:30:57 +0000618 *
619 * LSA is skipped if P-bit is off.
620 * LSA is aggregated if within range.
621 *
622 * The Type-7 is translated, Installed/Approved as a Type-5 into
623 * global LSDB, then Flooded through AS
624 *
625 * Later, any Unapproved Translated Type-5's are flushed/discarded
626 */
paul718e3742002-12-13 20:15:29 +0000627
pauld4a53d52003-07-12 21:30:57 +0000628 struct ospf_lsa *old = NULL,
629 *new = NULL;
630 struct as_external_lsa *ext7;
631 struct prefix_ipv4 p;
paul718e3742002-12-13 20:15:29 +0000632
633 if (! CHECK_FLAG (lsa->data->options, OSPF_OPTION_NP))
634 {
635 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +0000636 zlog_debug ("ospf_abr_translate_nssa(): LSA Id %s, P-bit off, NO Translation",
pauld4a53d52003-07-12 21:30:57 +0000637 inet_ntoa (lsa->data->id));
638 return 1;
paul718e3742002-12-13 20:15:29 +0000639 }
pauld4a53d52003-07-12 21:30:57 +0000640
paul718e3742002-12-13 20:15:29 +0000641 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +0000642 zlog_debug ("ospf_abr_translate_nssa(): LSA Id %s, TRANSLATING 7 to 5",
pauld4a53d52003-07-12 21:30:57 +0000643 inet_ntoa (lsa->data->id));
paul718e3742002-12-13 20:15:29 +0000644
pauld4a53d52003-07-12 21:30:57 +0000645 ext7 = (struct as_external_lsa *)(lsa->data);
646 p.prefix = lsa->data->id;
647 p.prefixlen = ip_masklen (ext7->mask);
648
649 if (ext7->e[0].fwd_addr.s_addr == OSPF_DEFAULT_DESTINATION)
650 {
651 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +0000652 zlog_debug ("ospf_abr_translate_nssa(): LSA Id %s, "
pauld4a53d52003-07-12 21:30:57 +0000653 "Forward address is 0, NO Translation",
654 inet_ntoa (lsa->data->id));
655 return 1;
656 }
657
658 /* try find existing AS-External LSA for this prefix */
659
660 old = ospf_external_info_find_lsa (area->ospf, &p);
661
662 if (old)
663 {
664 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +0000665 zlog_debug ("ospf_abr_translate_nssa(): "
pauld4a53d52003-07-12 21:30:57 +0000666 "found old translated LSA Id %s, refreshing",
667 inet_ntoa (old->data->id));
668
669 /* refresh */
670 new = ospf_translated_nssa_refresh (area->ospf, lsa, old);
671 if (!new)
672 {
673 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +0000674 zlog_debug ("ospf_abr_translate_nssa(): "
pauld4a53d52003-07-12 21:30:57 +0000675 "could not refresh translated LSA Id %s",
676 inet_ntoa (old->data->id));
677 }
678 }
679 else
680 {
681 /* no existing external route for this LSA Id
682 * originate translated LSA
683 */
684
685 if ((new = ospf_translated_nssa_originate (area->ospf, lsa))
686 == NULL)
687 {
688 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +0000689 zlog_debug ("ospf_abr_translate_nssa(): Could not translate "
pauld4a53d52003-07-12 21:30:57 +0000690 "Type-7 for %s to Type-5",
691 inet_ntoa (lsa->data->id));
692 return 1;
693 }
694 }
paul718e3742002-12-13 20:15:29 +0000695
696 /* Area where Aggregate testing will be inserted, just like summary
697 advertisements */
698 /* ospf_abr_check_nssa_range (p_arg, lsa-> cost, lsa -> area); */
699
paul718e3742002-12-13 20:15:29 +0000700 return 0;
701}
702
paul4dadc292005-05-06 21:37:42 +0000703static void
paul718e3742002-12-13 20:15:29 +0000704ospf_abr_translate_nssa_range (struct prefix_ipv4 *p, u_int32_t cost)
705{
706 /* The Type-7 is created from the aggregated prefix and forwarded
707 for lsa installation and flooding... to be added... */
708}
paul718e3742002-12-13 20:15:29 +0000709
vincentba682532005-09-29 13:52:57 +0000710void
paul718e3742002-12-13 20:15:29 +0000711ospf_abr_announce_network_to_area (struct prefix_ipv4 *p, u_int32_t cost,
712 struct ospf_area *area)
713{
714 struct ospf_lsa *lsa, *old = NULL;
715 struct summary_lsa *sl = NULL;
716
717 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000718 zlog_debug ("ospf_abr_announce_network_to_area(): Start");
paul718e3742002-12-13 20:15:29 +0000719
pauld4a53d52003-07-12 21:30:57 +0000720 old = ospf_lsa_lookup_by_prefix (area->lsdb, OSPF_SUMMARY_LSA,
721 (struct prefix_ipv4 *) p,
722 area->ospf->router_id);
paul718e3742002-12-13 20:15:29 +0000723 if (old)
724 {
725 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000726 zlog_debug ("ospf_abr_announce_network_to_area(): old summary found");
pauld4a53d52003-07-12 21:30:57 +0000727
paul718e3742002-12-13 20:15:29 +0000728 sl = (struct summary_lsa *) old->data;
729
730 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000731 zlog_debug ("ospf_abr_announce_network_to_area(): "
pauld4a53d52003-07-12 21:30:57 +0000732 "old metric: %d, new metric: %d",
733 GET_METRIC (sl->metric), cost);
734
735 if (GET_METRIC (sl->metric) == cost)
736 {
737 /* unchanged. simply reapprove it */
738 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000739 zlog_debug ("ospf_abr_announce_network_to_area(): "
pauld4a53d52003-07-12 21:30:57 +0000740 "old summary approved");
741 SET_FLAG (old->flags, OSPF_LSA_APPROVED);
742 }
743 else
744 {
745 /* LSA is changed, refresh it */
746 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000747 zlog_debug ("ospf_abr_announce_network_to_area(): "
pauld4a53d52003-07-12 21:30:57 +0000748 "refreshing summary");
749 set_metric (old, cost);
750 lsa = ospf_summary_lsa_refresh (area->ospf, old);
paulc8987752005-07-26 06:07:22 +0000751 SET_FLAG (lsa->flags, OSPF_LSA_APPROVED);
pauld4a53d52003-07-12 21:30:57 +0000752 /* This will flood through area. */
753 }
paul718e3742002-12-13 20:15:29 +0000754 }
755 else
756 {
757 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000758 zlog_debug ("ospf_abr_announce_network_to_area(): "
pauld4a53d52003-07-12 21:30:57 +0000759 "creating new summary");
760 lsa = ospf_summary_lsa_originate ( (struct prefix_ipv4 *)p, cost, area);
761 /* This will flood through area. */
paul718e3742002-12-13 20:15:29 +0000762
paul718e3742002-12-13 20:15:29 +0000763 SET_FLAG (lsa->flags, OSPF_LSA_APPROVED);
764 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000765 zlog_debug ("ospf_abr_announce_network_to_area(): "
pauld4a53d52003-07-12 21:30:57 +0000766 "flooding new version of summary");
paul718e3742002-12-13 20:15:29 +0000767 }
768
769 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000770 zlog_debug ("ospf_abr_announce_network_to_area(): Stop");
paul718e3742002-12-13 20:15:29 +0000771}
772
paul4dadc292005-05-06 21:37:42 +0000773static int
paul718e3742002-12-13 20:15:29 +0000774ospf_abr_nexthops_belong_to_area (struct ospf_route *or,
775 struct ospf_area *area)
776{
paul1eb8ef22005-04-07 07:30:20 +0000777 struct listnode *node, *nnode;
paul96735ee2003-08-10 02:51:22 +0000778 struct ospf_path *path;
paul718e3742002-12-13 20:15:29 +0000779
paul1eb8ef22005-04-07 07:30:20 +0000780 for (ALL_LIST_ELEMENTS (or->paths, node, nnode, path))
paul718e3742002-12-13 20:15:29 +0000781 {
paul718e3742002-12-13 20:15:29 +0000782 struct ospf_interface *oi = path->oi;
783
784 if (oi != NULL)
paul96735ee2003-08-10 02:51:22 +0000785 if (oi->area == area)
786 return 1;
paul718e3742002-12-13 20:15:29 +0000787 }
788
789 return 0;
790}
791
paul4dadc292005-05-06 21:37:42 +0000792static int
pauld4a53d52003-07-12 21:30:57 +0000793ospf_abr_should_accept (struct prefix_ipv4 *p, struct ospf_area *area)
paul718e3742002-12-13 20:15:29 +0000794{
795 if (IMPORT_NAME (area))
796 {
797 if (IMPORT_LIST (area) == NULL)
798 IMPORT_LIST (area) = access_list_lookup (AFI_IP, IMPORT_NAME (area));
799
800 if (IMPORT_LIST (area))
801 if (access_list_apply (IMPORT_LIST (area), p) == FILTER_DENY)
802 return 0;
803 }
804
805 return 1;
806}
807
paul4dadc292005-05-06 21:37:42 +0000808static int
paul718e3742002-12-13 20:15:29 +0000809ospf_abr_plist_in_check (struct ospf_area *area, struct ospf_route *or,
pauld4a53d52003-07-12 21:30:57 +0000810 struct prefix_ipv4 *p)
paul718e3742002-12-13 20:15:29 +0000811{
812 if (PREFIX_NAME_IN (area))
813 {
814 if (PREFIX_LIST_IN (area) == NULL)
815 PREFIX_LIST_IN (area) = prefix_list_lookup (AFI_IP,
816 PREFIX_NAME_IN (area));
817 if (PREFIX_LIST_IN (area))
818 if (prefix_list_apply (PREFIX_LIST_IN (area), p) != PREFIX_PERMIT)
819 return 0;
820 }
821 return 1;
822}
823
paul4dadc292005-05-06 21:37:42 +0000824static int
paul718e3742002-12-13 20:15:29 +0000825ospf_abr_plist_out_check (struct ospf_area *area, struct ospf_route *or,
pauld4a53d52003-07-12 21:30:57 +0000826 struct prefix_ipv4 *p)
paul718e3742002-12-13 20:15:29 +0000827{
828 if (PREFIX_NAME_OUT (area))
829 {
830 if (PREFIX_LIST_OUT (area) == NULL)
831 PREFIX_LIST_OUT (area) = prefix_list_lookup (AFI_IP,
832 PREFIX_NAME_OUT (area));
833 if (PREFIX_LIST_OUT (area))
834 if (prefix_list_apply (PREFIX_LIST_OUT (area), p) != PREFIX_PERMIT)
835 return 0;
836 }
837 return 1;
838}
839
paul4dadc292005-05-06 21:37:42 +0000840static void
paul147193a2003-04-19 00:31:59 +0000841ospf_abr_announce_network (struct ospf *ospf,
pauld4a53d52003-07-12 21:30:57 +0000842 struct prefix_ipv4 *p, struct ospf_route *or)
paul718e3742002-12-13 20:15:29 +0000843{
paul718e3742002-12-13 20:15:29 +0000844 struct ospf_area_range *range;
paul718e3742002-12-13 20:15:29 +0000845 struct ospf_area *area, *or_area;
hasso52dc7ee2004-09-23 19:18:23 +0000846 struct listnode *node;
paul718e3742002-12-13 20:15:29 +0000847
848 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000849 zlog_debug ("ospf_abr_announce_network(): Start");
paul718e3742002-12-13 20:15:29 +0000850
paul147193a2003-04-19 00:31:59 +0000851 or_area = ospf_area_lookup_by_area_id (ospf, or->u.std.area_id);
paul718e3742002-12-13 20:15:29 +0000852 assert (or_area);
853
paul1eb8ef22005-04-07 07:30:20 +0000854 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
paul718e3742002-12-13 20:15:29 +0000855 {
paul718e3742002-12-13 20:15:29 +0000856 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000857 zlog_debug ("ospf_abr_announce_network(): looking at area %s",
paul718e3742002-12-13 20:15:29 +0000858 inet_ntoa (area->area_id));
859
860 if (IPV4_ADDR_SAME (&or->u.std.area_id, &area->area_id))
861 continue;
862
863 if (ospf_abr_nexthops_belong_to_area (or, area))
864 continue;
865
pauld4a53d52003-07-12 21:30:57 +0000866 if (!ospf_abr_should_accept (p, area))
paul718e3742002-12-13 20:15:29 +0000867 {
868 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000869 zlog_debug ("ospf_abr_announce_network(): "
paul718e3742002-12-13 20:15:29 +0000870 "prefix %s/%d was denied by import-list",
871 inet_ntoa (p->prefix), p->prefixlen);
872 continue;
873 }
874
pauld4a53d52003-07-12 21:30:57 +0000875 if (!ospf_abr_plist_in_check (area, or, p))
paul718e3742002-12-13 20:15:29 +0000876 {
877 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000878 zlog_debug ("ospf_abr_announce_network(): "
paul718e3742002-12-13 20:15:29 +0000879 "prefix %s/%d was denied by prefix-list",
880 inet_ntoa (p->prefix), p->prefixlen);
881 continue;
882 }
883
884 if (area->external_routing != OSPF_AREA_DEFAULT && area->no_summary)
885 {
886 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000887 zlog_debug ("ospf_abr_announce_network(): "
paul718e3742002-12-13 20:15:29 +0000888 "area %s is stub and no_summary",
889 inet_ntoa (area->area_id));
890 continue;
891 }
892
893 if (or->path_type == OSPF_PATH_INTER_AREA)
894 {
895 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000896 zlog_debug ("ospf_abr_announce_network(): this is "
paul718e3742002-12-13 20:15:29 +0000897 "inter-area route to %s/%d",
898 inet_ntoa (p->prefix), p->prefixlen);
899
900 if (!OSPF_IS_AREA_BACKBONE (area))
901 ospf_abr_announce_network_to_area (p, or->cost, area);
902 }
903
904 if (or->path_type == OSPF_PATH_INTRA_AREA)
pauld4a53d52003-07-12 21:30:57 +0000905 {
906 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000907 zlog_debug ("ospf_abr_announce_network(): "
pauld4a53d52003-07-12 21:30:57 +0000908 "this is intra-area route to %s/%d",
909 inet_ntoa (p->prefix), p->prefixlen);
910 if ((range = ospf_area_range_match (or_area, p))
911 && !ospf_area_is_transit (area))
912 ospf_abr_update_aggregate (range, or);
913 else
914 ospf_abr_announce_network_to_area (p, or->cost, area);
915 }
paul718e3742002-12-13 20:15:29 +0000916 }
917}
918
paul4dadc292005-05-06 21:37:42 +0000919static int
paul147193a2003-04-19 00:31:59 +0000920ospf_abr_should_announce (struct ospf *ospf,
pauld4a53d52003-07-12 21:30:57 +0000921 struct prefix_ipv4 *p, struct ospf_route *or)
paul718e3742002-12-13 20:15:29 +0000922{
paul147193a2003-04-19 00:31:59 +0000923 struct ospf_area *area;
924
925 area = ospf_area_lookup_by_area_id (ospf, or->u.std.area_id);
paul718e3742002-12-13 20:15:29 +0000926
927 assert (area);
928
929 if (EXPORT_NAME (area))
930 {
931 if (EXPORT_LIST (area) == NULL)
932 EXPORT_LIST (area) = access_list_lookup (AFI_IP, EXPORT_NAME (area));
933
934 if (EXPORT_LIST (area))
935 if (access_list_apply (EXPORT_LIST (area), p) == FILTER_DENY)
936 return 0;
937 }
938
939 return 1;
940}
941
paul4dadc292005-05-06 21:37:42 +0000942static void
paul147193a2003-04-19 00:31:59 +0000943ospf_abr_process_nssa_translates (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +0000944{
945 /* Scan through all NSSA_LSDB records for all areas;
946
947 If P-bit is on, translate all Type-7's to 5's and aggregate or
948 flood install as approved in Type-5 LSDB with XLATE Flag on
949 later, do same for all aggregates... At end, DISCARD all
950 remaining UNAPPROVED Type-5's (Aggregate is for future ) */
hasso52dc7ee2004-09-23 19:18:23 +0000951 struct listnode *node;
paul718e3742002-12-13 20:15:29 +0000952 struct ospf_area *area;
paul147193a2003-04-19 00:31:59 +0000953 struct route_node *rn;
954 struct ospf_lsa *lsa;
paul718e3742002-12-13 20:15:29 +0000955
956 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +0000957 zlog_debug ("ospf_abr_process_nssa_translates(): Start");
paul718e3742002-12-13 20:15:29 +0000958
paul1eb8ef22005-04-07 07:30:20 +0000959 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
paul718e3742002-12-13 20:15:29 +0000960 {
paule2c6c152003-06-22 08:49:25 +0000961 if (! area->NSSATranslatorState)
pauld4a53d52003-07-12 21:30:57 +0000962 continue; /* skip if not translator */
paul718e3742002-12-13 20:15:29 +0000963
964 if (area->external_routing != OSPF_AREA_NSSA)
pauld4a53d52003-07-12 21:30:57 +0000965 continue; /* skip if not Nssa Area */
paul718e3742002-12-13 20:15:29 +0000966
967 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +0000968 zlog_debug ("ospf_abr_process_nssa_translates(): "
pauld4a53d52003-07-12 21:30:57 +0000969 "looking at area %s", inet_ntoa (area->area_id));
paul718e3742002-12-13 20:15:29 +0000970
paul147193a2003-04-19 00:31:59 +0000971 LSDB_LOOP (NSSA_LSDB (area), rn, lsa)
pauld4a53d52003-07-12 21:30:57 +0000972 ospf_abr_translate_nssa (area, lsa);
paul718e3742002-12-13 20:15:29 +0000973 }
974
975 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +0000976 zlog_debug ("ospf_abr_process_nssa_translates(): Stop");
paul718e3742002-12-13 20:15:29 +0000977
978}
paul718e3742002-12-13 20:15:29 +0000979
paul4dadc292005-05-06 21:37:42 +0000980static void
paul147193a2003-04-19 00:31:59 +0000981ospf_abr_process_network_rt (struct ospf *ospf,
982 struct route_table *rt)
paul718e3742002-12-13 20:15:29 +0000983{
paul718e3742002-12-13 20:15:29 +0000984 struct ospf_area *area;
paul147193a2003-04-19 00:31:59 +0000985 struct ospf_route *or;
986 struct route_node *rn;
paul718e3742002-12-13 20:15:29 +0000987
988 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000989 zlog_debug ("ospf_abr_process_network_rt(): Start");
paul718e3742002-12-13 20:15:29 +0000990
991 for (rn = route_top (rt); rn; rn = route_next (rn))
992 {
993 if ((or = rn->info) == NULL)
994 continue;
995
paul147193a2003-04-19 00:31:59 +0000996 if (!(area = ospf_area_lookup_by_area_id (ospf, or->u.std.area_id)))
paul718e3742002-12-13 20:15:29 +0000997 {
998 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000999 zlog_debug ("ospf_abr_process_network_rt(): area %s no longer exists",
paul718e3742002-12-13 20:15:29 +00001000 inet_ntoa (or->u.std.area_id));
1001 continue;
1002 }
1003
1004 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001005 zlog_debug ("ospf_abr_process_network_rt(): this is a route to %s/%d",
paul718e3742002-12-13 20:15:29 +00001006 inet_ntoa (rn->p.u.prefix4), rn->p.prefixlen);
1007 if (or->path_type >= OSPF_PATH_TYPE1_EXTERNAL)
1008 {
1009 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001010 zlog_debug ("ospf_abr_process_network_rt(): "
paul718e3742002-12-13 20:15:29 +00001011 "this is an External router, skipping");
1012 continue;
1013 }
1014
1015 if (or->cost >= OSPF_LS_INFINITY)
1016 {
1017 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001018 zlog_debug ("ospf_abr_process_network_rt():"
paul718e3742002-12-13 20:15:29 +00001019 " this route's cost is infinity, skipping");
1020 continue;
1021 }
1022
1023 if (or->type == OSPF_DESTINATION_DISCARD)
1024 {
1025 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001026 zlog_debug ("ospf_abr_process_network_rt():"
paul718e3742002-12-13 20:15:29 +00001027 " this is a discard entry, skipping");
1028 continue;
1029 }
1030
1031 if (or->path_type == OSPF_PATH_INTRA_AREA &&
pauld4a53d52003-07-12 21:30:57 +00001032 !ospf_abr_should_announce (ospf, (struct prefix_ipv4 *) &rn->p, or))
paul718e3742002-12-13 20:15:29 +00001033 {
1034 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001035 zlog_debug("ospf_abr_process_network_rt(): denied by export-list");
paul718e3742002-12-13 20:15:29 +00001036 continue;
1037 }
1038
1039 if (or->path_type == OSPF_PATH_INTRA_AREA &&
pauld4a53d52003-07-12 21:30:57 +00001040 !ospf_abr_plist_out_check (area, or, (struct prefix_ipv4 *) &rn->p))
paul718e3742002-12-13 20:15:29 +00001041 {
1042 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001043 zlog_debug("ospf_abr_process_network_rt(): denied by prefix-list");
paul718e3742002-12-13 20:15:29 +00001044 continue;
1045 }
1046
1047 if ((or->path_type == OSPF_PATH_INTER_AREA) &&
1048 !OSPF_IS_AREA_ID_BACKBONE (or->u.std.area_id))
1049 {
1050 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001051 zlog_debug ("ospf_abr_process_network_rt():"
paul718e3742002-12-13 20:15:29 +00001052 " this is route is not backbone one, skipping");
1053 continue;
1054 }
1055
1056
paul147193a2003-04-19 00:31:59 +00001057 if ((ospf->abr_type == OSPF_ABR_CISCO) ||
1058 (ospf->abr_type == OSPF_ABR_IBM))
paul718e3742002-12-13 20:15:29 +00001059
paul147193a2003-04-19 00:31:59 +00001060 if (!ospf_act_bb_connection (ospf) &&
paul718e3742002-12-13 20:15:29 +00001061 or->path_type != OSPF_PATH_INTRA_AREA)
1062 {
1063 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001064 zlog_debug ("ospf_abr_process_network_rt(): ALT ABR: "
paul718e3742002-12-13 20:15:29 +00001065 "No BB connection, skip not intra-area routes");
1066 continue;
1067 }
1068
1069 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001070 zlog_debug ("ospf_abr_process_network_rt(): announcing");
hassofa2b17e2004-03-04 17:45:00 +00001071 ospf_abr_announce_network (ospf, (struct prefix_ipv4 *)&rn->p, or);
paul718e3742002-12-13 20:15:29 +00001072 }
1073
1074 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001075 zlog_debug ("ospf_abr_process_network_rt(): Stop");
paul718e3742002-12-13 20:15:29 +00001076}
1077
paul4dadc292005-05-06 21:37:42 +00001078static void
paul718e3742002-12-13 20:15:29 +00001079ospf_abr_announce_rtr_to_area (struct prefix_ipv4 *p, u_int32_t cost,
1080 struct ospf_area *area)
1081{
1082 struct ospf_lsa *lsa, *old = NULL;
1083 struct summary_lsa *slsa = NULL;
1084
1085 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001086 zlog_debug ("ospf_abr_announce_rtr_to_area(): Start");
paul718e3742002-12-13 20:15:29 +00001087
paul147193a2003-04-19 00:31:59 +00001088 old = ospf_lsa_lookup_by_prefix (area->lsdb, OSPF_ASBR_SUMMARY_LSA,
1089 p, area->ospf->router_id);
paul718e3742002-12-13 20:15:29 +00001090 if (old)
1091 {
1092 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001093 zlog_debug ("ospf_abr_announce_rtr_to_area(): old summary found");
paul718e3742002-12-13 20:15:29 +00001094 slsa = (struct summary_lsa *) old->data;
1095
1096 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001097 zlog_debug ("ospf_abr_announce_network_to_area(): "
paul718e3742002-12-13 20:15:29 +00001098 "old metric: %d, new metric: %d",
1099 GET_METRIC (slsa->metric), cost);
1100 }
1101
1102 if (old && (GET_METRIC (slsa->metric) == cost))
1103 {
1104 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001105 zlog_debug ("ospf_abr_announce_rtr_to_area(): old summary approved");
paul718e3742002-12-13 20:15:29 +00001106 SET_FLAG (old->flags, OSPF_LSA_APPROVED);
1107 }
1108 else
1109 {
1110 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001111 zlog_debug ("ospf_abr_announce_rtr_to_area(): 2.2");
paul718e3742002-12-13 20:15:29 +00001112
1113 if (old)
1114 {
1115 set_metric (old, cost);
paul147193a2003-04-19 00:31:59 +00001116 lsa = ospf_summary_asbr_lsa_refresh (area->ospf, old);
paul718e3742002-12-13 20:15:29 +00001117 }
1118 else
1119 lsa = ospf_summary_asbr_lsa_originate (p, cost, area);
1120
1121 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001122 zlog_debug ("ospf_abr_announce_rtr_to_area(): "
paul718e3742002-12-13 20:15:29 +00001123 "flooding new version of summary");
1124 /*
1125 zlog_info ("ospf_abr_announce_rtr_to_area(): creating new summary");
1126 lsa = ospf_summary_asbr_lsa (p, cost, area, old); */
1127
1128 SET_FLAG (lsa->flags, OSPF_LSA_APPROVED);
1129 /* ospf_flood_through_area (area, NULL, lsa);*/
1130 }
1131
1132 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001133 zlog_debug ("ospf_abr_announce_rtr_to_area(): Stop");
paul718e3742002-12-13 20:15:29 +00001134}
1135
1136
paul4dadc292005-05-06 21:37:42 +00001137static void
paul147193a2003-04-19 00:31:59 +00001138ospf_abr_announce_rtr (struct ospf *ospf,
1139 struct prefix_ipv4 *p, struct ospf_route *or)
paul718e3742002-12-13 20:15:29 +00001140{
hasso52dc7ee2004-09-23 19:18:23 +00001141 struct listnode *node;
paul718e3742002-12-13 20:15:29 +00001142 struct ospf_area *area;
1143
1144 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001145 zlog_debug ("ospf_abr_announce_rtr(): Start");
paul718e3742002-12-13 20:15:29 +00001146
paul1eb8ef22005-04-07 07:30:20 +00001147 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
paul718e3742002-12-13 20:15:29 +00001148 {
paul718e3742002-12-13 20:15:29 +00001149 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001150 zlog_debug ("ospf_abr_announce_rtr(): looking at area %s",
paul718e3742002-12-13 20:15:29 +00001151 inet_ntoa (area->area_id));
1152
1153 if (IPV4_ADDR_SAME (&or->u.std.area_id, &area->area_id))
1154 continue;
1155
1156 if (ospf_abr_nexthops_belong_to_area (or, area))
1157 continue;
1158
1159 if (area->external_routing != OSPF_AREA_DEFAULT)
1160 {
1161 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001162 zlog_debug ("ospf_abr_announce_rtr(): "
paul718e3742002-12-13 20:15:29 +00001163 "area %s doesn't support external routing",
1164 inet_ntoa(area->area_id));
1165 continue;
1166 }
1167
1168 if (or->path_type == OSPF_PATH_INTER_AREA)
1169 {
1170 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001171 zlog_debug ("ospf_abr_announce_rtr(): "
paul718e3742002-12-13 20:15:29 +00001172 "this is inter-area route to %s", inet_ntoa (p->prefix));
1173 if (!OSPF_IS_AREA_BACKBONE (area))
1174 ospf_abr_announce_rtr_to_area (p, or->cost, area);
1175 }
1176
1177 if (or->path_type == OSPF_PATH_INTRA_AREA)
1178 {
1179 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001180 zlog_debug ("ospf_abr_announce_rtr(): "
paul718e3742002-12-13 20:15:29 +00001181 "this is intra-area route to %s", inet_ntoa (p->prefix));
1182 ospf_abr_announce_rtr_to_area (p, or->cost, area);
1183 }
1184 }
1185
1186 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001187 zlog_debug ("ospf_abr_announce_rtr(): Stop");
paul718e3742002-12-13 20:15:29 +00001188}
1189
paul4dadc292005-05-06 21:37:42 +00001190static void
paul147193a2003-04-19 00:31:59 +00001191ospf_abr_process_router_rt (struct ospf *ospf, struct route_table *rt)
paul718e3742002-12-13 20:15:29 +00001192{
paul718e3742002-12-13 20:15:29 +00001193 struct ospf_route *or;
paul147193a2003-04-19 00:31:59 +00001194 struct route_node *rn;
paul718e3742002-12-13 20:15:29 +00001195 struct list *l;
1196
1197 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001198 zlog_debug ("ospf_abr_process_router_rt(): Start");
paul718e3742002-12-13 20:15:29 +00001199
1200 for (rn = route_top (rt); rn; rn = route_next (rn))
1201 {
paul1eb8ef22005-04-07 07:30:20 +00001202 struct listnode *node, *nnode;
paul718e3742002-12-13 20:15:29 +00001203 char flag = 0;
1204 struct ospf_route *best = NULL;
1205
1206 if (rn->info == NULL)
1207 continue;
1208
1209 l = rn->info;
1210
1211 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001212 zlog_debug ("ospf_abr_process_router_rt(): this is a route to %s",
paul718e3742002-12-13 20:15:29 +00001213 inet_ntoa (rn->p.u.prefix4));
1214
paul1eb8ef22005-04-07 07:30:20 +00001215 for (ALL_LIST_ELEMENTS (l, node, nnode, or))
paul718e3742002-12-13 20:15:29 +00001216 {
paul147193a2003-04-19 00:31:59 +00001217 if (!ospf_area_lookup_by_area_id (ospf, or->u.std.area_id))
paul718e3742002-12-13 20:15:29 +00001218 {
1219 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001220 zlog_debug ("ospf_abr_process_router_rt(): area %s no longer exists",
paul718e3742002-12-13 20:15:29 +00001221 inet_ntoa (or->u.std.area_id));
1222 continue;
1223 }
1224
1225
1226 if (!CHECK_FLAG (or->u.std.flags, ROUTER_LSA_EXTERNAL))
1227 {
1228 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001229 zlog_debug ("ospf_abr_process_router_rt(): "
paul718e3742002-12-13 20:15:29 +00001230 "This is not an ASBR, skipping");
1231 continue;
1232 }
1233
1234 if (!flag)
1235 {
paul147193a2003-04-19 00:31:59 +00001236 best = ospf_find_asbr_route (ospf, rt,
1237 (struct prefix_ipv4 *) &rn->p);
paul718e3742002-12-13 20:15:29 +00001238 flag = 1;
1239 }
1240
1241 if (best == NULL)
1242 continue;
1243
1244 if (or != best)
1245 {
1246 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001247 zlog_debug ("ospf_abr_process_router_rt(): "
paul718e3742002-12-13 20:15:29 +00001248 "This route is not the best among possible, skipping");
1249 continue;
1250 }
1251
1252 if (or->path_type == OSPF_PATH_INTER_AREA &&
1253 !OSPF_IS_AREA_ID_BACKBONE (or->u.std.area_id))
1254 {
1255 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001256 zlog_debug ("ospf_abr_process_router_rt(): "
paul718e3742002-12-13 20:15:29 +00001257 "This route is not a backbone one, skipping");
1258 continue;
1259 }
1260
1261 if (or->cost >= OSPF_LS_INFINITY)
1262 {
1263 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001264 zlog_debug ("ospf_abr_process_router_rt(): "
paul718e3742002-12-13 20:15:29 +00001265 "This route has LS_INFINITY metric, skipping");
1266 continue;
1267 }
1268
paul147193a2003-04-19 00:31:59 +00001269 if (ospf->abr_type == OSPF_ABR_CISCO
1270 || ospf->abr_type == OSPF_ABR_IBM)
1271 if (!ospf_act_bb_connection (ospf)
1272 && or->path_type != OSPF_PATH_INTRA_AREA)
paul718e3742002-12-13 20:15:29 +00001273 {
1274 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001275 zlog_debug("ospf_abr_process_network_rt(): ALT ABR: "
paul718e3742002-12-13 20:15:29 +00001276 "No BB connection, skip not intra-area routes");
1277 continue;
1278 }
1279
paul147193a2003-04-19 00:31:59 +00001280 ospf_abr_announce_rtr (ospf, (struct prefix_ipv4 *) &rn->p, or);
paul718e3742002-12-13 20:15:29 +00001281
1282 }
1283
1284 }
1285
1286 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001287 zlog_debug ("ospf_abr_process_router_rt(): Stop");
paul718e3742002-12-13 20:15:29 +00001288}
1289
paul4dadc292005-05-06 21:37:42 +00001290static void
paul147193a2003-04-19 00:31:59 +00001291ospf_abr_unapprove_translates (struct ospf *ospf) /* For NSSA Translations */
paul718e3742002-12-13 20:15:29 +00001292{
paul147193a2003-04-19 00:31:59 +00001293 struct ospf_lsa *lsa;
1294 struct route_node *rn;
1295
paul718e3742002-12-13 20:15:29 +00001296 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001297 zlog_debug ("ospf_abr_unapprove_translates(): Start");
paul718e3742002-12-13 20:15:29 +00001298
1299 /* NSSA Translator is not checked, because it may have gone away,
1300 and we would want to flush any residuals anyway */
1301
paul147193a2003-04-19 00:31:59 +00001302 LSDB_LOOP (EXTERNAL_LSDB (ospf), rn, lsa)
1303 if (CHECK_FLAG (lsa->flags, OSPF_LSA_LOCAL_XLT))
pauld4a53d52003-07-12 21:30:57 +00001304 {
1305 UNSET_FLAG (lsa->flags, OSPF_LSA_APPROVED);
1306 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001307 zlog_debug ("ospf_abr_unapprove_translates(): "
pauld4a53d52003-07-12 21:30:57 +00001308 "approved unset on link id %s",
1309 inet_ntoa (lsa->data->id));
1310 }
paul718e3742002-12-13 20:15:29 +00001311
1312 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001313 zlog_debug ("ospf_abr_unapprove_translates(): Stop");
paul718e3742002-12-13 20:15:29 +00001314}
paul718e3742002-12-13 20:15:29 +00001315
paul4dadc292005-05-06 21:37:42 +00001316static void
paul147193a2003-04-19 00:31:59 +00001317ospf_abr_unapprove_summaries (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00001318{
hasso52dc7ee2004-09-23 19:18:23 +00001319 struct listnode *node;
paul718e3742002-12-13 20:15:29 +00001320 struct ospf_area *area;
paul147193a2003-04-19 00:31:59 +00001321 struct route_node *rn;
1322 struct ospf_lsa *lsa;
paul718e3742002-12-13 20:15:29 +00001323
1324 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001325 zlog_debug ("ospf_abr_unapprove_summaries(): Start");
paul718e3742002-12-13 20:15:29 +00001326
paul1eb8ef22005-04-07 07:30:20 +00001327 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
paul718e3742002-12-13 20:15:29 +00001328 {
pauld4a53d52003-07-12 21:30:57 +00001329 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001330 zlog_debug ("ospf_abr_unapprove_summaries(): "
pauld4a53d52003-07-12 21:30:57 +00001331 "considering area %s",
1332 inet_ntoa (area->area_id));
paul147193a2003-04-19 00:31:59 +00001333 LSDB_LOOP (SUMMARY_LSDB (area), rn, lsa)
pauld4a53d52003-07-12 21:30:57 +00001334 if (ospf_lsa_is_self_originated (ospf, lsa))
1335 {
1336 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001337 zlog_debug ("ospf_abr_unapprove_summaries(): "
pauld4a53d52003-07-12 21:30:57 +00001338 "approved unset on summary link id %s",
1339 inet_ntoa (lsa->data->id));
1340 UNSET_FLAG (lsa->flags, OSPF_LSA_APPROVED);
1341 }
paul147193a2003-04-19 00:31:59 +00001342
1343 LSDB_LOOP (ASBR_SUMMARY_LSDB (area), rn, lsa)
pauld4a53d52003-07-12 21:30:57 +00001344 if (ospf_lsa_is_self_originated (ospf, lsa))
1345 {
1346 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001347 zlog_debug ("ospf_abr_unapprove_summaries(): "
pauld4a53d52003-07-12 21:30:57 +00001348 "approved unset on asbr-summary link id %s",
1349 inet_ntoa (lsa->data->id));
1350 UNSET_FLAG (lsa->flags, OSPF_LSA_APPROVED);
1351 }
paul718e3742002-12-13 20:15:29 +00001352 }
1353
1354 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001355 zlog_debug ("ospf_abr_unapprove_summaries(): Stop");
paul718e3742002-12-13 20:15:29 +00001356}
1357
paul4dadc292005-05-06 21:37:42 +00001358static void
paul147193a2003-04-19 00:31:59 +00001359ospf_abr_prepare_aggregates (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00001360{
hasso52dc7ee2004-09-23 19:18:23 +00001361 struct listnode *node;
paul718e3742002-12-13 20:15:29 +00001362 struct route_node *rn;
1363 struct ospf_area_range *range;
paul1eb8ef22005-04-07 07:30:20 +00001364 struct ospf_area *area;
paul718e3742002-12-13 20:15:29 +00001365
1366 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001367 zlog_debug ("ospf_abr_prepare_aggregates(): Start");
paul718e3742002-12-13 20:15:29 +00001368
paul1eb8ef22005-04-07 07:30:20 +00001369 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
paul718e3742002-12-13 20:15:29 +00001370 {
paul718e3742002-12-13 20:15:29 +00001371 for (rn = route_top (area->ranges); rn; rn = route_next (rn))
1372 if ((range = rn->info) != NULL)
1373 {
1374 range->cost = 0;
1375 range->specifics = 0;
1376 }
1377 }
1378
1379 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001380 zlog_debug ("ospf_abr_prepare_aggregates(): Stop");
paul718e3742002-12-13 20:15:29 +00001381}
1382
paul4dadc292005-05-06 21:37:42 +00001383static void
paul147193a2003-04-19 00:31:59 +00001384ospf_abr_announce_aggregates (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00001385{
1386 struct ospf_area *area, *ar;
1387 struct ospf_area_range *range;
1388 struct route_node *rn;
pauld4a53d52003-07-12 21:30:57 +00001389 struct prefix p;
hasso52dc7ee2004-09-23 19:18:23 +00001390 struct listnode *node, *n;
paul718e3742002-12-13 20:15:29 +00001391
1392 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001393 zlog_debug ("ospf_abr_announce_aggregates(): Start");
paul718e3742002-12-13 20:15:29 +00001394
paul1eb8ef22005-04-07 07:30:20 +00001395 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
paul718e3742002-12-13 20:15:29 +00001396 {
paul718e3742002-12-13 20:15:29 +00001397 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001398 zlog_debug ("ospf_abr_announce_aggregates(): looking at area %s",
paul718e3742002-12-13 20:15:29 +00001399 inet_ntoa (area->area_id));
1400
1401 for (rn = route_top (area->ranges); rn; rn = route_next (rn))
1402 if ((range = rn->info))
1403 {
1404 if (!CHECK_FLAG (range->flags, OSPF_AREA_RANGE_ADVERTISE))
1405 {
1406 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001407 zlog_debug ("ospf_abr_announce_aggregates():"
paul718e3742002-12-13 20:15:29 +00001408 " discarding suppress-ranges");
1409 continue;
1410 }
1411
1412 p.family = AF_INET;
pauld4a53d52003-07-12 21:30:57 +00001413 p.u.prefix4 = range->addr;
paul718e3742002-12-13 20:15:29 +00001414 p.prefixlen = range->masklen;
1415
1416 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001417 zlog_debug ("ospf_abr_announce_aggregates():"
paul718e3742002-12-13 20:15:29 +00001418 " this is range: %s/%d",
pauld4a53d52003-07-12 21:30:57 +00001419 inet_ntoa (p.u.prefix4), p.prefixlen);
paul718e3742002-12-13 20:15:29 +00001420
1421 if (CHECK_FLAG (range->flags, OSPF_AREA_RANGE_SUBSTITUTE))
1422 {
1423 p.family = AF_INET;
pauld4a53d52003-07-12 21:30:57 +00001424 p.u.prefix4 = range->subst_addr;
paul718e3742002-12-13 20:15:29 +00001425 p.prefixlen = range->subst_masklen;
1426 }
1427
1428 if (range->specifics)
1429 {
1430 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001431 zlog_debug ("ospf_abr_announce_aggregates(): active range");
paul718e3742002-12-13 20:15:29 +00001432
paul1eb8ef22005-04-07 07:30:20 +00001433 for (ALL_LIST_ELEMENTS_RO (ospf->areas, n, ar))
paul718e3742002-12-13 20:15:29 +00001434 {
paul718e3742002-12-13 20:15:29 +00001435 if (ar == area)
1436 continue;
1437
1438 /* We do not check nexthops here, because
1439 intra-area routes can be associated with
1440 one area only */
1441
1442 /* backbone routes are not summarized
1443 when announced into transit areas */
1444
1445 if (ospf_area_is_transit (ar) &&
1446 OSPF_IS_AREA_BACKBONE (area))
1447 {
1448 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001449 zlog_debug ("ospf_abr_announce_aggregates(): Skipping "
paul718e3742002-12-13 20:15:29 +00001450 "announcement of BB aggregate into"
1451 " a transit area");
1452 continue;
1453 }
hassofa2b17e2004-03-04 17:45:00 +00001454 ospf_abr_announce_network_to_area ((struct prefix_ipv4 *)&p, range->cost, ar);
paul718e3742002-12-13 20:15:29 +00001455 }
1456 }
1457 }
1458 }
1459
1460 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001461 zlog_debug ("ospf_abr_announce_aggregates(): Stop");
paul718e3742002-12-13 20:15:29 +00001462}
1463
paul4dadc292005-05-06 21:37:42 +00001464static void
paul147193a2003-04-19 00:31:59 +00001465ospf_abr_send_nssa_aggregates (struct ospf *ospf) /* temporarily turned off */
paul718e3742002-12-13 20:15:29 +00001466{
hasso52dc7ee2004-09-23 19:18:23 +00001467 struct listnode *node; /*, n; */
paul718e3742002-12-13 20:15:29 +00001468 struct ospf_area *area; /*, *ar; */
1469 struct route_node *rn;
1470 struct ospf_area_range *range;
1471 struct prefix_ipv4 p;
1472
1473 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001474 zlog_debug ("ospf_abr_send_nssa_aggregates(): Start");
paul718e3742002-12-13 20:15:29 +00001475
paul1eb8ef22005-04-07 07:30:20 +00001476 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
paul718e3742002-12-13 20:15:29 +00001477 {
paule2c6c152003-06-22 08:49:25 +00001478 if (! area->NSSATranslatorState)
paul718e3742002-12-13 20:15:29 +00001479 continue;
1480
1481 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001482 zlog_debug ("ospf_abr_send_nssa_aggregates(): looking at area %s",
paul718e3742002-12-13 20:15:29 +00001483 inet_ntoa (area->area_id));
1484
1485 for (rn = route_top (area->ranges); rn; rn = route_next (rn))
1486 {
1487 if (rn->info == NULL)
1488 continue;
1489
1490 range = rn->info;
1491
1492 if (!CHECK_FLAG (range->flags, OSPF_AREA_RANGE_ADVERTISE))
1493 {
1494 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001495 zlog_debug ("ospf_abr_send_nssa_aggregates():"
paul718e3742002-12-13 20:15:29 +00001496 " discarding suppress-ranges");
1497 continue;
1498 }
1499
1500 p.family = AF_INET;
1501 p.prefix = range->addr;
1502 p.prefixlen = range->masklen;
1503
1504 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001505 zlog_debug ("ospf_abr_send_nssa_aggregates():"
paul718e3742002-12-13 20:15:29 +00001506 " this is range: %s/%d",
1507 inet_ntoa (p.prefix), p.prefixlen);
1508
1509 if (CHECK_FLAG (range->flags, OSPF_AREA_RANGE_SUBSTITUTE))
1510 {
1511 p.family = AF_INET;
1512 p.prefix = range->subst_addr;
1513 p.prefixlen = range->subst_masklen;
1514 }
1515
1516 if (range->specifics)
paule2c6c152003-06-22 08:49:25 +00001517 {
1518 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001519 zlog_debug ("ospf_abr_send_nssa_aggregates(): active range");
paul718e3742002-12-13 20:15:29 +00001520
paule2c6c152003-06-22 08:49:25 +00001521 /* Fetch LSA-Type-7 from aggregate prefix, and then
1522 * translate, Install (as Type-5), Approve, and Flood
1523 */
1524 ospf_abr_translate_nssa_range (&p, range->cost);
1525 }
1526 } /* all area ranges*/
paul718e3742002-12-13 20:15:29 +00001527 } /* all areas */
1528
1529 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001530 zlog_debug ("ospf_abr_send_nssa_aggregates(): Stop");
paul718e3742002-12-13 20:15:29 +00001531}
1532
paul4dadc292005-05-06 21:37:42 +00001533static void
paul147193a2003-04-19 00:31:59 +00001534ospf_abr_announce_nssa_defaults (struct ospf *ospf) /* By ABR-Translator */
paul718e3742002-12-13 20:15:29 +00001535{
hasso52dc7ee2004-09-23 19:18:23 +00001536 struct listnode *node;
paul718e3742002-12-13 20:15:29 +00001537 struct ospf_area *area;
paul718e3742002-12-13 20:15:29 +00001538
paul147193a2003-04-19 00:31:59 +00001539 if (! IS_OSPF_ABR (ospf))
paul718e3742002-12-13 20:15:29 +00001540 return;
1541
1542 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001543 zlog_debug ("ospf_abr_announce_stub_defaults(): Start");
paul718e3742002-12-13 20:15:29 +00001544
paul1eb8ef22005-04-07 07:30:20 +00001545 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
paul718e3742002-12-13 20:15:29 +00001546 {
paul718e3742002-12-13 20:15:29 +00001547 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001548 zlog_debug ("ospf_abr_announce_nssa_defaults(): looking at area %s",
paule2c6c152003-06-22 08:49:25 +00001549 inet_ntoa (area->area_id));
paul718e3742002-12-13 20:15:29 +00001550
1551 if (area->external_routing != OSPF_AREA_NSSA)
paule2c6c152003-06-22 08:49:25 +00001552 continue;
paul718e3742002-12-13 20:15:29 +00001553
1554 if (OSPF_IS_AREA_BACKBONE (area))
paule2c6c152003-06-22 08:49:25 +00001555 continue; /* Sanity Check */
paul718e3742002-12-13 20:15:29 +00001556
1557 /* if (!TranslatorRole continue V 1.0 look for "always" conf */
paule2c6c152003-06-22 08:49:25 +00001558 if (area->NSSATranslatorState)
1559 {
1560 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001561 zlog_debug ("ospf_abr_announce_nssa_defaults(): "
paule2c6c152003-06-22 08:49:25 +00001562 "announcing 0.0.0.0/0 to this nssa");
1563 /* ospf_abr_announce_nssa_asbr_to_as (&p, area->default_cost, area); */
pauld4a53d52003-07-12 21:30:57 +00001564 /*ospf_abr_announce_network_to_area (&p, area->default_cost, area);*/
paule2c6c152003-06-22 08:49:25 +00001565 }
paul718e3742002-12-13 20:15:29 +00001566 }
1567}
paul718e3742002-12-13 20:15:29 +00001568
paul4dadc292005-05-06 21:37:42 +00001569static void
paul147193a2003-04-19 00:31:59 +00001570ospf_abr_announce_stub_defaults (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00001571{
hasso52dc7ee2004-09-23 19:18:23 +00001572 struct listnode *node;
paul718e3742002-12-13 20:15:29 +00001573 struct ospf_area *area;
1574 struct prefix_ipv4 p;
1575
paul147193a2003-04-19 00:31:59 +00001576 if (! IS_OSPF_ABR (ospf))
paul718e3742002-12-13 20:15:29 +00001577 return;
1578
1579 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001580 zlog_debug ("ospf_abr_announce_stub_defaults(): Start");
paul718e3742002-12-13 20:15:29 +00001581
1582 p.family = AF_INET;
1583 p.prefix.s_addr = OSPF_DEFAULT_DESTINATION;
1584 p.prefixlen = 0;
1585
paul1eb8ef22005-04-07 07:30:20 +00001586 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
paul718e3742002-12-13 20:15:29 +00001587 {
paul718e3742002-12-13 20:15:29 +00001588 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001589 zlog_debug ("ospf_abr_announce_stub_defaults(): looking at area %s",
1590 inet_ntoa (area->area_id));
paul718e3742002-12-13 20:15:29 +00001591
pauld4a53d52003-07-12 21:30:57 +00001592 if ( (area->external_routing != OSPF_AREA_STUB)
pauld4a53d52003-07-12 21:30:57 +00001593 && (area->external_routing != OSPF_AREA_NSSA)
pauld4a53d52003-07-12 21:30:57 +00001594 )
1595 continue;
paul718e3742002-12-13 20:15:29 +00001596
1597 if (OSPF_IS_AREA_BACKBONE (area))
pauld4a53d52003-07-12 21:30:57 +00001598 continue; /* Sanity Check */
1599
paul718e3742002-12-13 20:15:29 +00001600 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001601 zlog_debug ("ospf_abr_announce_stub_defaults(): "
1602 "announcing 0.0.0.0/0 to area %s",
pauld4a53d52003-07-12 21:30:57 +00001603 inet_ntoa (area->area_id));
paul718e3742002-12-13 20:15:29 +00001604 ospf_abr_announce_network_to_area (&p, area->default_cost, area);
1605 }
1606
1607 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001608 zlog_debug ("ospf_abr_announce_stub_defaults(): Stop");
paul718e3742002-12-13 20:15:29 +00001609}
1610
paul4dadc292005-05-06 21:37:42 +00001611static int
paul147193a2003-04-19 00:31:59 +00001612ospf_abr_remove_unapproved_translates_apply (struct ospf *ospf,
1613 struct ospf_lsa *lsa)
paul718e3742002-12-13 20:15:29 +00001614{
1615 if (CHECK_FLAG (lsa->flags, OSPF_LSA_LOCAL_XLT)
1616 && ! CHECK_FLAG (lsa->flags, OSPF_LSA_APPROVED))
1617 {
1618 zlog_info ("ospf_abr_remove_unapproved_translates(): "
1619 "removing unapproved translates, ID: %s",
1620 inet_ntoa (lsa->data->id));
1621
1622 /* FLUSH THROUGHOUT AS */
paul147193a2003-04-19 00:31:59 +00001623 ospf_lsa_flush_as (ospf, lsa);
paul718e3742002-12-13 20:15:29 +00001624
1625 /* DISCARD from LSDB */
1626 }
1627 return 0;
1628}
1629
paul4dadc292005-05-06 21:37:42 +00001630static void
paul147193a2003-04-19 00:31:59 +00001631ospf_abr_remove_unapproved_translates (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00001632{
paul147193a2003-04-19 00:31:59 +00001633 struct route_node *rn;
1634 struct ospf_lsa *lsa;
1635
paul718e3742002-12-13 20:15:29 +00001636 /* All AREA PROCESS should have APPROVED necessary LSAs */
1637 /* Remove any left over and not APPROVED */
1638 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001639 zlog_debug ("ospf_abr_remove_unapproved_translates(): Start");
paul718e3742002-12-13 20:15:29 +00001640
paul147193a2003-04-19 00:31:59 +00001641 LSDB_LOOP (EXTERNAL_LSDB (ospf), rn, lsa)
1642 ospf_abr_remove_unapproved_translates_apply (ospf, lsa);
paul718e3742002-12-13 20:15:29 +00001643
1644 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001645 zlog_debug ("ospf_abr_remove_unapproved_translates(): Stop");
paul718e3742002-12-13 20:15:29 +00001646}
paul718e3742002-12-13 20:15:29 +00001647
paul4dadc292005-05-06 21:37:42 +00001648static void
paul147193a2003-04-19 00:31:59 +00001649ospf_abr_remove_unapproved_summaries (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00001650{
hasso52dc7ee2004-09-23 19:18:23 +00001651 struct listnode *node;
paul718e3742002-12-13 20:15:29 +00001652 struct ospf_area *area;
paul147193a2003-04-19 00:31:59 +00001653 struct route_node *rn;
1654 struct ospf_lsa *lsa;
paul718e3742002-12-13 20:15:29 +00001655
1656 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001657 zlog_debug ("ospf_abr_remove_unapproved_summaries(): Start");
paul718e3742002-12-13 20:15:29 +00001658
paul1eb8ef22005-04-07 07:30:20 +00001659 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
paul718e3742002-12-13 20:15:29 +00001660 {
paul718e3742002-12-13 20:15:29 +00001661 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001662 zlog_debug ("ospf_abr_remove_unapproved_summaries(): "
paul718e3742002-12-13 20:15:29 +00001663 "looking at area %s", inet_ntoa (area->area_id));
1664
paul147193a2003-04-19 00:31:59 +00001665 LSDB_LOOP (SUMMARY_LSDB (area), rn, lsa)
1666 if (ospf_lsa_is_self_originated (ospf, lsa))
1667 if (!CHECK_FLAG (lsa->flags, OSPF_LSA_APPROVED))
1668 ospf_lsa_flush_area (lsa, area);
1669
1670 LSDB_LOOP (ASBR_SUMMARY_LSDB (area), rn, lsa)
1671 if (ospf_lsa_is_self_originated (ospf, lsa))
1672 if (!CHECK_FLAG (lsa->flags, OSPF_LSA_APPROVED))
1673 ospf_lsa_flush_area (lsa, area);
paul718e3742002-12-13 20:15:29 +00001674 }
1675
1676 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001677 zlog_debug ("ospf_abr_remove_unapproved_summaries(): Stop");
paul718e3742002-12-13 20:15:29 +00001678}
1679
paul4dadc292005-05-06 21:37:42 +00001680static void
paul147193a2003-04-19 00:31:59 +00001681ospf_abr_manage_discard_routes (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00001682{
paul1eb8ef22005-04-07 07:30:20 +00001683 struct listnode *node, *nnode;
paul718e3742002-12-13 20:15:29 +00001684 struct route_node *rn;
1685 struct ospf_area *area;
1686 struct ospf_area_range *range;
1687
paul1eb8ef22005-04-07 07:30:20 +00001688 for (ALL_LIST_ELEMENTS (ospf->areas, node, nnode, area))
1689 for (rn = route_top (area->ranges); rn; rn = route_next (rn))
1690 if ((range = rn->info) != NULL)
1691 if (CHECK_FLAG (range->flags, OSPF_AREA_RANGE_ADVERTISE))
1692 {
1693 if (range->specifics)
1694 ospf_add_discard_route (ospf->new_table, area,
1695 (struct prefix_ipv4 *) &rn->p);
1696 else
1697 ospf_delete_discard_route ((struct prefix_ipv4 *) &rn->p);
1698 }
paul718e3742002-12-13 20:15:29 +00001699}
1700
paul718e3742002-12-13 20:15:29 +00001701/* This is the function taking care about ABR NSSA, i.e. NSSA
1702 Translator, -LSA aggregation and flooding. For all NSSAs
1703
1704 Any SELF-AS-LSA is in the Type-5 LSDB and Type-7 LSDB. These LSA's
1705 are refreshed from the Type-5 LSDB, installed into the Type-7 LSDB
1706 with the P-bit set.
1707
1708 Any received Type-5s are legal for an ABR, else illegal for IR.
1709 Received Type-7s are installed, by area, with incoming P-bit. They
1710 are flooded; if the Elected NSSA Translator, then P-bit off.
1711
1712 Additionally, this ABR will place "translated type-7's" into the
1713 Type-5 LSDB in order to keep track of APPROVAL or not.
1714
1715 It will scan through every area, looking for Type-7 LSAs with P-Bit
1716 SET. The Type-7's are either AS-FLOODED & 5-INSTALLED or
1717 AGGREGATED. Later, the AGGREGATED LSAs are AS-FLOODED &
1718 5-INSTALLED.
1719
1720 5-INSTALLED is into the Type-5 LSDB; Any UNAPPROVED Type-5 LSAs
1721 left over are FLUSHED and DISCARDED.
1722
1723 For External Calculations, any NSSA areas use the Type-7 AREA-LSDB,
1724 any ABR-non-NSSA areas use the Type-5 GLOBAL-LSDB. */
1725
paul4dadc292005-05-06 21:37:42 +00001726static void
paul147193a2003-04-19 00:31:59 +00001727ospf_abr_nssa_task (struct ospf *ospf) /* called only if any_nssa */
paul718e3742002-12-13 20:15:29 +00001728{
1729 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001730 zlog_debug ("Check for NSSA-ABR Tasks():");
paul718e3742002-12-13 20:15:29 +00001731
paul147193a2003-04-19 00:31:59 +00001732 if (! IS_OSPF_ABR (ospf))
paul718e3742002-12-13 20:15:29 +00001733 return;
1734
paul147193a2003-04-19 00:31:59 +00001735 if (! ospf->anyNSSA)
paul718e3742002-12-13 20:15:29 +00001736 return;
1737
1738 /* Each area must confirm TranslatorRole */
1739 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001740 zlog_debug ("ospf_abr_nssa_task(): Start");
paul718e3742002-12-13 20:15:29 +00001741
1742 /* For all Global Entries flagged "local-translate", unset APPROVED */
1743 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001744 zlog_debug ("ospf_abr_nssa_task(): unapprove translates");
paul718e3742002-12-13 20:15:29 +00001745
paul147193a2003-04-19 00:31:59 +00001746 ospf_abr_unapprove_translates (ospf);
paul718e3742002-12-13 20:15:29 +00001747
1748 /* RESET all Ranges in every Area, same as summaries */
1749 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001750 zlog_debug ("ospf_abr_nssa_task(): NSSA initialize aggregates");
paule2c6c152003-06-22 08:49:25 +00001751 ospf_abr_prepare_aggregates (ospf); /*TURNED OFF just for now */
paul718e3742002-12-13 20:15:29 +00001752
1753 /* For all NSSAs, Type-7s, translate to 5's, INSTALL/FLOOD, or
paule2c6c152003-06-22 08:49:25 +00001754 * Aggregate as Type-7
1755 * Install or Approve in Type-5 Global LSDB
1756 */
paul718e3742002-12-13 20:15:29 +00001757 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001758 zlog_debug ("ospf_abr_nssa_task(): process translates");
paul147193a2003-04-19 00:31:59 +00001759 ospf_abr_process_nssa_translates (ospf);
paul718e3742002-12-13 20:15:29 +00001760
1761 /* Translate/Send any "ranged" aggregates, and also 5-Install and
paule2c6c152003-06-22 08:49:25 +00001762 * Approve
1763 * Scan Type-7's for aggregates, translate to Type-5's,
1764 * Install/Flood/Approve
1765 */
paul718e3742002-12-13 20:15:29 +00001766 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001767 zlog_debug("ospf_abr_nssa_task(): send NSSA aggregates");
paule2c6c152003-06-22 08:49:25 +00001768 ospf_abr_send_nssa_aggregates (ospf); /*TURNED OFF FOR NOW */
paul718e3742002-12-13 20:15:29 +00001769
pauld4a53d52003-07-12 21:30:57 +00001770 /* Send any NSSA defaults as Type-5
1771 *if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001772 * zlog_debug ("ospf_abr_nssa_task(): announce nssa defaults");
pauld4a53d52003-07-12 21:30:57 +00001773 *ospf_abr_announce_nssa_defaults (ospf);
1774 * havnt a clue what above is supposed to do.
1775 */
paul718e3742002-12-13 20:15:29 +00001776
1777 /* Flush any unapproved previous translates from Global Data Base */
1778 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001779 zlog_debug ("ospf_abr_nssa_task(): remove unapproved translates");
paul147193a2003-04-19 00:31:59 +00001780 ospf_abr_remove_unapproved_translates (ospf);
paul718e3742002-12-13 20:15:29 +00001781
paul147193a2003-04-19 00:31:59 +00001782 ospf_abr_manage_discard_routes (ospf); /* same as normal...discard */
paul718e3742002-12-13 20:15:29 +00001783
1784 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001785 zlog_debug ("ospf_abr_nssa_task(): Stop");
paul718e3742002-12-13 20:15:29 +00001786}
paul718e3742002-12-13 20:15:29 +00001787
1788/* This is the function taking care about ABR stuff, i.e.
1789 summary-LSA origination and flooding. */
1790void
paul147193a2003-04-19 00:31:59 +00001791ospf_abr_task (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00001792{
1793 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001794 zlog_debug ("ospf_abr_task(): Start");
paul718e3742002-12-13 20:15:29 +00001795
paul147193a2003-04-19 00:31:59 +00001796 if (ospf->new_table == NULL || ospf->new_rtrs == NULL)
paul718e3742002-12-13 20:15:29 +00001797 {
1798 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001799 zlog_debug ("ospf_abr_task(): Routing tables are not yet ready");
paul718e3742002-12-13 20:15:29 +00001800 return;
1801 }
1802
1803 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001804 zlog_debug ("ospf_abr_task(): unapprove summaries");
paul147193a2003-04-19 00:31:59 +00001805 ospf_abr_unapprove_summaries (ospf);
paul718e3742002-12-13 20:15:29 +00001806
1807 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001808 zlog_debug ("ospf_abr_task(): prepare aggregates");
paul147193a2003-04-19 00:31:59 +00001809 ospf_abr_prepare_aggregates (ospf);
paul718e3742002-12-13 20:15:29 +00001810
paul147193a2003-04-19 00:31:59 +00001811 if (IS_OSPF_ABR (ospf))
paul718e3742002-12-13 20:15:29 +00001812 {
1813 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001814 zlog_debug ("ospf_abr_task(): process network RT");
paul147193a2003-04-19 00:31:59 +00001815 ospf_abr_process_network_rt (ospf, ospf->new_table);
paul718e3742002-12-13 20:15:29 +00001816
1817 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001818 zlog_debug ("ospf_abr_task(): process router RT");
paul147193a2003-04-19 00:31:59 +00001819 ospf_abr_process_router_rt (ospf, ospf->new_rtrs);
paul718e3742002-12-13 20:15:29 +00001820
1821 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001822 zlog_debug ("ospf_abr_task(): announce aggregates");
paul147193a2003-04-19 00:31:59 +00001823 ospf_abr_announce_aggregates (ospf);
paul718e3742002-12-13 20:15:29 +00001824
1825 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001826 zlog_debug ("ospf_abr_task(): announce stub defaults");
paul147193a2003-04-19 00:31:59 +00001827 ospf_abr_announce_stub_defaults (ospf);
paul718e3742002-12-13 20:15:29 +00001828 }
1829
1830 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001831 zlog_debug ("ospf_abr_task(): remove unapproved summaries");
paul147193a2003-04-19 00:31:59 +00001832 ospf_abr_remove_unapproved_summaries (ospf);
paul718e3742002-12-13 20:15:29 +00001833
paul147193a2003-04-19 00:31:59 +00001834 ospf_abr_manage_discard_routes (ospf);
paul718e3742002-12-13 20:15:29 +00001835
paul718e3742002-12-13 20:15:29 +00001836 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001837 zlog_debug ("ospf_abr_task(): Stop");
paul718e3742002-12-13 20:15:29 +00001838}
1839
paul4dadc292005-05-06 21:37:42 +00001840static int
paul147193a2003-04-19 00:31:59 +00001841ospf_abr_task_timer (struct thread *thread)
paul718e3742002-12-13 20:15:29 +00001842{
paul147193a2003-04-19 00:31:59 +00001843 struct ospf *ospf = THREAD_ARG (thread);
1844
1845 ospf->t_abr_task = 0;
paul718e3742002-12-13 20:15:29 +00001846
1847 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001848 zlog_debug ("Running ABR task on timer");
paul718e3742002-12-13 20:15:29 +00001849
paul147193a2003-04-19 00:31:59 +00001850 ospf_check_abr_status (ospf);
pauld4a53d52003-07-12 21:30:57 +00001851 ospf_abr_nssa_check_status (ospf);
paul718e3742002-12-13 20:15:29 +00001852
paul147193a2003-04-19 00:31:59 +00001853 ospf_abr_task (ospf);
paule2c6c152003-06-22 08:49:25 +00001854 ospf_abr_nssa_task (ospf); /* if nssa-abr, then scan Type-7 LSDB */
paul718e3742002-12-13 20:15:29 +00001855
paul147193a2003-04-19 00:31:59 +00001856 return 0;
paul718e3742002-12-13 20:15:29 +00001857}
1858
1859void
paul147193a2003-04-19 00:31:59 +00001860ospf_schedule_abr_task (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00001861{
1862 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001863 zlog_debug ("Scheduling ABR task");
paul147193a2003-04-19 00:31:59 +00001864
1865 if (ospf->t_abr_task == NULL)
1866 ospf->t_abr_task = thread_add_timer (master, ospf_abr_task_timer,
1867 ospf, OSPF_ABR_TASK_DELAY);
paul718e3742002-12-13 20:15:29 +00001868}