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 along
18 * with this program; see the file COPYING; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
36 #include "ospfd/ospfd.h"
37 #include "ospfd/ospf_spf.h"
38 #include "ospfd/ospf_interface.h"
39 #include "ospfd/ospf_ism.h"
40 #include "ospfd/ospf_asbr.h"
41 #include "ospfd/ospf_lsa.h"
42 #include "ospfd/ospf_lsdb.h"
43 #include "ospfd/ospf_neighbor.h"
44 #include "ospfd/ospf_nsm.h"
45 #include "ospfd/ospf_packet.h"
46 #include "ospfd/ospf_abr.h"
47 #include "ospfd/ospf_network.h"
48 #include "ospfd/ospf_dump.h"
50 DEFINE_QOBJ_TYPE(ospf_interface
)
51 DEFINE_HOOK(ospf_vl_add
, (struct ospf_vl_data
* vd
), (vd
))
52 DEFINE_HOOK(ospf_vl_delete
, (struct ospf_vl_data
* vd
), (vd
))
54 int ospf_interface_neighbor_count(struct ospf_interface
*oi
)
57 struct route_node
*rn
;
58 struct ospf_neighbor
*nbr
= NULL
;
60 for (rn
= route_top(oi
->nbrs
); rn
; rn
= route_next(rn
)) {
63 /* Do not show myself. */
64 if (nbr
== oi
->nbr_self
)
66 /* Down state is not shown. */
67 if (nbr
->state
== NSM_Down
)
76 int ospf_if_get_output_cost(struct ospf_interface
*oi
)
78 /* If all else fails, use default OSPF cost */
82 /* ifp speed and bw can be 0 in some platforms, use ospf default bw
83 if bw is configured under interface it would be used.
85 if (!oi
->ifp
->bandwidth
&& oi
->ifp
->speed
)
88 bw
= oi
->ifp
->bandwidth
? oi
->ifp
->bandwidth
89 : OSPF_DEFAULT_BANDWIDTH
;
90 refbw
= oi
->ospf
->ref_bandwidth
;
92 /* A specifed ip ospf cost overrides a calculated one. */
93 if (OSPF_IF_PARAM_CONFIGURED(IF_DEF_PARAMS(oi
->ifp
), output_cost_cmd
)
94 || OSPF_IF_PARAM_CONFIGURED(oi
->params
, output_cost_cmd
))
95 cost
= OSPF_IF_PARAM(oi
, output_cost_cmd
);
96 /* See if a cost can be calculated from the zebra processes
97 interface bandwidth field. */
99 cost
= (uint32_t)((double)refbw
/ (double)bw
+ (double)0.5);
102 else if (cost
> 65535)
109 void ospf_if_recalculate_output_cost(struct interface
*ifp
)
112 struct route_node
*rn
;
114 for (rn
= route_top(IF_OIFS(ifp
)); rn
; rn
= route_next(rn
)) {
115 struct ospf_interface
*oi
;
117 if ((oi
= rn
->info
) == NULL
)
120 newcost
= ospf_if_get_output_cost(oi
);
122 /* Is actual output cost changed? */
123 if (oi
->output_cost
!= newcost
) {
124 oi
->output_cost
= newcost
;
125 ospf_router_lsa_update_area(oi
->area
);
130 /* Simulate down/up on the interface. This is needed, for example, when
132 void ospf_if_reset(struct interface
*ifp
)
134 struct route_node
*rn
;
136 for (rn
= route_top(IF_OIFS(ifp
)); rn
; rn
= route_next(rn
)) {
137 struct ospf_interface
*oi
;
139 if ((oi
= rn
->info
) == NULL
)
147 void ospf_if_reset_variables(struct ospf_interface
*oi
)
149 /* Set default values. */
150 /* don't clear this flag. oi->flag = OSPF_IF_DISABLE; */
153 oi
->type
= OSPF_IFTYPE_VIRTUALLINK
;
155 /* preserve network-type */
156 if (oi
->type
!= OSPF_IFTYPE_NBMA
)
157 oi
->type
= OSPF_IFTYPE_BROADCAST
;
159 oi
->state
= ISM_Down
;
161 oi
->crypt_seqnum
= 0;
163 /* This must be short, (less than RxmtInterval)
164 - RFC 2328 Section 13.5 para 3. Set to 1 second to avoid Acks being
165 held back for too long - MAG */
169 /* lookup oi for specified prefix/ifp */
170 struct ospf_interface
*ospf_if_table_lookup(struct interface
*ifp
,
171 struct prefix
*prefix
)
174 struct route_node
*rn
;
175 struct ospf_interface
*rninfo
= NULL
;
178 p
.prefixlen
= IPV4_MAX_PREFIXLEN
;
180 /* route_node_get implicitely locks */
181 if ((rn
= route_node_lookup(IF_OIFS(ifp
), &p
))) {
182 rninfo
= (struct ospf_interface
*)rn
->info
;
183 route_unlock_node(rn
);
189 static void ospf_add_to_if(struct interface
*ifp
, struct ospf_interface
*oi
)
191 struct route_node
*rn
;
195 p
.prefixlen
= IPV4_MAX_PREFIXLEN
;
198 rn
= route_node_get(IF_OIFS(ifp
), &p
);
199 /* rn->info should either be NULL or equal to this oi
200 * as route_node_get may return an existing node
202 assert(!rn
->info
|| rn
->info
== oi
);
206 static void ospf_delete_from_if(struct interface
*ifp
,
207 struct ospf_interface
*oi
)
209 struct route_node
*rn
;
213 p
.prefixlen
= IPV4_MAX_PREFIXLEN
;
215 rn
= route_node_lookup(IF_OIFS(oi
->ifp
), &p
);
219 route_unlock_node(rn
);
220 route_unlock_node(rn
);
223 struct ospf_interface
*ospf_if_new(struct ospf
*ospf
, struct interface
*ifp
,
226 struct ospf_interface
*oi
;
228 if ((oi
= ospf_if_table_lookup(ifp
, p
)) == NULL
) {
229 oi
= XCALLOC(MTYPE_OSPF_IF
, sizeof(struct ospf_interface
));
230 memset(oi
, 0, sizeof(struct ospf_interface
));
234 /* Set zebra interface pointer. */
238 ospf_add_to_if(ifp
, oi
);
239 listnode_add(ospf
->oiflist
, oi
);
241 /* Initialize neighbor list. */
242 oi
->nbrs
= route_table_init();
244 /* Initialize static neighbor list. */
245 oi
->nbr_nbma
= list_new();
247 /* Initialize Link State Acknowledgment list. */
248 oi
->ls_ack
= list_new();
249 oi
->ls_ack_direct
.ls_ack
= list_new();
251 /* Set default values. */
252 ospf_if_reset_variables(oi
);
254 /* Set pseudo neighbor to Null */
257 oi
->ls_upd_queue
= route_table_init();
258 oi
->t_ls_upd_event
= NULL
;
259 oi
->t_ls_ack_direct
= NULL
;
261 oi
->crypt_seqnum
= time(NULL
);
263 ospf_opaque_type9_lsa_init(oi
);
267 ospf_if_stream_set(oi
);
269 QOBJ_REG(oi
, ospf_interface
);
271 if (IS_DEBUG_OSPF_EVENT
)
272 zlog_debug("%s: ospf interface %s vrf %s id %u created",
273 __PRETTY_FUNCTION__
, ifp
->name
,
274 ospf_vrf_id_to_name(ospf
->vrf_id
), ospf
->vrf_id
);
279 /* Restore an interface to its pre UP state
280 Used from ism_interface_down only */
281 void ospf_if_cleanup(struct ospf_interface
*oi
)
283 struct route_node
*rn
;
284 struct listnode
*node
, *nnode
;
285 struct ospf_neighbor
*nbr
;
286 struct ospf_nbr_nbma
*nbr_nbma
;
287 struct ospf_lsa
*lsa
;
289 /* oi->nbrs and oi->nbr_nbma should be deleted on InterfaceDown event */
290 /* delete all static neighbors attached to this interface */
291 for (ALL_LIST_ELEMENTS(oi
->nbr_nbma
, node
, nnode
, nbr_nbma
)) {
292 OSPF_POLL_TIMER_OFF(nbr_nbma
->t_poll
);
295 nbr_nbma
->nbr
->nbr_nbma
= NULL
;
296 nbr_nbma
->nbr
= NULL
;
301 listnode_delete(oi
->nbr_nbma
, nbr_nbma
);
304 /* send Neighbor event KillNbr to all associated neighbors. */
305 for (rn
= route_top(oi
->nbrs
); rn
; rn
= route_next(rn
))
306 if ((nbr
= rn
->info
) != NULL
)
307 if (nbr
!= oi
->nbr_self
)
308 OSPF_NSM_EVENT_EXECUTE(nbr
, NSM_KillNbr
);
310 /* Cleanup Link State Acknowlegdment list. */
311 for (ALL_LIST_ELEMENTS(oi
->ls_ack
, node
, nnode
, lsa
))
312 ospf_lsa_unlock(&lsa
); /* oi->ls_ack */
313 list_delete_all_node(oi
->ls_ack
);
315 oi
->crypt_seqnum
= 0;
317 /* Empty link state update queue */
318 ospf_ls_upd_queue_empty(oi
);
320 /* Reset pseudo neighbor. */
321 ospf_nbr_self_reset(oi
, oi
->ospf
->router_id
);
324 void ospf_if_free(struct ospf_interface
*oi
)
329 ospf_fifo_free(oi
->obuf
);
331 assert(oi
->state
== ISM_Down
);
333 ospf_opaque_type9_lsa_term(oi
);
337 /* Free Pseudo Neighbour */
338 ospf_nbr_delete(oi
->nbr_self
);
340 route_table_finish(oi
->nbrs
);
341 route_table_finish(oi
->ls_upd_queue
);
343 /* Free any lists that should be freed */
344 list_delete_and_null(&oi
->nbr_nbma
);
346 list_delete_and_null(&oi
->ls_ack
);
347 list_delete_and_null(&oi
->ls_ack_direct
.ls_ack
);
349 if (IS_DEBUG_OSPF_EVENT
)
350 zlog_debug("%s: ospf interface %s vrf %s id %u deleted",
351 __PRETTY_FUNCTION__
, oi
->ifp
->name
,
352 ospf_vrf_id_to_name(oi
->ifp
->vrf_id
),
355 ospf_delete_from_if(oi
->ifp
, oi
);
357 listnode_delete(oi
->ospf
->oiflist
, oi
);
358 listnode_delete(oi
->area
->oiflist
, oi
);
360 thread_cancel_event(master
, oi
);
362 memset(oi
, 0, sizeof(*oi
));
363 XFREE(MTYPE_OSPF_IF
, oi
);
366 int ospf_if_is_up(struct ospf_interface
*oi
)
368 return if_is_up(oi
->ifp
);
371 struct ospf_interface
*ospf_if_exists(struct ospf_interface
*oic
)
373 struct listnode
*node
;
375 struct ospf_interface
*oi
;
384 for (ALL_LIST_ELEMENTS_RO(ospf
->oiflist
, node
, oi
))
391 /* Lookup OSPF interface by router LSA posistion */
392 struct ospf_interface
*ospf_if_lookup_by_lsa_pos(struct ospf_area
*area
,
395 struct listnode
*node
;
396 struct ospf_interface
*oi
;
398 for (ALL_LIST_ELEMENTS_RO(area
->oiflist
, node
, oi
)) {
399 if (lsa_pos
>= oi
->lsa_pos_beg
&& lsa_pos
< oi
->lsa_pos_end
)
405 struct ospf_interface
*ospf_if_lookup_by_local_addr(struct ospf
*ospf
,
406 struct interface
*ifp
,
407 struct in_addr address
)
409 struct listnode
*node
;
410 struct ospf_interface
*oi
;
412 for (ALL_LIST_ELEMENTS_RO(ospf
->oiflist
, node
, oi
))
413 if (oi
->type
!= OSPF_IFTYPE_VIRTUALLINK
) {
414 if (ifp
&& oi
->ifp
!= ifp
)
417 if (IPV4_ADDR_SAME(&address
, &oi
->address
->u
.prefix4
))
424 struct ospf_interface
*ospf_if_lookup_by_prefix(struct ospf
*ospf
,
425 struct prefix_ipv4
*p
)
427 struct listnode
*node
;
428 struct ospf_interface
*oi
;
430 /* Check each Interface. */
431 for (ALL_LIST_ELEMENTS_RO(ospf
->oiflist
, node
, oi
)) {
432 if (oi
->type
!= OSPF_IFTYPE_VIRTUALLINK
) {
435 prefix_copy(&ptmp
, CONNECTED_PREFIX(oi
->connected
));
437 if (prefix_same(&ptmp
, (struct prefix
*)p
))
444 /* determine receiving interface by ifp and source address */
445 struct ospf_interface
*ospf_if_lookup_recv_if(struct ospf
*ospf
,
447 struct interface
*ifp
)
449 struct route_node
*rn
;
450 struct prefix_ipv4 addr
;
451 struct ospf_interface
*oi
, *match
;
453 addr
.family
= AF_INET
;
455 addr
.prefixlen
= IPV4_MAX_BITLEN
;
459 for (rn
= route_top(IF_OIFS(ifp
)); rn
; rn
= route_next(rn
)) {
462 if (!oi
) /* oi can be NULL for PtP aliases */
465 if (oi
->type
== OSPF_IFTYPE_VIRTUALLINK
)
468 if (if_is_loopback(oi
->ifp
) || if_is_vrf(oi
->ifp
))
471 if (CHECK_FLAG(oi
->connected
->flags
, ZEBRA_IFA_UNNUMBERED
))
473 else if (prefix_match(CONNECTED_PREFIX(oi
->connected
),
474 (struct prefix
*)&addr
)) {
475 if ((match
== NULL
) || (match
->address
->prefixlen
476 < oi
->address
->prefixlen
))
484 static void ospf_if_reset_stats(struct ospf_interface
*oi
)
486 oi
->hello_in
= oi
->hello_out
= 0;
487 oi
->db_desc_in
= oi
->db_desc_out
= 0;
488 oi
->ls_req_in
= oi
->ls_req_out
= 0;
489 oi
->ls_upd_in
= oi
->ls_upd_out
= 0;
490 oi
->ls_ack_in
= oi
->ls_ack_out
= 0;
493 void ospf_if_stream_set(struct ospf_interface
*oi
)
495 /* set output fifo queue. */
496 if (oi
->obuf
== NULL
)
497 oi
->obuf
= ospf_fifo_new();
500 void ospf_if_stream_unset(struct ospf_interface
*oi
)
502 struct ospf
*ospf
= oi
->ospf
;
505 /* flush the interface packet queue */
506 ospf_fifo_flush(oi
->obuf
);
507 /*reset protocol stats */
508 ospf_if_reset_stats(oi
);
510 if (oi
->on_write_q
) {
511 listnode_delete(ospf
->oi_write_q
, oi
);
512 if (list_isempty(ospf
->oi_write_q
))
513 OSPF_TIMER_OFF(ospf
->t_write
);
520 static struct ospf_if_params
*ospf_new_if_params(void)
522 struct ospf_if_params
*oip
;
524 oip
= XCALLOC(MTYPE_OSPF_IF_PARAMS
, sizeof(struct ospf_if_params
));
526 UNSET_IF_PARAM(oip
, output_cost_cmd
);
527 UNSET_IF_PARAM(oip
, transmit_delay
);
528 UNSET_IF_PARAM(oip
, retransmit_interval
);
529 UNSET_IF_PARAM(oip
, passive_interface
);
530 UNSET_IF_PARAM(oip
, v_hello
);
531 UNSET_IF_PARAM(oip
, fast_hello
);
532 UNSET_IF_PARAM(oip
, v_wait
);
533 UNSET_IF_PARAM(oip
, priority
);
534 UNSET_IF_PARAM(oip
, type
);
535 UNSET_IF_PARAM(oip
, auth_simple
);
536 UNSET_IF_PARAM(oip
, auth_crypt
);
537 UNSET_IF_PARAM(oip
, auth_type
);
539 oip
->auth_crypt
= list_new();
541 oip
->network_lsa_seqnum
= htonl(OSPF_INITIAL_SEQUENCE_NUMBER
);
546 void ospf_del_if_params(struct ospf_if_params
*oip
)
548 list_delete_and_null(&oip
->auth_crypt
);
549 bfd_info_free(&(oip
->bfd_info
));
550 XFREE(MTYPE_OSPF_IF_PARAMS
, oip
);
553 void ospf_free_if_params(struct interface
*ifp
, struct in_addr addr
)
555 struct ospf_if_params
*oip
;
556 struct prefix_ipv4 p
;
557 struct route_node
*rn
;
560 p
.prefixlen
= IPV4_MAX_PREFIXLEN
;
562 rn
= route_node_lookup(IF_OIFS_PARAMS(ifp
), (struct prefix
*)&p
);
563 if (!rn
|| !rn
->info
)
567 route_unlock_node(rn
);
569 if (!OSPF_IF_PARAM_CONFIGURED(oip
, output_cost_cmd
)
570 && !OSPF_IF_PARAM_CONFIGURED(oip
, transmit_delay
)
571 && !OSPF_IF_PARAM_CONFIGURED(oip
, retransmit_interval
)
572 && !OSPF_IF_PARAM_CONFIGURED(oip
, passive_interface
)
573 && !OSPF_IF_PARAM_CONFIGURED(oip
, v_hello
)
574 && !OSPF_IF_PARAM_CONFIGURED(oip
, fast_hello
)
575 && !OSPF_IF_PARAM_CONFIGURED(oip
, v_wait
)
576 && !OSPF_IF_PARAM_CONFIGURED(oip
, priority
)
577 && !OSPF_IF_PARAM_CONFIGURED(oip
, type
)
578 && !OSPF_IF_PARAM_CONFIGURED(oip
, auth_simple
)
579 && !OSPF_IF_PARAM_CONFIGURED(oip
, auth_type
)
580 && listcount(oip
->auth_crypt
) == 0
581 && ntohl(oip
->network_lsa_seqnum
) != OSPF_INITIAL_SEQUENCE_NUMBER
) {
582 ospf_del_if_params(oip
);
584 route_unlock_node(rn
);
588 struct ospf_if_params
*ospf_lookup_if_params(struct interface
*ifp
,
591 struct prefix_ipv4 p
;
592 struct route_node
*rn
;
595 p
.prefixlen
= IPV4_MAX_PREFIXLEN
;
598 rn
= route_node_lookup(IF_OIFS_PARAMS(ifp
), (struct prefix
*)&p
);
601 route_unlock_node(rn
);
608 struct ospf_if_params
*ospf_get_if_params(struct interface
*ifp
,
611 struct prefix_ipv4 p
;
612 struct route_node
*rn
;
615 p
.prefixlen
= IPV4_MAX_PREFIXLEN
;
619 rn
= route_node_get(IF_OIFS_PARAMS(ifp
), (struct prefix
*)&p
);
621 if (rn
->info
== NULL
)
622 rn
->info
= ospf_new_if_params();
624 route_unlock_node(rn
);
629 void ospf_if_update_params(struct interface
*ifp
, struct in_addr addr
)
631 struct route_node
*rn
;
632 struct ospf_interface
*oi
;
634 for (rn
= route_top(IF_OIFS(ifp
)); rn
; rn
= route_next(rn
)) {
635 if ((oi
= rn
->info
) == NULL
)
638 if (IPV4_ADDR_SAME(&oi
->address
->u
.prefix4
, &addr
))
639 oi
->params
= ospf_lookup_if_params(
640 ifp
, oi
->address
->u
.prefix4
);
644 int ospf_if_new_hook(struct interface
*ifp
)
648 ifp
->info
= XCALLOC(MTYPE_OSPF_IF_INFO
, sizeof(struct ospf_if_info
));
650 IF_OIFS(ifp
) = route_table_init();
651 IF_OIFS_PARAMS(ifp
) = route_table_init();
653 IF_DEF_PARAMS(ifp
) = ospf_new_if_params();
655 SET_IF_PARAM(IF_DEF_PARAMS(ifp
), transmit_delay
);
656 IF_DEF_PARAMS(ifp
)->transmit_delay
= OSPF_TRANSMIT_DELAY_DEFAULT
;
658 SET_IF_PARAM(IF_DEF_PARAMS(ifp
), retransmit_interval
);
659 IF_DEF_PARAMS(ifp
)->retransmit_interval
=
660 OSPF_RETRANSMIT_INTERVAL_DEFAULT
;
662 SET_IF_PARAM(IF_DEF_PARAMS(ifp
), priority
);
663 IF_DEF_PARAMS(ifp
)->priority
= OSPF_ROUTER_PRIORITY_DEFAULT
;
665 IF_DEF_PARAMS(ifp
)->mtu_ignore
= OSPF_MTU_IGNORE_DEFAULT
;
667 SET_IF_PARAM(IF_DEF_PARAMS(ifp
), v_hello
);
668 IF_DEF_PARAMS(ifp
)->v_hello
= OSPF_HELLO_INTERVAL_DEFAULT
;
670 SET_IF_PARAM(IF_DEF_PARAMS(ifp
), fast_hello
);
671 IF_DEF_PARAMS(ifp
)->fast_hello
= OSPF_FAST_HELLO_DEFAULT
;
673 SET_IF_PARAM(IF_DEF_PARAMS(ifp
), v_wait
);
674 IF_DEF_PARAMS(ifp
)->v_wait
= OSPF_ROUTER_DEAD_INTERVAL_DEFAULT
;
676 SET_IF_PARAM(IF_DEF_PARAMS(ifp
), auth_simple
);
677 memset(IF_DEF_PARAMS(ifp
)->auth_simple
, 0, OSPF_AUTH_SIMPLE_SIZE
);
679 SET_IF_PARAM(IF_DEF_PARAMS(ifp
), auth_type
);
680 IF_DEF_PARAMS(ifp
)->auth_type
= OSPF_AUTH_NOTSET
;
682 rc
= ospf_opaque_new_if(ifp
);
686 static int ospf_if_delete_hook(struct interface
*ifp
)
689 struct route_node
*rn
;
690 rc
= ospf_opaque_del_if(ifp
);
692 route_table_finish(IF_OIFS(ifp
));
694 for (rn
= route_top(IF_OIFS_PARAMS(ifp
)); rn
; rn
= route_next(rn
))
696 ospf_del_if_params(rn
->info
);
697 route_table_finish(IF_OIFS_PARAMS(ifp
));
699 ospf_del_if_params((struct ospf_if_params
*)IF_DEF_PARAMS(ifp
));
700 XFREE(MTYPE_OSPF_IF_INFO
, ifp
->info
);
706 int ospf_if_is_enable(struct ospf_interface
*oi
)
708 if (!(if_is_loopback(oi
->ifp
) || if_is_vrf(oi
->ifp
)))
709 if (if_is_up(oi
->ifp
))
715 void ospf_if_set_multicast(struct ospf_interface
*oi
)
717 if ((oi
->state
> ISM_Loopback
) && (oi
->type
!= OSPF_IFTYPE_LOOPBACK
)
718 && (oi
->type
!= OSPF_IFTYPE_VIRTUALLINK
)
719 && (OSPF_IF_PASSIVE_STATUS(oi
) == OSPF_IF_ACTIVE
)) {
720 /* The interface should belong to the OSPF-all-routers group. */
721 if (!OI_MEMBER_CHECK(oi
, MEMBER_ALLROUTERS
)
722 && (ospf_if_add_allspfrouters(oi
->ospf
, oi
->address
,
725 /* Set the flag only if the system call to join
727 OI_MEMBER_JOINED(oi
, MEMBER_ALLROUTERS
);
729 /* The interface should NOT belong to the OSPF-all-routers
731 if (OI_MEMBER_CHECK(oi
, MEMBER_ALLROUTERS
)) {
732 /* Only actually drop if this is the last reference */
733 if (OI_MEMBER_COUNT(oi
, MEMBER_ALLROUTERS
) == 1)
734 ospf_if_drop_allspfrouters(oi
->ospf
,
737 /* Unset the flag regardless of whether the system call
739 the group succeeded, since it's much safer to assume
741 we are not a member. */
742 OI_MEMBER_LEFT(oi
, MEMBER_ALLROUTERS
);
746 if (((oi
->type
== OSPF_IFTYPE_BROADCAST
)
747 || (oi
->type
== OSPF_IFTYPE_POINTOPOINT
))
748 && ((oi
->state
== ISM_DR
) || (oi
->state
== ISM_Backup
))
749 && (OSPF_IF_PASSIVE_STATUS(oi
) == OSPF_IF_ACTIVE
)) {
750 /* The interface should belong to the OSPF-designated-routers
752 if (!OI_MEMBER_CHECK(oi
, MEMBER_DROUTERS
)
753 && (ospf_if_add_alldrouters(oi
->ospf
, oi
->address
,
756 /* Set the flag only if the system call to join
758 OI_MEMBER_JOINED(oi
, MEMBER_DROUTERS
);
760 /* The interface should NOT belong to the
761 * OSPF-designated-routers group */
762 if (OI_MEMBER_CHECK(oi
, MEMBER_DROUTERS
)) {
763 /* drop only if last reference */
764 if (OI_MEMBER_COUNT(oi
, MEMBER_DROUTERS
) == 1)
765 ospf_if_drop_alldrouters(oi
->ospf
, oi
->address
,
768 /* Unset the flag regardless of whether the system call
770 the group succeeded, since it's much safer to assume
772 we are not a member. */
773 OI_MEMBER_LEFT(oi
, MEMBER_DROUTERS
);
778 int ospf_if_up(struct ospf_interface
*oi
)
783 if (oi
->type
== OSPF_IFTYPE_LOOPBACK
)
784 OSPF_ISM_EVENT_SCHEDULE(oi
, ISM_LoopInd
);
786 OSPF_ISM_EVENT_SCHEDULE(oi
, ISM_InterfaceUp
);
792 int ospf_if_down(struct ospf_interface
*oi
)
797 OSPF_ISM_EVENT_EXECUTE(oi
, ISM_InterfaceDown
);
798 /* delete position in router LSA */
801 /* Shutdown packet reception and sending */
802 ospf_if_stream_unset(oi
);
808 /* Virtual Link related functions. */
810 struct ospf_vl_data
*ospf_vl_data_new(struct ospf_area
*area
,
811 struct in_addr vl_peer
)
813 struct ospf_vl_data
*vl_data
;
815 vl_data
= XCALLOC(MTYPE_OSPF_VL_DATA
, sizeof(struct ospf_vl_data
));
817 vl_data
->vl_peer
.s_addr
= vl_peer
.s_addr
;
818 vl_data
->vl_area_id
= area
->area_id
;
819 vl_data
->vl_area_id_fmt
= area
->area_id_fmt
;
824 void ospf_vl_data_free(struct ospf_vl_data
*vl_data
)
826 XFREE(MTYPE_OSPF_VL_DATA
, vl_data
);
829 unsigned int vlink_count
= 0;
831 struct ospf_interface
*ospf_vl_new(struct ospf
*ospf
,
832 struct ospf_vl_data
*vl_data
)
834 struct ospf_interface
*voi
;
835 struct interface
*vi
;
836 char ifname
[INTERFACE_NAMSIZ
];
837 struct ospf_area
*area
;
838 struct in_addr area_id
;
839 struct connected
*co
;
840 struct prefix_ipv4
*p
;
842 if (IS_DEBUG_OSPF_EVENT
)
843 zlog_debug("ospf_vl_new(): Start");
844 if (vlink_count
== OSPF_VL_MAX_COUNT
) {
845 if (IS_DEBUG_OSPF_EVENT
)
847 "ospf_vl_new(): Alarm: "
848 "cannot create more than OSPF_MAX_VL_COUNT virtual links");
852 if (IS_DEBUG_OSPF_EVENT
)
854 "ospf_vl_new(): creating pseudo zebra interface vrf id %u",
857 snprintf(ifname
, sizeof(ifname
), "VLINK%u", vlink_count
);
858 vi
= if_create(ifname
, ospf
->vrf_id
);
860 * if_create sets ZEBRA_INTERFACE_LINKDETECTION
861 * virtual links don't need this.
863 UNSET_FLAG(vi
->status
, ZEBRA_INTERFACE_LINKDETECTION
);
864 co
= connected_new();
866 listnode_add(vi
->connected
, co
);
868 p
= prefix_ipv4_new();
870 p
->prefix
.s_addr
= 0;
873 co
->address
= (struct prefix
*)p
;
875 voi
= ospf_if_new(ospf
, vi
, co
->address
);
877 if (IS_DEBUG_OSPF_EVENT
)
879 "ospf_vl_new(): Alarm: OSPF int structure is not created");
883 voi
->vl_data
= vl_data
;
884 voi
->ifp
->mtu
= OSPF_VL_MTU
;
885 voi
->type
= OSPF_IFTYPE_VIRTUALLINK
;
888 if (IS_DEBUG_OSPF_EVENT
)
889 zlog_debug("ospf_vl_new(): Created name: %s", ifname
);
890 if (IS_DEBUG_OSPF_EVENT
)
891 zlog_debug("ospf_vl_new(): set if->name to %s", vi
->name
);
894 area
= ospf_area_get(ospf
, area_id
);
897 if (IS_DEBUG_OSPF_EVENT
)
899 "ospf_vl_new(): set associated area to the backbone");
901 /* Add pseudo neighbor. */
902 ospf_nbr_self_reset(voi
, voi
->ospf
->router_id
);
904 ospf_area_add_if(voi
->area
, voi
);
906 ospf_if_stream_set(voi
);
908 if (IS_DEBUG_OSPF_EVENT
)
909 zlog_debug("ospf_vl_new(): Stop");
913 static void ospf_vl_if_delete(struct ospf_vl_data
*vl_data
)
915 struct interface
*ifp
= vl_data
->vl_oi
->ifp
;
916 vl_data
->vl_oi
->address
->u
.prefix4
.s_addr
= 0;
917 vl_data
->vl_oi
->address
->prefixlen
= 0;
918 ospf_if_free(vl_data
->vl_oi
);
923 /* Look up vl_data for given peer, optionally qualified to be in the
924 * specified area. NULL area returns first found..
926 struct ospf_vl_data
*ospf_vl_lookup(struct ospf
*ospf
, struct ospf_area
*area
,
927 struct in_addr vl_peer
)
929 struct ospf_vl_data
*vl_data
;
930 struct listnode
*node
;
932 if (IS_DEBUG_OSPF_EVENT
) {
933 zlog_debug("%s: Looking for %s", __func__
, inet_ntoa(vl_peer
));
935 zlog_debug("%s: in area %s", __func__
,
936 inet_ntoa(area
->area_id
));
939 for (ALL_LIST_ELEMENTS_RO(ospf
->vlinks
, node
, vl_data
)) {
940 if (IS_DEBUG_OSPF_EVENT
)
941 zlog_debug("%s: VL %s, peer %s", __func__
,
942 vl_data
->vl_oi
->ifp
->name
,
943 inet_ntoa(vl_data
->vl_peer
));
946 && !IPV4_ADDR_SAME(&vl_data
->vl_area_id
, &area
->area_id
))
949 if (IPV4_ADDR_SAME(&vl_data
->vl_peer
, &vl_peer
))
956 static void ospf_vl_shutdown(struct ospf_vl_data
*vl_data
)
958 struct ospf_interface
*oi
;
960 if ((oi
= vl_data
->vl_oi
) == NULL
)
963 oi
->address
->u
.prefix4
.s_addr
= 0;
964 oi
->address
->prefixlen
= 0;
966 UNSET_FLAG(oi
->ifp
->flags
, IFF_UP
);
967 /* OSPF_ISM_EVENT_SCHEDULE (oi, ISM_InterfaceDown); */
968 OSPF_ISM_EVENT_EXECUTE(oi
, ISM_InterfaceDown
);
971 void ospf_vl_add(struct ospf
*ospf
, struct ospf_vl_data
*vl_data
)
973 listnode_add(ospf
->vlinks
, vl_data
);
974 hook_call(ospf_vl_add
, vl_data
);
977 void ospf_vl_delete(struct ospf
*ospf
, struct ospf_vl_data
*vl_data
)
979 ospf_vl_shutdown(vl_data
);
980 ospf_vl_if_delete(vl_data
);
982 hook_call(ospf_vl_delete
, vl_data
);
983 listnode_delete(ospf
->vlinks
, vl_data
);
985 ospf_vl_data_free(vl_data
);
988 static int ospf_vl_set_params(struct ospf_vl_data
*vl_data
, struct vertex
*v
)
991 struct ospf_interface
*voi
;
992 struct listnode
*node
;
993 struct vertex_parent
*vp
= NULL
;
995 struct router_lsa
*rl
;
997 voi
= vl_data
->vl_oi
;
999 if (voi
->output_cost
!= v
->distance
) {
1001 voi
->output_cost
= v
->distance
;
1005 for (ALL_LIST_ELEMENTS_RO(v
->parents
, node
, vp
)) {
1006 vl_data
->nexthop
.oi
= vp
->nexthop
->oi
;
1007 vl_data
->nexthop
.router
= vp
->nexthop
->router
;
1009 if (!IPV4_ADDR_SAME(&voi
->address
->u
.prefix4
,
1010 &vl_data
->nexthop
.oi
->address
->u
.prefix4
))
1013 voi
->address
->u
.prefix4
=
1014 vl_data
->nexthop
.oi
->address
->u
.prefix4
;
1015 voi
->address
->prefixlen
=
1016 vl_data
->nexthop
.oi
->address
->prefixlen
;
1018 break; /* We take the first interface. */
1021 rl
= (struct router_lsa
*)v
->lsa
;
1023 /* use SPF determined backlink index in struct vertex
1024 * for virtual link destination address
1026 if (vp
&& vp
->backlink
>= 0) {
1027 if (!IPV4_ADDR_SAME(&vl_data
->peer_addr
,
1028 &rl
->link
[vp
->backlink
].link_data
))
1030 vl_data
->peer_addr
= rl
->link
[vp
->backlink
].link_data
;
1032 /* This is highly odd, there is no backlink index
1033 * there should be due to the ospf_spf_has_link() check
1034 * in SPF. Lets warn and try pick a link anyway.
1036 zlog_warn("ospf_vl_set_params: No backlink for %s!",
1037 vl_data
->vl_oi
->ifp
->name
);
1038 for (i
= 0; i
< ntohs(rl
->links
); i
++) {
1039 switch (rl
->link
[i
].type
) {
1040 case LSA_LINK_TYPE_VIRTUALLINK
:
1041 if (IS_DEBUG_OSPF_EVENT
)
1043 "found back link through VL");
1045 case LSA_LINK_TYPE_TRANSIT
:
1046 case LSA_LINK_TYPE_POINTOPOINT
:
1047 if (!IPV4_ADDR_SAME(&vl_data
->peer_addr
,
1048 &rl
->link
[i
].link_data
))
1050 vl_data
->peer_addr
= rl
->link
[i
].link_data
;
1055 if (IS_DEBUG_OSPF_EVENT
)
1056 zlog_debug("%s: %s peer address: %s, cost: %d,%schanged",
1057 __func__
, vl_data
->vl_oi
->ifp
->name
,
1058 inet_ntoa(vl_data
->peer_addr
), voi
->output_cost
,
1059 (changed
? " " : " un"));
1065 void ospf_vl_up_check(struct ospf_area
*area
, struct in_addr rid
,
1068 struct ospf
*ospf
= area
->ospf
;
1069 struct listnode
*node
;
1070 struct ospf_vl_data
*vl_data
;
1071 struct ospf_interface
*oi
;
1073 if (IS_DEBUG_OSPF_EVENT
) {
1074 zlog_debug("ospf_vl_up_check(): Start");
1075 zlog_debug("ospf_vl_up_check(): Router ID is %s",
1077 zlog_debug("ospf_vl_up_check(): Area is %s",
1078 inet_ntoa(area
->area_id
));
1081 for (ALL_LIST_ELEMENTS_RO(ospf
->vlinks
, node
, vl_data
)) {
1082 if (IS_DEBUG_OSPF_EVENT
) {
1083 zlog_debug("%s: considering VL, %s in area %s",
1084 __func__
, vl_data
->vl_oi
->ifp
->name
,
1085 inet_ntoa(vl_data
->vl_area_id
));
1086 zlog_debug("%s: peer ID: %s", __func__
,
1087 inet_ntoa(vl_data
->vl_peer
));
1090 if (IPV4_ADDR_SAME(&vl_data
->vl_peer
, &rid
)
1091 && IPV4_ADDR_SAME(&vl_data
->vl_area_id
, &area
->area_id
)) {
1092 oi
= vl_data
->vl_oi
;
1093 SET_FLAG(vl_data
->flags
, OSPF_VL_FLAG_APPROVED
);
1095 if (IS_DEBUG_OSPF_EVENT
)
1097 "ospf_vl_up_check(): this VL matched");
1099 if (oi
->state
== ISM_Down
) {
1100 if (IS_DEBUG_OSPF_EVENT
)
1102 "ospf_vl_up_check(): VL is down, waking it up");
1103 SET_FLAG(oi
->ifp
->flags
, IFF_UP
);
1104 OSPF_ISM_EVENT_EXECUTE(oi
, ISM_InterfaceUp
);
1107 if (ospf_vl_set_params(vl_data
, v
)) {
1108 if (IS_DEBUG_OSPF(ism
, ISM_EVENTS
))
1110 "ospf_vl_up_check: VL cost change,"
1111 " scheduling router lsa refresh");
1113 ospf_router_lsa_update_area(
1115 else if (IS_DEBUG_OSPF(ism
, ISM_EVENTS
))
1117 "ospf_vl_up_check: VL cost change, no backbone!");
1123 void ospf_vl_unapprove(struct ospf
*ospf
)
1125 struct listnode
*node
;
1126 struct ospf_vl_data
*vl_data
;
1128 for (ALL_LIST_ELEMENTS_RO(ospf
->vlinks
, node
, vl_data
))
1129 UNSET_FLAG(vl_data
->flags
, OSPF_VL_FLAG_APPROVED
);
1132 void ospf_vl_shut_unapproved(struct ospf
*ospf
)
1134 struct listnode
*node
, *nnode
;
1135 struct ospf_vl_data
*vl_data
;
1137 for (ALL_LIST_ELEMENTS(ospf
->vlinks
, node
, nnode
, vl_data
))
1138 if (!CHECK_FLAG(vl_data
->flags
, OSPF_VL_FLAG_APPROVED
))
1139 ospf_vl_shutdown(vl_data
);
1142 int ospf_full_virtual_nbrs(struct ospf_area
*area
)
1144 if (IS_DEBUG_OSPF_EVENT
) {
1146 "counting fully adjacent virtual neighbors in area %s",
1147 inet_ntoa(area
->area_id
));
1148 zlog_debug("there are %d of them", area
->full_vls
);
1151 return area
->full_vls
;
1154 int ospf_vls_in_area(struct ospf_area
*area
)
1156 struct listnode
*node
;
1157 struct ospf_vl_data
*vl_data
;
1160 for (ALL_LIST_ELEMENTS_RO(area
->ospf
->vlinks
, node
, vl_data
))
1161 if (IPV4_ADDR_SAME(&vl_data
->vl_area_id
, &area
->area_id
))
1168 struct crypt_key
*ospf_crypt_key_new()
1170 return XCALLOC(MTYPE_OSPF_CRYPT_KEY
, sizeof(struct crypt_key
));
1173 void ospf_crypt_key_add(struct list
*crypt
, struct crypt_key
*ck
)
1175 listnode_add(crypt
, ck
);
1178 struct crypt_key
*ospf_crypt_key_lookup(struct list
*auth_crypt
, uint8_t key_id
)
1180 struct listnode
*node
;
1181 struct crypt_key
*ck
;
1183 for (ALL_LIST_ELEMENTS_RO(auth_crypt
, node
, ck
))
1184 if (ck
->key_id
== key_id
)
1190 int ospf_crypt_key_delete(struct list
*auth_crypt
, uint8_t key_id
)
1192 struct listnode
*node
, *nnode
;
1193 struct crypt_key
*ck
;
1195 for (ALL_LIST_ELEMENTS(auth_crypt
, node
, nnode
, ck
)) {
1196 if (ck
->key_id
== key_id
) {
1197 listnode_delete(auth_crypt
, ck
);
1198 XFREE(MTYPE_OSPF_CRYPT_KEY
, ck
);
1206 uint8_t ospf_default_iftype(struct interface
*ifp
)
1208 if (if_is_pointopoint(ifp
))
1209 return OSPF_IFTYPE_POINTOPOINT
;
1210 else if (if_is_loopback(ifp
) || if_is_vrf(ifp
))
1211 return OSPF_IFTYPE_LOOPBACK
;
1213 return OSPF_IFTYPE_BROADCAST
;
1218 /* Initialize Zebra interface data structure. */
1219 hook_register_prio(if_add
, 0, ospf_if_new_hook
);
1220 hook_register_prio(if_del
, 0, ospf_if_delete_hook
);