]> git.proxmox.com Git - mirror_frr.git/blob - ospfd/ospf_interface.c
Merge pull request #11832 from sigeryang/master
[mirror_frr.git] / ospfd / ospf_interface.c
1 /*
2 * OSPF Interface functions.
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 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
20 */
21
22 #include <zebra.h>
23
24 #include "thread.h"
25 #include "linklist.h"
26 #include "prefix.h"
27 #include "if.h"
28 #include "table.h"
29 #include "memory.h"
30 #include "command.h"
31 #include "stream.h"
32 #include "log.h"
33 #include "zclient.h"
34 #include "bfd.h"
35 #include "ldp_sync.h"
36
37 #include "ospfd/ospfd.h"
38 #include "ospfd/ospf_bfd.h"
39 #include "ospfd/ospf_spf.h"
40 #include "ospfd/ospf_interface.h"
41 #include "ospfd/ospf_ism.h"
42 #include "ospfd/ospf_asbr.h"
43 #include "ospfd/ospf_lsa.h"
44 #include "ospfd/ospf_lsdb.h"
45 #include "ospfd/ospf_neighbor.h"
46 #include "ospfd/ospf_nsm.h"
47 #include "ospfd/ospf_packet.h"
48 #include "ospfd/ospf_abr.h"
49 #include "ospfd/ospf_network.h"
50 #include "ospfd/ospf_dump.h"
51 #include "ospfd/ospf_ldp_sync.h"
52 #include "ospfd/ospf_route.h"
53 #include "ospfd/ospf_te.h"
54
55 DEFINE_QOBJ_TYPE(ospf_interface);
56 DEFINE_HOOK(ospf_vl_add, (struct ospf_vl_data * vd), (vd));
57 DEFINE_HOOK(ospf_vl_delete, (struct ospf_vl_data * vd), (vd));
58 DEFINE_HOOK(ospf_if_update, (struct interface * ifp), (ifp));
59 DEFINE_HOOK(ospf_if_delete, (struct interface * ifp), (ifp));
60
61 int ospf_interface_neighbor_count(struct ospf_interface *oi)
62 {
63 int count = 0;
64 struct route_node *rn;
65 struct ospf_neighbor *nbr = NULL;
66
67 for (rn = route_top(oi->nbrs); rn; rn = route_next(rn)) {
68 nbr = rn->info;
69 if (!nbr)
70 continue;
71
72 /* Do not show myself. */
73 if (nbr == oi->nbr_self)
74 continue;
75 /* Down state is not shown. */
76 if (nbr->state == NSM_Down)
77 continue;
78 count++;
79 }
80
81 return count;
82 }
83
84 int ospf_if_get_output_cost(struct ospf_interface *oi)
85 {
86 /* If all else fails, use default OSPF cost */
87 uint32_t cost;
88 uint32_t bw, refbw;
89
90 /* if LDP-IGP Sync is running on interface set cost so interface
91 * is used only as last resort
92 */
93 if (ldp_sync_if_is_enabled(IF_DEF_PARAMS(oi->ifp)->ldp_sync_info))
94 return (LDP_OSPF_LSINFINITY);
95
96 /* ifp speed and bw can be 0 in some platforms, use ospf default bw
97 if bw is configured under interface it would be used.
98 */
99 if (!oi->ifp->bandwidth && oi->ifp->speed)
100 bw = oi->ifp->speed;
101 else
102 bw = oi->ifp->bandwidth ? oi->ifp->bandwidth
103 : OSPF_DEFAULT_BANDWIDTH;
104 refbw = oi->ospf->ref_bandwidth;
105
106 /* A specified ip ospf cost overrides a calculated one. */
107 if (OSPF_IF_PARAM_CONFIGURED(IF_DEF_PARAMS(oi->ifp), output_cost_cmd)
108 || OSPF_IF_PARAM_CONFIGURED(oi->params, output_cost_cmd))
109 cost = OSPF_IF_PARAM(oi, output_cost_cmd);
110 /* See if a cost can be calculated from the zebra processes
111 interface bandwidth field. */
112 else {
113 cost = (uint32_t)((double)refbw / (double)bw + (double)0.5);
114 if (cost < 1)
115 cost = 1;
116 else if (cost > 65535)
117 cost = 65535;
118 }
119
120 return cost;
121 }
122
123 void ospf_if_recalculate_output_cost(struct interface *ifp)
124 {
125 uint32_t newcost;
126 struct route_node *rn;
127
128 for (rn = route_top(IF_OIFS(ifp)); rn; rn = route_next(rn)) {
129 struct ospf_interface *oi;
130
131 if ((oi = rn->info) == NULL)
132 continue;
133
134 newcost = ospf_if_get_output_cost(oi);
135
136 /* Is actual output cost changed? */
137 if (oi->output_cost != newcost) {
138 oi->output_cost = newcost;
139 ospf_router_lsa_update_area(oi->area);
140 }
141 }
142 }
143
144 /* Simulate down/up on the interface. This is needed, for example, when
145 the MTU changes. */
146 void ospf_if_reset(struct interface *ifp)
147 {
148 struct route_node *rn;
149
150 for (rn = route_top(IF_OIFS(ifp)); rn; rn = route_next(rn)) {
151 struct ospf_interface *oi;
152
153 if ((oi = rn->info) == NULL)
154 continue;
155
156 ospf_if_down(oi);
157 ospf_if_up(oi);
158 }
159 }
160
161 void ospf_if_reset_variables(struct ospf_interface *oi)
162 {
163 /* Set default values. */
164 /* don't clear this flag. oi->flag = OSPF_IF_DISABLE; */
165
166 if (oi->vl_data)
167 oi->type = OSPF_IFTYPE_VIRTUALLINK;
168 else
169 /* preserve network-type */
170 if (oi->type != OSPF_IFTYPE_NBMA)
171 oi->type = OSPF_IFTYPE_BROADCAST;
172
173 oi->state = ISM_Down;
174
175 oi->crypt_seqnum = 0;
176
177 /* This must be short, (less than RxmtInterval)
178 - RFC 2328 Section 13.5 para 3. Set to 1 second to avoid Acks being
179 held back for too long - MAG */
180 oi->v_ls_ack = 1;
181 }
182
183 /* lookup oi for specified prefix/ifp */
184 struct ospf_interface *ospf_if_table_lookup(struct interface *ifp,
185 struct prefix *prefix)
186 {
187 struct prefix p;
188 struct route_node *rn;
189 struct ospf_interface *rninfo = NULL;
190
191 p = *prefix;
192 p.prefixlen = IPV4_MAX_BITLEN;
193
194 /* route_node_get implicitely locks */
195 if ((rn = route_node_lookup(IF_OIFS(ifp), &p))) {
196 rninfo = (struct ospf_interface *)rn->info;
197 route_unlock_node(rn);
198 }
199
200 return rninfo;
201 }
202
203 static void ospf_add_to_if(struct interface *ifp, struct ospf_interface *oi)
204 {
205 struct route_node *rn;
206 struct prefix p;
207
208 p = *oi->address;
209 p.prefixlen = IPV4_MAX_BITLEN;
210 apply_mask(&p);
211
212 rn = route_node_get(IF_OIFS(ifp), &p);
213 /* rn->info should either be NULL or equal to this oi
214 * as route_node_get may return an existing node
215 */
216 assert(!rn->info || rn->info == oi);
217 rn->info = oi;
218 }
219
220 static void ospf_delete_from_if(struct interface *ifp,
221 struct ospf_interface *oi)
222 {
223 struct route_node *rn;
224 struct prefix p;
225
226 p = *oi->address;
227 p.prefixlen = IPV4_MAX_BITLEN;
228
229 rn = route_node_lookup(IF_OIFS(oi->ifp), &p);
230 assert(rn);
231 assert(rn->info);
232 rn->info = NULL;
233 route_unlock_node(rn);
234 route_unlock_node(rn);
235 }
236
237 struct ospf_interface *ospf_if_new(struct ospf *ospf, struct interface *ifp,
238 struct prefix *p)
239 {
240 struct ospf_interface *oi;
241
242 oi = ospf_if_table_lookup(ifp, p);
243 if (oi)
244 return oi;
245
246 oi = XCALLOC(MTYPE_OSPF_IF, sizeof(struct ospf_interface));
247
248 oi->obuf = ospf_fifo_new();
249
250 /* Set zebra interface pointer. */
251 oi->ifp = ifp;
252 oi->address = p;
253
254 ospf_add_to_if(ifp, oi);
255 listnode_add(ospf->oiflist, oi);
256
257 /* Initialize neighbor list. */
258 oi->nbrs = route_table_init();
259
260 /* Initialize static neighbor list. */
261 oi->nbr_nbma = list_new();
262
263 /* Initialize Link State Acknowledgment list. */
264 oi->ls_ack = list_new();
265 oi->ls_ack_direct.ls_ack = list_new();
266
267 /* Set default values. */
268 ospf_if_reset_variables(oi);
269
270 /* Set pseudo neighbor to Null */
271 oi->nbr_self = NULL;
272
273 oi->ls_upd_queue = route_table_init();
274 oi->t_ls_upd_event = NULL;
275 oi->t_ls_ack_direct = NULL;
276
277 oi->crypt_seqnum = time(NULL);
278
279 ospf_opaque_type9_lsa_init(oi);
280
281 oi->ospf = ospf;
282
283 QOBJ_REG(oi, ospf_interface);
284
285 if (IS_DEBUG_OSPF_EVENT)
286 zlog_debug("%s: ospf interface %s vrf %s id %u created",
287 __func__, ifp->name, ospf_get_name(ospf),
288 ospf->vrf_id);
289
290 return oi;
291 }
292
293 /* Restore an interface to its pre UP state
294 Used from ism_interface_down only */
295 void ospf_if_cleanup(struct ospf_interface *oi)
296 {
297 struct route_node *rn;
298 struct listnode *node, *nnode;
299 struct ospf_neighbor *nbr;
300 struct ospf_nbr_nbma *nbr_nbma;
301 struct ospf_lsa *lsa;
302
303 /* oi->nbrs and oi->nbr_nbma should be deleted on InterfaceDown event */
304 /* delete all static neighbors attached to this interface */
305 for (ALL_LIST_ELEMENTS(oi->nbr_nbma, node, nnode, nbr_nbma)) {
306 THREAD_OFF(nbr_nbma->t_poll);
307
308 if (nbr_nbma->nbr) {
309 nbr_nbma->nbr->nbr_nbma = NULL;
310 nbr_nbma->nbr = NULL;
311 }
312
313 nbr_nbma->oi = NULL;
314
315 listnode_delete(oi->nbr_nbma, nbr_nbma);
316 }
317
318 /* send Neighbor event KillNbr to all associated neighbors. */
319 for (rn = route_top(oi->nbrs); rn; rn = route_next(rn)) {
320 if ((nbr = rn->info) != NULL)
321 if (nbr != oi->nbr_self)
322 OSPF_NSM_EVENT_EXECUTE(nbr, NSM_KillNbr);
323 }
324
325 /* Cleanup Link State Acknowlegdment list. */
326 for (ALL_LIST_ELEMENTS(oi->ls_ack, node, nnode, lsa))
327 ospf_lsa_unlock(&lsa); /* oi->ls_ack */
328 list_delete_all_node(oi->ls_ack);
329
330 oi->crypt_seqnum = 0;
331
332 /* Empty link state update queue */
333 ospf_ls_upd_queue_empty(oi);
334
335 /* Reset pseudo neighbor. */
336 ospf_nbr_self_reset(oi, oi->ospf->router_id);
337 }
338
339 void ospf_if_free(struct ospf_interface *oi)
340 {
341 ospf_if_down(oi);
342
343 ospf_fifo_free(oi->obuf);
344
345 assert(oi->state == ISM_Down);
346
347 ospf_opaque_type9_lsa_term(oi);
348
349 QOBJ_UNREG(oi);
350
351 /* Free Pseudo Neighbour */
352 ospf_nbr_delete(oi->nbr_self);
353
354 route_table_finish(oi->nbrs);
355 route_table_finish(oi->ls_upd_queue);
356
357 /* Free any lists that should be freed */
358 list_delete(&oi->nbr_nbma);
359
360 list_delete(&oi->ls_ack);
361 list_delete(&oi->ls_ack_direct.ls_ack);
362
363 if (IS_DEBUG_OSPF_EVENT)
364 zlog_debug("%s: ospf interface %s vrf %s id %u deleted",
365 __func__, oi->ifp->name, oi->ifp->vrf->name,
366 oi->ifp->vrf->vrf_id);
367
368 ospf_delete_from_if(oi->ifp, oi);
369
370 listnode_delete(oi->ospf->oiflist, oi);
371 listnode_delete(oi->area->oiflist, oi);
372
373 thread_cancel_event(master, oi);
374
375 memset(oi, 0, sizeof(*oi));
376 XFREE(MTYPE_OSPF_IF, oi);
377 }
378
379 int ospf_if_is_up(struct ospf_interface *oi)
380 {
381 return if_is_up(oi->ifp);
382 }
383
384 struct ospf_interface *ospf_if_exists(struct ospf_interface *oic)
385 {
386 struct listnode *node;
387 struct ospf *ospf;
388 struct ospf_interface *oi;
389
390 if (!oic)
391 return NULL;
392
393 ospf = oic->ospf;
394 if (ospf == NULL)
395 return NULL;
396
397 for (ALL_LIST_ELEMENTS_RO(ospf->oiflist, node, oi))
398 if (oi == oic)
399 return oi;
400
401 return NULL;
402 }
403
404 /* Lookup OSPF interface by router LSA posistion */
405 struct ospf_interface *ospf_if_lookup_by_lsa_pos(struct ospf_area *area,
406 int lsa_pos)
407 {
408 struct listnode *node;
409 struct ospf_interface *oi;
410
411 for (ALL_LIST_ELEMENTS_RO(area->oiflist, node, oi)) {
412 if (lsa_pos >= oi->lsa_pos_beg && lsa_pos < oi->lsa_pos_end)
413 return oi;
414 }
415 return NULL;
416 }
417
418 struct ospf_interface *ospf_if_lookup_by_local_addr(struct ospf *ospf,
419 struct interface *ifp,
420 struct in_addr address)
421 {
422 struct listnode *node;
423 struct ospf_interface *oi;
424
425 for (ALL_LIST_ELEMENTS_RO(ospf->oiflist, node, oi))
426 if (oi->type != OSPF_IFTYPE_VIRTUALLINK) {
427 if (ifp && oi->ifp != ifp)
428 continue;
429
430 if (IPV4_ADDR_SAME(&address, &oi->address->u.prefix4))
431 return oi;
432 }
433
434 return NULL;
435 }
436
437 struct ospf_interface *ospf_if_lookup_by_prefix(struct ospf *ospf,
438 struct prefix_ipv4 *p)
439 {
440 struct listnode *node;
441 struct ospf_interface *oi;
442
443 /* Check each Interface. */
444 for (ALL_LIST_ELEMENTS_RO(ospf->oiflist, node, oi)) {
445 if (oi->type != OSPF_IFTYPE_VIRTUALLINK) {
446 struct prefix ptmp;
447
448 prefix_copy(&ptmp, CONNECTED_PREFIX(oi->connected));
449 apply_mask(&ptmp);
450 if (prefix_same(&ptmp, (struct prefix *)p))
451 return oi;
452 }
453 }
454 return NULL;
455 }
456
457 /* determine receiving interface by ifp and source address */
458 struct ospf_interface *ospf_if_lookup_recv_if(struct ospf *ospf,
459 struct in_addr src,
460 struct interface *ifp)
461 {
462 struct route_node *rn;
463 struct prefix_ipv4 addr;
464 struct ospf_interface *oi, *match;
465
466 addr.family = AF_INET;
467 addr.prefix = src;
468 addr.prefixlen = IPV4_MAX_BITLEN;
469
470 match = NULL;
471
472 for (rn = route_top(IF_OIFS(ifp)); rn; rn = route_next(rn)) {
473 oi = rn->info;
474
475 if (!oi) /* oi can be NULL for PtP aliases */
476 continue;
477
478 if (oi->type == OSPF_IFTYPE_VIRTUALLINK)
479 continue;
480
481 if (if_is_loopback(oi->ifp))
482 continue;
483
484 if (CHECK_FLAG(oi->connected->flags, ZEBRA_IFA_UNNUMBERED))
485 match = oi;
486 else if (prefix_match(CONNECTED_PREFIX(oi->connected),
487 (struct prefix *)&addr)) {
488 if ((match == NULL) || (match->address->prefixlen
489 < oi->address->prefixlen))
490 match = oi;
491 }
492 }
493
494 return match;
495 }
496
497 void ospf_interface_fifo_flush(struct ospf_interface *oi)
498 {
499 struct ospf *ospf = oi->ospf;
500
501 ospf_fifo_flush(oi->obuf);
502
503 if (oi->on_write_q) {
504 listnode_delete(ospf->oi_write_q, oi);
505 if (list_isempty(ospf->oi_write_q))
506 THREAD_OFF(ospf->t_write);
507 oi->on_write_q = 0;
508 }
509 }
510
511 static void ospf_if_reset_stats(struct ospf_interface *oi)
512 {
513 oi->hello_in = oi->hello_out = 0;
514 oi->db_desc_in = oi->db_desc_out = 0;
515 oi->ls_req_in = oi->ls_req_out = 0;
516 oi->ls_upd_in = oi->ls_upd_out = 0;
517 oi->ls_ack_in = oi->ls_ack_out = 0;
518 }
519
520 void ospf_if_stream_unset(struct ospf_interface *oi)
521 {
522 /* flush the interface packet queue */
523 ospf_interface_fifo_flush(oi);
524 /*reset protocol stats */
525 ospf_if_reset_stats(oi);
526 }
527
528
529 static struct ospf_if_params *ospf_new_if_params(void)
530 {
531 struct ospf_if_params *oip;
532
533 oip = XCALLOC(MTYPE_OSPF_IF_PARAMS, sizeof(struct ospf_if_params));
534
535 UNSET_IF_PARAM(oip, output_cost_cmd);
536 UNSET_IF_PARAM(oip, transmit_delay);
537 UNSET_IF_PARAM(oip, retransmit_interval);
538 UNSET_IF_PARAM(oip, passive_interface);
539 UNSET_IF_PARAM(oip, v_hello);
540 UNSET_IF_PARAM(oip, fast_hello);
541 UNSET_IF_PARAM(oip, v_wait);
542 UNSET_IF_PARAM(oip, priority);
543 UNSET_IF_PARAM(oip, type);
544 UNSET_IF_PARAM(oip, auth_simple);
545 UNSET_IF_PARAM(oip, auth_crypt);
546 UNSET_IF_PARAM(oip, auth_type);
547 UNSET_IF_PARAM(oip, if_area);
548
549 oip->auth_crypt = list_new();
550
551 oip->network_lsa_seqnum = htonl(OSPF_INITIAL_SEQUENCE_NUMBER);
552 oip->is_v_wait_set = false;
553
554 oip->ptp_dmvpn = 0;
555
556 return oip;
557 }
558
559 static void ospf_del_if_params(struct interface *ifp,
560 struct ospf_if_params *oip)
561 {
562 list_delete(&oip->auth_crypt);
563 ospf_interface_disable_bfd(ifp, oip);
564 ldp_sync_info_free(&(oip->ldp_sync_info));
565 XFREE(MTYPE_OSPF_IF_PARAMS, oip);
566 }
567
568 void ospf_free_if_params(struct interface *ifp, struct in_addr addr)
569 {
570 struct ospf_if_params *oip;
571 struct prefix_ipv4 p;
572 struct route_node *rn;
573
574 p.family = AF_INET;
575 p.prefixlen = IPV4_MAX_BITLEN;
576 p.prefix = addr;
577 rn = route_node_lookup(IF_OIFS_PARAMS(ifp), (struct prefix *)&p);
578 if (!rn || !rn->info)
579 return;
580
581 oip = rn->info;
582 route_unlock_node(rn);
583
584 if (!OSPF_IF_PARAM_CONFIGURED(oip, output_cost_cmd)
585 && !OSPF_IF_PARAM_CONFIGURED(oip, transmit_delay)
586 && !OSPF_IF_PARAM_CONFIGURED(oip, retransmit_interval)
587 && !OSPF_IF_PARAM_CONFIGURED(oip, passive_interface)
588 && !OSPF_IF_PARAM_CONFIGURED(oip, v_hello)
589 && !OSPF_IF_PARAM_CONFIGURED(oip, fast_hello)
590 && !OSPF_IF_PARAM_CONFIGURED(oip, v_wait)
591 && !OSPF_IF_PARAM_CONFIGURED(oip, priority)
592 && !OSPF_IF_PARAM_CONFIGURED(oip, type)
593 && !OSPF_IF_PARAM_CONFIGURED(oip, auth_simple)
594 && !OSPF_IF_PARAM_CONFIGURED(oip, auth_type)
595 && !OSPF_IF_PARAM_CONFIGURED(oip, if_area)
596 && listcount(oip->auth_crypt) == 0) {
597 ospf_del_if_params(ifp, oip);
598 rn->info = NULL;
599 route_unlock_node(rn);
600 }
601 }
602
603 struct ospf_if_params *ospf_lookup_if_params(struct interface *ifp,
604 struct in_addr addr)
605 {
606 struct prefix_ipv4 p;
607 struct route_node *rn;
608
609 p.family = AF_INET;
610 p.prefixlen = IPV4_MAX_BITLEN;
611 p.prefix = addr;
612
613 rn = route_node_lookup(IF_OIFS_PARAMS(ifp), (struct prefix *)&p);
614
615 if (rn) {
616 route_unlock_node(rn);
617 return rn->info;
618 }
619
620 return NULL;
621 }
622
623 struct ospf_if_params *ospf_get_if_params(struct interface *ifp,
624 struct in_addr addr)
625 {
626 struct prefix_ipv4 p;
627 struct route_node *rn;
628
629 p.family = AF_INET;
630 p.prefixlen = IPV4_MAX_BITLEN;
631 p.prefix = addr;
632 apply_mask_ipv4(&p);
633
634 rn = route_node_get(IF_OIFS_PARAMS(ifp), (struct prefix *)&p);
635
636 if (rn->info == NULL)
637 rn->info = ospf_new_if_params();
638 else
639 route_unlock_node(rn);
640
641 return rn->info;
642 }
643
644 void ospf_if_update_params(struct interface *ifp, struct in_addr addr)
645 {
646 struct route_node *rn;
647 struct ospf_interface *oi;
648
649 for (rn = route_top(IF_OIFS(ifp)); rn; rn = route_next(rn)) {
650 if ((oi = rn->info) == NULL)
651 continue;
652
653 if (IPV4_ADDR_SAME(&oi->address->u.prefix4, &addr))
654 oi->params = ospf_lookup_if_params(
655 ifp, oi->address->u.prefix4);
656 }
657 }
658
659 int ospf_if_new_hook(struct interface *ifp)
660 {
661 int rc = 0;
662
663 ifp->info = XCALLOC(MTYPE_OSPF_IF_INFO, sizeof(struct ospf_if_info));
664
665 IF_OIFS(ifp) = route_table_init();
666 IF_OIFS_PARAMS(ifp) = route_table_init();
667
668 IF_DEF_PARAMS(ifp) = ospf_new_if_params();
669
670 SET_IF_PARAM(IF_DEF_PARAMS(ifp), transmit_delay);
671 IF_DEF_PARAMS(ifp)->transmit_delay = OSPF_TRANSMIT_DELAY_DEFAULT;
672
673 SET_IF_PARAM(IF_DEF_PARAMS(ifp), retransmit_interval);
674 IF_DEF_PARAMS(ifp)->retransmit_interval =
675 OSPF_RETRANSMIT_INTERVAL_DEFAULT;
676
677 SET_IF_PARAM(IF_DEF_PARAMS(ifp), priority);
678 IF_DEF_PARAMS(ifp)->priority = OSPF_ROUTER_PRIORITY_DEFAULT;
679
680 IF_DEF_PARAMS(ifp)->mtu_ignore = OSPF_MTU_IGNORE_DEFAULT;
681
682 SET_IF_PARAM(IF_DEF_PARAMS(ifp), v_hello);
683 IF_DEF_PARAMS(ifp)->v_hello = OSPF_HELLO_INTERVAL_DEFAULT;
684
685 SET_IF_PARAM(IF_DEF_PARAMS(ifp), fast_hello);
686 IF_DEF_PARAMS(ifp)->fast_hello = OSPF_FAST_HELLO_DEFAULT;
687
688 SET_IF_PARAM(IF_DEF_PARAMS(ifp), v_wait);
689 IF_DEF_PARAMS(ifp)->v_wait = OSPF_ROUTER_DEAD_INTERVAL_DEFAULT;
690
691 SET_IF_PARAM(IF_DEF_PARAMS(ifp), auth_simple);
692 memset(IF_DEF_PARAMS(ifp)->auth_simple, 0, OSPF_AUTH_SIMPLE_SIZE);
693
694 SET_IF_PARAM(IF_DEF_PARAMS(ifp), auth_type);
695 IF_DEF_PARAMS(ifp)->auth_type = OSPF_AUTH_NOTSET;
696
697 rc = ospf_opaque_new_if(ifp);
698 return rc;
699 }
700
701 static int ospf_if_delete_hook(struct interface *ifp)
702 {
703 int rc = 0;
704 struct route_node *rn;
705 rc = ospf_opaque_del_if(ifp);
706
707 /*
708 * This function must be called before `route_table_finish` due to
709 * BFD integration need to iterate over the interface neighbors to
710 * remove all registrations.
711 */
712 ospf_del_if_params(ifp, IF_DEF_PARAMS(ifp));
713
714 for (rn = route_top(IF_OIFS_PARAMS(ifp)); rn; rn = route_next(rn))
715 if (rn->info)
716 ospf_del_if_params(ifp, rn->info);
717
718 route_table_finish(IF_OIFS(ifp));
719 route_table_finish(IF_OIFS_PARAMS(ifp));
720
721 XFREE(MTYPE_OSPF_IF_INFO, ifp->info);
722
723 return rc;
724 }
725
726 int ospf_if_is_enable(struct ospf_interface *oi)
727 {
728 if (!(if_is_loopback(oi->ifp)))
729 if (if_is_up(oi->ifp))
730 return 1;
731
732 return 0;
733 }
734
735 void ospf_if_set_multicast(struct ospf_interface *oi)
736 {
737 if ((oi->state > ISM_Loopback) && (oi->type != OSPF_IFTYPE_LOOPBACK)
738 && (oi->type != OSPF_IFTYPE_VIRTUALLINK)
739 && (OSPF_IF_PASSIVE_STATUS(oi) == OSPF_IF_ACTIVE)) {
740 /* The interface should belong to the OSPF-all-routers group. */
741 if (!OI_MEMBER_CHECK(oi, MEMBER_ALLROUTERS)
742 && (ospf_if_add_allspfrouters(oi->ospf, oi->address,
743 oi->ifp->ifindex)
744 >= 0))
745 /* Set the flag only if the system call to join
746 * succeeded. */
747 OI_MEMBER_JOINED(oi, MEMBER_ALLROUTERS);
748 } else {
749 /* The interface should NOT belong to the OSPF-all-routers
750 * group. */
751 if (OI_MEMBER_CHECK(oi, MEMBER_ALLROUTERS)) {
752 /* Only actually drop if this is the last reference */
753 if (OI_MEMBER_COUNT(oi, MEMBER_ALLROUTERS) == 1)
754 ospf_if_drop_allspfrouters(oi->ospf,
755 oi->address,
756 oi->ifp->ifindex);
757 /* Unset the flag regardless of whether the system call
758 to leave
759 the group succeeded, since it's much safer to assume
760 that
761 we are not a member. */
762 OI_MEMBER_LEFT(oi, MEMBER_ALLROUTERS);
763 }
764 }
765
766 if (((oi->type == OSPF_IFTYPE_BROADCAST)
767 || (oi->type == OSPF_IFTYPE_POINTOPOINT))
768 && ((oi->state == ISM_DR) || (oi->state == ISM_Backup))
769 && (OSPF_IF_PASSIVE_STATUS(oi) == OSPF_IF_ACTIVE)) {
770 /* The interface should belong to the OSPF-designated-routers
771 * group. */
772 if (!OI_MEMBER_CHECK(oi, MEMBER_DROUTERS)
773 && (ospf_if_add_alldrouters(oi->ospf, oi->address,
774 oi->ifp->ifindex)
775 >= 0))
776 /* Set the flag only if the system call to join
777 * succeeded. */
778 OI_MEMBER_JOINED(oi, MEMBER_DROUTERS);
779 } else {
780 /* The interface should NOT belong to the
781 * OSPF-designated-routers group */
782 if (OI_MEMBER_CHECK(oi, MEMBER_DROUTERS)) {
783 /* drop only if last reference */
784 if (OI_MEMBER_COUNT(oi, MEMBER_DROUTERS) == 1)
785 ospf_if_drop_alldrouters(oi->ospf, oi->address,
786 oi->ifp->ifindex);
787
788 /* Unset the flag regardless of whether the system call
789 to leave
790 the group succeeded, since it's much safer to assume
791 that
792 we are not a member. */
793 OI_MEMBER_LEFT(oi, MEMBER_DROUTERS);
794 }
795 }
796 }
797
798 int ospf_if_up(struct ospf_interface *oi)
799 {
800 if (oi == NULL)
801 return 0;
802
803 if (oi->type == OSPF_IFTYPE_LOOPBACK)
804 OSPF_ISM_EVENT_SCHEDULE(oi, ISM_LoopInd);
805 else {
806 OSPF_ISM_EVENT_SCHEDULE(oi, ISM_InterfaceUp);
807 }
808
809 return 1;
810 }
811
812 int ospf_if_down(struct ospf_interface *oi)
813 {
814 struct ospf *ospf;
815 struct route_node *rn;
816 struct ospf_route *or;
817 struct listnode *nh;
818 struct ospf_path *op;
819
820 if (oi == NULL)
821 return 0;
822
823 ospf = oi->ospf;
824
825 /* Cease the HELPER role for all the neighbours
826 * of this interface.
827 */
828 if (ospf->is_helper_supported) {
829 struct route_node *rn = NULL;
830
831 if (ospf_interface_neighbor_count(oi)) {
832 for (rn = route_top(oi->nbrs); rn;
833 rn = route_next(rn)) {
834 struct ospf_neighbor *nbr = NULL;
835
836 if (!rn->info)
837 continue;
838
839 nbr = rn->info;
840
841 if (OSPF_GR_IS_ACTIVE_HELPER(nbr))
842 ospf_gr_helper_exit(
843 nbr, OSPF_GR_HELPER_TOPO_CHG);
844 }
845 }
846 }
847
848 OSPF_ISM_EVENT_EXECUTE(oi, ISM_InterfaceDown);
849 /* delete position in router LSA */
850 oi->lsa_pos_beg = 0;
851 oi->lsa_pos_end = 0;
852 /* Shutdown packet reception and sending */
853 ospf_if_stream_unset(oi);
854
855 if (!ospf->new_table)
856 return 1;
857 for (rn = route_top(ospf->new_table); rn; rn = route_next(rn)) {
858 or = rn->info;
859
860 if (!or)
861 continue;
862
863 for (nh = listhead(or->paths); nh;
864 nh = listnextnode_unchecked(nh)) {
865 op = listgetdata(nh);
866 if (op->ifindex == oi->ifp->ifindex) {
867 or->changed = true;
868 break;
869 }
870 }
871 }
872
873 return 1;
874 }
875
876
877 /* Virtual Link related functions. */
878
879 struct ospf_vl_data *ospf_vl_data_new(struct ospf_area *area,
880 struct in_addr vl_peer)
881 {
882 struct ospf_vl_data *vl_data;
883
884 vl_data = XCALLOC(MTYPE_OSPF_VL_DATA, sizeof(struct ospf_vl_data));
885
886 vl_data->vl_peer.s_addr = vl_peer.s_addr;
887 vl_data->vl_area_id = area->area_id;
888 vl_data->vl_area_id_fmt = area->area_id_fmt;
889
890 return vl_data;
891 }
892
893 void ospf_vl_data_free(struct ospf_vl_data *vl_data)
894 {
895 XFREE(MTYPE_OSPF_VL_DATA, vl_data);
896 }
897
898 unsigned int vlink_count = 0;
899
900 struct ospf_interface *ospf_vl_new(struct ospf *ospf,
901 struct ospf_vl_data *vl_data)
902 {
903 struct ospf_interface *voi;
904 struct interface *vi;
905 char ifname[INTERFACE_NAMSIZ];
906 struct ospf_area *area;
907 struct in_addr area_id;
908 struct connected *co;
909 struct prefix_ipv4 *p;
910
911 if (IS_DEBUG_OSPF_EVENT)
912 zlog_debug("ospf_vl_new()(%s): Start", ospf_get_name(ospf));
913 if (vlink_count == OSPF_VL_MAX_COUNT) {
914 if (IS_DEBUG_OSPF_EVENT)
915 zlog_debug(
916 "ospf_vl_new(): Alarm: cannot create more than OSPF_MAX_VL_COUNT virtual links");
917 return NULL;
918 }
919
920 if (IS_DEBUG_OSPF_EVENT)
921 zlog_debug(
922 "ospf_vl_new(): creating pseudo zebra interface vrf id %u",
923 ospf->vrf_id);
924
925 snprintf(ifname, sizeof(ifname), "VLINK%u", vlink_count);
926 vi = if_get_by_name(ifname, ospf->vrf_id, ospf->name);
927 /*
928 * if_get_by_name sets ZEBRA_INTERFACE_LINKDETECTION
929 * virtual links don't need this.
930 */
931 UNSET_FLAG(vi->status, ZEBRA_INTERFACE_LINKDETECTION);
932 co = connected_new();
933 co->ifp = vi;
934 listnode_add(vi->connected, co);
935
936 p = prefix_ipv4_new();
937 p->family = AF_INET;
938 p->prefix.s_addr = INADDR_ANY;
939 p->prefixlen = 0;
940
941 co->address = (struct prefix *)p;
942
943 voi = ospf_if_new(ospf, vi, co->address);
944 if (voi == NULL) {
945 if (IS_DEBUG_OSPF_EVENT)
946 zlog_debug(
947 "ospf_vl_new(): Alarm: OSPF int structure is not created");
948 return NULL;
949 }
950 voi->connected = co;
951 voi->vl_data = vl_data;
952 voi->ifp->mtu = OSPF_VL_MTU;
953 voi->type = OSPF_IFTYPE_VIRTUALLINK;
954
955 vlink_count++;
956 if (IS_DEBUG_OSPF_EVENT)
957 zlog_debug("ospf_vl_new(): Created name: %s", ifname);
958 if (IS_DEBUG_OSPF_EVENT)
959 zlog_debug("ospf_vl_new(): set if->name to %s", vi->name);
960
961 area_id.s_addr = INADDR_ANY;
962 area = ospf_area_get(ospf, area_id);
963 voi->area = area;
964
965 if (IS_DEBUG_OSPF_EVENT)
966 zlog_debug(
967 "ospf_vl_new(): set associated area to the backbone");
968
969 /* Add pseudo neighbor. */
970 ospf_nbr_self_reset(voi, voi->ospf->router_id);
971
972 ospf_area_add_if(voi->area, voi);
973
974 if (IS_DEBUG_OSPF_EVENT)
975 zlog_debug("ospf_vl_new(): Stop");
976 return voi;
977 }
978
979 static void ospf_vl_if_delete(struct ospf_vl_data *vl_data)
980 {
981 struct interface *ifp = vl_data->vl_oi->ifp;
982 struct vrf *vrf = ifp->vrf;
983
984 vl_data->vl_oi->address->u.prefix4.s_addr = INADDR_ANY;
985 vl_data->vl_oi->address->prefixlen = 0;
986 ospf_if_free(vl_data->vl_oi);
987 if_delete(&ifp);
988 if (!vrf_is_enabled(vrf))
989 vrf_delete(vrf);
990 vlink_count--;
991 }
992
993 /* for a defined area, count the number of configured vl
994 */
995 int ospf_vl_count(struct ospf *ospf, struct ospf_area *area)
996 {
997 int count = 0;
998 struct ospf_vl_data *vl_data;
999 struct listnode *node;
1000
1001 for (ALL_LIST_ELEMENTS_RO(ospf->vlinks, node, vl_data)) {
1002 if (area
1003 && !IPV4_ADDR_SAME(&vl_data->vl_area_id, &area->area_id))
1004 continue;
1005 count++;
1006 }
1007 return count;
1008 }
1009
1010 /* Look up vl_data for given peer, optionally qualified to be in the
1011 * specified area. NULL area returns first found..
1012 */
1013 struct ospf_vl_data *ospf_vl_lookup(struct ospf *ospf, struct ospf_area *area,
1014 struct in_addr vl_peer)
1015 {
1016 struct ospf_vl_data *vl_data;
1017 struct listnode *node;
1018
1019 if (IS_DEBUG_OSPF_EVENT) {
1020 zlog_debug("%s: Looking for %pI4", __func__, &vl_peer);
1021 if (area)
1022 zlog_debug("%s: in area %pI4", __func__,
1023 &area->area_id);
1024 }
1025
1026 for (ALL_LIST_ELEMENTS_RO(ospf->vlinks, node, vl_data)) {
1027 if (IS_DEBUG_OSPF_EVENT)
1028 zlog_debug("%s: VL %s, peer %pI4", __func__,
1029 vl_data->vl_oi->ifp->name,
1030 &vl_data->vl_peer);
1031
1032 if (area
1033 && !IPV4_ADDR_SAME(&vl_data->vl_area_id, &area->area_id))
1034 continue;
1035
1036 if (IPV4_ADDR_SAME(&vl_data->vl_peer, &vl_peer))
1037 return vl_data;
1038 }
1039
1040 return NULL;
1041 }
1042
1043 static void ospf_vl_shutdown(struct ospf_vl_data *vl_data)
1044 {
1045 struct ospf_interface *oi;
1046
1047 if ((oi = vl_data->vl_oi) == NULL)
1048 return;
1049
1050 oi->address->u.prefix4.s_addr = INADDR_ANY;
1051 oi->address->prefixlen = 0;
1052
1053 UNSET_FLAG(oi->ifp->flags, IFF_UP);
1054 /* OSPF_ISM_EVENT_SCHEDULE (oi, ISM_InterfaceDown); */
1055 OSPF_ISM_EVENT_EXECUTE(oi, ISM_InterfaceDown);
1056 }
1057
1058 void ospf_vl_add(struct ospf *ospf, struct ospf_vl_data *vl_data)
1059 {
1060 listnode_add(ospf->vlinks, vl_data);
1061 hook_call(ospf_vl_add, vl_data);
1062 }
1063
1064 void ospf_vl_delete(struct ospf *ospf, struct ospf_vl_data *vl_data)
1065 {
1066 ospf_vl_shutdown(vl_data);
1067 ospf_vl_if_delete(vl_data);
1068
1069 hook_call(ospf_vl_delete, vl_data);
1070 listnode_delete(ospf->vlinks, vl_data);
1071
1072 ospf_vl_data_free(vl_data);
1073 }
1074
1075 static int ospf_vl_set_params(struct ospf_area *area,
1076 struct ospf_vl_data *vl_data, struct vertex *v)
1077 {
1078 int changed = 0;
1079 struct ospf_interface *voi;
1080 struct listnode *node;
1081 struct vertex_parent *vp = NULL;
1082 unsigned int i;
1083 struct router_lsa *rl;
1084 struct ospf_interface *oi;
1085
1086 voi = vl_data->vl_oi;
1087
1088 if (voi->output_cost != v->distance) {
1089
1090 voi->output_cost = v->distance;
1091 changed = 1;
1092 }
1093
1094 for (ALL_LIST_ELEMENTS_RO(v->parents, node, vp)) {
1095 vl_data->nexthop.lsa_pos = vp->nexthop->lsa_pos;
1096 vl_data->nexthop.router = vp->nexthop->router;
1097
1098 /*
1099 * Only deal with interface data when the local
1100 * (calculating) node is the SPF root node
1101 */
1102 if (!area->spf_dry_run) {
1103 oi = ospf_if_lookup_by_lsa_pos(
1104 area, vl_data->nexthop.lsa_pos);
1105
1106 if (!IPV4_ADDR_SAME(&voi->address->u.prefix4,
1107 &oi->address->u.prefix4))
1108 changed = 1;
1109
1110 voi->address->u.prefix4 = oi->address->u.prefix4;
1111 voi->address->prefixlen = oi->address->prefixlen;
1112 }
1113
1114 break; /* We take the first interface. */
1115 }
1116
1117 rl = (struct router_lsa *)v->lsa;
1118
1119 /* use SPF determined backlink index in struct vertex
1120 * for virtual link destination address
1121 */
1122 if (vp && vp->backlink >= 0) {
1123 if (!IPV4_ADDR_SAME(&vl_data->peer_addr,
1124 &rl->link[vp->backlink].link_data))
1125 changed = 1;
1126 vl_data->peer_addr = rl->link[vp->backlink].link_data;
1127 } else {
1128 /* This is highly odd, there is no backlink index
1129 * there should be due to the ospf_spf_has_link() check
1130 * in SPF. Lets warn and try pick a link anyway.
1131 */
1132 zlog_info("ospf_vl_set_params: No backlink for %s!",
1133 vl_data->vl_oi->ifp->name);
1134 for (i = 0; i < ntohs(rl->links); i++) {
1135 switch (rl->link[i].type) {
1136 case LSA_LINK_TYPE_VIRTUALLINK:
1137 if (IS_DEBUG_OSPF_EVENT)
1138 zlog_debug(
1139 "found back link through VL");
1140 /* fallthru */
1141 case LSA_LINK_TYPE_TRANSIT:
1142 case LSA_LINK_TYPE_POINTOPOINT:
1143 if (!IPV4_ADDR_SAME(&vl_data->peer_addr,
1144 &rl->link[i].link_data))
1145 changed = 1;
1146 vl_data->peer_addr = rl->link[i].link_data;
1147 }
1148 }
1149 }
1150
1151 if (IS_DEBUG_OSPF_EVENT)
1152 zlog_debug("%s: %s peer address: %pI4, cost: %d,%schanged",
1153 __func__, vl_data->vl_oi->ifp->name,
1154 &vl_data->peer_addr, voi->output_cost,
1155 (changed ? " " : " un"));
1156
1157 return changed;
1158 }
1159
1160
1161 void ospf_vl_up_check(struct ospf_area *area, struct in_addr rid,
1162 struct vertex *v)
1163 {
1164 struct ospf *ospf = area->ospf;
1165 struct listnode *node;
1166 struct ospf_vl_data *vl_data;
1167 struct ospf_interface *oi;
1168
1169 if (IS_DEBUG_OSPF_EVENT) {
1170 zlog_debug("ospf_vl_up_check(): Start");
1171 zlog_debug("ospf_vl_up_check(): Router ID is %pI4",
1172 &rid);
1173 zlog_debug("ospf_vl_up_check(): Area is %pI4",
1174 &area->area_id);
1175 }
1176
1177 for (ALL_LIST_ELEMENTS_RO(ospf->vlinks, node, vl_data)) {
1178 if (IS_DEBUG_OSPF_EVENT) {
1179 zlog_debug("%s: considering VL, %s in area %pI4",
1180 __func__, vl_data->vl_oi->ifp->name,
1181 &vl_data->vl_area_id);
1182 zlog_debug("%s: peer ID: %pI4", __func__,
1183 &vl_data->vl_peer);
1184 }
1185
1186 if (IPV4_ADDR_SAME(&vl_data->vl_peer, &rid)
1187 && IPV4_ADDR_SAME(&vl_data->vl_area_id, &area->area_id)) {
1188 oi = vl_data->vl_oi;
1189 SET_FLAG(vl_data->flags, OSPF_VL_FLAG_APPROVED);
1190
1191 if (IS_DEBUG_OSPF_EVENT)
1192 zlog_debug(
1193 "ospf_vl_up_check(): this VL matched");
1194
1195 if (oi->state == ISM_Down) {
1196 if (IS_DEBUG_OSPF_EVENT)
1197 zlog_debug(
1198 "ospf_vl_up_check(): VL is down, waking it up");
1199 SET_FLAG(oi->ifp->flags, IFF_UP);
1200 OSPF_ISM_EVENT_EXECUTE(oi, ISM_InterfaceUp);
1201 }
1202
1203 if (ospf_vl_set_params(area, vl_data, v)) {
1204 if (IS_DEBUG_OSPF(ism, ISM_EVENTS))
1205 zlog_debug(
1206 "ospf_vl_up_check: VL cost change, scheduling router lsa refresh");
1207 if (ospf->backbone)
1208 ospf_router_lsa_update_area(
1209 ospf->backbone);
1210 else if (IS_DEBUG_OSPF(ism, ISM_EVENTS))
1211 zlog_debug(
1212 "ospf_vl_up_check: VL cost change, no backbone!");
1213 }
1214 }
1215 }
1216 }
1217
1218 void ospf_vl_unapprove(struct ospf *ospf)
1219 {
1220 struct listnode *node;
1221 struct ospf_vl_data *vl_data;
1222
1223 for (ALL_LIST_ELEMENTS_RO(ospf->vlinks, node, vl_data))
1224 UNSET_FLAG(vl_data->flags, OSPF_VL_FLAG_APPROVED);
1225 }
1226
1227 void ospf_vl_shut_unapproved(struct ospf *ospf)
1228 {
1229 struct listnode *node, *nnode;
1230 struct ospf_vl_data *vl_data;
1231
1232 for (ALL_LIST_ELEMENTS(ospf->vlinks, node, nnode, vl_data))
1233 if (!CHECK_FLAG(vl_data->flags, OSPF_VL_FLAG_APPROVED))
1234 ospf_vl_shutdown(vl_data);
1235 }
1236
1237 int ospf_full_virtual_nbrs(struct ospf_area *area)
1238 {
1239 if (IS_DEBUG_OSPF_EVENT) {
1240 zlog_debug(
1241 "counting fully adjacent virtual neighbors in area %pI4",
1242 &area->area_id);
1243 zlog_debug("there are %d of them", area->full_vls);
1244 }
1245
1246 return area->full_vls;
1247 }
1248
1249 int ospf_vls_in_area(struct ospf_area *area)
1250 {
1251 struct listnode *node;
1252 struct ospf_vl_data *vl_data;
1253 int c = 0;
1254
1255 for (ALL_LIST_ELEMENTS_RO(area->ospf->vlinks, node, vl_data))
1256 if (IPV4_ADDR_SAME(&vl_data->vl_area_id, &area->area_id))
1257 c++;
1258
1259 return c;
1260 }
1261
1262
1263 struct crypt_key *ospf_crypt_key_new(void)
1264 {
1265 return XCALLOC(MTYPE_OSPF_CRYPT_KEY, sizeof(struct crypt_key));
1266 }
1267
1268 void ospf_crypt_key_add(struct list *crypt, struct crypt_key *ck)
1269 {
1270 listnode_add(crypt, ck);
1271 }
1272
1273 struct crypt_key *ospf_crypt_key_lookup(struct list *auth_crypt, uint8_t key_id)
1274 {
1275 struct listnode *node;
1276 struct crypt_key *ck;
1277
1278 for (ALL_LIST_ELEMENTS_RO(auth_crypt, node, ck))
1279 if (ck->key_id == key_id)
1280 return ck;
1281
1282 return NULL;
1283 }
1284
1285 int ospf_crypt_key_delete(struct list *auth_crypt, uint8_t key_id)
1286 {
1287 struct listnode *node, *nnode;
1288 struct crypt_key *ck;
1289
1290 for (ALL_LIST_ELEMENTS(auth_crypt, node, nnode, ck)) {
1291 if (ck->key_id == key_id) {
1292 listnode_delete(auth_crypt, ck);
1293 XFREE(MTYPE_OSPF_CRYPT_KEY, ck);
1294 return 1;
1295 }
1296 }
1297
1298 return 0;
1299 }
1300
1301 uint8_t ospf_default_iftype(struct interface *ifp)
1302 {
1303 if (if_is_pointopoint(ifp))
1304 return OSPF_IFTYPE_POINTOPOINT;
1305 else if (if_is_loopback(ifp))
1306 return OSPF_IFTYPE_LOOPBACK;
1307 else
1308 return OSPF_IFTYPE_BROADCAST;
1309 }
1310
1311 void ospf_if_interface(struct interface *ifp)
1312 {
1313 hook_call(ospf_if_update, ifp);
1314 }
1315
1316 uint32_t ospf_if_count_area_params(struct interface *ifp)
1317 {
1318 struct ospf_if_params *params;
1319 struct route_node *rn;
1320 uint32_t count = 0;
1321
1322 params = IF_DEF_PARAMS(ifp);
1323 if (OSPF_IF_PARAM_CONFIGURED(params, if_area))
1324 count++;
1325
1326 for (rn = route_top(IF_OIFS_PARAMS(ifp)); rn; rn = route_next(rn))
1327 if ((params = rn->info)
1328 && OSPF_IF_PARAM_CONFIGURED(params, if_area))
1329 count++;
1330
1331 return count;
1332 }
1333
1334 static int ospf_ifp_create(struct interface *ifp)
1335 {
1336 struct ospf *ospf = NULL;
1337 struct ospf_if_info *oii;
1338
1339 if (IS_DEBUG_OSPF(zebra, ZEBRA_INTERFACE))
1340 zlog_debug(
1341 "Zebra: interface add %s vrf %s[%u] index %d flags %llx metric %d mtu %d speed %u",
1342 ifp->name, ifp->vrf->name, ifp->vrf->vrf_id,
1343 ifp->ifindex, (unsigned long long)ifp->flags,
1344 ifp->metric, ifp->mtu, ifp->speed);
1345
1346 assert(ifp->info);
1347
1348 oii = ifp->info;
1349 oii->curr_mtu = ifp->mtu;
1350
1351 if (IF_DEF_PARAMS(ifp)
1352 && !OSPF_IF_PARAM_CONFIGURED(IF_DEF_PARAMS(ifp), type)) {
1353 SET_IF_PARAM(IF_DEF_PARAMS(ifp), type);
1354 IF_DEF_PARAMS(ifp)->type = ospf_default_iftype(ifp);
1355 }
1356
1357 ospf = ifp->vrf->info;
1358 if (!ospf)
1359 return 0;
1360
1361 if (ospf_if_count_area_params(ifp) > 0)
1362 ospf_interface_area_set(ospf, ifp);
1363
1364 ospf_if_recalculate_output_cost(ifp);
1365
1366 ospf_if_update(ospf, ifp);
1367
1368 if (HAS_LINK_PARAMS(ifp))
1369 ospf_mpls_te_update_if(ifp);
1370
1371 hook_call(ospf_if_update, ifp);
1372
1373 return 0;
1374 }
1375
1376 static int ospf_ifp_up(struct interface *ifp)
1377 {
1378 struct ospf_interface *oi;
1379 struct route_node *rn;
1380 struct ospf_if_info *oii = ifp->info;
1381
1382 ospf_if_recalculate_output_cost(ifp);
1383
1384 if (oii && oii->curr_mtu != ifp->mtu) {
1385 if (IS_DEBUG_OSPF(zebra, ZEBRA_INTERFACE))
1386 zlog_debug(
1387 "Zebra: Interface[%s] MTU change %u -> %u.",
1388 ifp->name, oii->curr_mtu, ifp->mtu);
1389
1390 oii->curr_mtu = ifp->mtu;
1391 /* Must reset the interface (simulate down/up) when MTU
1392 * changes. */
1393 ospf_if_reset(ifp);
1394
1395 return 0;
1396 }
1397
1398 if (IS_DEBUG_OSPF(zebra, ZEBRA_INTERFACE))
1399 zlog_debug("Zebra: Interface[%s] state change to up.",
1400 ifp->name);
1401
1402 for (rn = route_top(IF_OIFS(ifp)); rn; rn = route_next(rn)) {
1403 if ((oi = rn->info) == NULL)
1404 continue;
1405
1406 ospf_if_up(oi);
1407 }
1408
1409 if (HAS_LINK_PARAMS(ifp))
1410 ospf_mpls_te_update_if(ifp);
1411
1412 return 0;
1413 }
1414
1415 static int ospf_ifp_down(struct interface *ifp)
1416 {
1417 struct ospf_interface *oi;
1418 struct route_node *node;
1419
1420 if (IS_DEBUG_OSPF(zebra, ZEBRA_INTERFACE))
1421 zlog_debug("Zebra: Interface[%s] state change to down.",
1422 ifp->name);
1423
1424 for (node = route_top(IF_OIFS(ifp)); node; node = route_next(node)) {
1425 if ((oi = node->info) == NULL)
1426 continue;
1427 ospf_if_down(oi);
1428 }
1429
1430 return 0;
1431 }
1432
1433 static int ospf_ifp_destroy(struct interface *ifp)
1434 {
1435 struct ospf *ospf;
1436 struct route_node *rn;
1437
1438 if (IS_DEBUG_OSPF(zebra, ZEBRA_INTERFACE))
1439 zlog_debug(
1440 "Zebra: interface delete %s vrf %s[%u] index %d flags %llx metric %d mtu %d",
1441 ifp->name, ifp->vrf->name, ifp->vrf->vrf_id,
1442 ifp->ifindex, (unsigned long long)ifp->flags,
1443 ifp->metric, ifp->mtu);
1444
1445 hook_call(ospf_if_delete, ifp);
1446
1447 ospf = ifp->vrf->info;
1448 if (ospf) {
1449 if (ospf_if_count_area_params(ifp) > 0)
1450 ospf_interface_area_unset(ospf, ifp);
1451 }
1452
1453 for (rn = route_top(IF_OIFS(ifp)); rn; rn = route_next(rn))
1454 if (rn->info)
1455 ospf_if_free((struct ospf_interface *)rn->info);
1456
1457 return 0;
1458 }
1459
1460 /* Resetting ospf hello timer */
1461 void ospf_reset_hello_timer(struct interface *ifp, struct in_addr addr,
1462 bool is_addr)
1463 {
1464 struct route_node *rn;
1465
1466 if (is_addr) {
1467 struct prefix p;
1468 struct ospf_interface *oi = NULL;
1469
1470 p.u.prefix4 = addr;
1471 p.family = AF_INET;
1472 p.prefixlen = IPV4_MAX_BITLEN;
1473
1474 oi = ospf_if_table_lookup(ifp, &p);
1475
1476 if (oi) {
1477 /* Send hello before restart the hello timer
1478 * to avoid session flaps in case of bigger
1479 * hello interval configurations.
1480 */
1481 ospf_hello_send(oi);
1482
1483 /* Restart hello timer for this interface */
1484 THREAD_OFF(oi->t_hello);
1485 OSPF_HELLO_TIMER_ON(oi);
1486 }
1487
1488 return;
1489 }
1490
1491 for (rn = route_top(IF_OIFS(ifp)); rn; rn = route_next(rn)) {
1492 struct ospf_interface *oi = rn->info;
1493
1494 if (!oi)
1495 continue;
1496
1497 /* If hello interval configured on this oi, don't restart. */
1498 if (OSPF_IF_PARAM_CONFIGURED(oi->params, v_hello))
1499 continue;
1500
1501 /* Send hello before restart the hello timer
1502 * to avoid session flaps in case of bigger
1503 * hello interval configurations.
1504 */
1505 ospf_hello_send(oi);
1506
1507 /* Restart the hello timer. */
1508 THREAD_OFF(oi->t_hello);
1509 OSPF_HELLO_TIMER_ON(oi);
1510 }
1511 }
1512
1513 void ospf_if_init(void)
1514 {
1515 if_zapi_callbacks(ospf_ifp_create, ospf_ifp_up,
1516 ospf_ifp_down, ospf_ifp_destroy);
1517
1518 /* Initialize Zebra interface data structure. */
1519 hook_register_prio(if_add, 0, ospf_if_new_hook);
1520 hook_register_prio(if_del, 0, ospf_if_delete_hook);
1521 }