blob: df19adff4e96372013d804272ed398f51cf84b3d [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/*
2 * OSPF Flooding -- RFC2328 Section 13.
3 * Copyright (C) 1999, 2000 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
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation; either version 2, or (at your
10 * option) any 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
19 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 * Boston, MA 02111-1307, USA.
21 */
22
23#include <zebra.h>
24
25#include "linklist.h"
26#include "prefix.h"
27#include "if.h"
28#include "command.h"
29#include "table.h"
30#include "thread.h"
31#include "memory.h"
32#include "log.h"
33#include "zclient.h"
34
35#include "ospfd/ospfd.h"
36#include "ospfd/ospf_interface.h"
37#include "ospfd/ospf_ism.h"
38#include "ospfd/ospf_asbr.h"
39#include "ospfd/ospf_lsa.h"
40#include "ospfd/ospf_lsdb.h"
41#include "ospfd/ospf_neighbor.h"
42#include "ospfd/ospf_nsm.h"
43#include "ospfd/ospf_spf.h"
44#include "ospfd/ospf_flood.h"
45#include "ospfd/ospf_packet.h"
46#include "ospfd/ospf_abr.h"
47#include "ospfd/ospf_route.h"
48#include "ospfd/ospf_zebra.h"
49#include "ospfd/ospf_dump.h"
50
51extern struct zclient *zclient;
David Lamparter6b0655a2014-06-04 06:53:35 +020052
paul718e3742002-12-13 20:15:29 +000053/* Do the LSA acking specified in table 19, Section 13.5, row 2
54 * This get called from ospf_flood_out_interface. Declared inline
55 * for speed. */
56static void
57ospf_flood_delayed_lsa_ack (struct ospf_neighbor *inbr, struct ospf_lsa *lsa)
58{
59 /* LSA is more recent than database copy, but was not
60 flooded back out receiving interface. Delayed
61 acknowledgment sent. If interface is in Backup state
62 delayed acknowledgment sent only if advertisement
63 received from Designated Router, otherwise do nothing See
64 RFC 2328 Section 13.5 */
65
66 /* Whether LSA is more recent or not, and whether this is in
67 response to the LSA being sent out recieving interface has been
68 worked out previously */
69
70 /* Deal with router as BDR */
71 if (inbr->oi->state == ISM_Backup && ! NBR_IS_DR (inbr))
72 return;
73
74 /* Schedule a delayed LSA Ack to be sent */
Paul Jakma1fe6ed32006-07-26 09:37:26 +000075 listnode_add (inbr->oi->ls_ack, ospf_lsa_lock (lsa)); /* delayed LSA Ack */
paul718e3742002-12-13 20:15:29 +000076}
77
78/* Check LSA is related to external info. */
79struct external_info *
80ospf_external_info_check (struct ospf_lsa *lsa)
81{
82 struct as_external_lsa *al;
83 struct prefix_ipv4 p;
84 struct route_node *rn;
85 int type;
86
87 al = (struct as_external_lsa *) lsa->data;
88
89 p.family = AF_INET;
90 p.prefix = lsa->data->id;
91 p.prefixlen = ip_masklen (al->mask);
92
93 for (type = 0; type <= ZEBRA_ROUTE_MAX; type++)
94 {
95 int redist_type = is_prefix_default (&p) ? DEFAULT_ROUTE : type;
96 if (ospf_is_type_redistributed (redist_type))
97 if (EXTERNAL_INFO (type))
98 {
99 rn = route_node_lookup (EXTERNAL_INFO (type),
100 (struct prefix *) &p);
101 if (rn)
102 {
103 route_unlock_node (rn);
104 if (rn->info != NULL)
105 return (struct external_info *) rn->info;
106 }
107 }
108 }
109
110 return NULL;
111}
112
paul4dadc292005-05-06 21:37:42 +0000113static void
paul68980082003-03-25 05:07:42 +0000114ospf_process_self_originated_lsa (struct ospf *ospf,
115 struct ospf_lsa *new, struct ospf_area *area)
paul718e3742002-12-13 20:15:29 +0000116{
117 struct ospf_interface *oi;
118 struct external_info *ei;
hasso52dc7ee2004-09-23 19:18:23 +0000119 struct listnode *node;
paul718e3742002-12-13 20:15:29 +0000120
121 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000122 zlog_debug ("LSA[Type%d:%s]: Process self-originated LSA seq 0x%x",
paul7ddf1d62003-10-13 09:06:46 +0000123 new->data->type, inet_ntoa (new->data->id),
paul0c2be262004-05-31 14:16:54 +0000124 ntohl(new->data->ls_seqnum));
paul718e3742002-12-13 20:15:29 +0000125
126 /* If we're here, we installed a self-originated LSA that we received
127 from a neighbor, i.e. it's more recent. We must see whether we want
128 to originate it.
129 If yes, we should use this LSA's sequence number and reoriginate
130 a new instance.
131 if not --- we must flush this LSA from the domain. */
132 switch (new->data->type)
133 {
134 case OSPF_ROUTER_LSA:
135 /* Originate a new instance and schedule flooding */
Joakim Tjernlundbd246242009-01-05 17:44:46 +0100136 if (area->router_lsa_self)
137 area->router_lsa_self->data->ls_seqnum = new->data->ls_seqnum;
Paul Jakmac363d382010-01-24 22:42:13 +0000138 ospf_router_lsa_update_area (area);
paul718e3742002-12-13 20:15:29 +0000139 return;
140 case OSPF_NETWORK_LSA:
141#ifdef HAVE_OPAQUE_LSA
142 case OSPF_OPAQUE_LINK_LSA:
143#endif /* HAVE_OPAQUE_LSA */
144 /* We must find the interface the LSA could belong to.
145 If the interface is no more a broadcast type or we are no more
146 the DR, we flush the LSA otherwise -- create the new instance and
147 schedule flooding. */
148
149 /* Look through all interfaces, not just area, since interface
150 could be moved from one area to another. */
paul1eb8ef22005-04-07 07:30:20 +0000151 for (ALL_LIST_ELEMENTS_RO (ospf->oiflist, node, oi))
paul718e3742002-12-13 20:15:29 +0000152 /* These are sanity check. */
paul1eb8ef22005-04-07 07:30:20 +0000153 if (IPV4_ADDR_SAME (&oi->address->u.prefix4, &new->data->id))
154 {
155 if (oi->area != area ||
156 oi->type != OSPF_IFTYPE_BROADCAST ||
157 !IPV4_ADDR_SAME (&oi->address->u.prefix4, &DR (oi)))
158 {
159 ospf_schedule_lsa_flush_area (area, new);
160 return;
161 }
162
paul718e3742002-12-13 20:15:29 +0000163#ifdef HAVE_OPAQUE_LSA
paul1eb8ef22005-04-07 07:30:20 +0000164 if (new->data->type == OSPF_OPAQUE_LINK_LSA)
165 {
166 ospf_opaque_lsa_refresh (new);
167 return;
168 }
paul718e3742002-12-13 20:15:29 +0000169#endif /* HAVE_OPAQUE_LSA */
170
Joakim Tjernlundbd246242009-01-05 17:44:46 +0100171 if (oi->network_lsa_self)
172 oi->network_lsa_self->data->ls_seqnum = new->data->ls_seqnum;
paul1eb8ef22005-04-07 07:30:20 +0000173 /* Schedule network-LSA origination. */
Paul Jakmac363d382010-01-24 22:42:13 +0000174 ospf_network_lsa_update (oi);
paul1eb8ef22005-04-07 07:30:20 +0000175 return;
176 }
paul718e3742002-12-13 20:15:29 +0000177 break;
178 case OSPF_SUMMARY_LSA:
179 case OSPF_ASBR_SUMMARY_LSA:
paul68980082003-03-25 05:07:42 +0000180 ospf_schedule_abr_task (ospf);
paul718e3742002-12-13 20:15:29 +0000181 break;
182 case OSPF_AS_EXTERNAL_LSA :
paul718e3742002-12-13 20:15:29 +0000183 case OSPF_AS_NSSA_LSA:
pauld4a53d52003-07-12 21:30:57 +0000184 if ( (new->data->type == OSPF_AS_EXTERNAL_LSA)
185 && CHECK_FLAG (new->flags, OSPF_LSA_LOCAL_XLT))
186 {
187 ospf_translated_nssa_refresh (ospf, NULL, new);
188 return;
189 }
paul718e3742002-12-13 20:15:29 +0000190 ei = ospf_external_info_check (new);
191 if (ei)
pauld4a53d52003-07-12 21:30:57 +0000192 ospf_external_lsa_refresh (ospf, new, ei, LSA_REFRESH_FORCE);
paul718e3742002-12-13 20:15:29 +0000193 else
pauld4a53d52003-07-12 21:30:57 +0000194 ospf_lsa_flush_as (ospf, new);
paul718e3742002-12-13 20:15:29 +0000195 break;
196#ifdef HAVE_OPAQUE_LSA
197 case OSPF_OPAQUE_AREA_LSA:
198 ospf_opaque_lsa_refresh (new);
199 break;
200 case OSPF_OPAQUE_AS_LSA:
201 ospf_opaque_lsa_refresh (new); /* Reconsideration may needed. *//* XXX */
202 break;
203#endif /* HAVE_OPAQUE_LSA */
204 default:
205 break;
206 }
207}
208
209/* OSPF LSA flooding -- RFC2328 Section 13.(5). */
210
211/* Now Updated for NSSA operation, as follows:
212
213
214 Type-5's have no change. Blocked to STUB or NSSA.
215
216 Type-7's can be received, and if a DR
217 they will also flood the local NSSA Area as Type-7's
218
219 If a Self-Originated LSA (now an ASBR),
220 The LSDB will be updated as Type-5's, (for continual re-fresh)
221
222 If an NSSA-IR it is installed/flooded as Type-7, P-bit on.
223 if an NSSA-ABR it is installed/flooded as Type-7, P-bit off.
224
225 Later, during the ABR TASK, if the ABR is the Elected NSSA
226 translator, then All Type-7s (with P-bit ON) are Translated to
227 Type-5's and flooded to all non-NSSA/STUB areas.
228
229 During ASE Calculations,
230 non-ABRs calculate external routes from Type-7's
231 ABRs calculate external routes from Type-5's and non-self Type-7s
232*/
233int
paul68980082003-03-25 05:07:42 +0000234ospf_flood (struct ospf *ospf, struct ospf_neighbor *nbr,
235 struct ospf_lsa *current, struct ospf_lsa *new)
paul718e3742002-12-13 20:15:29 +0000236{
237 struct ospf_interface *oi;
paul718e3742002-12-13 20:15:29 +0000238 int lsa_ack_flag;
239
240 /* Type-7 LSA's will be flooded throughout their native NSSA area,
241 but will also be flooded as Type-5's into ABR capable links. */
242
243 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000244 zlog_debug ("LSA[Flooding]: start, NBR %s (%s), cur(%p), New-LSA[%s]",
paul718e3742002-12-13 20:15:29 +0000245 inet_ntoa (nbr->router_id),
246 LOOKUP (ospf_nsm_state_msg, nbr->state),
David Lampartereed3c482015-03-03 08:51:53 +0100247 (void *)current,
paul718e3742002-12-13 20:15:29 +0000248 dump_lsa_key (new));
249
250 lsa_ack_flag = 0;
251 oi = nbr->oi;
252
paul718e3742002-12-13 20:15:29 +0000253 /* If there is already a database copy, and if the
254 database copy was received via flooding and installed less
255 than MinLSArrival seconds ago, discard the new LSA
256 (without acknowledging it). */
257 if (current != NULL) /* -- endo. */
258 {
259 if (IS_LSA_SELF (current)
260 && (ntohs (current->data->ls_age) == 0
261 && ntohl (current->data->ls_seqnum) == OSPF_INITIAL_SEQUENCE_NUMBER))
262 {
263 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000264 zlog_debug ("LSA[Flooding]: Got a self-originated LSA, "
paul718e3742002-12-13 20:15:29 +0000265 "while local one is initial instance.");
266 ; /* Accept this LSA for quick LSDB resynchronization. */
267 }
Paul Jakma2518efd2006-08-27 06:49:29 +0000268 else if (tv_cmp (tv_sub (recent_relative_time (), current->tv_recv),
Michael Rossberg2ef762e2015-07-27 07:56:25 +0200269 msec2tv (ospf->min_ls_arrival)) < 0)
paul718e3742002-12-13 20:15:29 +0000270 {
271 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000272 zlog_debug ("LSA[Flooding]: LSA is received recently.");
paul718e3742002-12-13 20:15:29 +0000273 return -1;
274 }
275 }
276
277 /* Flood the new LSA out some subset of the router's interfaces.
278 In some cases (e.g., the state of the receiving interface is
279 DR and the LSA was received from a router other than the
280 Backup DR) the LSA will be flooded back out the receiving
281 interface. */
paul68980082003-03-25 05:07:42 +0000282 lsa_ack_flag = ospf_flood_through (ospf, nbr, new);
paul718e3742002-12-13 20:15:29 +0000283
284#ifdef HAVE_OPAQUE_LSA
285 /* Remove the current database copy from all neighbors' Link state
286 retransmission lists. AS_EXTERNAL and AS_EXTERNAL_OPAQUE does
287 ^^^^^^^^^^^^^^^^^^^^^^^
288 not have area ID.
289 All other (even NSSA's) do have area ID. */
290#else /* HAVE_OPAQUE_LSA */
291 /* Remove the current database copy from all neighbors' Link state
292 retransmission lists. Only AS_EXTERNAL does not have area ID.
293 All other (even NSSA's) do have area ID. */
294#endif /* HAVE_OPAQUE_LSA */
295 if (current)
296 {
297 switch (current->data->type)
298 {
299 case OSPF_AS_EXTERNAL_LSA:
300#ifdef HAVE_OPAQUE_LSA
301 case OSPF_OPAQUE_AS_LSA:
302#endif /* HAVE_OPAQUE_LSA */
paul68980082003-03-25 05:07:42 +0000303 ospf_ls_retransmit_delete_nbr_as (ospf, current);
paul718e3742002-12-13 20:15:29 +0000304 break;
305 default:
paul68980082003-03-25 05:07:42 +0000306 ospf_ls_retransmit_delete_nbr_area (nbr->oi->area, current);
paul718e3742002-12-13 20:15:29 +0000307 break;
308 }
309 }
310
311 /* Do some internal house keeping that is needed here */
312 SET_FLAG (new->flags, OSPF_LSA_RECEIVED);
paul68980082003-03-25 05:07:42 +0000313 ospf_lsa_is_self_originated (ospf, new); /* Let it set the flag */
paul718e3742002-12-13 20:15:29 +0000314
315 /* Install the new LSA in the link state database
316 (replacing the current database copy). This may cause the
317 routing table calculation to be scheduled. In addition,
318 timestamp the new LSA with the current time. The flooding
319 procedure cannot overwrite the newly installed LSA until
320 MinLSArrival seconds have elapsed. */
321
CROSS6b161fc2011-09-26 13:17:21 +0400322 if (! (new = ospf_lsa_install (ospf, nbr->oi, new)))
Thomas Ries4de148e2011-10-27 17:43:38 +0400323 return -1; /* unknown LSA type or any other error condition */
paul718e3742002-12-13 20:15:29 +0000324
325 /* Acknowledge the receipt of the LSA by sending a Link State
326 Acknowledgment packet back out the receiving interface. */
327 if (lsa_ack_flag)
328 ospf_flood_delayed_lsa_ack (nbr, new);
329
330 /* If this new LSA indicates that it was originated by the
331 receiving router itself, the router must take special action,
332 either updating the LSA or in some cases flushing it from
333 the routing domain. */
paul68980082003-03-25 05:07:42 +0000334 if (ospf_lsa_is_self_originated (ospf, new))
335 ospf_process_self_originated_lsa (ospf, new, oi->area);
paul718e3742002-12-13 20:15:29 +0000336 else
337 /* Update statistics value for OSPF-MIB. */
paul68980082003-03-25 05:07:42 +0000338 ospf->rx_lsa_count++;
paul718e3742002-12-13 20:15:29 +0000339
340 return 0;
341}
342
343/* OSPF LSA flooding -- RFC2328 Section 13.3. */
paul4dadc292005-05-06 21:37:42 +0000344static int
paul718e3742002-12-13 20:15:29 +0000345ospf_flood_through_interface (struct ospf_interface *oi,
346 struct ospf_neighbor *inbr,
347 struct ospf_lsa *lsa)
348{
349 struct ospf_neighbor *onbr;
350 struct route_node *rn;
351 int retx_flag;
352
353 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000354 zlog_debug ("ospf_flood_through_interface(): "
paul718e3742002-12-13 20:15:29 +0000355 "considering int %s, INBR(%s), LSA[%s]",
356 IF_NAME (oi), inbr ? inet_ntoa (inbr->router_id) : "NULL",
357 dump_lsa_key (lsa));
358
359 if (!ospf_if_is_enable (oi))
360 return 0;
361
362 /* Remember if new LSA is aded to a retransmit list. */
363 retx_flag = 0;
364
365 /* Each of the neighbors attached to this interface are examined,
366 to determine whether they must receive the new LSA. The following
367 steps are executed for each neighbor: */
368 for (rn = route_top (oi->nbrs); rn; rn = route_next (rn))
369 {
370 struct ospf_lsa *ls_req;
371
372 if (rn->info == NULL)
373 continue;
374
375 onbr = rn->info;
376 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000377 zlog_debug ("ospf_flood_through_interface(): considering nbr %s (%s)",
paul718e3742002-12-13 20:15:29 +0000378 inet_ntoa (onbr->router_id),
379 LOOKUP (ospf_nsm_state_msg, onbr->state));
380
381 /* If the neighbor is in a lesser state than Exchange, it
382 does not participate in flooding, and the next neighbor
383 should be examined. */
384 if (onbr->state < NSM_Exchange)
385 continue;
386
387 /* If the adjacency is not yet full (neighbor state is
388 Exchange or Loading), examine the Link state request
389 list associated with this adjacency. If there is an
390 instance of the new LSA on the list, it indicates that
391 the neighboring router has an instance of the LSA
392 already. Compare the new LSA to the neighbor's copy: */
393 if (onbr->state < NSM_Full)
394 {
395 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000396 zlog_debug ("ospf_flood_through_interface(): nbr adj is not Full");
paul718e3742002-12-13 20:15:29 +0000397 ls_req = ospf_ls_request_lookup (onbr, lsa);
398 if (ls_req != NULL)
399 {
400 int ret;
401
402 ret = ospf_lsa_more_recent (ls_req, lsa);
403 /* The new LSA is less recent. */
404 if (ret > 0)
405 continue;
406 /* The two copies are the same instance, then delete
407 the LSA from the Link state request list. */
408 else if (ret == 0)
409 {
410 ospf_ls_request_delete (onbr, ls_req);
411 ospf_check_nbr_loading (onbr);
412 continue;
413 }
414 /* The new LSA is more recent. Delete the LSA
415 from the Link state request list. */
416 else
417 {
418 ospf_ls_request_delete (onbr, ls_req);
419 ospf_check_nbr_loading (onbr);
420 }
421 }
422 }
423
424#ifdef HAVE_OPAQUE_LSA
425 if (IS_OPAQUE_LSA (lsa->data->type))
426 {
427 if (! CHECK_FLAG (onbr->options, OSPF_OPTION_O))
428 {
429 if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
ajs60925302004-12-08 17:45:02 +0000430 zlog_debug ("Skip this neighbor: Not Opaque-capable.");
paul718e3742002-12-13 20:15:29 +0000431 continue;
432 }
paul718e3742002-12-13 20:15:29 +0000433 }
434#endif /* HAVE_OPAQUE_LSA */
435
436 /* If the new LSA was received from this neighbor,
437 examine the next neighbor. */
438#ifdef ORIGINAL_CODING
439 if (inbr)
440 if (IPV4_ADDR_SAME (&inbr->router_id, &onbr->router_id))
441 continue;
442#else /* ORIGINAL_CODING */
443 if (inbr)
444 {
445 /*
446 * Triggered by LSUpd message parser "ospf_ls_upd ()".
447 * E.g., all LSAs handling here is received via network.
448 */
449 if (IPV4_ADDR_SAME (&inbr->router_id, &onbr->router_id))
450 {
451 if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
ajs60925302004-12-08 17:45:02 +0000452 zlog_debug ("Skip this neighbor: inbr == onbr");
paul718e3742002-12-13 20:15:29 +0000453 continue;
454 }
455 }
456 else
457 {
458 /*
459 * Triggered by MaxAge remover, so far.
460 * NULL "inbr" means flooding starts from this node.
461 */
462 if (IPV4_ADDR_SAME (&lsa->data->adv_router, &onbr->router_id))
463 {
464 if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
ajs60925302004-12-08 17:45:02 +0000465 zlog_debug ("Skip this neighbor: lsah->adv_router == onbr");
paul718e3742002-12-13 20:15:29 +0000466 continue;
467 }
468 }
469#endif /* ORIGINAL_CODING */
470
471 /* Add the new LSA to the Link state retransmission list
472 for the adjacency. The LSA will be retransmitted
473 at intervals until an acknowledgment is seen from
474 the neighbor. */
475 ospf_ls_retransmit_add (onbr, lsa);
476 retx_flag = 1;
477 }
478
479 /* If in the previous step, the LSA was NOT added to any of
480 the Link state retransmission lists, there is no need to
481 flood the LSA out the interface. */
482 if (retx_flag == 0)
483 {
484 return (inbr && inbr->oi == oi);
485 }
486
487 /* if we've received the lsa on this interface we need to perform
488 additional checking */
489 if (inbr && (inbr->oi == oi))
490 {
491 /* If the new LSA was received on this interface, and it was
492 received from either the Designated Router or the Backup
493 Designated Router, chances are that all the neighbors have
494 received the LSA already. */
495 if (NBR_IS_DR (inbr) || NBR_IS_BDR (inbr))
496 {
paul718e3742002-12-13 20:15:29 +0000497 if (IS_DEBUG_OSPF_NSSA)
ajs60925302004-12-08 17:45:02 +0000498 zlog_debug ("ospf_flood_through_interface(): "
paul718e3742002-12-13 20:15:29 +0000499 "DR/BDR NOT SEND to int %s", IF_NAME (oi));
paul718e3742002-12-13 20:15:29 +0000500 return 1;
501 }
502
503 /* If the new LSA was received on this interface, and the
504 interface state is Backup, examine the next interface. The
505 Designated Router will do the flooding on this interface.
506 However, if the Designated Router fails the router will
507 end up retransmitting the updates. */
508
509 if (oi->state == ISM_Backup)
510 {
paul718e3742002-12-13 20:15:29 +0000511 if (IS_DEBUG_OSPF_NSSA)
ajs60925302004-12-08 17:45:02 +0000512 zlog_debug ("ospf_flood_through_interface(): "
paul718e3742002-12-13 20:15:29 +0000513 "ISM_Backup NOT SEND to int %s", IF_NAME (oi));
paul718e3742002-12-13 20:15:29 +0000514 return 1;
515 }
516 }
517
518 /* The LSA must be flooded out the interface. Send a Link State
519 Update packet (including the new LSA as contents) out the
520 interface. The LSA's LS age must be incremented by InfTransDelay
521 (which must be > 0) when it is copied into the outgoing Link
522 State Update packet (until the LS age field reaches the maximum
523 value of MaxAge). */
hassobeebba72004-06-20 21:00:27 +0000524 /* XXX HASSO: Is this IS_DEBUG_OSPF_NSSA really correct? */
paul718e3742002-12-13 20:15:29 +0000525 if (IS_DEBUG_OSPF_NSSA)
ajs60925302004-12-08 17:45:02 +0000526 zlog_debug ("ospf_flood_through_interface(): "
paul718e3742002-12-13 20:15:29 +0000527 "DR/BDR sending upd to int %s", IF_NAME (oi));
paul718e3742002-12-13 20:15:29 +0000528
529 /* RFC2328 Section 13.3
530 On non-broadcast networks, separate Link State Update
531 packets must be sent, as unicasts, to each adjacent neighbor
532 (i.e., those in state Exchange or greater). The destination
533 IP addresses for these packets are the neighbors' IP
534 addresses. */
535 if (oi->type == OSPF_IFTYPE_NBMA)
536 {
537 struct route_node *rn;
538 struct ospf_neighbor *nbr;
539
540 for (rn = route_top (oi->nbrs); rn; rn = route_next (rn))
541 if ((nbr = rn->info) != NULL)
542 if (nbr != oi->nbr_self && nbr->state >= NSM_Exchange)
543 ospf_ls_upd_send_lsa (nbr, lsa, OSPF_SEND_PACKET_DIRECT);
544 }
545 else
546 ospf_ls_upd_send_lsa (oi->nbr_self, lsa, OSPF_SEND_PACKET_INDIRECT);
547
548 return 0;
549}
550
551int
paul68980082003-03-25 05:07:42 +0000552ospf_flood_through_area (struct ospf_area *area,
553 struct ospf_neighbor *inbr, struct ospf_lsa *lsa)
paul718e3742002-12-13 20:15:29 +0000554{
paul1eb8ef22005-04-07 07:30:20 +0000555 struct listnode *node, *nnode;
556 struct ospf_interface *oi;
paul718e3742002-12-13 20:15:29 +0000557 int lsa_ack_flag = 0;
558
559 /* All other types are specific to a single area (Area A). The
560 eligible interfaces are all those interfaces attaching to the
561 Area A. If Area A is the backbone, this includes all the virtual
562 links. */
paul1eb8ef22005-04-07 07:30:20 +0000563 for (ALL_LIST_ELEMENTS (area->oiflist, node, nnode, oi))
paul718e3742002-12-13 20:15:29 +0000564 {
paul718e3742002-12-13 20:15:29 +0000565 if (area->area_id.s_addr != OSPF_AREA_BACKBONE &&
566 oi->type == OSPF_IFTYPE_VIRTUALLINK)
567 continue;
568
569#ifdef HAVE_OPAQUE_LSA
570 if ((lsa->data->type == OSPF_OPAQUE_LINK_LSA) && (lsa->oi != oi))
571 {
572 /*
573 * Link local scoped Opaque-LSA should only be flooded
574 * for the link on which the LSA has received.
575 */
576 if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
David Lampartereed3c482015-03-03 08:51:53 +0100577 zlog_debug ("Type-9 Opaque-LSA: lsa->oi(%p) != oi(%p)",
578 (void *)lsa->oi, (void *)oi);
paul718e3742002-12-13 20:15:29 +0000579 continue;
580 }
581#endif /* HAVE_OPAQUE_LSA */
582
583 if (ospf_flood_through_interface (oi, inbr, lsa))
584 lsa_ack_flag = 1;
585 }
586
587 return (lsa_ack_flag);
588}
589
590int
paul68980082003-03-25 05:07:42 +0000591ospf_flood_through_as (struct ospf *ospf, struct ospf_neighbor *inbr,
592 struct ospf_lsa *lsa)
paul718e3742002-12-13 20:15:29 +0000593{
hasso52dc7ee2004-09-23 19:18:23 +0000594 struct listnode *node;
paul1eb8ef22005-04-07 07:30:20 +0000595 struct ospf_area *area;
paul718e3742002-12-13 20:15:29 +0000596 int lsa_ack_flag;
597
598 lsa_ack_flag = 0;
599
600 /* The incoming LSA is type 5 or type 7 (AS-EXTERNAL or AS-NSSA )
601
602 Divert the Type-5 LSA's to all non-NSSA/STUB areas
603
604 Divert the Type-7 LSA's to all NSSA areas
605
606 AS-external-LSAs are flooded throughout the entire AS, with the
607 exception of stub areas (see Section 3.6). The eligible
608 interfaces are all the router's interfaces, excluding virtual
609 links and those interfaces attaching to stub areas. */
610
paul718e3742002-12-13 20:15:29 +0000611 if (CHECK_FLAG (lsa->flags, OSPF_LSA_LOCAL_XLT)) /* Translated from 7 */
612 if (IS_DEBUG_OSPF_NSSA)
ajs60925302004-12-08 17:45:02 +0000613 zlog_debug ("Flood/AS: NSSA TRANSLATED LSA");
paul718e3742002-12-13 20:15:29 +0000614
paul1eb8ef22005-04-07 07:30:20 +0000615 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
paul718e3742002-12-13 20:15:29 +0000616 {
617 int continue_flag = 0;
hasso52dc7ee2004-09-23 19:18:23 +0000618 struct listnode *if_node;
paul1eb8ef22005-04-07 07:30:20 +0000619 struct ospf_interface *oi;
paul718e3742002-12-13 20:15:29 +0000620
621 switch (area->external_routing)
622 {
623 /* Don't send AS externals into stub areas. Various types
624 of support for partial stub areas can be implemented
625 here. NSSA's will receive Type-7's that have areas
626 matching the originl LSA. */
627 case OSPF_AREA_NSSA: /* Sending Type 5 or 7 into NSSA area */
paul718e3742002-12-13 20:15:29 +0000628 /* Type-7, flood NSSA area */
paul68980082003-03-25 05:07:42 +0000629 if (lsa->data->type == OSPF_AS_NSSA_LSA
630 && area == lsa->area)
paul718e3742002-12-13 20:15:29 +0000631 /* We will send it. */
632 continue_flag = 0;
paul68980082003-03-25 05:07:42 +0000633 else
paul718e3742002-12-13 20:15:29 +0000634 continue_flag = 1; /* Skip this NSSA area for Type-5's et al */
paul718e3742002-12-13 20:15:29 +0000635 break;
paul718e3742002-12-13 20:15:29 +0000636
637 case OSPF_AREA_TYPE_MAX:
638 case OSPF_AREA_STUB:
639 continue_flag = 1; /* Skip this area. */
640 break;
641
642 case OSPF_AREA_DEFAULT:
643 default:
paul718e3742002-12-13 20:15:29 +0000644 /* No Type-7 into normal area */
645 if (lsa->data->type == OSPF_AS_NSSA_LSA)
646 continue_flag = 1; /* skip Type-7 */
647 else
paul718e3742002-12-13 20:15:29 +0000648 continue_flag = 0; /* Do this area. */
649 break;
650 }
651
652 /* Do continue for above switch. Saves a big if then mess */
653 if (continue_flag)
654 continue; /* main for-loop */
655
656 /* send to every interface in this area */
657
paul1eb8ef22005-04-07 07:30:20 +0000658 for (ALL_LIST_ELEMENTS_RO (area->oiflist, if_node, oi))
paul718e3742002-12-13 20:15:29 +0000659 {
paul718e3742002-12-13 20:15:29 +0000660 /* Skip virtual links */
661 if (oi->type != OSPF_IFTYPE_VIRTUALLINK)
662 if (ospf_flood_through_interface (oi, inbr, lsa)) /* lsa */
663 lsa_ack_flag = 1;
664 }
665 } /* main area for-loop */
666
667 return (lsa_ack_flag);
668}
669
670int
paul68980082003-03-25 05:07:42 +0000671ospf_flood_through (struct ospf *ospf,
672 struct ospf_neighbor *inbr, struct ospf_lsa *lsa)
paul718e3742002-12-13 20:15:29 +0000673{
674 int lsa_ack_flag = 0;
675
676 /* Type-7 LSA's for NSSA are flooded throughout the AS here, and
677 upon return are updated in the LSDB for Type-7's. Later,
678 re-fresh will re-send them (and also, if ABR, packet code will
679 translate to Type-5's)
680
681 As usual, Type-5 LSA's (if not DISCARDED because we are STUB or
682 NSSA) are flooded throughout the AS, and are updated in the
683 global table. */
684#ifdef ORIGINAL_CODING
685 switch (lsa->data->type)
686 {
687 case OSPF_ROUTER_LSA:
688 case OSPF_NETWORK_LSA:
689 case OSPF_SUMMARY_LSA:
690 case OSPF_ASBR_SUMMARY_LSA:
691#ifdef HAVE_OPAQUE_LSA
692 case OSPF_OPAQUE_LINK_LSA: /* ospf_flood_through_interface ? */
693 case OSPF_OPAQUE_AREA_LSA:
694#endif /* HAVE_OPAQUE_LSA */
695 lsa_ack_flag = ospf_flood_through_area (inbr->oi->area, inbr, lsa);
696 break;
697 case OSPF_AS_EXTERNAL_LSA: /* Type-5 */
698#ifdef HAVE_OPAQUE_LSA
699 case OSPF_OPAQUE_AS_LSA:
700#endif /* HAVE_OPAQUE_LSA */
paul68980082003-03-25 05:07:42 +0000701 lsa_ack_flag = ospf_flood_through_as (ospf, inbr, lsa);
paul718e3742002-12-13 20:15:29 +0000702 break;
paul718e3742002-12-13 20:15:29 +0000703 /* Type-7 Only received within NSSA, then flooded */
704 case OSPF_AS_NSSA_LSA:
705 /* Any P-bit was installed with the Type-7. */
706 lsa_ack_flag = ospf_flood_through_area (inbr->oi->area, inbr, lsa);
707
708 if (IS_DEBUG_OSPF_NSSA)
ajs60925302004-12-08 17:45:02 +0000709 zlog_debug ("ospf_flood_through: LOCAL NSSA FLOOD of Type-7.");
paul718e3742002-12-13 20:15:29 +0000710 break;
paul718e3742002-12-13 20:15:29 +0000711 default:
712 break;
713 }
714#else /* ORIGINAL_CODING */
715 /*
716 * At the common sub-sub-function "ospf_flood_through_interface()",
717 * a parameter "inbr" will be used to distinguish the called context
718 * whether the given LSA was received from the neighbor, or the
719 * flooding for the LSA starts from this node (e.g. the LSA was self-
720 * originated, or the LSA is going to be flushed from routing domain).
721 *
722 * So, for consistency reasons, this function "ospf_flood_through()"
723 * should also allow the usage that the given "inbr" parameter to be
724 * NULL. If we do so, corresponding AREA parameter should be referred
725 * by "lsa->area", instead of "inbr->oi->area".
726 */
727 switch (lsa->data->type)
728 {
729 case OSPF_AS_EXTERNAL_LSA: /* Type-5 */
730#ifdef HAVE_OPAQUE_LSA
731 case OSPF_OPAQUE_AS_LSA:
732#endif /* HAVE_OPAQUE_LSA */
paul68980082003-03-25 05:07:42 +0000733 lsa_ack_flag = ospf_flood_through_as (ospf, inbr, lsa);
paul718e3742002-12-13 20:15:29 +0000734 break;
paul718e3742002-12-13 20:15:29 +0000735 /* Type-7 Only received within NSSA, then flooded */
736 case OSPF_AS_NSSA_LSA:
737 /* Any P-bit was installed with the Type-7. */
738
739 if (IS_DEBUG_OSPF_NSSA)
ajs60925302004-12-08 17:45:02 +0000740 zlog_debug ("ospf_flood_through: LOCAL NSSA FLOOD of Type-7.");
paul718e3742002-12-13 20:15:29 +0000741 /* Fallthrough */
paul718e3742002-12-13 20:15:29 +0000742 default:
743 lsa_ack_flag = ospf_flood_through_area (lsa->area, inbr, lsa);
744 break;
745 }
746#endif /* ORIGINAL_CODING */
747
748 return (lsa_ack_flag);
749}
750
David Lamparter6b0655a2014-06-04 06:53:35 +0200751
paul718e3742002-12-13 20:15:29 +0000752
753/* Management functions for neighbor's Link State Request list. */
754void
755ospf_ls_request_add (struct ospf_neighbor *nbr, struct ospf_lsa *lsa)
756{
757 /*
758 * We cannot make use of the newly introduced callback function
759 * "lsdb->new_lsa_hook" to replace debug output below, just because
760 * it seems no simple and smart way to pass neighbor information to
761 * the common function "ospf_lsdb_add()" -- endo.
762 */
763 if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
ajs60925302004-12-08 17:45:02 +0000764 zlog_debug ("RqstL(%lu)++, NBR(%s), LSA[%s]",
paul718e3742002-12-13 20:15:29 +0000765 ospf_ls_request_count (nbr),
766 inet_ntoa (nbr->router_id), dump_lsa_key (lsa));
767
768 ospf_lsdb_add (&nbr->ls_req, lsa);
769}
770
771unsigned long
772ospf_ls_request_count (struct ospf_neighbor *nbr)
773{
774 return ospf_lsdb_count_all (&nbr->ls_req);
775}
776
777int
778ospf_ls_request_isempty (struct ospf_neighbor *nbr)
779{
780 return ospf_lsdb_isempty (&nbr->ls_req);
781}
782
783/* Remove LSA from neighbor's ls-request list. */
784void
785ospf_ls_request_delete (struct ospf_neighbor *nbr, struct ospf_lsa *lsa)
786{
787 if (nbr->ls_req_last == lsa)
788 {
Paul Jakma1fe6ed32006-07-26 09:37:26 +0000789 ospf_lsa_unlock (&nbr->ls_req_last);
paul718e3742002-12-13 20:15:29 +0000790 nbr->ls_req_last = NULL;
791 }
792
793 if (IS_DEBUG_OSPF (lsa, LSA_FLOODING)) /* -- endo. */
ajs60925302004-12-08 17:45:02 +0000794 zlog_debug ("RqstL(%lu)--, NBR(%s), LSA[%s]",
paul718e3742002-12-13 20:15:29 +0000795 ospf_ls_request_count (nbr),
796 inet_ntoa (nbr->router_id), dump_lsa_key (lsa));
797
798 ospf_lsdb_delete (&nbr->ls_req, lsa);
799}
800
801/* Remove all LSA from neighbor's ls-requenst list. */
802void
803ospf_ls_request_delete_all (struct ospf_neighbor *nbr)
804{
Paul Jakma1fe6ed32006-07-26 09:37:26 +0000805 ospf_lsa_unlock (&nbr->ls_req_last);
paul718e3742002-12-13 20:15:29 +0000806 nbr->ls_req_last = NULL;
807 ospf_lsdb_delete_all (&nbr->ls_req);
808}
809
810/* Lookup LSA from neighbor's ls-request list. */
811struct ospf_lsa *
812ospf_ls_request_lookup (struct ospf_neighbor *nbr, struct ospf_lsa *lsa)
813{
814 return ospf_lsdb_lookup (&nbr->ls_req, lsa);
815}
816
817struct ospf_lsa *
818ospf_ls_request_new (struct lsa_header *lsah)
819{
820 struct ospf_lsa *new;
821
822 new = ospf_lsa_new ();
823 new->data = ospf_lsa_data_new (OSPF_LSA_HEADER_SIZE);
824 memcpy (new->data, lsah, OSPF_LSA_HEADER_SIZE);
825
826 return new;
827}
828
David Lamparter6b0655a2014-06-04 06:53:35 +0200829
paul718e3742002-12-13 20:15:29 +0000830/* Management functions for neighbor's ls-retransmit list. */
831unsigned long
832ospf_ls_retransmit_count (struct ospf_neighbor *nbr)
833{
834 return ospf_lsdb_count_all (&nbr->ls_rxmt);
835}
836
837unsigned long
838ospf_ls_retransmit_count_self (struct ospf_neighbor *nbr, int lsa_type)
839{
840 return ospf_lsdb_count_self (&nbr->ls_rxmt, lsa_type);
841}
842
843int
844ospf_ls_retransmit_isempty (struct ospf_neighbor *nbr)
845{
846 return ospf_lsdb_isempty (&nbr->ls_rxmt);
847}
848
849/* Add LSA to be retransmitted to neighbor's ls-retransmit list. */
850void
851ospf_ls_retransmit_add (struct ospf_neighbor *nbr, struct ospf_lsa *lsa)
852{
853 struct ospf_lsa *old;
854
855 old = ospf_ls_retransmit_lookup (nbr, lsa);
856
857 if (ospf_lsa_more_recent (old, lsa) < 0)
858 {
859 if (old)
860 {
861 old->retransmit_counter--;
862 ospf_lsdb_delete (&nbr->ls_rxmt, old);
863 }
864 lsa->retransmit_counter++;
865 /*
866 * We cannot make use of the newly introduced callback function
867 * "lsdb->new_lsa_hook" to replace debug output below, just because
868 * it seems no simple and smart way to pass neighbor information to
869 * the common function "ospf_lsdb_add()" -- endo.
870 */
871 if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
ajs60925302004-12-08 17:45:02 +0000872 zlog_debug ("RXmtL(%lu)++, NBR(%s), LSA[%s]",
paul718e3742002-12-13 20:15:29 +0000873 ospf_ls_retransmit_count (nbr),
874 inet_ntoa (nbr->router_id), dump_lsa_key (lsa));
875 ospf_lsdb_add (&nbr->ls_rxmt, lsa);
876 }
877}
878
879/* Remove LSA from neibghbor's ls-retransmit list. */
880void
881ospf_ls_retransmit_delete (struct ospf_neighbor *nbr, struct ospf_lsa *lsa)
882{
883 if (ospf_ls_retransmit_lookup (nbr, lsa))
884 {
885 lsa->retransmit_counter--;
886 if (IS_DEBUG_OSPF (lsa, LSA_FLOODING)) /* -- endo. */
ajs60925302004-12-08 17:45:02 +0000887 zlog_debug ("RXmtL(%lu)--, NBR(%s), LSA[%s]",
paul718e3742002-12-13 20:15:29 +0000888 ospf_ls_retransmit_count (nbr),
889 inet_ntoa (nbr->router_id), dump_lsa_key (lsa));
890 ospf_lsdb_delete (&nbr->ls_rxmt, lsa);
891 }
892}
893
894/* Clear neighbor's ls-retransmit list. */
895void
896ospf_ls_retransmit_clear (struct ospf_neighbor *nbr)
897{
898 struct ospf_lsdb *lsdb;
899 int i;
900
901 lsdb = &nbr->ls_rxmt;
902
903 for (i = OSPF_MIN_LSA; i < OSPF_MAX_LSA; i++)
904 {
905 struct route_table *table = lsdb->type[i].db;
906 struct route_node *rn;
907 struct ospf_lsa *lsa;
908
909 for (rn = route_top (table); rn; rn = route_next (rn))
910 if ((lsa = rn->info) != NULL)
911 ospf_ls_retransmit_delete (nbr, lsa);
912 }
913
Paul Jakma1fe6ed32006-07-26 09:37:26 +0000914 ospf_lsa_unlock (&nbr->ls_req_last);
paul718e3742002-12-13 20:15:29 +0000915 nbr->ls_req_last = NULL;
916}
917
918/* Lookup LSA from neighbor's ls-retransmit list. */
919struct ospf_lsa *
920ospf_ls_retransmit_lookup (struct ospf_neighbor *nbr, struct ospf_lsa *lsa)
921{
922 return ospf_lsdb_lookup (&nbr->ls_rxmt, lsa);
923}
924
paul4dadc292005-05-06 21:37:42 +0000925static void
paul68980082003-03-25 05:07:42 +0000926ospf_ls_retransmit_delete_nbr_if (struct ospf_interface *oi,
927 struct ospf_lsa *lsa)
paul718e3742002-12-13 20:15:29 +0000928{
paul68980082003-03-25 05:07:42 +0000929 struct route_node *rn;
930 struct ospf_neighbor *nbr;
931 struct ospf_lsa *lsr;
932
933 if (ospf_if_is_enable (oi))
934 for (rn = route_top (oi->nbrs); rn; rn = route_next (rn))
935 /* If LSA find in LS-retransmit list, then remove it. */
936 if ((nbr = rn->info) != NULL)
937 {
938 lsr = ospf_ls_retransmit_lookup (nbr, lsa);
paul718e3742002-12-13 20:15:29 +0000939
paul68980082003-03-25 05:07:42 +0000940 /* If LSA find in ls-retransmit list, remove it. */
941 if (lsr != NULL && lsr->data->ls_seqnum == lsa->data->ls_seqnum)
942 ospf_ls_retransmit_delete (nbr, lsr);
943 }
paul718e3742002-12-13 20:15:29 +0000944}
945
paul718e3742002-12-13 20:15:29 +0000946void
paul68980082003-03-25 05:07:42 +0000947ospf_ls_retransmit_delete_nbr_area (struct ospf_area *area,
948 struct ospf_lsa *lsa)
paul718e3742002-12-13 20:15:29 +0000949{
paul1eb8ef22005-04-07 07:30:20 +0000950 struct listnode *node, *nnode;
951 struct ospf_interface *oi;
paul718e3742002-12-13 20:15:29 +0000952
paul1eb8ef22005-04-07 07:30:20 +0000953 for (ALL_LIST_ELEMENTS (area->oiflist, node, nnode, oi))
954 ospf_ls_retransmit_delete_nbr_if (oi, lsa);
paul68980082003-03-25 05:07:42 +0000955}
paul718e3742002-12-13 20:15:29 +0000956
paul68980082003-03-25 05:07:42 +0000957void
958ospf_ls_retransmit_delete_nbr_as (struct ospf *ospf, struct ospf_lsa *lsa)
959{
paul1eb8ef22005-04-07 07:30:20 +0000960 struct listnode *node, *nnode;
961 struct ospf_interface *oi;
paul718e3742002-12-13 20:15:29 +0000962
paul1eb8ef22005-04-07 07:30:20 +0000963 for (ALL_LIST_ELEMENTS (ospf->oiflist, node, nnode, oi))
964 ospf_ls_retransmit_delete_nbr_if (oi, lsa);
paul718e3742002-12-13 20:15:29 +0000965}
966
David Lamparter6b0655a2014-06-04 06:53:35 +0200967
paul718e3742002-12-13 20:15:29 +0000968/* Sets ls_age to MaxAge and floods throu the area.
969 When we implement ASE routing, there will be anothe function
970 flushing an LSA from the whole domain. */
971void
972ospf_lsa_flush_area (struct ospf_lsa *lsa, struct ospf_area *area)
973{
Dinesh G Dutt8306be22014-09-30 14:11:17 -0700974 /* Reset the lsa origination time such that it gives
975 more time for the ACK to be received and avoid
976 retransmissions */
paul718e3742002-12-13 20:15:29 +0000977 lsa->data->ls_age = htons (OSPF_LSA_MAXAGE);
Dinesh G Dutt8306be22014-09-30 14:11:17 -0700978 lsa->tv_recv = recent_relative_time ();
979 lsa->tv_orig = lsa->tv_recv;
paul718e3742002-12-13 20:15:29 +0000980 ospf_flood_through_area (area, NULL, lsa);
paul68980082003-03-25 05:07:42 +0000981 ospf_lsa_maxage (area->ospf, lsa);
paul718e3742002-12-13 20:15:29 +0000982}
983
984void
paul68980082003-03-25 05:07:42 +0000985ospf_lsa_flush_as (struct ospf *ospf, struct ospf_lsa *lsa)
paul718e3742002-12-13 20:15:29 +0000986{
Dinesh G Dutt8306be22014-09-30 14:11:17 -0700987 /* Reset the lsa origination time such that it gives
988 more time for the ACK to be received and avoid
989 retransmissions */
paul718e3742002-12-13 20:15:29 +0000990 lsa->data->ls_age = htons (OSPF_LSA_MAXAGE);
Dinesh G Dutt8306be22014-09-30 14:11:17 -0700991 lsa->tv_recv = recent_relative_time ();
992 lsa->tv_orig = lsa->tv_recv;
paul68980082003-03-25 05:07:42 +0000993 ospf_flood_through_as (ospf, NULL, lsa);
994 ospf_lsa_maxage (ospf, lsa);
paul718e3742002-12-13 20:15:29 +0000995}
Paul Jakma02d942c2010-01-24 23:36:20 +0000996
997void
998ospf_lsa_flush (struct ospf *ospf, struct ospf_lsa *lsa)
999{
1000 lsa->data->ls_age = htons (OSPF_LSA_MAXAGE);
1001
1002 switch (lsa->data->type)
1003 {
1004 case OSPF_ROUTER_LSA:
1005 case OSPF_NETWORK_LSA:
1006 case OSPF_SUMMARY_LSA:
1007 case OSPF_ASBR_SUMMARY_LSA:
1008 case OSPF_AS_NSSA_LSA:
1009#ifdef HAVE_OPAQUE_LSA
1010 case OSPF_OPAQUE_LINK_LSA:
1011 case OSPF_OPAQUE_AREA_LSA:
1012#endif /* HAVE_OPAQUE_LSA */
1013 ospf_lsa_flush_area (lsa, lsa->area);
1014 break;
1015 case OSPF_AS_EXTERNAL_LSA:
1016#ifdef HAVE_OPAQUE_LSA
1017 case OSPF_OPAQUE_AS_LSA:
1018#endif /* HAVE_OPAQUE_LSA */
1019 ospf_lsa_flush_as (ospf, lsa);
1020 break;
1021 default:
1022 zlog_info ("%s: Unknown LSA type %u", __func__, lsa->data->type);
1023 break;
1024 }
1025}