blob: 88636f1a41d1d5dc4cefec4f428edc379e6cf7e4 [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
Paul Jakma214a4452006-05-12 22:51:49 +0000247 range = ospf_area_range_lookup (area, p);
paul718e3742002-12-13 20:15:29 +0000248 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;
Paul Jakma9560fa82006-06-26 12:50:06 +0000412
paul1eb8ef22005-04-07 07:30:20 +0000413 for (ALL_LIST_ELEMENTS (ospf->areas, lnode, nnode, area))
paule2c6c152003-06-22 08:49:25 +0000414 {
Paul Jakma9560fa82006-06-26 12:50:06 +0000415 u_char old_state = area->NSSATranslatorState;
416
paule2c6c152003-06-22 08:49:25 +0000417 if (area->external_routing != OSPF_AREA_NSSA)
418 continue;
Paul Jakma9560fa82006-06-26 12:50:06 +0000419
paule2c6c152003-06-22 08:49:25 +0000420 if (IS_DEBUG_OSPF (nssa, NSSA))
ajse84cc642004-12-08 17:28:56 +0000421 zlog_debug ("ospf_abr_nssa_check_status: "
paule2c6c152003-06-22 08:49:25 +0000422 "checking area %s",
423 inet_ntoa (area->area_id));
Paul Jakma9560fa82006-06-26 12:50:06 +0000424
paule2c6c152003-06-22 08:49:25 +0000425 if (!IS_OSPF_ABR (area->ospf))
426 {
427 if (IS_DEBUG_OSPF (nssa, NSSA))
Paul Jakma9560fa82006-06-26 12:50:06 +0000428 zlog_debug ("ospf_abr_nssa_check_status: "
429 "not ABR");
pauld4a53d52003-07-12 21:30:57 +0000430 area->NSSATranslatorState = OSPF_NSSA_TRANSLATE_DISABLED;
paule2c6c152003-06-22 08:49:25 +0000431 }
Paul Jakma9560fa82006-06-26 12:50:06 +0000432 else
433 {
434 switch (area->NSSATranslatorRole)
435 {
436 case OSPF_NSSA_ROLE_NEVER:
437 /* We never Translate Type-7 LSA. */
438 /* TODO: check previous state and flush? */
439 if (IS_DEBUG_OSPF (nssa, NSSA))
440 zlog_debug ("ospf_abr_nssa_check_status: "
441 "never translate");
442 area->NSSATranslatorState = OSPF_NSSA_TRANSLATE_DISABLED;
443 break;
444
445 case OSPF_NSSA_ROLE_ALWAYS:
446 /* We always translate if we are an ABR
447 * TODO: originate new LSAs if state change?
448 * or let the nssa abr task take care of it?
449 */
450 if (IS_DEBUG_OSPF (nssa, NSSA))
451 zlog_debug ("ospf_abr_nssa_check_status: "
452 "translate always");
453 area->NSSATranslatorState = OSPF_NSSA_TRANSLATE_ENABLED;
454 break;
455
456 case OSPF_NSSA_ROLE_CANDIDATE:
457 /* We are a candidate for Translation */
458 if (ospf_abr_nssa_am_elected (area) > 0)
459 {
460 area->NSSATranslatorState = OSPF_NSSA_TRANSLATE_ENABLED;
461 if (IS_DEBUG_OSPF (nssa, NSSA))
462 zlog_debug ("ospf_abr_nssa_check_status: "
463 "elected translator");
464 }
465 else
466 {
467 area->NSSATranslatorState = OSPF_NSSA_TRANSLATE_DISABLED;
468 if (IS_DEBUG_OSPF (nssa, NSSA))
469 zlog_debug ("ospf_abr_nssa_check_status: " "not elected");
470 }
471 break;
472 }
473 }
474 /* RFC3101, 3.1:
475 * All NSSA border routers must set the E-bit in the Type-1 router-LSAs
476 * of their directly attached non-stub areas, even when they are not
477 * translating.
478 */
479 if (old_state != area->NSSATranslatorState)
480 {
481 if (old_state == OSPF_NSSA_TRANSLATE_DISABLED)
482 ospf_asbr_status_update (ospf, ++ospf->redistribute);
483 else if (area->NSSATranslatorState == OSPF_NSSA_TRANSLATE_DISABLED)
484 ospf_asbr_status_update (ospf, --ospf->redistribute);
485 }
paule2c6c152003-06-22 08:49:25 +0000486 }
487}
paule2c6c152003-06-22 08:49:25 +0000488
paul718e3742002-12-13 20:15:29 +0000489/* Check area border router status. */
490void
paul147193a2003-04-19 00:31:59 +0000491ospf_check_abr_status (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +0000492{
493 struct ospf_area *area;
paul1eb8ef22005-04-07 07:30:20 +0000494 struct listnode *node, *nnode;
paul718e3742002-12-13 20:15:29 +0000495 int bb_configured = 0;
496 int bb_act_attached = 0;
497 int areas_configured = 0;
498 int areas_act_attached = 0;
paul147193a2003-04-19 00:31:59 +0000499 u_char new_flags = ospf->flags;
paul718e3742002-12-13 20:15:29 +0000500
501 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000502 zlog_debug ("ospf_check_abr_status(): Start");
paul718e3742002-12-13 20:15:29 +0000503
paul1eb8ef22005-04-07 07:30:20 +0000504 for (ALL_LIST_ELEMENTS (ospf->areas, node, nnode, area))
paul718e3742002-12-13 20:15:29 +0000505 {
paul718e3742002-12-13 20:15:29 +0000506 if (listcount (area->oiflist))
507 {
508 areas_configured++;
509
510 if (OSPF_IS_AREA_BACKBONE (area))
511 bb_configured = 1;
512 }
513
514 if (ospf_area_actively_attached (area))
515 {
516 areas_act_attached++;
517
518 if (OSPF_IS_AREA_BACKBONE (area))
519 bb_act_attached = 1;
520 }
521 }
522
523 if (IS_DEBUG_OSPF_EVENT)
524 {
ajse84cc642004-12-08 17:28:56 +0000525 zlog_debug ("ospf_check_abr_status(): looked through areas");
526 zlog_debug ("ospf_check_abr_status(): bb_configured: %d", bb_configured);
527 zlog_debug ("ospf_check_abr_status(): bb_act_attached: %d",
paul718e3742002-12-13 20:15:29 +0000528 bb_act_attached);
ajse84cc642004-12-08 17:28:56 +0000529 zlog_debug ("ospf_check_abr_status(): areas_configured: %d",
paul718e3742002-12-13 20:15:29 +0000530 areas_configured);
ajse84cc642004-12-08 17:28:56 +0000531 zlog_debug ("ospf_check_abr_status(): areas_act_attached: %d",
paul718e3742002-12-13 20:15:29 +0000532 areas_act_attached);
533 }
534
paul147193a2003-04-19 00:31:59 +0000535 switch (ospf->abr_type)
paul718e3742002-12-13 20:15:29 +0000536 {
537 case OSPF_ABR_SHORTCUT:
538 case OSPF_ABR_STAND:
539 if (areas_act_attached > 1)
540 SET_FLAG (new_flags, OSPF_FLAG_ABR);
541 else
542 UNSET_FLAG (new_flags, OSPF_FLAG_ABR);
543 break;
544
545 case OSPF_ABR_IBM:
546 if ((areas_act_attached > 1) && bb_configured)
547 SET_FLAG (new_flags, OSPF_FLAG_ABR);
548 else
549 UNSET_FLAG (new_flags, OSPF_FLAG_ABR);
550 break;
551
552 case OSPF_ABR_CISCO:
553 if ((areas_configured > 1) && bb_act_attached)
554 SET_FLAG (new_flags, OSPF_FLAG_ABR);
555 else
556 UNSET_FLAG (new_flags, OSPF_FLAG_ABR);
557 break;
558 default:
559 break;
560 }
561
paul147193a2003-04-19 00:31:59 +0000562 if (new_flags != ospf->flags)
paul718e3742002-12-13 20:15:29 +0000563 {
paul147193a2003-04-19 00:31:59 +0000564 ospf_spf_calculate_schedule (ospf);
paul718e3742002-12-13 20:15:29 +0000565 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000566 zlog_debug ("ospf_check_abr_status(): new router flags: %x",new_flags);
paul147193a2003-04-19 00:31:59 +0000567 ospf->flags = new_flags;
568 OSPF_TIMER_ON (ospf->t_router_lsa_update,
paul718e3742002-12-13 20:15:29 +0000569 ospf_router_lsa_update_timer, OSPF_LSA_UPDATE_DELAY);
570 }
571}
572
paul4dadc292005-05-06 21:37:42 +0000573static void
paul718e3742002-12-13 20:15:29 +0000574ospf_abr_update_aggregate (struct ospf_area_range *range,
paul7f352b82004-02-19 19:37:47 +0000575 struct ospf_route *or)
paul718e3742002-12-13 20:15:29 +0000576{
577 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000578 zlog_debug ("ospf_abr_update_aggregate(): Start");
paul718e3742002-12-13 20:15:29 +0000579
paul6c835672004-10-11 11:00:30 +0000580 if (range->cost_config != OSPF_AREA_RANGE_COST_UNSPEC)
paul718e3742002-12-13 20:15:29 +0000581 {
582 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000583 zlog_debug ("ospf_abr_update_aggregate(): use configured cost %d",
paul7f352b82004-02-19 19:37:47 +0000584 range->cost_config);
paul718e3742002-12-13 20:15:29 +0000585
586 range->cost = range->cost_config;
587 }
588 else
589 {
590 if (range->specifics == 0)
paul7f352b82004-02-19 19:37:47 +0000591 range->cost = or->cost; /* 1st time get 1st cost */
paul718e3742002-12-13 20:15:29 +0000592
paul7f352b82004-02-19 19:37:47 +0000593 if (or->cost > range->cost)
594 {
595 if (IS_DEBUG_OSPF_EVENT)
paul500e4182005-05-26 17:11:13 +0000596 zlog_debug ("ospf_abr_update_aggregate(): largest cost, update");
paul718e3742002-12-13 20:15:29 +0000597
paul7f352b82004-02-19 19:37:47 +0000598 range->cost = or->cost;
599 }
paul718e3742002-12-13 20:15:29 +0000600 }
601
602 range->specifics++;
603}
604
605static void
606set_metric (struct ospf_lsa *lsa, u_int32_t metric)
607{
608 struct summary_lsa *header;
609 u_char *mp;
610 metric = htonl (metric);
hassoc9e52be2004-09-26 16:09:34 +0000611 mp = (u_char *) &metric;
paul718e3742002-12-13 20:15:29 +0000612 mp++;
613 header = (struct summary_lsa *) lsa->data;
614 memcpy(header->metric, mp, 3);
615}
616
paul4dadc292005-05-06 21:37:42 +0000617static int
paul718e3742002-12-13 20:15:29 +0000618ospf_abr_check_nssa_range (struct prefix_ipv4 *p, u_int32_t cost,
619 struct ospf_area *area)
620{
621 /* The Type-7 is tested against the aggregated prefix and forwarded
622 for lsa installation and flooding */
623 return 0;
624}
625
626/* ospf_abr_translate_nssa */
paul4dadc292005-05-06 21:37:42 +0000627static int
paul147193a2003-04-19 00:31:59 +0000628ospf_abr_translate_nssa (struct ospf_area *area, struct ospf_lsa *lsa)
paul718e3742002-12-13 20:15:29 +0000629{
630 /* Incoming Type-7 or later aggregated Type-7
pauld4a53d52003-07-12 21:30:57 +0000631 *
632 * LSA is skipped if P-bit is off.
633 * LSA is aggregated if within range.
634 *
635 * The Type-7 is translated, Installed/Approved as a Type-5 into
636 * global LSDB, then Flooded through AS
637 *
638 * Later, any Unapproved Translated Type-5's are flushed/discarded
639 */
paul718e3742002-12-13 20:15:29 +0000640
pauld4a53d52003-07-12 21:30:57 +0000641 struct ospf_lsa *old = NULL,
642 *new = NULL;
643 struct as_external_lsa *ext7;
644 struct prefix_ipv4 p;
paul718e3742002-12-13 20:15:29 +0000645
646 if (! CHECK_FLAG (lsa->data->options, OSPF_OPTION_NP))
647 {
648 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +0000649 zlog_debug ("ospf_abr_translate_nssa(): LSA Id %s, P-bit off, NO Translation",
pauld4a53d52003-07-12 21:30:57 +0000650 inet_ntoa (lsa->data->id));
651 return 1;
paul718e3742002-12-13 20:15:29 +0000652 }
pauld4a53d52003-07-12 21:30:57 +0000653
paul718e3742002-12-13 20:15:29 +0000654 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +0000655 zlog_debug ("ospf_abr_translate_nssa(): LSA Id %s, TRANSLATING 7 to 5",
pauld4a53d52003-07-12 21:30:57 +0000656 inet_ntoa (lsa->data->id));
paul718e3742002-12-13 20:15:29 +0000657
pauld4a53d52003-07-12 21:30:57 +0000658 ext7 = (struct as_external_lsa *)(lsa->data);
659 p.prefix = lsa->data->id;
660 p.prefixlen = ip_masklen (ext7->mask);
661
662 if (ext7->e[0].fwd_addr.s_addr == OSPF_DEFAULT_DESTINATION)
663 {
664 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +0000665 zlog_debug ("ospf_abr_translate_nssa(): LSA Id %s, "
pauld4a53d52003-07-12 21:30:57 +0000666 "Forward address is 0, NO Translation",
667 inet_ntoa (lsa->data->id));
668 return 1;
669 }
670
671 /* try find existing AS-External LSA for this prefix */
672
673 old = ospf_external_info_find_lsa (area->ospf, &p);
674
675 if (old)
676 {
677 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +0000678 zlog_debug ("ospf_abr_translate_nssa(): "
pauld4a53d52003-07-12 21:30:57 +0000679 "found old translated LSA Id %s, refreshing",
680 inet_ntoa (old->data->id));
681
682 /* refresh */
683 new = ospf_translated_nssa_refresh (area->ospf, lsa, old);
684 if (!new)
685 {
686 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +0000687 zlog_debug ("ospf_abr_translate_nssa(): "
pauld4a53d52003-07-12 21:30:57 +0000688 "could not refresh translated LSA Id %s",
689 inet_ntoa (old->data->id));
690 }
691 }
692 else
693 {
694 /* no existing external route for this LSA Id
695 * originate translated LSA
696 */
697
698 if ((new = ospf_translated_nssa_originate (area->ospf, lsa))
699 == NULL)
700 {
701 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +0000702 zlog_debug ("ospf_abr_translate_nssa(): Could not translate "
pauld4a53d52003-07-12 21:30:57 +0000703 "Type-7 for %s to Type-5",
704 inet_ntoa (lsa->data->id));
705 return 1;
706 }
707 }
paul718e3742002-12-13 20:15:29 +0000708
709 /* Area where Aggregate testing will be inserted, just like summary
710 advertisements */
711 /* ospf_abr_check_nssa_range (p_arg, lsa-> cost, lsa -> area); */
712
paul718e3742002-12-13 20:15:29 +0000713 return 0;
714}
715
paul4dadc292005-05-06 21:37:42 +0000716static void
paul718e3742002-12-13 20:15:29 +0000717ospf_abr_translate_nssa_range (struct prefix_ipv4 *p, u_int32_t cost)
718{
719 /* The Type-7 is created from the aggregated prefix and forwarded
720 for lsa installation and flooding... to be added... */
721}
paul718e3742002-12-13 20:15:29 +0000722
vincentba682532005-09-29 13:52:57 +0000723void
paul718e3742002-12-13 20:15:29 +0000724ospf_abr_announce_network_to_area (struct prefix_ipv4 *p, u_int32_t cost,
725 struct ospf_area *area)
726{
727 struct ospf_lsa *lsa, *old = NULL;
728 struct summary_lsa *sl = NULL;
729
730 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000731 zlog_debug ("ospf_abr_announce_network_to_area(): Start");
paul718e3742002-12-13 20:15:29 +0000732
pauld4a53d52003-07-12 21:30:57 +0000733 old = ospf_lsa_lookup_by_prefix (area->lsdb, OSPF_SUMMARY_LSA,
734 (struct prefix_ipv4 *) p,
735 area->ospf->router_id);
paul718e3742002-12-13 20:15:29 +0000736 if (old)
737 {
738 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000739 zlog_debug ("ospf_abr_announce_network_to_area(): old summary found");
pauld4a53d52003-07-12 21:30:57 +0000740
paul718e3742002-12-13 20:15:29 +0000741 sl = (struct summary_lsa *) old->data;
742
743 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000744 zlog_debug ("ospf_abr_announce_network_to_area(): "
pauld4a53d52003-07-12 21:30:57 +0000745 "old metric: %d, new metric: %d",
746 GET_METRIC (sl->metric), cost);
747
748 if (GET_METRIC (sl->metric) == cost)
749 {
750 /* unchanged. simply reapprove it */
751 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000752 zlog_debug ("ospf_abr_announce_network_to_area(): "
pauld4a53d52003-07-12 21:30:57 +0000753 "old summary approved");
754 SET_FLAG (old->flags, OSPF_LSA_APPROVED);
755 }
756 else
757 {
758 /* LSA is changed, refresh it */
759 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000760 zlog_debug ("ospf_abr_announce_network_to_area(): "
pauld4a53d52003-07-12 21:30:57 +0000761 "refreshing summary");
762 set_metric (old, cost);
763 lsa = ospf_summary_lsa_refresh (area->ospf, old);
paulc24d6022005-11-20 14:54:12 +0000764
765 if (!lsa)
766 {
767 char buf[INET_ADDRSTRLEN + 3]; /* ipv4 and /XX */
768
769 prefix2str ((struct prefix *) p, buf, sizeof(buf));
770 zlog_warn ("%s: Could not refresh %s to %s",
771 __func__,
772 buf,
773 inet_ntoa (area->area_id));
774 return;
775 }
776
paulc8987752005-07-26 06:07:22 +0000777 SET_FLAG (lsa->flags, OSPF_LSA_APPROVED);
pauld4a53d52003-07-12 21:30:57 +0000778 /* This will flood through area. */
779 }
paul718e3742002-12-13 20:15:29 +0000780 }
781 else
782 {
783 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000784 zlog_debug ("ospf_abr_announce_network_to_area(): "
pauld4a53d52003-07-12 21:30:57 +0000785 "creating new summary");
786 lsa = ospf_summary_lsa_originate ( (struct prefix_ipv4 *)p, cost, area);
787 /* This will flood through area. */
paul718e3742002-12-13 20:15:29 +0000788
paulc24d6022005-11-20 14:54:12 +0000789 if (!lsa)
790 {
791 char buf[INET_ADDRSTRLEN + 3]; /* ipv4 and /XX */
792
793 prefix2str ((struct prefix *)p, buf, sizeof(buf));
794 zlog_warn ("%s: Could not originate %s to %s",
795 __func__,
796 buf,
797 inet_ntoa (area->area_id));
798 return;
799 }
800
paul718e3742002-12-13 20:15:29 +0000801 SET_FLAG (lsa->flags, OSPF_LSA_APPROVED);
802 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000803 zlog_debug ("ospf_abr_announce_network_to_area(): "
pauld4a53d52003-07-12 21:30:57 +0000804 "flooding new version of summary");
paul718e3742002-12-13 20:15:29 +0000805 }
806
807 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000808 zlog_debug ("ospf_abr_announce_network_to_area(): Stop");
paul718e3742002-12-13 20:15:29 +0000809}
810
paul4dadc292005-05-06 21:37:42 +0000811static int
paul718e3742002-12-13 20:15:29 +0000812ospf_abr_nexthops_belong_to_area (struct ospf_route *or,
813 struct ospf_area *area)
814{
paul1eb8ef22005-04-07 07:30:20 +0000815 struct listnode *node, *nnode;
paul96735ee2003-08-10 02:51:22 +0000816 struct ospf_path *path;
paul718e3742002-12-13 20:15:29 +0000817
paul1eb8ef22005-04-07 07:30:20 +0000818 for (ALL_LIST_ELEMENTS (or->paths, node, nnode, path))
paul718e3742002-12-13 20:15:29 +0000819 {
paul718e3742002-12-13 20:15:29 +0000820 struct ospf_interface *oi = path->oi;
821
822 if (oi != NULL)
paul96735ee2003-08-10 02:51:22 +0000823 if (oi->area == area)
824 return 1;
paul718e3742002-12-13 20:15:29 +0000825 }
826
827 return 0;
828}
829
paul4dadc292005-05-06 21:37:42 +0000830static int
pauld4a53d52003-07-12 21:30:57 +0000831ospf_abr_should_accept (struct prefix_ipv4 *p, struct ospf_area *area)
paul718e3742002-12-13 20:15:29 +0000832{
833 if (IMPORT_NAME (area))
834 {
835 if (IMPORT_LIST (area) == NULL)
836 IMPORT_LIST (area) = access_list_lookup (AFI_IP, IMPORT_NAME (area));
837
838 if (IMPORT_LIST (area))
839 if (access_list_apply (IMPORT_LIST (area), p) == FILTER_DENY)
840 return 0;
841 }
842
843 return 1;
844}
845
paul4dadc292005-05-06 21:37:42 +0000846static int
paul718e3742002-12-13 20:15:29 +0000847ospf_abr_plist_in_check (struct ospf_area *area, struct ospf_route *or,
pauld4a53d52003-07-12 21:30:57 +0000848 struct prefix_ipv4 *p)
paul718e3742002-12-13 20:15:29 +0000849{
850 if (PREFIX_NAME_IN (area))
851 {
852 if (PREFIX_LIST_IN (area) == NULL)
853 PREFIX_LIST_IN (area) = prefix_list_lookup (AFI_IP,
854 PREFIX_NAME_IN (area));
855 if (PREFIX_LIST_IN (area))
856 if (prefix_list_apply (PREFIX_LIST_IN (area), p) != PREFIX_PERMIT)
857 return 0;
858 }
859 return 1;
860}
861
paul4dadc292005-05-06 21:37:42 +0000862static int
paul718e3742002-12-13 20:15:29 +0000863ospf_abr_plist_out_check (struct ospf_area *area, struct ospf_route *or,
pauld4a53d52003-07-12 21:30:57 +0000864 struct prefix_ipv4 *p)
paul718e3742002-12-13 20:15:29 +0000865{
866 if (PREFIX_NAME_OUT (area))
867 {
868 if (PREFIX_LIST_OUT (area) == NULL)
869 PREFIX_LIST_OUT (area) = prefix_list_lookup (AFI_IP,
870 PREFIX_NAME_OUT (area));
871 if (PREFIX_LIST_OUT (area))
872 if (prefix_list_apply (PREFIX_LIST_OUT (area), p) != PREFIX_PERMIT)
873 return 0;
874 }
875 return 1;
876}
877
paul4dadc292005-05-06 21:37:42 +0000878static void
paul147193a2003-04-19 00:31:59 +0000879ospf_abr_announce_network (struct ospf *ospf,
pauld4a53d52003-07-12 21:30:57 +0000880 struct prefix_ipv4 *p, struct ospf_route *or)
paul718e3742002-12-13 20:15:29 +0000881{
paul718e3742002-12-13 20:15:29 +0000882 struct ospf_area_range *range;
paul718e3742002-12-13 20:15:29 +0000883 struct ospf_area *area, *or_area;
hasso52dc7ee2004-09-23 19:18:23 +0000884 struct listnode *node;
paul718e3742002-12-13 20:15:29 +0000885
886 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000887 zlog_debug ("ospf_abr_announce_network(): Start");
paul718e3742002-12-13 20:15:29 +0000888
paul147193a2003-04-19 00:31:59 +0000889 or_area = ospf_area_lookup_by_area_id (ospf, or->u.std.area_id);
paul718e3742002-12-13 20:15:29 +0000890 assert (or_area);
891
paul1eb8ef22005-04-07 07:30:20 +0000892 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
paul718e3742002-12-13 20:15:29 +0000893 {
paul718e3742002-12-13 20:15:29 +0000894 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000895 zlog_debug ("ospf_abr_announce_network(): looking at area %s",
paul718e3742002-12-13 20:15:29 +0000896 inet_ntoa (area->area_id));
897
898 if (IPV4_ADDR_SAME (&or->u.std.area_id, &area->area_id))
899 continue;
900
901 if (ospf_abr_nexthops_belong_to_area (or, area))
902 continue;
903
pauld4a53d52003-07-12 21:30:57 +0000904 if (!ospf_abr_should_accept (p, area))
paul718e3742002-12-13 20:15:29 +0000905 {
906 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000907 zlog_debug ("ospf_abr_announce_network(): "
paul718e3742002-12-13 20:15:29 +0000908 "prefix %s/%d was denied by import-list",
909 inet_ntoa (p->prefix), p->prefixlen);
910 continue;
911 }
912
pauld4a53d52003-07-12 21:30:57 +0000913 if (!ospf_abr_plist_in_check (area, or, p))
paul718e3742002-12-13 20:15:29 +0000914 {
915 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000916 zlog_debug ("ospf_abr_announce_network(): "
paul718e3742002-12-13 20:15:29 +0000917 "prefix %s/%d was denied by prefix-list",
918 inet_ntoa (p->prefix), p->prefixlen);
919 continue;
920 }
921
922 if (area->external_routing != OSPF_AREA_DEFAULT && area->no_summary)
923 {
924 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000925 zlog_debug ("ospf_abr_announce_network(): "
paul718e3742002-12-13 20:15:29 +0000926 "area %s is stub and no_summary",
927 inet_ntoa (area->area_id));
928 continue;
929 }
930
931 if (or->path_type == OSPF_PATH_INTER_AREA)
932 {
933 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000934 zlog_debug ("ospf_abr_announce_network(): this is "
paul718e3742002-12-13 20:15:29 +0000935 "inter-area route to %s/%d",
936 inet_ntoa (p->prefix), p->prefixlen);
937
938 if (!OSPF_IS_AREA_BACKBONE (area))
939 ospf_abr_announce_network_to_area (p, or->cost, area);
940 }
941
942 if (or->path_type == OSPF_PATH_INTRA_AREA)
pauld4a53d52003-07-12 21:30:57 +0000943 {
944 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +0000945 zlog_debug ("ospf_abr_announce_network(): "
pauld4a53d52003-07-12 21:30:57 +0000946 "this is intra-area route to %s/%d",
947 inet_ntoa (p->prefix), p->prefixlen);
948 if ((range = ospf_area_range_match (or_area, p))
949 && !ospf_area_is_transit (area))
950 ospf_abr_update_aggregate (range, or);
951 else
952 ospf_abr_announce_network_to_area (p, or->cost, area);
953 }
paul718e3742002-12-13 20:15:29 +0000954 }
955}
956
paul4dadc292005-05-06 21:37:42 +0000957static int
paul147193a2003-04-19 00:31:59 +0000958ospf_abr_should_announce (struct ospf *ospf,
pauld4a53d52003-07-12 21:30:57 +0000959 struct prefix_ipv4 *p, struct ospf_route *or)
paul718e3742002-12-13 20:15:29 +0000960{
paul147193a2003-04-19 00:31:59 +0000961 struct ospf_area *area;
962
963 area = ospf_area_lookup_by_area_id (ospf, or->u.std.area_id);
paul718e3742002-12-13 20:15:29 +0000964
965 assert (area);
966
967 if (EXPORT_NAME (area))
968 {
969 if (EXPORT_LIST (area) == NULL)
970 EXPORT_LIST (area) = access_list_lookup (AFI_IP, EXPORT_NAME (area));
971
972 if (EXPORT_LIST (area))
973 if (access_list_apply (EXPORT_LIST (area), p) == FILTER_DENY)
974 return 0;
975 }
976
977 return 1;
978}
979
paul4dadc292005-05-06 21:37:42 +0000980static void
paul147193a2003-04-19 00:31:59 +0000981ospf_abr_process_nssa_translates (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +0000982{
983 /* Scan through all NSSA_LSDB records for all areas;
984
985 If P-bit is on, translate all Type-7's to 5's and aggregate or
986 flood install as approved in Type-5 LSDB with XLATE Flag on
987 later, do same for all aggregates... At end, DISCARD all
988 remaining UNAPPROVED Type-5's (Aggregate is for future ) */
hasso52dc7ee2004-09-23 19:18:23 +0000989 struct listnode *node;
paul718e3742002-12-13 20:15:29 +0000990 struct ospf_area *area;
paul147193a2003-04-19 00:31:59 +0000991 struct route_node *rn;
992 struct ospf_lsa *lsa;
paul718e3742002-12-13 20:15:29 +0000993
994 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +0000995 zlog_debug ("ospf_abr_process_nssa_translates(): Start");
paul718e3742002-12-13 20:15:29 +0000996
paul1eb8ef22005-04-07 07:30:20 +0000997 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
paul718e3742002-12-13 20:15:29 +0000998 {
paule2c6c152003-06-22 08:49:25 +0000999 if (! area->NSSATranslatorState)
pauld4a53d52003-07-12 21:30:57 +00001000 continue; /* skip if not translator */
paul718e3742002-12-13 20:15:29 +00001001
1002 if (area->external_routing != OSPF_AREA_NSSA)
pauld4a53d52003-07-12 21:30:57 +00001003 continue; /* skip if not Nssa Area */
paul718e3742002-12-13 20:15:29 +00001004
1005 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001006 zlog_debug ("ospf_abr_process_nssa_translates(): "
pauld4a53d52003-07-12 21:30:57 +00001007 "looking at area %s", inet_ntoa (area->area_id));
paul718e3742002-12-13 20:15:29 +00001008
paul147193a2003-04-19 00:31:59 +00001009 LSDB_LOOP (NSSA_LSDB (area), rn, lsa)
pauld4a53d52003-07-12 21:30:57 +00001010 ospf_abr_translate_nssa (area, lsa);
paul718e3742002-12-13 20:15:29 +00001011 }
1012
1013 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001014 zlog_debug ("ospf_abr_process_nssa_translates(): Stop");
paul718e3742002-12-13 20:15:29 +00001015
1016}
paul718e3742002-12-13 20:15:29 +00001017
paul4dadc292005-05-06 21:37:42 +00001018static void
paul147193a2003-04-19 00:31:59 +00001019ospf_abr_process_network_rt (struct ospf *ospf,
1020 struct route_table *rt)
paul718e3742002-12-13 20:15:29 +00001021{
paul718e3742002-12-13 20:15:29 +00001022 struct ospf_area *area;
paul147193a2003-04-19 00:31:59 +00001023 struct ospf_route *or;
1024 struct route_node *rn;
paul718e3742002-12-13 20:15:29 +00001025
1026 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001027 zlog_debug ("ospf_abr_process_network_rt(): Start");
paul718e3742002-12-13 20:15:29 +00001028
1029 for (rn = route_top (rt); rn; rn = route_next (rn))
1030 {
1031 if ((or = rn->info) == NULL)
1032 continue;
1033
paul147193a2003-04-19 00:31:59 +00001034 if (!(area = ospf_area_lookup_by_area_id (ospf, or->u.std.area_id)))
paul718e3742002-12-13 20:15:29 +00001035 {
1036 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001037 zlog_debug ("ospf_abr_process_network_rt(): area %s no longer exists",
paul718e3742002-12-13 20:15:29 +00001038 inet_ntoa (or->u.std.area_id));
1039 continue;
1040 }
1041
1042 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001043 zlog_debug ("ospf_abr_process_network_rt(): this is a route to %s/%d",
paul718e3742002-12-13 20:15:29 +00001044 inet_ntoa (rn->p.u.prefix4), rn->p.prefixlen);
1045 if (or->path_type >= OSPF_PATH_TYPE1_EXTERNAL)
1046 {
1047 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001048 zlog_debug ("ospf_abr_process_network_rt(): "
paul718e3742002-12-13 20:15:29 +00001049 "this is an External router, skipping");
1050 continue;
1051 }
1052
1053 if (or->cost >= OSPF_LS_INFINITY)
1054 {
1055 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001056 zlog_debug ("ospf_abr_process_network_rt():"
paul718e3742002-12-13 20:15:29 +00001057 " this route's cost is infinity, skipping");
1058 continue;
1059 }
1060
1061 if (or->type == OSPF_DESTINATION_DISCARD)
1062 {
1063 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001064 zlog_debug ("ospf_abr_process_network_rt():"
paul718e3742002-12-13 20:15:29 +00001065 " this is a discard entry, skipping");
1066 continue;
1067 }
1068
1069 if (or->path_type == OSPF_PATH_INTRA_AREA &&
pauld4a53d52003-07-12 21:30:57 +00001070 !ospf_abr_should_announce (ospf, (struct prefix_ipv4 *) &rn->p, or))
paul718e3742002-12-13 20:15:29 +00001071 {
1072 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001073 zlog_debug("ospf_abr_process_network_rt(): denied by export-list");
paul718e3742002-12-13 20:15:29 +00001074 continue;
1075 }
1076
1077 if (or->path_type == OSPF_PATH_INTRA_AREA &&
pauld4a53d52003-07-12 21:30:57 +00001078 !ospf_abr_plist_out_check (area, or, (struct prefix_ipv4 *) &rn->p))
paul718e3742002-12-13 20:15:29 +00001079 {
1080 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001081 zlog_debug("ospf_abr_process_network_rt(): denied by prefix-list");
paul718e3742002-12-13 20:15:29 +00001082 continue;
1083 }
1084
1085 if ((or->path_type == OSPF_PATH_INTER_AREA) &&
1086 !OSPF_IS_AREA_ID_BACKBONE (or->u.std.area_id))
1087 {
1088 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001089 zlog_debug ("ospf_abr_process_network_rt():"
paul718e3742002-12-13 20:15:29 +00001090 " this is route is not backbone one, skipping");
1091 continue;
1092 }
1093
1094
paul147193a2003-04-19 00:31:59 +00001095 if ((ospf->abr_type == OSPF_ABR_CISCO) ||
1096 (ospf->abr_type == OSPF_ABR_IBM))
paul718e3742002-12-13 20:15:29 +00001097
paul147193a2003-04-19 00:31:59 +00001098 if (!ospf_act_bb_connection (ospf) &&
paul718e3742002-12-13 20:15:29 +00001099 or->path_type != OSPF_PATH_INTRA_AREA)
1100 {
1101 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001102 zlog_debug ("ospf_abr_process_network_rt(): ALT ABR: "
paul718e3742002-12-13 20:15:29 +00001103 "No BB connection, skip not intra-area routes");
1104 continue;
1105 }
1106
1107 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001108 zlog_debug ("ospf_abr_process_network_rt(): announcing");
hassofa2b17e2004-03-04 17:45:00 +00001109 ospf_abr_announce_network (ospf, (struct prefix_ipv4 *)&rn->p, or);
paul718e3742002-12-13 20:15:29 +00001110 }
1111
1112 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001113 zlog_debug ("ospf_abr_process_network_rt(): Stop");
paul718e3742002-12-13 20:15:29 +00001114}
1115
paul4dadc292005-05-06 21:37:42 +00001116static void
paul718e3742002-12-13 20:15:29 +00001117ospf_abr_announce_rtr_to_area (struct prefix_ipv4 *p, u_int32_t cost,
1118 struct ospf_area *area)
1119{
1120 struct ospf_lsa *lsa, *old = NULL;
1121 struct summary_lsa *slsa = NULL;
1122
1123 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001124 zlog_debug ("ospf_abr_announce_rtr_to_area(): Start");
paul718e3742002-12-13 20:15:29 +00001125
paul147193a2003-04-19 00:31:59 +00001126 old = ospf_lsa_lookup_by_prefix (area->lsdb, OSPF_ASBR_SUMMARY_LSA,
1127 p, area->ospf->router_id);
paul718e3742002-12-13 20:15:29 +00001128 if (old)
1129 {
1130 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001131 zlog_debug ("ospf_abr_announce_rtr_to_area(): old summary found");
paul718e3742002-12-13 20:15:29 +00001132 slsa = (struct summary_lsa *) old->data;
1133
1134 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001135 zlog_debug ("ospf_abr_announce_network_to_area(): "
paul718e3742002-12-13 20:15:29 +00001136 "old metric: %d, new metric: %d",
1137 GET_METRIC (slsa->metric), cost);
1138 }
1139
1140 if (old && (GET_METRIC (slsa->metric) == cost))
1141 {
1142 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001143 zlog_debug ("ospf_abr_announce_rtr_to_area(): old summary approved");
paul718e3742002-12-13 20:15:29 +00001144 SET_FLAG (old->flags, OSPF_LSA_APPROVED);
1145 }
1146 else
1147 {
1148 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001149 zlog_debug ("ospf_abr_announce_rtr_to_area(): 2.2");
paul718e3742002-12-13 20:15:29 +00001150
1151 if (old)
1152 {
1153 set_metric (old, cost);
paul147193a2003-04-19 00:31:59 +00001154 lsa = ospf_summary_asbr_lsa_refresh (area->ospf, old);
paul718e3742002-12-13 20:15:29 +00001155 }
1156 else
1157 lsa = ospf_summary_asbr_lsa_originate (p, cost, area);
paulc24d6022005-11-20 14:54:12 +00001158 if (!lsa)
1159 {
1160 char buf[INET_ADDRSTRLEN + 3]; /* ipv4 and /XX */
1161
1162 prefix2str ((struct prefix *)p, buf, sizeof(buf));
1163 zlog_warn ("%s: Could not refresh/originate %s to %s",
1164 __func__,
1165 buf,
1166 inet_ntoa (area->area_id));
1167 return;
1168 }
1169
paul718e3742002-12-13 20:15:29 +00001170 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001171 zlog_debug ("ospf_abr_announce_rtr_to_area(): "
paul718e3742002-12-13 20:15:29 +00001172 "flooding new version of summary");
paulc24d6022005-11-20 14:54:12 +00001173
paul718e3742002-12-13 20:15:29 +00001174 /*
1175 zlog_info ("ospf_abr_announce_rtr_to_area(): creating new summary");
1176 lsa = ospf_summary_asbr_lsa (p, cost, area, old); */
1177
1178 SET_FLAG (lsa->flags, OSPF_LSA_APPROVED);
1179 /* ospf_flood_through_area (area, NULL, lsa);*/
1180 }
1181
1182 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001183 zlog_debug ("ospf_abr_announce_rtr_to_area(): Stop");
paul718e3742002-12-13 20:15:29 +00001184}
1185
1186
paul4dadc292005-05-06 21:37:42 +00001187static void
paul147193a2003-04-19 00:31:59 +00001188ospf_abr_announce_rtr (struct ospf *ospf,
1189 struct prefix_ipv4 *p, struct ospf_route *or)
paul718e3742002-12-13 20:15:29 +00001190{
hasso52dc7ee2004-09-23 19:18:23 +00001191 struct listnode *node;
paul718e3742002-12-13 20:15:29 +00001192 struct ospf_area *area;
1193
1194 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001195 zlog_debug ("ospf_abr_announce_rtr(): Start");
paul718e3742002-12-13 20:15:29 +00001196
paul1eb8ef22005-04-07 07:30:20 +00001197 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
paul718e3742002-12-13 20:15:29 +00001198 {
paul718e3742002-12-13 20:15:29 +00001199 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001200 zlog_debug ("ospf_abr_announce_rtr(): looking at area %s",
paul718e3742002-12-13 20:15:29 +00001201 inet_ntoa (area->area_id));
1202
1203 if (IPV4_ADDR_SAME (&or->u.std.area_id, &area->area_id))
1204 continue;
1205
1206 if (ospf_abr_nexthops_belong_to_area (or, area))
1207 continue;
1208
1209 if (area->external_routing != OSPF_AREA_DEFAULT)
1210 {
1211 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001212 zlog_debug ("ospf_abr_announce_rtr(): "
paul718e3742002-12-13 20:15:29 +00001213 "area %s doesn't support external routing",
1214 inet_ntoa(area->area_id));
1215 continue;
1216 }
1217
1218 if (or->path_type == OSPF_PATH_INTER_AREA)
1219 {
1220 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001221 zlog_debug ("ospf_abr_announce_rtr(): "
paul718e3742002-12-13 20:15:29 +00001222 "this is inter-area route to %s", inet_ntoa (p->prefix));
1223 if (!OSPF_IS_AREA_BACKBONE (area))
1224 ospf_abr_announce_rtr_to_area (p, or->cost, area);
1225 }
1226
1227 if (or->path_type == OSPF_PATH_INTRA_AREA)
1228 {
1229 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001230 zlog_debug ("ospf_abr_announce_rtr(): "
paul718e3742002-12-13 20:15:29 +00001231 "this is intra-area route to %s", inet_ntoa (p->prefix));
1232 ospf_abr_announce_rtr_to_area (p, or->cost, area);
1233 }
1234 }
1235
1236 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001237 zlog_debug ("ospf_abr_announce_rtr(): Stop");
paul718e3742002-12-13 20:15:29 +00001238}
1239
paul4dadc292005-05-06 21:37:42 +00001240static void
paul147193a2003-04-19 00:31:59 +00001241ospf_abr_process_router_rt (struct ospf *ospf, struct route_table *rt)
paul718e3742002-12-13 20:15:29 +00001242{
paul718e3742002-12-13 20:15:29 +00001243 struct ospf_route *or;
paul147193a2003-04-19 00:31:59 +00001244 struct route_node *rn;
paul718e3742002-12-13 20:15:29 +00001245 struct list *l;
1246
1247 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001248 zlog_debug ("ospf_abr_process_router_rt(): Start");
paul718e3742002-12-13 20:15:29 +00001249
1250 for (rn = route_top (rt); rn; rn = route_next (rn))
1251 {
paul1eb8ef22005-04-07 07:30:20 +00001252 struct listnode *node, *nnode;
paul718e3742002-12-13 20:15:29 +00001253 char flag = 0;
1254 struct ospf_route *best = NULL;
1255
1256 if (rn->info == NULL)
1257 continue;
1258
1259 l = rn->info;
1260
1261 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001262 zlog_debug ("ospf_abr_process_router_rt(): this is a route to %s",
paul718e3742002-12-13 20:15:29 +00001263 inet_ntoa (rn->p.u.prefix4));
1264
paul1eb8ef22005-04-07 07:30:20 +00001265 for (ALL_LIST_ELEMENTS (l, node, nnode, or))
paul718e3742002-12-13 20:15:29 +00001266 {
paul147193a2003-04-19 00:31:59 +00001267 if (!ospf_area_lookup_by_area_id (ospf, or->u.std.area_id))
paul718e3742002-12-13 20:15:29 +00001268 {
1269 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001270 zlog_debug ("ospf_abr_process_router_rt(): area %s no longer exists",
paul718e3742002-12-13 20:15:29 +00001271 inet_ntoa (or->u.std.area_id));
1272 continue;
1273 }
1274
1275
1276 if (!CHECK_FLAG (or->u.std.flags, ROUTER_LSA_EXTERNAL))
1277 {
1278 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001279 zlog_debug ("ospf_abr_process_router_rt(): "
paul718e3742002-12-13 20:15:29 +00001280 "This is not an ASBR, skipping");
1281 continue;
1282 }
1283
1284 if (!flag)
1285 {
paul147193a2003-04-19 00:31:59 +00001286 best = ospf_find_asbr_route (ospf, rt,
1287 (struct prefix_ipv4 *) &rn->p);
paul718e3742002-12-13 20:15:29 +00001288 flag = 1;
1289 }
1290
1291 if (best == NULL)
1292 continue;
1293
1294 if (or != best)
1295 {
1296 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001297 zlog_debug ("ospf_abr_process_router_rt(): "
paul718e3742002-12-13 20:15:29 +00001298 "This route is not the best among possible, skipping");
1299 continue;
1300 }
1301
1302 if (or->path_type == OSPF_PATH_INTER_AREA &&
1303 !OSPF_IS_AREA_ID_BACKBONE (or->u.std.area_id))
1304 {
1305 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001306 zlog_debug ("ospf_abr_process_router_rt(): "
paul718e3742002-12-13 20:15:29 +00001307 "This route is not a backbone one, skipping");
1308 continue;
1309 }
1310
1311 if (or->cost >= OSPF_LS_INFINITY)
1312 {
1313 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001314 zlog_debug ("ospf_abr_process_router_rt(): "
paul718e3742002-12-13 20:15:29 +00001315 "This route has LS_INFINITY metric, skipping");
1316 continue;
1317 }
1318
paul147193a2003-04-19 00:31:59 +00001319 if (ospf->abr_type == OSPF_ABR_CISCO
1320 || ospf->abr_type == OSPF_ABR_IBM)
1321 if (!ospf_act_bb_connection (ospf)
1322 && or->path_type != OSPF_PATH_INTRA_AREA)
paul718e3742002-12-13 20:15:29 +00001323 {
1324 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001325 zlog_debug("ospf_abr_process_network_rt(): ALT ABR: "
paul718e3742002-12-13 20:15:29 +00001326 "No BB connection, skip not intra-area routes");
1327 continue;
1328 }
1329
paul147193a2003-04-19 00:31:59 +00001330 ospf_abr_announce_rtr (ospf, (struct prefix_ipv4 *) &rn->p, or);
paul718e3742002-12-13 20:15:29 +00001331
1332 }
1333
1334 }
1335
1336 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001337 zlog_debug ("ospf_abr_process_router_rt(): Stop");
paul718e3742002-12-13 20:15:29 +00001338}
1339
paul4dadc292005-05-06 21:37:42 +00001340static void
paul147193a2003-04-19 00:31:59 +00001341ospf_abr_unapprove_translates (struct ospf *ospf) /* For NSSA Translations */
paul718e3742002-12-13 20:15:29 +00001342{
paul147193a2003-04-19 00:31:59 +00001343 struct ospf_lsa *lsa;
1344 struct route_node *rn;
1345
paul718e3742002-12-13 20:15:29 +00001346 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001347 zlog_debug ("ospf_abr_unapprove_translates(): Start");
paul718e3742002-12-13 20:15:29 +00001348
1349 /* NSSA Translator is not checked, because it may have gone away,
1350 and we would want to flush any residuals anyway */
1351
paul147193a2003-04-19 00:31:59 +00001352 LSDB_LOOP (EXTERNAL_LSDB (ospf), rn, lsa)
1353 if (CHECK_FLAG (lsa->flags, OSPF_LSA_LOCAL_XLT))
pauld4a53d52003-07-12 21:30:57 +00001354 {
1355 UNSET_FLAG (lsa->flags, OSPF_LSA_APPROVED);
1356 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001357 zlog_debug ("ospf_abr_unapprove_translates(): "
pauld4a53d52003-07-12 21:30:57 +00001358 "approved unset on link id %s",
1359 inet_ntoa (lsa->data->id));
1360 }
paul718e3742002-12-13 20:15:29 +00001361
1362 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001363 zlog_debug ("ospf_abr_unapprove_translates(): Stop");
paul718e3742002-12-13 20:15:29 +00001364}
paul718e3742002-12-13 20:15:29 +00001365
paul4dadc292005-05-06 21:37:42 +00001366static void
paul147193a2003-04-19 00:31:59 +00001367ospf_abr_unapprove_summaries (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00001368{
hasso52dc7ee2004-09-23 19:18:23 +00001369 struct listnode *node;
paul718e3742002-12-13 20:15:29 +00001370 struct ospf_area *area;
paul147193a2003-04-19 00:31:59 +00001371 struct route_node *rn;
1372 struct ospf_lsa *lsa;
paul718e3742002-12-13 20:15:29 +00001373
1374 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001375 zlog_debug ("ospf_abr_unapprove_summaries(): Start");
paul718e3742002-12-13 20:15:29 +00001376
paul1eb8ef22005-04-07 07:30:20 +00001377 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
paul718e3742002-12-13 20:15:29 +00001378 {
pauld4a53d52003-07-12 21:30:57 +00001379 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001380 zlog_debug ("ospf_abr_unapprove_summaries(): "
pauld4a53d52003-07-12 21:30:57 +00001381 "considering area %s",
1382 inet_ntoa (area->area_id));
paul147193a2003-04-19 00:31:59 +00001383 LSDB_LOOP (SUMMARY_LSDB (area), rn, lsa)
pauld4a53d52003-07-12 21:30:57 +00001384 if (ospf_lsa_is_self_originated (ospf, lsa))
1385 {
1386 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001387 zlog_debug ("ospf_abr_unapprove_summaries(): "
pauld4a53d52003-07-12 21:30:57 +00001388 "approved unset on summary link id %s",
1389 inet_ntoa (lsa->data->id));
1390 UNSET_FLAG (lsa->flags, OSPF_LSA_APPROVED);
1391 }
paul147193a2003-04-19 00:31:59 +00001392
1393 LSDB_LOOP (ASBR_SUMMARY_LSDB (area), rn, lsa)
pauld4a53d52003-07-12 21:30:57 +00001394 if (ospf_lsa_is_self_originated (ospf, lsa))
1395 {
1396 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001397 zlog_debug ("ospf_abr_unapprove_summaries(): "
pauld4a53d52003-07-12 21:30:57 +00001398 "approved unset on asbr-summary link id %s",
1399 inet_ntoa (lsa->data->id));
1400 UNSET_FLAG (lsa->flags, OSPF_LSA_APPROVED);
1401 }
paul718e3742002-12-13 20:15:29 +00001402 }
1403
1404 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001405 zlog_debug ("ospf_abr_unapprove_summaries(): Stop");
paul718e3742002-12-13 20:15:29 +00001406}
1407
paul4dadc292005-05-06 21:37:42 +00001408static void
paul147193a2003-04-19 00:31:59 +00001409ospf_abr_prepare_aggregates (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00001410{
hasso52dc7ee2004-09-23 19:18:23 +00001411 struct listnode *node;
paul718e3742002-12-13 20:15:29 +00001412 struct route_node *rn;
1413 struct ospf_area_range *range;
paul1eb8ef22005-04-07 07:30:20 +00001414 struct ospf_area *area;
paul718e3742002-12-13 20:15:29 +00001415
1416 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001417 zlog_debug ("ospf_abr_prepare_aggregates(): Start");
paul718e3742002-12-13 20:15:29 +00001418
paul1eb8ef22005-04-07 07:30:20 +00001419 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
paul718e3742002-12-13 20:15:29 +00001420 {
paul718e3742002-12-13 20:15:29 +00001421 for (rn = route_top (area->ranges); rn; rn = route_next (rn))
1422 if ((range = rn->info) != NULL)
1423 {
1424 range->cost = 0;
1425 range->specifics = 0;
1426 }
1427 }
1428
1429 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001430 zlog_debug ("ospf_abr_prepare_aggregates(): Stop");
paul718e3742002-12-13 20:15:29 +00001431}
1432
paul4dadc292005-05-06 21:37:42 +00001433static void
paul147193a2003-04-19 00:31:59 +00001434ospf_abr_announce_aggregates (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00001435{
1436 struct ospf_area *area, *ar;
1437 struct ospf_area_range *range;
1438 struct route_node *rn;
pauld4a53d52003-07-12 21:30:57 +00001439 struct prefix p;
hasso52dc7ee2004-09-23 19:18:23 +00001440 struct listnode *node, *n;
paul718e3742002-12-13 20:15:29 +00001441
1442 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001443 zlog_debug ("ospf_abr_announce_aggregates(): Start");
paul718e3742002-12-13 20:15:29 +00001444
paul1eb8ef22005-04-07 07:30:20 +00001445 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
paul718e3742002-12-13 20:15:29 +00001446 {
paul718e3742002-12-13 20:15:29 +00001447 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001448 zlog_debug ("ospf_abr_announce_aggregates(): looking at area %s",
paul718e3742002-12-13 20:15:29 +00001449 inet_ntoa (area->area_id));
1450
1451 for (rn = route_top (area->ranges); rn; rn = route_next (rn))
1452 if ((range = rn->info))
1453 {
1454 if (!CHECK_FLAG (range->flags, OSPF_AREA_RANGE_ADVERTISE))
1455 {
1456 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001457 zlog_debug ("ospf_abr_announce_aggregates():"
paul718e3742002-12-13 20:15:29 +00001458 " discarding suppress-ranges");
1459 continue;
1460 }
1461
1462 p.family = AF_INET;
pauld4a53d52003-07-12 21:30:57 +00001463 p.u.prefix4 = range->addr;
paul718e3742002-12-13 20:15:29 +00001464 p.prefixlen = range->masklen;
1465
1466 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001467 zlog_debug ("ospf_abr_announce_aggregates():"
paul718e3742002-12-13 20:15:29 +00001468 " this is range: %s/%d",
pauld4a53d52003-07-12 21:30:57 +00001469 inet_ntoa (p.u.prefix4), p.prefixlen);
paul718e3742002-12-13 20:15:29 +00001470
1471 if (CHECK_FLAG (range->flags, OSPF_AREA_RANGE_SUBSTITUTE))
1472 {
1473 p.family = AF_INET;
pauld4a53d52003-07-12 21:30:57 +00001474 p.u.prefix4 = range->subst_addr;
paul718e3742002-12-13 20:15:29 +00001475 p.prefixlen = range->subst_masklen;
1476 }
1477
1478 if (range->specifics)
1479 {
1480 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001481 zlog_debug ("ospf_abr_announce_aggregates(): active range");
paul718e3742002-12-13 20:15:29 +00001482
paul1eb8ef22005-04-07 07:30:20 +00001483 for (ALL_LIST_ELEMENTS_RO (ospf->areas, n, ar))
paul718e3742002-12-13 20:15:29 +00001484 {
paul718e3742002-12-13 20:15:29 +00001485 if (ar == area)
1486 continue;
1487
1488 /* We do not check nexthops here, because
1489 intra-area routes can be associated with
1490 one area only */
1491
1492 /* backbone routes are not summarized
1493 when announced into transit areas */
1494
1495 if (ospf_area_is_transit (ar) &&
1496 OSPF_IS_AREA_BACKBONE (area))
1497 {
1498 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001499 zlog_debug ("ospf_abr_announce_aggregates(): Skipping "
paul718e3742002-12-13 20:15:29 +00001500 "announcement of BB aggregate into"
1501 " a transit area");
1502 continue;
1503 }
hassofa2b17e2004-03-04 17:45:00 +00001504 ospf_abr_announce_network_to_area ((struct prefix_ipv4 *)&p, range->cost, ar);
paul718e3742002-12-13 20:15:29 +00001505 }
1506 }
1507 }
1508 }
1509
1510 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001511 zlog_debug ("ospf_abr_announce_aggregates(): Stop");
paul718e3742002-12-13 20:15:29 +00001512}
1513
paul4dadc292005-05-06 21:37:42 +00001514static void
paul147193a2003-04-19 00:31:59 +00001515ospf_abr_send_nssa_aggregates (struct ospf *ospf) /* temporarily turned off */
paul718e3742002-12-13 20:15:29 +00001516{
hasso52dc7ee2004-09-23 19:18:23 +00001517 struct listnode *node; /*, n; */
paul718e3742002-12-13 20:15:29 +00001518 struct ospf_area *area; /*, *ar; */
1519 struct route_node *rn;
1520 struct ospf_area_range *range;
1521 struct prefix_ipv4 p;
1522
1523 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001524 zlog_debug ("ospf_abr_send_nssa_aggregates(): Start");
paul718e3742002-12-13 20:15:29 +00001525
paul1eb8ef22005-04-07 07:30:20 +00001526 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
paul718e3742002-12-13 20:15:29 +00001527 {
paule2c6c152003-06-22 08:49:25 +00001528 if (! area->NSSATranslatorState)
paul718e3742002-12-13 20:15:29 +00001529 continue;
1530
1531 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001532 zlog_debug ("ospf_abr_send_nssa_aggregates(): looking at area %s",
paul718e3742002-12-13 20:15:29 +00001533 inet_ntoa (area->area_id));
1534
1535 for (rn = route_top (area->ranges); rn; rn = route_next (rn))
1536 {
1537 if (rn->info == NULL)
1538 continue;
1539
1540 range = rn->info;
1541
1542 if (!CHECK_FLAG (range->flags, OSPF_AREA_RANGE_ADVERTISE))
1543 {
1544 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001545 zlog_debug ("ospf_abr_send_nssa_aggregates():"
paul718e3742002-12-13 20:15:29 +00001546 " discarding suppress-ranges");
1547 continue;
1548 }
1549
1550 p.family = AF_INET;
1551 p.prefix = range->addr;
1552 p.prefixlen = range->masklen;
1553
1554 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001555 zlog_debug ("ospf_abr_send_nssa_aggregates():"
paul718e3742002-12-13 20:15:29 +00001556 " this is range: %s/%d",
1557 inet_ntoa (p.prefix), p.prefixlen);
1558
1559 if (CHECK_FLAG (range->flags, OSPF_AREA_RANGE_SUBSTITUTE))
1560 {
1561 p.family = AF_INET;
1562 p.prefix = range->subst_addr;
1563 p.prefixlen = range->subst_masklen;
1564 }
1565
1566 if (range->specifics)
paule2c6c152003-06-22 08:49:25 +00001567 {
1568 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001569 zlog_debug ("ospf_abr_send_nssa_aggregates(): active range");
paul718e3742002-12-13 20:15:29 +00001570
paule2c6c152003-06-22 08:49:25 +00001571 /* Fetch LSA-Type-7 from aggregate prefix, and then
1572 * translate, Install (as Type-5), Approve, and Flood
1573 */
1574 ospf_abr_translate_nssa_range (&p, range->cost);
1575 }
1576 } /* all area ranges*/
paul718e3742002-12-13 20:15:29 +00001577 } /* all areas */
1578
1579 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001580 zlog_debug ("ospf_abr_send_nssa_aggregates(): Stop");
paul718e3742002-12-13 20:15:29 +00001581}
1582
paul4dadc292005-05-06 21:37:42 +00001583static void
paul147193a2003-04-19 00:31:59 +00001584ospf_abr_announce_nssa_defaults (struct ospf *ospf) /* By ABR-Translator */
paul718e3742002-12-13 20:15:29 +00001585{
hasso52dc7ee2004-09-23 19:18:23 +00001586 struct listnode *node;
paul718e3742002-12-13 20:15:29 +00001587 struct ospf_area *area;
paul718e3742002-12-13 20:15:29 +00001588
paul147193a2003-04-19 00:31:59 +00001589 if (! IS_OSPF_ABR (ospf))
paul718e3742002-12-13 20:15:29 +00001590 return;
1591
1592 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001593 zlog_debug ("ospf_abr_announce_stub_defaults(): Start");
paul718e3742002-12-13 20:15:29 +00001594
paul1eb8ef22005-04-07 07:30:20 +00001595 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
paul718e3742002-12-13 20:15:29 +00001596 {
paul718e3742002-12-13 20:15:29 +00001597 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001598 zlog_debug ("ospf_abr_announce_nssa_defaults(): looking at area %s",
paule2c6c152003-06-22 08:49:25 +00001599 inet_ntoa (area->area_id));
paul718e3742002-12-13 20:15:29 +00001600
1601 if (area->external_routing != OSPF_AREA_NSSA)
paule2c6c152003-06-22 08:49:25 +00001602 continue;
paul718e3742002-12-13 20:15:29 +00001603
1604 if (OSPF_IS_AREA_BACKBONE (area))
paule2c6c152003-06-22 08:49:25 +00001605 continue; /* Sanity Check */
paul718e3742002-12-13 20:15:29 +00001606
1607 /* if (!TranslatorRole continue V 1.0 look for "always" conf */
paule2c6c152003-06-22 08:49:25 +00001608 if (area->NSSATranslatorState)
1609 {
1610 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001611 zlog_debug ("ospf_abr_announce_nssa_defaults(): "
paule2c6c152003-06-22 08:49:25 +00001612 "announcing 0.0.0.0/0 to this nssa");
1613 /* ospf_abr_announce_nssa_asbr_to_as (&p, area->default_cost, area); */
pauld4a53d52003-07-12 21:30:57 +00001614 /*ospf_abr_announce_network_to_area (&p, area->default_cost, area);*/
paule2c6c152003-06-22 08:49:25 +00001615 }
paul718e3742002-12-13 20:15:29 +00001616 }
1617}
paul718e3742002-12-13 20:15:29 +00001618
paul4dadc292005-05-06 21:37:42 +00001619static void
paul147193a2003-04-19 00:31:59 +00001620ospf_abr_announce_stub_defaults (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00001621{
hasso52dc7ee2004-09-23 19:18:23 +00001622 struct listnode *node;
paul718e3742002-12-13 20:15:29 +00001623 struct ospf_area *area;
1624 struct prefix_ipv4 p;
1625
paul147193a2003-04-19 00:31:59 +00001626 if (! IS_OSPF_ABR (ospf))
paul718e3742002-12-13 20:15:29 +00001627 return;
1628
1629 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001630 zlog_debug ("ospf_abr_announce_stub_defaults(): Start");
paul718e3742002-12-13 20:15:29 +00001631
1632 p.family = AF_INET;
1633 p.prefix.s_addr = OSPF_DEFAULT_DESTINATION;
1634 p.prefixlen = 0;
1635
paul1eb8ef22005-04-07 07:30:20 +00001636 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
paul718e3742002-12-13 20:15:29 +00001637 {
paul718e3742002-12-13 20:15:29 +00001638 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001639 zlog_debug ("ospf_abr_announce_stub_defaults(): looking at area %s",
1640 inet_ntoa (area->area_id));
paul718e3742002-12-13 20:15:29 +00001641
pauld4a53d52003-07-12 21:30:57 +00001642 if ( (area->external_routing != OSPF_AREA_STUB)
pauld4a53d52003-07-12 21:30:57 +00001643 && (area->external_routing != OSPF_AREA_NSSA)
pauld4a53d52003-07-12 21:30:57 +00001644 )
1645 continue;
paul718e3742002-12-13 20:15:29 +00001646
1647 if (OSPF_IS_AREA_BACKBONE (area))
pauld4a53d52003-07-12 21:30:57 +00001648 continue; /* Sanity Check */
1649
paul718e3742002-12-13 20:15:29 +00001650 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001651 zlog_debug ("ospf_abr_announce_stub_defaults(): "
1652 "announcing 0.0.0.0/0 to area %s",
pauld4a53d52003-07-12 21:30:57 +00001653 inet_ntoa (area->area_id));
paul718e3742002-12-13 20:15:29 +00001654 ospf_abr_announce_network_to_area (&p, area->default_cost, area);
1655 }
1656
1657 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001658 zlog_debug ("ospf_abr_announce_stub_defaults(): Stop");
paul718e3742002-12-13 20:15:29 +00001659}
1660
paul4dadc292005-05-06 21:37:42 +00001661static int
paul147193a2003-04-19 00:31:59 +00001662ospf_abr_remove_unapproved_translates_apply (struct ospf *ospf,
1663 struct ospf_lsa *lsa)
paul718e3742002-12-13 20:15:29 +00001664{
1665 if (CHECK_FLAG (lsa->flags, OSPF_LSA_LOCAL_XLT)
1666 && ! CHECK_FLAG (lsa->flags, OSPF_LSA_APPROVED))
1667 {
1668 zlog_info ("ospf_abr_remove_unapproved_translates(): "
1669 "removing unapproved translates, ID: %s",
1670 inet_ntoa (lsa->data->id));
1671
1672 /* FLUSH THROUGHOUT AS */
paul147193a2003-04-19 00:31:59 +00001673 ospf_lsa_flush_as (ospf, lsa);
paul718e3742002-12-13 20:15:29 +00001674
1675 /* DISCARD from LSDB */
1676 }
1677 return 0;
1678}
1679
paul4dadc292005-05-06 21:37:42 +00001680static void
paul147193a2003-04-19 00:31:59 +00001681ospf_abr_remove_unapproved_translates (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00001682{
paul147193a2003-04-19 00:31:59 +00001683 struct route_node *rn;
1684 struct ospf_lsa *lsa;
1685
paul718e3742002-12-13 20:15:29 +00001686 /* All AREA PROCESS should have APPROVED necessary LSAs */
1687 /* Remove any left over and not APPROVED */
1688 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001689 zlog_debug ("ospf_abr_remove_unapproved_translates(): Start");
paul718e3742002-12-13 20:15:29 +00001690
paul147193a2003-04-19 00:31:59 +00001691 LSDB_LOOP (EXTERNAL_LSDB (ospf), rn, lsa)
1692 ospf_abr_remove_unapproved_translates_apply (ospf, lsa);
paul718e3742002-12-13 20:15:29 +00001693
1694 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001695 zlog_debug ("ospf_abr_remove_unapproved_translates(): Stop");
paul718e3742002-12-13 20:15:29 +00001696}
paul718e3742002-12-13 20:15:29 +00001697
paul4dadc292005-05-06 21:37:42 +00001698static void
paul147193a2003-04-19 00:31:59 +00001699ospf_abr_remove_unapproved_summaries (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00001700{
hasso52dc7ee2004-09-23 19:18:23 +00001701 struct listnode *node;
paul718e3742002-12-13 20:15:29 +00001702 struct ospf_area *area;
paul147193a2003-04-19 00:31:59 +00001703 struct route_node *rn;
1704 struct ospf_lsa *lsa;
paul718e3742002-12-13 20:15:29 +00001705
1706 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001707 zlog_debug ("ospf_abr_remove_unapproved_summaries(): Start");
paul718e3742002-12-13 20:15:29 +00001708
paul1eb8ef22005-04-07 07:30:20 +00001709 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
paul718e3742002-12-13 20:15:29 +00001710 {
paul718e3742002-12-13 20:15:29 +00001711 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001712 zlog_debug ("ospf_abr_remove_unapproved_summaries(): "
paul718e3742002-12-13 20:15:29 +00001713 "looking at area %s", inet_ntoa (area->area_id));
1714
paul147193a2003-04-19 00:31:59 +00001715 LSDB_LOOP (SUMMARY_LSDB (area), rn, lsa)
1716 if (ospf_lsa_is_self_originated (ospf, lsa))
1717 if (!CHECK_FLAG (lsa->flags, OSPF_LSA_APPROVED))
1718 ospf_lsa_flush_area (lsa, area);
1719
1720 LSDB_LOOP (ASBR_SUMMARY_LSDB (area), rn, lsa)
1721 if (ospf_lsa_is_self_originated (ospf, lsa))
1722 if (!CHECK_FLAG (lsa->flags, OSPF_LSA_APPROVED))
1723 ospf_lsa_flush_area (lsa, area);
paul718e3742002-12-13 20:15:29 +00001724 }
1725
1726 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001727 zlog_debug ("ospf_abr_remove_unapproved_summaries(): Stop");
paul718e3742002-12-13 20:15:29 +00001728}
1729
paul4dadc292005-05-06 21:37:42 +00001730static void
paul147193a2003-04-19 00:31:59 +00001731ospf_abr_manage_discard_routes (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00001732{
paul1eb8ef22005-04-07 07:30:20 +00001733 struct listnode *node, *nnode;
paul718e3742002-12-13 20:15:29 +00001734 struct route_node *rn;
1735 struct ospf_area *area;
1736 struct ospf_area_range *range;
1737
paul1eb8ef22005-04-07 07:30:20 +00001738 for (ALL_LIST_ELEMENTS (ospf->areas, node, nnode, area))
1739 for (rn = route_top (area->ranges); rn; rn = route_next (rn))
1740 if ((range = rn->info) != NULL)
1741 if (CHECK_FLAG (range->flags, OSPF_AREA_RANGE_ADVERTISE))
1742 {
1743 if (range->specifics)
1744 ospf_add_discard_route (ospf->new_table, area,
1745 (struct prefix_ipv4 *) &rn->p);
1746 else
1747 ospf_delete_discard_route ((struct prefix_ipv4 *) &rn->p);
1748 }
paul718e3742002-12-13 20:15:29 +00001749}
1750
paul718e3742002-12-13 20:15:29 +00001751/* This is the function taking care about ABR NSSA, i.e. NSSA
1752 Translator, -LSA aggregation and flooding. For all NSSAs
1753
1754 Any SELF-AS-LSA is in the Type-5 LSDB and Type-7 LSDB. These LSA's
1755 are refreshed from the Type-5 LSDB, installed into the Type-7 LSDB
1756 with the P-bit set.
1757
1758 Any received Type-5s are legal for an ABR, else illegal for IR.
1759 Received Type-7s are installed, by area, with incoming P-bit. They
1760 are flooded; if the Elected NSSA Translator, then P-bit off.
1761
1762 Additionally, this ABR will place "translated type-7's" into the
1763 Type-5 LSDB in order to keep track of APPROVAL or not.
1764
1765 It will scan through every area, looking for Type-7 LSAs with P-Bit
1766 SET. The Type-7's are either AS-FLOODED & 5-INSTALLED or
1767 AGGREGATED. Later, the AGGREGATED LSAs are AS-FLOODED &
1768 5-INSTALLED.
1769
1770 5-INSTALLED is into the Type-5 LSDB; Any UNAPPROVED Type-5 LSAs
1771 left over are FLUSHED and DISCARDED.
1772
1773 For External Calculations, any NSSA areas use the Type-7 AREA-LSDB,
1774 any ABR-non-NSSA areas use the Type-5 GLOBAL-LSDB. */
1775
paul4dadc292005-05-06 21:37:42 +00001776static void
paul147193a2003-04-19 00:31:59 +00001777ospf_abr_nssa_task (struct ospf *ospf) /* called only if any_nssa */
paul718e3742002-12-13 20:15:29 +00001778{
1779 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001780 zlog_debug ("Check for NSSA-ABR Tasks():");
paul718e3742002-12-13 20:15:29 +00001781
paul147193a2003-04-19 00:31:59 +00001782 if (! IS_OSPF_ABR (ospf))
paul718e3742002-12-13 20:15:29 +00001783 return;
1784
paul147193a2003-04-19 00:31:59 +00001785 if (! ospf->anyNSSA)
paul718e3742002-12-13 20:15:29 +00001786 return;
1787
1788 /* Each area must confirm TranslatorRole */
1789 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001790 zlog_debug ("ospf_abr_nssa_task(): Start");
paul718e3742002-12-13 20:15:29 +00001791
1792 /* For all Global Entries flagged "local-translate", unset APPROVED */
1793 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001794 zlog_debug ("ospf_abr_nssa_task(): unapprove translates");
paul718e3742002-12-13 20:15:29 +00001795
paul147193a2003-04-19 00:31:59 +00001796 ospf_abr_unapprove_translates (ospf);
paul718e3742002-12-13 20:15:29 +00001797
1798 /* RESET all Ranges in every Area, same as summaries */
1799 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001800 zlog_debug ("ospf_abr_nssa_task(): NSSA initialize aggregates");
paule2c6c152003-06-22 08:49:25 +00001801 ospf_abr_prepare_aggregates (ospf); /*TURNED OFF just for now */
paul718e3742002-12-13 20:15:29 +00001802
1803 /* For all NSSAs, Type-7s, translate to 5's, INSTALL/FLOOD, or
paule2c6c152003-06-22 08:49:25 +00001804 * Aggregate as Type-7
1805 * Install or Approve in Type-5 Global LSDB
1806 */
paul718e3742002-12-13 20:15:29 +00001807 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001808 zlog_debug ("ospf_abr_nssa_task(): process translates");
paul147193a2003-04-19 00:31:59 +00001809 ospf_abr_process_nssa_translates (ospf);
paul718e3742002-12-13 20:15:29 +00001810
1811 /* Translate/Send any "ranged" aggregates, and also 5-Install and
paule2c6c152003-06-22 08:49:25 +00001812 * Approve
1813 * Scan Type-7's for aggregates, translate to Type-5's,
1814 * Install/Flood/Approve
1815 */
paul718e3742002-12-13 20:15:29 +00001816 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001817 zlog_debug("ospf_abr_nssa_task(): send NSSA aggregates");
paule2c6c152003-06-22 08:49:25 +00001818 ospf_abr_send_nssa_aggregates (ospf); /*TURNED OFF FOR NOW */
paul718e3742002-12-13 20:15:29 +00001819
pauld4a53d52003-07-12 21:30:57 +00001820 /* Send any NSSA defaults as Type-5
1821 *if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001822 * zlog_debug ("ospf_abr_nssa_task(): announce nssa defaults");
pauld4a53d52003-07-12 21:30:57 +00001823 *ospf_abr_announce_nssa_defaults (ospf);
1824 * havnt a clue what above is supposed to do.
1825 */
paul718e3742002-12-13 20:15:29 +00001826
1827 /* Flush any unapproved previous translates from Global Data Base */
1828 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001829 zlog_debug ("ospf_abr_nssa_task(): remove unapproved translates");
paul147193a2003-04-19 00:31:59 +00001830 ospf_abr_remove_unapproved_translates (ospf);
paul718e3742002-12-13 20:15:29 +00001831
paul147193a2003-04-19 00:31:59 +00001832 ospf_abr_manage_discard_routes (ospf); /* same as normal...discard */
paul718e3742002-12-13 20:15:29 +00001833
1834 if (IS_DEBUG_OSPF_NSSA)
ajse84cc642004-12-08 17:28:56 +00001835 zlog_debug ("ospf_abr_nssa_task(): Stop");
paul718e3742002-12-13 20:15:29 +00001836}
paul718e3742002-12-13 20:15:29 +00001837
1838/* This is the function taking care about ABR stuff, i.e.
1839 summary-LSA origination and flooding. */
1840void
paul147193a2003-04-19 00:31:59 +00001841ospf_abr_task (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00001842{
1843 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001844 zlog_debug ("ospf_abr_task(): Start");
paul718e3742002-12-13 20:15:29 +00001845
paul147193a2003-04-19 00:31:59 +00001846 if (ospf->new_table == NULL || ospf->new_rtrs == NULL)
paul718e3742002-12-13 20:15:29 +00001847 {
1848 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001849 zlog_debug ("ospf_abr_task(): Routing tables are not yet ready");
paul718e3742002-12-13 20:15:29 +00001850 return;
1851 }
1852
1853 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001854 zlog_debug ("ospf_abr_task(): unapprove summaries");
paul147193a2003-04-19 00:31:59 +00001855 ospf_abr_unapprove_summaries (ospf);
paul718e3742002-12-13 20:15:29 +00001856
1857 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001858 zlog_debug ("ospf_abr_task(): prepare aggregates");
paul147193a2003-04-19 00:31:59 +00001859 ospf_abr_prepare_aggregates (ospf);
paul718e3742002-12-13 20:15:29 +00001860
paul147193a2003-04-19 00:31:59 +00001861 if (IS_OSPF_ABR (ospf))
paul718e3742002-12-13 20:15:29 +00001862 {
1863 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001864 zlog_debug ("ospf_abr_task(): process network RT");
paul147193a2003-04-19 00:31:59 +00001865 ospf_abr_process_network_rt (ospf, ospf->new_table);
paul718e3742002-12-13 20:15:29 +00001866
1867 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001868 zlog_debug ("ospf_abr_task(): process router RT");
paul147193a2003-04-19 00:31:59 +00001869 ospf_abr_process_router_rt (ospf, ospf->new_rtrs);
paul718e3742002-12-13 20:15:29 +00001870
1871 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001872 zlog_debug ("ospf_abr_task(): announce aggregates");
paul147193a2003-04-19 00:31:59 +00001873 ospf_abr_announce_aggregates (ospf);
paul718e3742002-12-13 20:15:29 +00001874
1875 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001876 zlog_debug ("ospf_abr_task(): announce stub defaults");
paul147193a2003-04-19 00:31:59 +00001877 ospf_abr_announce_stub_defaults (ospf);
paul718e3742002-12-13 20:15:29 +00001878 }
1879
1880 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001881 zlog_debug ("ospf_abr_task(): remove unapproved summaries");
paul147193a2003-04-19 00:31:59 +00001882 ospf_abr_remove_unapproved_summaries (ospf);
paul718e3742002-12-13 20:15:29 +00001883
paul147193a2003-04-19 00:31:59 +00001884 ospf_abr_manage_discard_routes (ospf);
paul718e3742002-12-13 20:15:29 +00001885
paul718e3742002-12-13 20:15:29 +00001886 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001887 zlog_debug ("ospf_abr_task(): Stop");
paul718e3742002-12-13 20:15:29 +00001888}
1889
paul4dadc292005-05-06 21:37:42 +00001890static int
paul147193a2003-04-19 00:31:59 +00001891ospf_abr_task_timer (struct thread *thread)
paul718e3742002-12-13 20:15:29 +00001892{
paul147193a2003-04-19 00:31:59 +00001893 struct ospf *ospf = THREAD_ARG (thread);
1894
1895 ospf->t_abr_task = 0;
paul718e3742002-12-13 20:15:29 +00001896
1897 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001898 zlog_debug ("Running ABR task on timer");
paul718e3742002-12-13 20:15:29 +00001899
paul147193a2003-04-19 00:31:59 +00001900 ospf_check_abr_status (ospf);
pauld4a53d52003-07-12 21:30:57 +00001901 ospf_abr_nssa_check_status (ospf);
paul718e3742002-12-13 20:15:29 +00001902
paul147193a2003-04-19 00:31:59 +00001903 ospf_abr_task (ospf);
paule2c6c152003-06-22 08:49:25 +00001904 ospf_abr_nssa_task (ospf); /* if nssa-abr, then scan Type-7 LSDB */
paul718e3742002-12-13 20:15:29 +00001905
paul147193a2003-04-19 00:31:59 +00001906 return 0;
paul718e3742002-12-13 20:15:29 +00001907}
1908
1909void
paul147193a2003-04-19 00:31:59 +00001910ospf_schedule_abr_task (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00001911{
1912 if (IS_DEBUG_OSPF_EVENT)
ajse84cc642004-12-08 17:28:56 +00001913 zlog_debug ("Scheduling ABR task");
paul147193a2003-04-19 00:31:59 +00001914
1915 if (ospf->t_abr_task == NULL)
1916 ospf->t_abr_task = thread_add_timer (master, ospf_abr_task_timer,
1917 ospf, OSPF_ABR_TASK_DELAY);
paul718e3742002-12-13 20:15:29 +00001918}