2 * OSPF Flooding -- RFC2328 Section 13.
3 * Copyright (C) 1999, 2000 Toshiaki Takada
5 * This file is part of GNU Zebra.
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.
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.
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.
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"
51 extern struct zclient *zclient;
53 /* Do the LSA acking specified in table 19, Section 13.5, row 2
54 * This get called from ospf_flood_out_interface. Declared inline
57 ospf_flood_delayed_lsa_ack (struct ospf_neighbor *inbr, struct ospf_lsa *lsa)
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 */
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 */
70 /* Deal with router as BDR */
71 if (inbr->oi->state == ISM_Backup && ! NBR_IS_DR (inbr))
74 /* Schedule a delayed LSA Ack to be sent */
75 listnode_add (inbr->oi->ls_ack, ospf_lsa_lock (lsa)); /* delayed LSA Ack */
78 /* Check LSA is related to external info. */
79 struct external_info *
80 ospf_external_info_check (struct ospf_lsa *lsa)
82 struct as_external_lsa *al;
84 struct route_node *rn;
87 al = (struct as_external_lsa *) lsa->data;
90 p.prefix = lsa->data->id;
91 p.prefixlen = ip_masklen (al->mask);
93 for (type = 0; type <= ZEBRA_ROUTE_MAX; type++)
95 int redist_type = is_prefix_default (&p) ? DEFAULT_ROUTE : type;
96 if (ospf_is_type_redistributed (redist_type))
97 if (EXTERNAL_INFO (type))
99 rn = route_node_lookup (EXTERNAL_INFO (type),
100 (struct prefix *) &p);
103 route_unlock_node (rn);
104 if (rn->info != NULL)
105 return (struct external_info *) rn->info;
114 ospf_process_self_originated_lsa (struct ospf *ospf,
115 struct ospf_lsa *new, struct ospf_area *area)
117 struct ospf_interface *oi;
118 struct external_info *ei;
119 struct listnode *node;
121 if (IS_DEBUG_OSPF_EVENT)
122 zlog_debug ("LSA[Type%d:%s]: Process self-originated LSA seq 0x%x",
123 new->data->type, inet_ntoa (new->data->id),
124 ntohl(new->data->ls_seqnum));
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
129 If yes, we should use this LSA's sequence number and reoriginate
131 if not --- we must flush this LSA from the domain. */
132 switch (new->data->type)
134 case OSPF_ROUTER_LSA:
135 /* Originate a new instance and schedule flooding */
136 if (area->router_lsa_self)
137 area->router_lsa_self->data->ls_seqnum = new->data->ls_seqnum;
138 ospf_router_lsa_update_area (area);
140 case OSPF_NETWORK_LSA:
141 case OSPF_OPAQUE_LINK_LSA:
142 /* We must find the interface the LSA could belong to.
143 If the interface is no more a broadcast type or we are no more
144 the DR, we flush the LSA otherwise -- create the new instance and
145 schedule flooding. */
147 /* Look through all interfaces, not just area, since interface
148 could be moved from one area to another. */
149 for (ALL_LIST_ELEMENTS_RO (ospf->oiflist, node, oi))
150 /* These are sanity check. */
151 if (IPV4_ADDR_SAME (&oi->address->u.prefix4, &new->data->id))
153 if (oi->area != area ||
154 oi->type != OSPF_IFTYPE_BROADCAST ||
155 !IPV4_ADDR_SAME (&oi->address->u.prefix4, &DR (oi)))
157 ospf_schedule_lsa_flush_area (area, new);
161 if (new->data->type == OSPF_OPAQUE_LINK_LSA)
163 ospf_opaque_lsa_refresh (new);
167 if (oi->network_lsa_self)
168 oi->network_lsa_self->data->ls_seqnum = new->data->ls_seqnum;
169 /* Schedule network-LSA origination. */
170 ospf_network_lsa_update (oi);
174 case OSPF_SUMMARY_LSA:
175 case OSPF_ASBR_SUMMARY_LSA:
176 ospf_schedule_abr_task (ospf);
178 case OSPF_AS_EXTERNAL_LSA :
179 case OSPF_AS_NSSA_LSA:
180 if ( (new->data->type == OSPF_AS_EXTERNAL_LSA)
181 && CHECK_FLAG (new->flags, OSPF_LSA_LOCAL_XLT))
183 ospf_translated_nssa_refresh (ospf, NULL, new);
186 ei = ospf_external_info_check (new);
188 ospf_external_lsa_refresh (ospf, new, ei, LSA_REFRESH_FORCE);
190 ospf_lsa_flush_as (ospf, new);
192 case OSPF_OPAQUE_AREA_LSA:
193 ospf_opaque_lsa_refresh (new);
195 case OSPF_OPAQUE_AS_LSA:
196 ospf_opaque_lsa_refresh (new); /* Reconsideration may needed. *//* XXX */
203 /* OSPF LSA flooding -- RFC2328 Section 13.(5). */
205 /* Now Updated for NSSA operation, as follows:
208 Type-5's have no change. Blocked to STUB or NSSA.
210 Type-7's can be received, and if a DR
211 they will also flood the local NSSA Area as Type-7's
213 If a Self-Originated LSA (now an ASBR),
214 The LSDB will be updated as Type-5's, (for continual re-fresh)
216 If an NSSA-IR it is installed/flooded as Type-7, P-bit on.
217 if an NSSA-ABR it is installed/flooded as Type-7, P-bit off.
219 Later, during the ABR TASK, if the ABR is the Elected NSSA
220 translator, then All Type-7s (with P-bit ON) are Translated to
221 Type-5's and flooded to all non-NSSA/STUB areas.
223 During ASE Calculations,
224 non-ABRs calculate external routes from Type-7's
225 ABRs calculate external routes from Type-5's and non-self Type-7s
228 ospf_flood (struct ospf *ospf, struct ospf_neighbor *nbr,
229 struct ospf_lsa *current, struct ospf_lsa *new)
231 struct ospf_interface *oi;
234 /* Type-7 LSA's will be flooded throughout their native NSSA area,
235 but will also be flooded as Type-5's into ABR capable links. */
237 if (IS_DEBUG_OSPF_EVENT)
238 zlog_debug ("LSA[Flooding]: start, NBR %s (%s), cur(%p), New-LSA[%s]",
239 inet_ntoa (nbr->router_id),
240 LOOKUP (ospf_nsm_state_msg, nbr->state),
247 /* If there is already a database copy, and if the
248 database copy was received via flooding and installed less
249 than MinLSArrival seconds ago, discard the new LSA
250 (without acknowledging it). */
251 if (current != NULL) /* -- endo. */
253 if (IS_LSA_SELF (current)
254 && (ntohs (current->data->ls_age) == 0
255 && ntohl (current->data->ls_seqnum) == OSPF_INITIAL_SEQUENCE_NUMBER))
257 if (IS_DEBUG_OSPF_EVENT)
258 zlog_debug ("LSA[Flooding]: Got a self-originated LSA, "
259 "while local one is initial instance.");
260 ; /* Accept this LSA for quick LSDB resynchronization. */
262 else if (tv_cmp (tv_sub (recent_relative_time (), current->tv_recv),
263 msec2tv (ospf->min_ls_arrival)) < 0)
265 if (IS_DEBUG_OSPF_EVENT)
266 zlog_debug ("LSA[Flooding]: LSA is received recently.");
271 /* Flood the new LSA out some subset of the router's interfaces.
272 In some cases (e.g., the state of the receiving interface is
273 DR and the LSA was received from a router other than the
274 Backup DR) the LSA will be flooded back out the receiving
276 lsa_ack_flag = ospf_flood_through (ospf, nbr, new);
278 /* Remove the current database copy from all neighbors' Link state
279 retransmission lists. AS_EXTERNAL and AS_EXTERNAL_OPAQUE does
280 ^^^^^^^^^^^^^^^^^^^^^^^
282 All other (even NSSA's) do have area ID. */
285 switch (current->data->type)
287 case OSPF_AS_EXTERNAL_LSA:
288 case OSPF_OPAQUE_AS_LSA:
289 ospf_ls_retransmit_delete_nbr_as (ospf, current);
292 ospf_ls_retransmit_delete_nbr_area (nbr->oi->area, current);
297 /* Do some internal house keeping that is needed here */
298 SET_FLAG (new->flags, OSPF_LSA_RECEIVED);
299 ospf_lsa_is_self_originated (ospf, new); /* Let it set the flag */
301 /* Install the new LSA in the link state database
302 (replacing the current database copy). This may cause the
303 routing table calculation to be scheduled. In addition,
304 timestamp the new LSA with the current time. The flooding
305 procedure cannot overwrite the newly installed LSA until
306 MinLSArrival seconds have elapsed. */
308 if (! (new = ospf_lsa_install (ospf, nbr->oi, new)))
309 return -1; /* unknown LSA type or any other error condition */
311 /* Acknowledge the receipt of the LSA by sending a Link State
312 Acknowledgment packet back out the receiving interface. */
314 ospf_flood_delayed_lsa_ack (nbr, new);
316 /* If this new LSA indicates that it was originated by the
317 receiving router itself, the router must take special action,
318 either updating the LSA or in some cases flushing it from
319 the routing domain. */
320 if (ospf_lsa_is_self_originated (ospf, new))
321 ospf_process_self_originated_lsa (ospf, new, oi->area);
323 /* Update statistics value for OSPF-MIB. */
324 ospf->rx_lsa_count++;
329 /* OSPF LSA flooding -- RFC2328 Section 13.3. */
331 ospf_flood_through_interface (struct ospf_interface *oi,
332 struct ospf_neighbor *inbr,
333 struct ospf_lsa *lsa)
335 struct ospf_neighbor *onbr;
336 struct route_node *rn;
339 if (IS_DEBUG_OSPF_EVENT)
340 zlog_debug ("ospf_flood_through_interface(): "
341 "considering int %s, INBR(%s), LSA[%s]",
342 IF_NAME (oi), inbr ? inet_ntoa (inbr->router_id) : "NULL",
345 if (!ospf_if_is_enable (oi))
348 /* Remember if new LSA is aded to a retransmit list. */
351 /* Each of the neighbors attached to this interface are examined,
352 to determine whether they must receive the new LSA. The following
353 steps are executed for each neighbor: */
354 for (rn = route_top (oi->nbrs); rn; rn = route_next (rn))
356 struct ospf_lsa *ls_req;
358 if (rn->info == NULL)
362 if (IS_DEBUG_OSPF_EVENT)
363 zlog_debug ("ospf_flood_through_interface(): considering nbr %s (%s)",
364 inet_ntoa (onbr->router_id),
365 LOOKUP (ospf_nsm_state_msg, onbr->state));
367 /* If the neighbor is in a lesser state than Exchange, it
368 does not participate in flooding, and the next neighbor
369 should be examined. */
370 if (onbr->state < NSM_Exchange)
373 /* If the adjacency is not yet full (neighbor state is
374 Exchange or Loading), examine the Link state request
375 list associated with this adjacency. If there is an
376 instance of the new LSA on the list, it indicates that
377 the neighboring router has an instance of the LSA
378 already. Compare the new LSA to the neighbor's copy: */
379 if (onbr->state < NSM_Full)
381 if (IS_DEBUG_OSPF_EVENT)
382 zlog_debug ("ospf_flood_through_interface(): nbr adj is not Full");
383 ls_req = ospf_ls_request_lookup (onbr, lsa);
388 ret = ospf_lsa_more_recent (ls_req, lsa);
389 /* The new LSA is less recent. */
392 /* The two copies are the same instance, then delete
393 the LSA from the Link state request list. */
396 ospf_ls_request_delete (onbr, ls_req);
397 ospf_check_nbr_loading (onbr);
400 /* The new LSA is more recent. Delete the LSA
401 from the Link state request list. */
404 ospf_ls_request_delete (onbr, ls_req);
405 ospf_check_nbr_loading (onbr);
410 if (IS_OPAQUE_LSA (lsa->data->type))
412 if (! CHECK_FLAG (onbr->options, OSPF_OPTION_O))
414 if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
415 zlog_debug ("Skip this neighbor: Not Opaque-capable.");
420 /* If the new LSA was received from this neighbor,
421 examine the next neighbor. */
422 #ifdef ORIGINAL_CODING
424 if (IPV4_ADDR_SAME (&inbr->router_id, &onbr->router_id))
426 #else /* ORIGINAL_CODING */
430 * Triggered by LSUpd message parser "ospf_ls_upd ()".
431 * E.g., all LSAs handling here is received via network.
433 if (IPV4_ADDR_SAME (&inbr->router_id, &onbr->router_id))
435 if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
436 zlog_debug ("Skip this neighbor: inbr == onbr");
443 * Triggered by MaxAge remover, so far.
444 * NULL "inbr" means flooding starts from this node.
446 if (IPV4_ADDR_SAME (&lsa->data->adv_router, &onbr->router_id))
448 if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
449 zlog_debug ("Skip this neighbor: lsah->adv_router == onbr");
453 #endif /* ORIGINAL_CODING */
455 /* Add the new LSA to the Link state retransmission list
456 for the adjacency. The LSA will be retransmitted
457 at intervals until an acknowledgment is seen from
459 ospf_ls_retransmit_add (onbr, lsa);
463 /* If in the previous step, the LSA was NOT added to any of
464 the Link state retransmission lists, there is no need to
465 flood the LSA out the interface. */
468 return (inbr && inbr->oi == oi);
471 /* if we've received the lsa on this interface we need to perform
472 additional checking */
473 if (inbr && (inbr->oi == oi))
475 /* If the new LSA was received on this interface, and it was
476 received from either the Designated Router or the Backup
477 Designated Router, chances are that all the neighbors have
478 received the LSA already. */
479 if (NBR_IS_DR (inbr) || NBR_IS_BDR (inbr))
481 if (IS_DEBUG_OSPF_NSSA)
482 zlog_debug ("ospf_flood_through_interface(): "
483 "DR/BDR NOT SEND to int %s", IF_NAME (oi));
487 /* If the new LSA was received on this interface, and the
488 interface state is Backup, examine the next interface. The
489 Designated Router will do the flooding on this interface.
490 However, if the Designated Router fails the router will
491 end up retransmitting the updates. */
493 if (oi->state == ISM_Backup)
495 if (IS_DEBUG_OSPF_NSSA)
496 zlog_debug ("ospf_flood_through_interface(): "
497 "ISM_Backup NOT SEND to int %s", IF_NAME (oi));
502 /* The LSA must be flooded out the interface. Send a Link State
503 Update packet (including the new LSA as contents) out the
504 interface. The LSA's LS age must be incremented by InfTransDelay
505 (which must be > 0) when it is copied into the outgoing Link
506 State Update packet (until the LS age field reaches the maximum
508 /* XXX HASSO: Is this IS_DEBUG_OSPF_NSSA really correct? */
509 if (IS_DEBUG_OSPF_NSSA)
510 zlog_debug ("ospf_flood_through_interface(): "
511 "DR/BDR sending upd to int %s", IF_NAME (oi));
513 /* RFC2328 Section 13.3
514 On non-broadcast networks, separate Link State Update
515 packets must be sent, as unicasts, to each adjacent neighbor
516 (i.e., those in state Exchange or greater). The destination
517 IP addresses for these packets are the neighbors' IP
519 if (oi->type == OSPF_IFTYPE_NBMA)
521 struct route_node *rn;
522 struct ospf_neighbor *nbr;
524 for (rn = route_top (oi->nbrs); rn; rn = route_next (rn))
525 if ((nbr = rn->info) != NULL)
526 if (nbr != oi->nbr_self && nbr->state >= NSM_Exchange)
527 ospf_ls_upd_send_lsa (nbr, lsa, OSPF_SEND_PACKET_DIRECT);
530 ospf_ls_upd_send_lsa (oi->nbr_self, lsa, OSPF_SEND_PACKET_INDIRECT);
536 ospf_flood_through_area (struct ospf_area *area,
537 struct ospf_neighbor *inbr, struct ospf_lsa *lsa)
539 struct listnode *node, *nnode;
540 struct ospf_interface *oi;
541 int lsa_ack_flag = 0;
543 /* All other types are specific to a single area (Area A). The
544 eligible interfaces are all those interfaces attaching to the
545 Area A. If Area A is the backbone, this includes all the virtual
547 for (ALL_LIST_ELEMENTS (area->oiflist, node, nnode, oi))
549 if (area->area_id.s_addr != OSPF_AREA_BACKBONE &&
550 oi->type == OSPF_IFTYPE_VIRTUALLINK)
553 if ((lsa->data->type == OSPF_OPAQUE_LINK_LSA) && (lsa->oi != oi))
556 * Link local scoped Opaque-LSA should only be flooded
557 * for the link on which the LSA has received.
559 if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
560 zlog_debug ("Type-9 Opaque-LSA: lsa->oi(%p) != oi(%p)",
561 (void *)lsa->oi, (void *)oi);
565 if (ospf_flood_through_interface (oi, inbr, lsa))
569 return (lsa_ack_flag);
573 ospf_flood_through_as (struct ospf *ospf, struct ospf_neighbor *inbr,
574 struct ospf_lsa *lsa)
576 struct listnode *node;
577 struct ospf_area *area;
582 /* The incoming LSA is type 5 or type 7 (AS-EXTERNAL or AS-NSSA )
584 Divert the Type-5 LSA's to all non-NSSA/STUB areas
586 Divert the Type-7 LSA's to all NSSA areas
588 AS-external-LSAs are flooded throughout the entire AS, with the
589 exception of stub areas (see Section 3.6). The eligible
590 interfaces are all the router's interfaces, excluding virtual
591 links and those interfaces attaching to stub areas. */
593 if (CHECK_FLAG (lsa->flags, OSPF_LSA_LOCAL_XLT)) /* Translated from 7 */
594 if (IS_DEBUG_OSPF_NSSA)
595 zlog_debug ("Flood/AS: NSSA TRANSLATED LSA");
597 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
599 int continue_flag = 0;
600 struct listnode *if_node;
601 struct ospf_interface *oi;
603 switch (area->external_routing)
605 /* Don't send AS externals into stub areas. Various types
606 of support for partial stub areas can be implemented
607 here. NSSA's will receive Type-7's that have areas
608 matching the originl LSA. */
609 case OSPF_AREA_NSSA: /* Sending Type 5 or 7 into NSSA area */
610 /* Type-7, flood NSSA area */
611 if (lsa->data->type == OSPF_AS_NSSA_LSA
612 && area == lsa->area)
613 /* We will send it. */
616 continue_flag = 1; /* Skip this NSSA area for Type-5's et al */
619 case OSPF_AREA_TYPE_MAX:
621 continue_flag = 1; /* Skip this area. */
624 case OSPF_AREA_DEFAULT:
626 /* No Type-7 into normal area */
627 if (lsa->data->type == OSPF_AS_NSSA_LSA)
628 continue_flag = 1; /* skip Type-7 */
630 continue_flag = 0; /* Do this area. */
634 /* Do continue for above switch. Saves a big if then mess */
636 continue; /* main for-loop */
638 /* send to every interface in this area */
640 for (ALL_LIST_ELEMENTS_RO (area->oiflist, if_node, oi))
642 /* Skip virtual links */
643 if (oi->type != OSPF_IFTYPE_VIRTUALLINK)
644 if (ospf_flood_through_interface (oi, inbr, lsa)) /* lsa */
647 } /* main area for-loop */
649 return (lsa_ack_flag);
653 ospf_flood_through (struct ospf *ospf,
654 struct ospf_neighbor *inbr, struct ospf_lsa *lsa)
656 int lsa_ack_flag = 0;
658 /* Type-7 LSA's for NSSA are flooded throughout the AS here, and
659 upon return are updated in the LSDB for Type-7's. Later,
660 re-fresh will re-send them (and also, if ABR, packet code will
661 translate to Type-5's)
663 As usual, Type-5 LSA's (if not DISCARDED because we are STUB or
664 NSSA) are flooded throughout the AS, and are updated in the
666 #ifdef ORIGINAL_CODING
667 switch (lsa->data->type)
669 case OSPF_ROUTER_LSA:
670 case OSPF_NETWORK_LSA:
671 case OSPF_SUMMARY_LSA:
672 case OSPF_ASBR_SUMMARY_LSA:
673 case OSPF_OPAQUE_LINK_LSA: /* ospf_flood_through_interface ? */
674 case OSPF_OPAQUE_AREA_LSA:
675 lsa_ack_flag = ospf_flood_through_area (inbr->oi->area, inbr, lsa);
677 case OSPF_AS_EXTERNAL_LSA: /* Type-5 */
678 case OSPF_OPAQUE_AS_LSA:
679 lsa_ack_flag = ospf_flood_through_as (ospf, inbr, lsa);
681 /* Type-7 Only received within NSSA, then flooded */
682 case OSPF_AS_NSSA_LSA:
683 /* Any P-bit was installed with the Type-7. */
684 lsa_ack_flag = ospf_flood_through_area (inbr->oi->area, inbr, lsa);
686 if (IS_DEBUG_OSPF_NSSA)
687 zlog_debug ("ospf_flood_through: LOCAL NSSA FLOOD of Type-7.");
692 #else /* ORIGINAL_CODING */
694 * At the common sub-sub-function "ospf_flood_through_interface()",
695 * a parameter "inbr" will be used to distinguish the called context
696 * whether the given LSA was received from the neighbor, or the
697 * flooding for the LSA starts from this node (e.g. the LSA was self-
698 * originated, or the LSA is going to be flushed from routing domain).
700 * So, for consistency reasons, this function "ospf_flood_through()"
701 * should also allow the usage that the given "inbr" parameter to be
702 * NULL. If we do so, corresponding AREA parameter should be referred
703 * by "lsa->area", instead of "inbr->oi->area".
705 switch (lsa->data->type)
707 case OSPF_AS_EXTERNAL_LSA: /* Type-5 */
708 case OSPF_OPAQUE_AS_LSA:
709 lsa_ack_flag = ospf_flood_through_as (ospf, inbr, lsa);
711 /* Type-7 Only received within NSSA, then flooded */
712 case OSPF_AS_NSSA_LSA:
713 /* Any P-bit was installed with the Type-7. */
715 if (IS_DEBUG_OSPF_NSSA)
716 zlog_debug ("ospf_flood_through: LOCAL NSSA FLOOD of Type-7.");
719 lsa_ack_flag = ospf_flood_through_area (lsa->area, inbr, lsa);
722 #endif /* ORIGINAL_CODING */
724 return (lsa_ack_flag);
729 /* Management functions for neighbor's Link State Request list. */
731 ospf_ls_request_add (struct ospf_neighbor *nbr, struct ospf_lsa *lsa)
734 * We cannot make use of the newly introduced callback function
735 * "lsdb->new_lsa_hook" to replace debug output below, just because
736 * it seems no simple and smart way to pass neighbor information to
737 * the common function "ospf_lsdb_add()" -- endo.
739 if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
740 zlog_debug ("RqstL(%lu)++, NBR(%s), LSA[%s]",
741 ospf_ls_request_count (nbr),
742 inet_ntoa (nbr->router_id), dump_lsa_key (lsa));
744 ospf_lsdb_add (&nbr->ls_req, lsa);
748 ospf_ls_request_count (struct ospf_neighbor *nbr)
750 return ospf_lsdb_count_all (&nbr->ls_req);
754 ospf_ls_request_isempty (struct ospf_neighbor *nbr)
756 return ospf_lsdb_isempty (&nbr->ls_req);
759 /* Remove LSA from neighbor's ls-request list. */
761 ospf_ls_request_delete (struct ospf_neighbor *nbr, struct ospf_lsa *lsa)
763 if (nbr->ls_req_last == lsa)
765 ospf_lsa_unlock (&nbr->ls_req_last);
766 nbr->ls_req_last = NULL;
769 if (IS_DEBUG_OSPF (lsa, LSA_FLOODING)) /* -- endo. */
770 zlog_debug ("RqstL(%lu)--, NBR(%s), LSA[%s]",
771 ospf_ls_request_count (nbr),
772 inet_ntoa (nbr->router_id), dump_lsa_key (lsa));
774 ospf_lsdb_delete (&nbr->ls_req, lsa);
777 /* Remove all LSA from neighbor's ls-requenst list. */
779 ospf_ls_request_delete_all (struct ospf_neighbor *nbr)
781 ospf_lsa_unlock (&nbr->ls_req_last);
782 nbr->ls_req_last = NULL;
783 ospf_lsdb_delete_all (&nbr->ls_req);
786 /* Lookup LSA from neighbor's ls-request list. */
788 ospf_ls_request_lookup (struct ospf_neighbor *nbr, struct ospf_lsa *lsa)
790 return ospf_lsdb_lookup (&nbr->ls_req, lsa);
794 ospf_ls_request_new (struct lsa_header *lsah)
796 struct ospf_lsa *new;
798 new = ospf_lsa_new ();
799 new->data = ospf_lsa_data_new (OSPF_LSA_HEADER_SIZE);
800 memcpy (new->data, lsah, OSPF_LSA_HEADER_SIZE);
806 /* Management functions for neighbor's ls-retransmit list. */
808 ospf_ls_retransmit_count (struct ospf_neighbor *nbr)
810 return ospf_lsdb_count_all (&nbr->ls_rxmt);
814 ospf_ls_retransmit_count_self (struct ospf_neighbor *nbr, int lsa_type)
816 return ospf_lsdb_count_self (&nbr->ls_rxmt, lsa_type);
820 ospf_ls_retransmit_isempty (struct ospf_neighbor *nbr)
822 return ospf_lsdb_isempty (&nbr->ls_rxmt);
825 /* Add LSA to be retransmitted to neighbor's ls-retransmit list. */
827 ospf_ls_retransmit_add (struct ospf_neighbor *nbr, struct ospf_lsa *lsa)
829 struct ospf_lsa *old;
831 old = ospf_ls_retransmit_lookup (nbr, lsa);
833 if (ospf_lsa_more_recent (old, lsa) < 0)
837 old->retransmit_counter--;
838 ospf_lsdb_delete (&nbr->ls_rxmt, old);
840 lsa->retransmit_counter++;
842 * We cannot make use of the newly introduced callback function
843 * "lsdb->new_lsa_hook" to replace debug output below, just because
844 * it seems no simple and smart way to pass neighbor information to
845 * the common function "ospf_lsdb_add()" -- endo.
847 if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
848 zlog_debug ("RXmtL(%lu)++, NBR(%s), LSA[%s]",
849 ospf_ls_retransmit_count (nbr),
850 inet_ntoa (nbr->router_id), dump_lsa_key (lsa));
851 ospf_lsdb_add (&nbr->ls_rxmt, lsa);
855 /* Remove LSA from neibghbor's ls-retransmit list. */
857 ospf_ls_retransmit_delete (struct ospf_neighbor *nbr, struct ospf_lsa *lsa)
859 if (ospf_ls_retransmit_lookup (nbr, lsa))
861 lsa->retransmit_counter--;
862 if (IS_DEBUG_OSPF (lsa, LSA_FLOODING)) /* -- endo. */
863 zlog_debug ("RXmtL(%lu)--, NBR(%s), LSA[%s]",
864 ospf_ls_retransmit_count (nbr),
865 inet_ntoa (nbr->router_id), dump_lsa_key (lsa));
866 ospf_lsdb_delete (&nbr->ls_rxmt, lsa);
870 /* Clear neighbor's ls-retransmit list. */
872 ospf_ls_retransmit_clear (struct ospf_neighbor *nbr)
874 struct ospf_lsdb *lsdb;
877 lsdb = &nbr->ls_rxmt;
879 for (i = OSPF_MIN_LSA; i < OSPF_MAX_LSA; i++)
881 struct route_table *table = lsdb->type[i].db;
882 struct route_node *rn;
883 struct ospf_lsa *lsa;
885 for (rn = route_top (table); rn; rn = route_next (rn))
886 if ((lsa = rn->info) != NULL)
887 ospf_ls_retransmit_delete (nbr, lsa);
890 ospf_lsa_unlock (&nbr->ls_req_last);
891 nbr->ls_req_last = NULL;
894 /* Lookup LSA from neighbor's ls-retransmit list. */
896 ospf_ls_retransmit_lookup (struct ospf_neighbor *nbr, struct ospf_lsa *lsa)
898 return ospf_lsdb_lookup (&nbr->ls_rxmt, lsa);
902 ospf_ls_retransmit_delete_nbr_if (struct ospf_interface *oi,
903 struct ospf_lsa *lsa)
905 struct route_node *rn;
906 struct ospf_neighbor *nbr;
907 struct ospf_lsa *lsr;
909 if (ospf_if_is_enable (oi))
910 for (rn = route_top (oi->nbrs); rn; rn = route_next (rn))
911 /* If LSA find in LS-retransmit list, then remove it. */
912 if ((nbr = rn->info) != NULL)
914 lsr = ospf_ls_retransmit_lookup (nbr, lsa);
916 /* If LSA find in ls-retransmit list, remove it. */
917 if (lsr != NULL && lsr->data->ls_seqnum == lsa->data->ls_seqnum)
918 ospf_ls_retransmit_delete (nbr, lsr);
923 ospf_ls_retransmit_delete_nbr_area (struct ospf_area *area,
924 struct ospf_lsa *lsa)
926 struct listnode *node, *nnode;
927 struct ospf_interface *oi;
929 for (ALL_LIST_ELEMENTS (area->oiflist, node, nnode, oi))
930 ospf_ls_retransmit_delete_nbr_if (oi, lsa);
934 ospf_ls_retransmit_delete_nbr_as (struct ospf *ospf, struct ospf_lsa *lsa)
936 struct listnode *node, *nnode;
937 struct ospf_interface *oi;
939 for (ALL_LIST_ELEMENTS (ospf->oiflist, node, nnode, oi))
940 ospf_ls_retransmit_delete_nbr_if (oi, lsa);
944 /* Sets ls_age to MaxAge and floods throu the area.
945 When we implement ASE routing, there will be anothe function
946 flushing an LSA from the whole domain. */
948 ospf_lsa_flush_area (struct ospf_lsa *lsa, struct ospf_area *area)
950 /* Reset the lsa origination time such that it gives
951 more time for the ACK to be received and avoid
953 lsa->data->ls_age = htons (OSPF_LSA_MAXAGE);
954 lsa->tv_recv = recent_relative_time ();
955 lsa->tv_orig = lsa->tv_recv;
956 ospf_flood_through_area (area, NULL, lsa);
957 ospf_lsa_maxage (area->ospf, lsa);
961 ospf_lsa_flush_as (struct ospf *ospf, struct ospf_lsa *lsa)
963 /* Reset the lsa origination time such that it gives
964 more time for the ACK to be received and avoid
966 lsa->data->ls_age = htons (OSPF_LSA_MAXAGE);
967 lsa->tv_recv = recent_relative_time ();
968 lsa->tv_orig = lsa->tv_recv;
969 ospf_flood_through_as (ospf, NULL, lsa);
970 ospf_lsa_maxage (ospf, lsa);
974 ospf_lsa_flush (struct ospf *ospf, struct ospf_lsa *lsa)
976 lsa->data->ls_age = htons (OSPF_LSA_MAXAGE);
978 switch (lsa->data->type)
980 case OSPF_ROUTER_LSA:
981 case OSPF_NETWORK_LSA:
982 case OSPF_SUMMARY_LSA:
983 case OSPF_ASBR_SUMMARY_LSA:
984 case OSPF_AS_NSSA_LSA:
985 case OSPF_OPAQUE_LINK_LSA:
986 case OSPF_OPAQUE_AREA_LSA:
987 ospf_lsa_flush_area (lsa, lsa->area);
989 case OSPF_AS_EXTERNAL_LSA:
990 case OSPF_OPAQUE_AS_LSA:
991 ospf_lsa_flush_as (ospf, lsa);
994 zlog_info ("%s: Unknown LSA type %u", __func__, lsa->data->type);