2 * OSPF Interface functions.
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_spf.h"
37 #include "ospfd/ospf_interface.h"
38 #include "ospfd/ospf_ism.h"
39 #include "ospfd/ospf_asbr.h"
40 #include "ospfd/ospf_lsa.h"
41 #include "ospfd/ospf_lsdb.h"
42 #include "ospfd/ospf_neighbor.h"
43 #include "ospfd/ospf_nsm.h"
44 #include "ospfd/ospf_packet.h"
45 #include "ospfd/ospf_abr.h"
46 #include "ospfd/ospf_network.h"
47 #include "ospfd/ospf_dump.h"
49 #include "ospfd/ospf_snmp.h"
50 #endif /* HAVE_SNMP */
54 ospf_if_get_output_cost (struct ospf_interface
*oi
)
56 /* If all else fails, use default OSPF cost */
60 bw
= oi
->ifp
->bandwidth
? oi
->ifp
->bandwidth
: OSPF_DEFAULT_BANDWIDTH
;
61 refbw
= oi
->ospf
->ref_bandwidth
;
63 /* A specifed ip ospf cost overrides a calculated one. */
64 if (OSPF_IF_PARAM_CONFIGURED (IF_DEF_PARAMS (oi
->ifp
), output_cost_cmd
) ||
65 OSPF_IF_PARAM_CONFIGURED (oi
->params
, output_cost_cmd
))
66 cost
= OSPF_IF_PARAM (oi
, output_cost_cmd
);
67 /* See if a cost can be calculated from the zebra processes
68 interface bandwidth field. */
71 cost
= (u_int32_t
) ((double)refbw
/ (double)bw
+ (double)0.5);
74 else if (cost
> 65535)
82 ospf_if_recalculate_output_cost (struct interface
*ifp
)
85 struct route_node
*rn
;
87 for (rn
= route_top (IF_OIFS (ifp
)); rn
; rn
= route_next (rn
))
89 struct ospf_interface
*oi
;
91 if ( (oi
= rn
->info
) == NULL
)
94 newcost
= ospf_if_get_output_cost (oi
);
96 /* Is actual output cost changed? */
97 if (oi
->output_cost
!= newcost
)
99 oi
->output_cost
= newcost
;
100 ospf_router_lsa_timer_add (oi
->area
);
105 /* Simulate down/up on the interface. This is needed, for example, when
108 ospf_if_reset(struct interface
*ifp
)
110 struct route_node
*rn
;
112 for (rn
= route_top (IF_OIFS (ifp
)); rn
; rn
= route_next (rn
))
114 struct ospf_interface
*oi
;
116 if ( (oi
= rn
->info
) == NULL
)
125 ospf_if_reset_variables (struct ospf_interface
*oi
)
127 /* Set default values. */
128 /* don't clear this flag. oi->flag = OSPF_IF_DISABLE; */
131 oi
->type
= OSPF_IFTYPE_VIRTUALLINK
;
133 /* preserve network-type */
134 if (oi
->type
!= OSPF_IFTYPE_NBMA
)
135 oi
->type
= OSPF_IFTYPE_BROADCAST
;
137 oi
->state
= ISM_Down
;
139 oi
->crypt_seqnum
= 0;
141 /* This must be short, (less than RxmtInterval)
142 - RFC 2328 Section 13.5 para 3. Set to 1 second to avoid Acks being
143 held back for too long - MAG */
147 /* lookup oi for specified prefix/ifp */
148 struct ospf_interface
*
149 ospf_if_table_lookup (struct interface
*ifp
, struct prefix
*prefix
)
152 struct route_node
*rn
;
153 struct ospf_interface
*rninfo
= NULL
;
156 p
.prefixlen
= IPV4_MAX_PREFIXLEN
;
158 /* route_node_get implicitely locks */
159 if ((rn
= route_node_lookup (IF_OIFS (ifp
), &p
)))
161 rninfo
= (struct ospf_interface
*) rn
->info
;
162 route_unlock_node (rn
);
169 ospf_add_to_if (struct interface
*ifp
, struct ospf_interface
*oi
)
171 struct route_node
*rn
;
175 p
.prefixlen
= IPV4_MAX_PREFIXLEN
;
177 rn
= route_node_get (IF_OIFS (ifp
), &p
);
178 /* rn->info should either be NULL or equal to this oi
179 * as route_node_get may return an existing node
181 assert (!rn
->info
|| rn
->info
== oi
);
186 ospf_delete_from_if (struct interface
*ifp
, struct ospf_interface
*oi
)
188 struct route_node
*rn
;
192 p
.prefixlen
= IPV4_MAX_PREFIXLEN
;
194 rn
= route_node_lookup (IF_OIFS (oi
->ifp
), &p
);
198 route_unlock_node (rn
);
199 route_unlock_node (rn
);
202 struct ospf_interface
*
203 ospf_if_new (struct ospf
*ospf
, struct interface
*ifp
, struct prefix
*p
)
205 struct ospf_interface
*oi
;
207 if ((oi
= ospf_if_table_lookup (ifp
, p
)) == NULL
)
209 oi
= XCALLOC (MTYPE_OSPF_IF
, sizeof (struct ospf_interface
));
210 memset (oi
, 0, sizeof (struct ospf_interface
));
215 /* Set zebra interface pointer. */
219 ospf_add_to_if (ifp
, oi
);
220 listnode_add (ospf
->oiflist
, oi
);
222 /* Clear self-originated network-LSA. */
223 oi
->network_lsa_self
= NULL
;
225 /* Initialize neighbor list. */
226 oi
->nbrs
= route_table_init ();
228 /* Initialize static neighbor list. */
229 oi
->nbr_nbma
= list_new ();
231 /* Initialize Link State Acknowledgment list. */
232 oi
->ls_ack
= list_new ();
233 oi
->ls_ack_direct
.ls_ack
= list_new ();
235 /* Set default values. */
236 ospf_if_reset_variables (oi
);
238 /* Add pseudo neighbor. */
239 oi
->nbr_self
= ospf_nbr_new (oi
);
241 oi
->ls_upd_queue
= route_table_init ();
242 oi
->t_ls_upd_event
= NULL
;
243 oi
->t_ls_ack_direct
= NULL
;
245 oi
->crypt_seqnum
= time (NULL
);
247 #ifdef HAVE_OPAQUE_LSA
248 ospf_opaque_type9_lsa_init (oi
);
249 #endif /* HAVE_OPAQUE_LSA */
256 /* Restore an interface to its pre UP state
257 Used from ism_interface_down only */
259 ospf_if_cleanup (struct ospf_interface
*oi
)
261 struct route_node
*rn
;
262 struct listnode
*node
, *nnode
;
263 struct ospf_neighbor
*nbr
;
264 struct ospf_nbr_nbma
*nbr_nbma
;
265 struct ospf_lsa
*lsa
;
267 /* oi->nbrs and oi->nbr_nbma should be deleted on InterfaceDown event */
268 /* delete all static neighbors attached to this interface */
269 for (ALL_LIST_ELEMENTS (oi
->nbr_nbma
, node
, nnode
, nbr_nbma
))
271 OSPF_POLL_TIMER_OFF (nbr_nbma
->t_poll
);
275 nbr_nbma
->nbr
->nbr_nbma
= NULL
;
276 nbr_nbma
->nbr
= NULL
;
281 listnode_delete (oi
->nbr_nbma
, nbr_nbma
);
284 /* send Neighbor event KillNbr to all associated neighbors. */
285 for (rn
= route_top (oi
->nbrs
); rn
; rn
= route_next (rn
))
286 if ((nbr
= rn
->info
) != NULL
)
287 if (nbr
!= oi
->nbr_self
)
288 OSPF_NSM_EVENT_EXECUTE (nbr
, NSM_KillNbr
);
290 /* Cleanup Link State Acknowlegdment list. */
291 for (ALL_LIST_ELEMENTS (oi
->ls_ack
, node
, nnode
, lsa
))
292 ospf_lsa_unlock (&lsa
); /* oi->ls_ack */
293 list_delete_all_node (oi
->ls_ack
);
295 oi
->crypt_seqnum
= 0;
297 /* Empty link state update queue */
298 ospf_ls_upd_queue_empty (oi
);
300 /* Reset pseudo neighbor. */
301 ospf_nbr_delete (oi
->nbr_self
);
302 oi
->nbr_self
= ospf_nbr_new (oi
);
303 ospf_nbr_add_self (oi
);
305 ospf_lsa_unlock (&oi
->network_lsa_self
);
306 oi
->network_lsa_self
= NULL
;
307 OSPF_TIMER_OFF (oi
->t_network_lsa_self
);
311 ospf_if_free (struct ospf_interface
*oi
)
315 assert (oi
->state
== ISM_Down
);
317 #ifdef HAVE_OPAQUE_LSA
318 ospf_opaque_type9_lsa_term (oi
);
319 #endif /* HAVE_OPAQUE_LSA */
321 /* Free Pseudo Neighbour */
322 ospf_nbr_delete (oi
->nbr_self
);
324 route_table_finish (oi
->nbrs
);
325 route_table_finish (oi
->ls_upd_queue
);
327 /* Free any lists that should be freed */
328 list_free (oi
->nbr_nbma
);
330 list_free (oi
->ls_ack
);
331 list_free (oi
->ls_ack_direct
.ls_ack
);
333 ospf_delete_from_if (oi
->ifp
, oi
);
335 listnode_delete (oi
->ospf
->oiflist
, oi
);
336 listnode_delete (oi
->area
->oiflist
, oi
);
338 memset (oi
, 0, sizeof (*oi
));
339 XFREE (MTYPE_OSPF_IF
, oi
);
344 * check if interface with given address is configured and
345 * return it if yes. special treatment for PtP networks.
347 struct ospf_interface
*
348 ospf_if_is_configured (struct ospf
*ospf
, struct in_addr
*address
)
350 struct listnode
*node
, *nnode
;
351 struct ospf_interface
*oi
;
352 struct prefix_ipv4 addr
;
354 addr
.family
= AF_INET
;
355 addr
.prefix
= *address
;
356 addr
.prefixlen
= IPV4_MAX_PREFIXLEN
;
358 for (ALL_LIST_ELEMENTS (ospf
->oiflist
, node
, nnode
, oi
))
359 if (oi
->type
!= OSPF_IFTYPE_VIRTUALLINK
)
361 if (oi
->type
== OSPF_IFTYPE_POINTOPOINT
)
363 /* special leniency: match if addr is anywhere on peer subnet */
364 if (prefix_match(CONNECTED_PREFIX(oi
->connected
),
365 (struct prefix
*)&addr
))
370 if (IPV4_ADDR_SAME (address
, &oi
->address
->u
.prefix4
))
378 ospf_if_is_up (struct ospf_interface
*oi
)
380 return if_is_up (oi
->ifp
);
383 struct ospf_interface
*
384 ospf_if_exists (struct ospf_interface
*oic
)
386 struct listnode
*node
;
388 struct ospf_interface
*oi
;
390 if ((ospf
= ospf_lookup ()) == NULL
)
393 for (ALL_LIST_ELEMENTS_RO (ospf
->oiflist
, node
, oi
))
400 struct ospf_interface
*
401 ospf_if_lookup_by_local_addr (struct ospf
*ospf
,
402 struct interface
*ifp
, struct in_addr address
)
404 struct listnode
*node
;
405 struct ospf_interface
*oi
;
407 for (ALL_LIST_ELEMENTS_RO (ospf
->oiflist
, node
, oi
))
408 if (oi
->type
!= OSPF_IFTYPE_VIRTUALLINK
)
410 if (ifp
&& oi
->ifp
!= ifp
)
413 if (IPV4_ADDR_SAME (&address
, &oi
->address
->u
.prefix4
))
420 struct ospf_interface
*
421 ospf_if_lookup_by_prefix (struct ospf
*ospf
, struct prefix_ipv4
*p
)
423 struct listnode
*node
;
424 struct ospf_interface
*oi
;
426 /* Check each Interface. */
427 for (ALL_LIST_ELEMENTS_RO (ospf
->oiflist
, node
, oi
))
429 if (oi
->type
!= OSPF_IFTYPE_VIRTUALLINK
)
433 prefix_copy (&ptmp
, CONNECTED_PREFIX(oi
->connected
));
435 if (prefix_same (&ptmp
, (struct prefix
*) p
))
442 /* determine receiving interface by ifp and source address */
443 struct ospf_interface
*
444 ospf_if_lookup_recv_if (struct ospf
*ospf
, struct in_addr src
,
445 struct interface
*ifp
)
447 struct route_node
*rn
;
448 struct prefix_ipv4 addr
;
449 struct ospf_interface
*oi
, *match
;
451 addr
.family
= AF_INET
;
453 addr
.prefixlen
= IPV4_MAX_BITLEN
;
457 for (rn
= route_top (IF_OIFS (ifp
)); rn
; rn
= route_next (rn
))
461 if (!oi
) /* oi can be NULL for PtP aliases */
464 if (oi
->type
== OSPF_IFTYPE_VIRTUALLINK
)
467 if (if_is_loopback (oi
->ifp
))
470 if (prefix_match (CONNECTED_PREFIX(oi
->connected
),
471 (struct prefix
*) &addr
))
473 if ( (match
== NULL
) ||
474 (match
->address
->prefixlen
< oi
->address
->prefixlen
)
484 ospf_if_stream_set (struct ospf_interface
*oi
)
486 /* set output fifo queue. */
487 if (oi
->obuf
== NULL
)
488 oi
->obuf
= ospf_fifo_new ();
492 ospf_if_stream_unset (struct ospf_interface
*oi
)
494 struct ospf
*ospf
= oi
->ospf
;
498 ospf_fifo_free (oi
->obuf
);
503 listnode_delete (ospf
->oi_write_q
, oi
);
504 if (list_isempty(ospf
->oi_write_q
))
505 OSPF_TIMER_OFF (ospf
->t_write
);
512 static struct ospf_if_params
*
513 ospf_new_if_params (void)
515 struct ospf_if_params
*oip
;
517 oip
= XCALLOC (MTYPE_OSPF_IF_PARAMS
, sizeof (struct ospf_if_params
));
522 UNSET_IF_PARAM (oip
, output_cost_cmd
);
523 UNSET_IF_PARAM (oip
, transmit_delay
);
524 UNSET_IF_PARAM (oip
, retransmit_interval
);
525 UNSET_IF_PARAM (oip
, passive_interface
);
526 UNSET_IF_PARAM (oip
, v_hello
);
527 UNSET_IF_PARAM (oip
, fast_hello
);
528 UNSET_IF_PARAM (oip
, v_wait
);
529 UNSET_IF_PARAM (oip
, priority
);
530 UNSET_IF_PARAM (oip
, type
);
531 UNSET_IF_PARAM (oip
, auth_simple
);
532 UNSET_IF_PARAM (oip
, auth_crypt
);
533 UNSET_IF_PARAM (oip
, auth_type
);
535 oip
->auth_crypt
= list_new ();
541 ospf_del_if_params (struct ospf_if_params
*oip
)
543 list_delete (oip
->auth_crypt
);
544 XFREE (MTYPE_OSPF_IF_PARAMS
, oip
);
548 ospf_free_if_params (struct interface
*ifp
, struct in_addr addr
)
550 struct ospf_if_params
*oip
;
551 struct prefix_ipv4 p
;
552 struct route_node
*rn
;
555 p
.prefixlen
= IPV4_MAX_PREFIXLEN
;
557 rn
= route_node_lookup (IF_OIFS_PARAMS (ifp
), (struct prefix
*)&p
);
558 if (!rn
|| !rn
->info
)
562 route_unlock_node (rn
);
564 if (!OSPF_IF_PARAM_CONFIGURED (oip
, output_cost_cmd
) &&
565 !OSPF_IF_PARAM_CONFIGURED (oip
, transmit_delay
) &&
566 !OSPF_IF_PARAM_CONFIGURED (oip
, retransmit_interval
) &&
567 !OSPF_IF_PARAM_CONFIGURED (oip
, passive_interface
) &&
568 !OSPF_IF_PARAM_CONFIGURED (oip
, v_hello
) &&
569 !OSPF_IF_PARAM_CONFIGURED (oip
, fast_hello
) &&
570 !OSPF_IF_PARAM_CONFIGURED (oip
, v_wait
) &&
571 !OSPF_IF_PARAM_CONFIGURED (oip
, priority
) &&
572 !OSPF_IF_PARAM_CONFIGURED (oip
, type
) &&
573 !OSPF_IF_PARAM_CONFIGURED (oip
, auth_simple
) &&
574 !OSPF_IF_PARAM_CONFIGURED (oip
, auth_type
) &&
575 listcount (oip
->auth_crypt
) == 0)
577 ospf_del_if_params (oip
);
579 route_unlock_node (rn
);
583 struct ospf_if_params
*
584 ospf_lookup_if_params (struct interface
*ifp
, struct in_addr addr
)
586 struct prefix_ipv4 p
;
587 struct route_node
*rn
;
590 p
.prefixlen
= IPV4_MAX_PREFIXLEN
;
593 rn
= route_node_lookup (IF_OIFS_PARAMS (ifp
), (struct prefix
*)&p
);
597 route_unlock_node (rn
);
604 struct ospf_if_params
*
605 ospf_get_if_params (struct interface
*ifp
, struct in_addr addr
)
607 struct prefix_ipv4 p
;
608 struct route_node
*rn
;
611 p
.prefixlen
= IPV4_MAX_PREFIXLEN
;
614 rn
= route_node_get (IF_OIFS_PARAMS (ifp
), (struct prefix
*)&p
);
616 if (rn
->info
== NULL
)
617 rn
->info
= ospf_new_if_params ();
619 route_unlock_node (rn
);
625 ospf_if_update_params (struct interface
*ifp
, struct in_addr addr
)
627 struct route_node
*rn
;
628 struct ospf_interface
*oi
;
630 for (rn
= route_top (IF_OIFS (ifp
)); rn
; rn
= route_next (rn
))
632 if ((oi
= rn
->info
) == NULL
)
635 if (IPV4_ADDR_SAME (&oi
->address
->u
.prefix4
, &addr
))
636 oi
->params
= ospf_lookup_if_params (ifp
, oi
->address
->u
.prefix4
);
641 ospf_if_new_hook (struct interface
*ifp
)
645 ifp
->info
= XCALLOC (MTYPE_OSPF_IF_INFO
, sizeof (struct ospf_if_info
));
647 IF_OIFS (ifp
) = route_table_init ();
648 IF_OIFS_PARAMS (ifp
) = route_table_init ();
650 IF_DEF_PARAMS (ifp
) = ospf_new_if_params ();
652 SET_IF_PARAM (IF_DEF_PARAMS (ifp
), transmit_delay
);
653 IF_DEF_PARAMS (ifp
)->transmit_delay
= OSPF_TRANSMIT_DELAY_DEFAULT
;
655 SET_IF_PARAM (IF_DEF_PARAMS (ifp
), retransmit_interval
);
656 IF_DEF_PARAMS (ifp
)->retransmit_interval
= OSPF_RETRANSMIT_INTERVAL_DEFAULT
;
658 SET_IF_PARAM (IF_DEF_PARAMS (ifp
), priority
);
659 IF_DEF_PARAMS (ifp
)->priority
= OSPF_ROUTER_PRIORITY_DEFAULT
;
661 IF_DEF_PARAMS (ifp
)->mtu_ignore
= OSPF_MTU_IGNORE_DEFAULT
;
663 SET_IF_PARAM (IF_DEF_PARAMS (ifp
), v_hello
);
664 IF_DEF_PARAMS (ifp
)->v_hello
= OSPF_HELLO_INTERVAL_DEFAULT
;
666 SET_IF_PARAM (IF_DEF_PARAMS (ifp
), fast_hello
);
667 IF_DEF_PARAMS (ifp
)->fast_hello
= OSPF_FAST_HELLO_DEFAULT
;
669 SET_IF_PARAM (IF_DEF_PARAMS (ifp
), v_wait
);
670 IF_DEF_PARAMS (ifp
)->v_wait
= OSPF_ROUTER_DEAD_INTERVAL_DEFAULT
;
672 SET_IF_PARAM (IF_DEF_PARAMS (ifp
), auth_simple
);
673 memset (IF_DEF_PARAMS (ifp
)->auth_simple
, 0, OSPF_AUTH_SIMPLE_SIZE
);
675 SET_IF_PARAM (IF_DEF_PARAMS (ifp
), auth_type
);
676 IF_DEF_PARAMS (ifp
)->auth_type
= OSPF_AUTH_NOTSET
;
678 #ifdef HAVE_OPAQUE_LSA
679 rc
= ospf_opaque_new_if (ifp
);
680 #endif /* HAVE_OPAQUE_LSA */
685 ospf_if_delete_hook (struct interface
*ifp
)
688 struct route_node
*rn
;
689 #ifdef HAVE_OPAQUE_LSA
690 rc
= ospf_opaque_del_if (ifp
);
691 #endif /* HAVE_OPAQUE_LSA */
693 route_table_finish (IF_OIFS (ifp
));
695 for (rn
= route_top (IF_OIFS_PARAMS (ifp
)); rn
; rn
= route_next (rn
))
697 ospf_del_if_params (rn
->info
);
698 route_table_finish (IF_OIFS_PARAMS (ifp
));
700 ospf_del_if_params ((struct ospf_if_params
*) IF_DEF_PARAMS (ifp
));
701 XFREE (MTYPE_OSPF_IF_INFO
, ifp
->info
);
708 ospf_if_is_enable (struct ospf_interface
*oi
)
710 if (!if_is_loopback (oi
->ifp
))
711 if (if_is_up (oi
->ifp
))
718 ospf_if_set_multicast(struct ospf_interface
*oi
)
720 if ((oi
->state
> ISM_Loopback
) &&
721 (oi
->type
!= OSPF_IFTYPE_LOOPBACK
) &&
722 (oi
->type
!= OSPF_IFTYPE_VIRTUALLINK
) &&
723 (OSPF_IF_PASSIVE_STATUS(oi
) == OSPF_IF_ACTIVE
))
725 /* The interface should belong to the OSPF-all-routers group. */
726 if (!OI_MEMBER_CHECK(oi
, MEMBER_ALLROUTERS
) &&
727 (ospf_if_add_allspfrouters(oi
->ospf
, oi
->address
,
728 oi
->ifp
->ifindex
) >= 0))
729 /* Set the flag only if the system call to join succeeded. */
730 OI_MEMBER_JOINED(oi
, MEMBER_ALLROUTERS
);
734 /* The interface should NOT belong to the OSPF-all-routers group. */
735 if (OI_MEMBER_CHECK(oi
, MEMBER_ALLROUTERS
))
737 /* Only actually drop if this is the last reference */
738 if (OI_MEMBER_COUNT(oi
, MEMBER_ALLROUTERS
) == 1)
739 ospf_if_drop_allspfrouters (oi
->ospf
, oi
->address
,
741 /* Unset the flag regardless of whether the system call to leave
742 the group succeeded, since it's much safer to assume that
743 we are not a member. */
744 OI_MEMBER_LEFT(oi
,MEMBER_ALLROUTERS
);
748 if (((oi
->type
== OSPF_IFTYPE_BROADCAST
) ||
749 (oi
->type
== OSPF_IFTYPE_POINTOPOINT
)) &&
750 ((oi
->state
== ISM_DR
) || (oi
->state
== ISM_Backup
)) &&
751 (OSPF_IF_PASSIVE_STATUS(oi
) == OSPF_IF_ACTIVE
))
753 /* The interface should belong to the OSPF-designated-routers group. */
754 if (!OI_MEMBER_CHECK(oi
, MEMBER_DROUTERS
) &&
755 (ospf_if_add_alldrouters(oi
->ospf
, oi
->address
,
756 oi
->ifp
->ifindex
) >= 0))
757 /* Set the flag only if the system call to join succeeded. */
758 OI_MEMBER_JOINED(oi
, MEMBER_DROUTERS
);
762 /* The interface should NOT belong to the OSPF-designated-routers group */
763 if (OI_MEMBER_CHECK(oi
, MEMBER_DROUTERS
))
765 /* drop only if last reference */
766 if (OI_MEMBER_COUNT(oi
, MEMBER_DROUTERS
) == 1)
767 ospf_if_drop_alldrouters(oi
->ospf
, oi
->address
, oi
->ifp
->ifindex
);
769 /* Unset the flag regardless of whether the system call to leave
770 the group succeeded, since it's much safer to assume that
771 we are not a member. */
772 OI_MEMBER_LEFT(oi
, MEMBER_DROUTERS
);
778 ospf_if_up (struct ospf_interface
*oi
)
783 if (oi
->type
== OSPF_IFTYPE_LOOPBACK
)
784 OSPF_ISM_EVENT_SCHEDULE (oi
, ISM_LoopInd
);
787 struct ospf
*ospf
= ospf_lookup ();
789 ospf_adjust_sndbuflen (ospf
, oi
->ifp
->mtu
);
791 zlog_warn ("%s: ospf_lookup() returned NULL", __func__
);
792 ospf_if_stream_set (oi
);
793 OSPF_ISM_EVENT_SCHEDULE (oi
, ISM_InterfaceUp
);
800 ospf_if_down (struct ospf_interface
*oi
)
805 OSPF_ISM_EVENT_EXECUTE (oi
, ISM_InterfaceDown
);
806 /* Shutdown packet reception and sending */
807 ospf_if_stream_unset (oi
);
813 /* Virtual Link related functions. */
815 struct ospf_vl_data
*
816 ospf_vl_data_new (struct ospf_area
*area
, struct in_addr vl_peer
)
818 struct ospf_vl_data
*vl_data
;
820 vl_data
= XCALLOC (MTYPE_OSPF_VL_DATA
, sizeof (struct ospf_vl_data
));
822 vl_data
->vl_peer
.s_addr
= vl_peer
.s_addr
;
823 vl_data
->vl_area_id
= area
->area_id
;
824 vl_data
->format
= area
->format
;
830 ospf_vl_data_free (struct ospf_vl_data
*vl_data
)
832 XFREE (MTYPE_OSPF_VL_DATA
, vl_data
);
835 u_int vlink_count
= 0;
837 struct ospf_interface
*
838 ospf_vl_new (struct ospf
*ospf
, struct ospf_vl_data
*vl_data
)
840 struct ospf_interface
* voi
;
841 struct interface
* vi
;
842 char ifname
[INTERFACE_NAMSIZ
+ 1];
843 struct ospf_area
*area
;
844 struct in_addr area_id
;
845 struct connected
*co
;
846 struct prefix_ipv4
*p
;
848 if (IS_DEBUG_OSPF_EVENT
)
849 zlog_debug ("ospf_vl_new(): Start");
850 if (vlink_count
== OSPF_VL_MAX_COUNT
)
852 if (IS_DEBUG_OSPF_EVENT
)
853 zlog_debug ("ospf_vl_new(): Alarm: "
854 "cannot create more than OSPF_MAX_VL_COUNT virtual links");
858 if (IS_DEBUG_OSPF_EVENT
)
859 zlog_debug ("ospf_vl_new(): creating pseudo zebra interface");
861 snprintf (ifname
, sizeof(ifname
), "VLINK%d", vlink_count
);
862 vi
= if_create (ifname
, strnlen(ifname
, sizeof(ifname
)));
863 co
= connected_new ();
865 listnode_add (vi
->connected
, co
);
867 p
= prefix_ipv4_new ();
869 p
->prefix
.s_addr
= 0;
872 co
->address
= (struct prefix
*)p
;
874 voi
= ospf_if_new (ospf
, vi
, co
->address
);
877 if (IS_DEBUG_OSPF_EVENT
)
878 zlog_debug ("ospf_vl_new(): Alarm: OSPF int structure is not created");
882 voi
->vl_data
= vl_data
;
883 voi
->ifp
->mtu
= OSPF_VL_MTU
;
884 voi
->type
= OSPF_IFTYPE_VIRTUALLINK
;
887 if (IS_DEBUG_OSPF_EVENT
)
888 zlog_debug ("ospf_vl_new(): Created name: %s", ifname
);
889 if (IS_DEBUG_OSPF_EVENT
)
890 zlog_debug ("ospf_vl_new(): set if->name to %s", vi
->name
);
893 area
= ospf_area_get (ospf
, area_id
, OSPF_AREA_ID_FORMAT_ADDRESS
);
896 if (IS_DEBUG_OSPF_EVENT
)
897 zlog_debug ("ospf_vl_new(): set associated area to the backbone");
899 ospf_nbr_add_self (voi
);
900 ospf_area_add_if (voi
->area
, voi
);
902 ospf_if_stream_set (voi
);
904 if (IS_DEBUG_OSPF_EVENT
)
905 zlog_debug ("ospf_vl_new(): Stop");
910 ospf_vl_if_delete (struct ospf_vl_data
*vl_data
)
912 struct interface
*ifp
= vl_data
->vl_oi
->ifp
;
913 vl_data
->vl_oi
->address
->u
.prefix4
.s_addr
= 0;
914 vl_data
->vl_oi
->address
->prefixlen
= 0;
915 ospf_if_free (vl_data
->vl_oi
);
920 /* Look up vl_data for given peer, optionally qualified to be in the
921 * specified area. NULL area returns first found..
923 struct ospf_vl_data
*
924 ospf_vl_lookup (struct ospf
*ospf
, struct ospf_area
*area
,
925 struct in_addr vl_peer
)
927 struct ospf_vl_data
*vl_data
;
928 struct listnode
*node
;
930 if (IS_DEBUG_OSPF_EVENT
)
932 zlog_debug ("%s: Looking for %s", __func__
, inet_ntoa (vl_peer
));
934 zlog_debug ("%s: in area %s", __func__
, inet_ntoa (area
->area_id
));
937 for (ALL_LIST_ELEMENTS_RO (ospf
->vlinks
, node
, vl_data
))
939 if (IS_DEBUG_OSPF_EVENT
)
940 zlog_debug ("%s: VL %s, peer %s", __func__
,
941 vl_data
->vl_oi
->ifp
->name
,
942 inet_ntoa (vl_data
->vl_peer
));
944 if (area
&& !IPV4_ADDR_SAME (&vl_data
->vl_area_id
, &area
->area_id
))
947 if (IPV4_ADDR_SAME (&vl_data
->vl_peer
, &vl_peer
))
955 ospf_vl_shutdown (struct ospf_vl_data
*vl_data
)
957 struct ospf_interface
*oi
;
959 if ((oi
= vl_data
->vl_oi
) == NULL
)
962 oi
->address
->u
.prefix4
.s_addr
= 0;
963 oi
->address
->prefixlen
= 0;
965 UNSET_FLAG (oi
->ifp
->flags
, IFF_UP
);
966 /* OSPF_ISM_EVENT_SCHEDULE (oi, ISM_InterfaceDown); */
967 OSPF_ISM_EVENT_EXECUTE (oi
, ISM_InterfaceDown
);
971 ospf_vl_add (struct ospf
*ospf
, struct ospf_vl_data
*vl_data
)
973 listnode_add (ospf
->vlinks
, vl_data
);
975 ospf_snmp_vl_add (vl_data
);
976 #endif /* HAVE_SNMP */
980 ospf_vl_delete (struct ospf
*ospf
, struct ospf_vl_data
*vl_data
)
982 ospf_vl_shutdown (vl_data
);
983 ospf_vl_if_delete (vl_data
);
986 ospf_snmp_vl_delete (vl_data
);
987 #endif /* HAVE_SNMP */
988 listnode_delete (ospf
->vlinks
, vl_data
);
990 ospf_vl_data_free (vl_data
);
994 ospf_vl_set_params (struct ospf_vl_data
*vl_data
, struct vertex
*v
)
997 struct ospf_interface
*voi
;
998 struct listnode
*node
;
999 struct vertex_parent
*vp
= NULL
;
1001 struct router_lsa
*rl
;
1003 voi
= vl_data
->vl_oi
;
1005 if (voi
->output_cost
!= v
->distance
)
1008 voi
->output_cost
= v
->distance
;
1012 for (ALL_LIST_ELEMENTS_RO (v
->parents
, node
, vp
))
1014 vl_data
->nexthop
.oi
= vp
->nexthop
->oi
;
1015 vl_data
->nexthop
.router
= vp
->nexthop
->router
;
1017 if (!IPV4_ADDR_SAME(&voi
->address
->u
.prefix4
,
1018 &vl_data
->nexthop
.oi
->address
->u
.prefix4
))
1021 voi
->address
->u
.prefix4
= vl_data
->nexthop
.oi
->address
->u
.prefix4
;
1022 voi
->address
->prefixlen
= vl_data
->nexthop
.oi
->address
->prefixlen
;
1024 break; /* We take the first interface. */
1027 rl
= (struct router_lsa
*)v
->lsa
;
1029 /* use SPF determined backlink index in struct vertex
1030 * for virtual link destination address
1032 if (vp
&& vp
->backlink
>= 0)
1034 if (!IPV4_ADDR_SAME (&vl_data
->peer_addr
,
1035 &rl
->link
[vp
->backlink
].link_data
))
1037 vl_data
->peer_addr
= rl
->link
[vp
->backlink
].link_data
;
1041 /* This is highly odd, there is no backlink index
1042 * there should be due to the ospf_spf_has_link() check
1043 * in SPF. Lets warn and try pick a link anyway.
1045 zlog_warn ("ospf_vl_set_params: No backlink for %s!",
1046 vl_data
->vl_oi
->ifp
->name
);
1047 for (i
= 0; i
< ntohs (rl
->links
); i
++)
1049 switch (rl
->link
[i
].type
)
1051 case LSA_LINK_TYPE_VIRTUALLINK
:
1052 if (IS_DEBUG_OSPF_EVENT
)
1053 zlog_debug ("found back link through VL");
1054 case LSA_LINK_TYPE_TRANSIT
:
1055 case LSA_LINK_TYPE_POINTOPOINT
:
1056 if (!IPV4_ADDR_SAME (&vl_data
->peer_addr
,
1057 &rl
->link
[i
].link_data
))
1059 vl_data
->peer_addr
= rl
->link
[i
].link_data
;
1064 if (IS_DEBUG_OSPF_EVENT
)
1065 zlog_debug ("%s: %s peer address: %s, cost: %d,%schanged", __func__
,
1066 vl_data
->vl_oi
->ifp
->name
,
1067 inet_ntoa(vl_data
->peer_addr
),
1069 (changed
? " " : " un"));
1076 ospf_vl_up_check (struct ospf_area
*area
, struct in_addr rid
,
1079 struct ospf
*ospf
= area
->ospf
;
1080 struct listnode
*node
;
1081 struct ospf_vl_data
*vl_data
;
1082 struct ospf_interface
*oi
;
1084 if (IS_DEBUG_OSPF_EVENT
)
1086 zlog_debug ("ospf_vl_up_check(): Start");
1087 zlog_debug ("ospf_vl_up_check(): Router ID is %s", inet_ntoa (rid
));
1088 zlog_debug ("ospf_vl_up_check(): Area is %s", inet_ntoa (area
->area_id
));
1091 for (ALL_LIST_ELEMENTS_RO (ospf
->vlinks
, node
, vl_data
))
1093 if (IS_DEBUG_OSPF_EVENT
)
1095 zlog_debug ("%s: considering VL, %s in area %s", __func__
,
1096 vl_data
->vl_oi
->ifp
->name
,
1097 inet_ntoa (vl_data
->vl_area_id
));
1098 zlog_debug ("%s: peer ID: %s", __func__
,
1099 inet_ntoa (vl_data
->vl_peer
));
1102 if (IPV4_ADDR_SAME (&vl_data
->vl_peer
, &rid
) &&
1103 IPV4_ADDR_SAME (&vl_data
->vl_area_id
, &area
->area_id
))
1105 oi
= vl_data
->vl_oi
;
1106 SET_FLAG (vl_data
->flags
, OSPF_VL_FLAG_APPROVED
);
1108 if (IS_DEBUG_OSPF_EVENT
)
1109 zlog_debug ("ospf_vl_up_check(): this VL matched");
1111 if (oi
->state
== ISM_Down
)
1113 if (IS_DEBUG_OSPF_EVENT
)
1114 zlog_debug ("ospf_vl_up_check(): VL is down, waking it up");
1115 SET_FLAG (oi
->ifp
->flags
, IFF_UP
);
1116 OSPF_ISM_EVENT_EXECUTE(oi
,ISM_InterfaceUp
);
1119 if (ospf_vl_set_params (vl_data
, v
))
1121 if (IS_DEBUG_OSPF (ism
, ISM_EVENTS
))
1122 zlog_debug ("ospf_vl_up_check: VL cost change,"
1123 " scheduling router lsa refresh");
1125 ospf_router_lsa_timer_add (ospf
->backbone
);
1126 else if (IS_DEBUG_OSPF (ism
, ISM_EVENTS
))
1127 zlog_debug ("ospf_vl_up_check: VL cost change, no backbone!");
1134 ospf_vl_unapprove (struct ospf
*ospf
)
1136 struct listnode
*node
;
1137 struct ospf_vl_data
*vl_data
;
1139 for (ALL_LIST_ELEMENTS_RO (ospf
->vlinks
, node
, vl_data
))
1140 UNSET_FLAG (vl_data
->flags
, OSPF_VL_FLAG_APPROVED
);
1144 ospf_vl_shut_unapproved (struct ospf
*ospf
)
1146 struct listnode
*node
, *nnode
;
1147 struct ospf_vl_data
*vl_data
;
1149 for (ALL_LIST_ELEMENTS (ospf
->vlinks
, node
, nnode
, vl_data
))
1150 if (!CHECK_FLAG (vl_data
->flags
, OSPF_VL_FLAG_APPROVED
))
1151 ospf_vl_shutdown (vl_data
);
1155 ospf_full_virtual_nbrs (struct ospf_area
*area
)
1157 if (IS_DEBUG_OSPF_EVENT
)
1159 zlog_debug ("counting fully adjacent virtual neighbors in area %s",
1160 inet_ntoa (area
->area_id
));
1161 zlog_debug ("there are %d of them", area
->full_vls
);
1164 return area
->full_vls
;
1168 ospf_vls_in_area (struct ospf_area
*area
)
1170 struct listnode
*node
;
1171 struct ospf_vl_data
*vl_data
;
1174 for (ALL_LIST_ELEMENTS_RO (area
->ospf
->vlinks
, node
, vl_data
))
1175 if (IPV4_ADDR_SAME (&vl_data
->vl_area_id
, &area
->area_id
))
1183 ospf_crypt_key_new ()
1185 return XCALLOC (MTYPE_OSPF_CRYPT_KEY
, sizeof (struct crypt_key
));
1189 ospf_crypt_key_add (struct list
*crypt
, struct crypt_key
*ck
)
1191 listnode_add (crypt
, ck
);
1195 ospf_crypt_key_lookup (struct list
*auth_crypt
, u_char key_id
)
1197 struct listnode
*node
;
1198 struct crypt_key
*ck
;
1200 for (ALL_LIST_ELEMENTS_RO (auth_crypt
, node
, ck
))
1201 if (ck
->key_id
== key_id
)
1208 ospf_crypt_key_delete (struct list
*auth_crypt
, u_char key_id
)
1210 struct listnode
*node
, *nnode
;
1211 struct crypt_key
*ck
;
1213 for (ALL_LIST_ELEMENTS (auth_crypt
, node
, nnode
, ck
))
1215 if (ck
->key_id
== key_id
)
1217 listnode_delete (auth_crypt
, ck
);
1218 XFREE (MTYPE_OSPF_CRYPT_KEY
, ck
);
1227 ospf_default_iftype(struct interface
*ifp
)
1229 if (if_is_pointopoint (ifp
))
1230 return OSPF_IFTYPE_POINTOPOINT
;
1231 else if (if_is_loopback (ifp
))
1232 return OSPF_IFTYPE_LOOPBACK
;
1234 return OSPF_IFTYPE_BROADCAST
;
1240 /* Initialize Zebra interface data structure. */
1242 om
->iflist
= iflist
;
1243 if_add_hook (IF_NEW_HOOK
, ospf_if_new_hook
);
1244 if_add_hook (IF_DELETE_HOOK
, ospf_if_delete_hook
);