]> git.proxmox.com Git - mirror_frr.git/blob - ospfd/ospf_interface.c
Merge pull request #9998 from pguibert6WIND/bgp_tcp_keepalive
[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("%s: (%s): Start", __func__, ospf_get_name(ospf));
913 if (vlink_count == OSPF_VL_MAX_COUNT) {
914 if (IS_DEBUG_OSPF_EVENT)
915 zlog_debug(
916 "%s: Alarm: cannot create more than OSPF_MAX_VL_COUNT virtual links",
917 __func__);
918
919 return NULL;
920 }
921
922 if (IS_DEBUG_OSPF_EVENT)
923 zlog_debug("%s: creating pseudo zebra interface vrf id %u",
924 __func__, ospf->vrf_id);
925
926 snprintf(ifname, sizeof(ifname), "VLINK%u", vlink_count);
927 vi = if_get_by_name(ifname, ospf->vrf_id, ospf->name);
928 /*
929 * if_get_by_name sets ZEBRA_INTERFACE_LINKDETECTION
930 * virtual links don't need this.
931 */
932 UNSET_FLAG(vi->status, ZEBRA_INTERFACE_LINKDETECTION);
933 co = connected_new();
934 co->ifp = vi;
935 listnode_add(vi->connected, co);
936
937 p = prefix_ipv4_new();
938 p->family = AF_INET;
939 p->prefix.s_addr = INADDR_ANY;
940 p->prefixlen = 0;
941
942 co->address = (struct prefix *)p;
943
944 voi = ospf_if_new(ospf, vi, co->address);
945 if (voi == NULL) {
946 if (IS_DEBUG_OSPF_EVENT)
947 zlog_debug(
948 "%s: Alarm: OSPF int structure is not created",
949 __func__);
950
951 return NULL;
952 }
953 voi->connected = co;
954 voi->vl_data = vl_data;
955 voi->ifp->mtu = OSPF_VL_MTU;
956 voi->type = OSPF_IFTYPE_VIRTUALLINK;
957
958 vlink_count++;
959 if (IS_DEBUG_OSPF_EVENT)
960 zlog_debug("%s: Created name: %s set if->name to %s", __func__,
961 ifname, vi->name);
962
963 area_id.s_addr = INADDR_ANY;
964 area = ospf_area_get(ospf, area_id);
965 voi->area = area;
966
967 if (IS_DEBUG_OSPF_EVENT)
968 zlog_debug("%s: set associated area to the backbone", __func__);
969
970 /* Add pseudo neighbor. */
971 ospf_nbr_self_reset(voi, voi->ospf->router_id);
972
973 ospf_area_add_if(voi->area, voi);
974
975 if (IS_DEBUG_OSPF_EVENT)
976 zlog_debug("%s: Stop", __func__);
977 return voi;
978 }
979
980 static void ospf_vl_if_delete(struct ospf_vl_data *vl_data)
981 {
982 struct interface *ifp = vl_data->vl_oi->ifp;
983 struct vrf *vrf = ifp->vrf;
984
985 vl_data->vl_oi->address->u.prefix4.s_addr = INADDR_ANY;
986 vl_data->vl_oi->address->prefixlen = 0;
987 ospf_if_free(vl_data->vl_oi);
988 if_delete(&ifp);
989 if (!vrf_is_enabled(vrf))
990 vrf_delete(vrf);
991 vlink_count--;
992 }
993
994 /* for a defined area, count the number of configured vl
995 */
996 int ospf_vl_count(struct ospf *ospf, struct ospf_area *area)
997 {
998 int count = 0;
999 struct ospf_vl_data *vl_data;
1000 struct listnode *node;
1001
1002 for (ALL_LIST_ELEMENTS_RO(ospf->vlinks, node, vl_data)) {
1003 if (area
1004 && !IPV4_ADDR_SAME(&vl_data->vl_area_id, &area->area_id))
1005 continue;
1006 count++;
1007 }
1008 return count;
1009 }
1010
1011 /* Look up vl_data for given peer, optionally qualified to be in the
1012 * specified area. NULL area returns first found..
1013 */
1014 struct ospf_vl_data *ospf_vl_lookup(struct ospf *ospf, struct ospf_area *area,
1015 struct in_addr vl_peer)
1016 {
1017 struct ospf_vl_data *vl_data;
1018 struct listnode *node;
1019
1020 if (IS_DEBUG_OSPF_EVENT) {
1021 zlog_debug("%s: Looking for %pI4", __func__, &vl_peer);
1022 if (area)
1023 zlog_debug("%s: in area %pI4", __func__,
1024 &area->area_id);
1025 }
1026
1027 for (ALL_LIST_ELEMENTS_RO(ospf->vlinks, node, vl_data)) {
1028 if (IS_DEBUG_OSPF_EVENT)
1029 zlog_debug("%s: VL %s, peer %pI4", __func__,
1030 vl_data->vl_oi->ifp->name,
1031 &vl_data->vl_peer);
1032
1033 if (area
1034 && !IPV4_ADDR_SAME(&vl_data->vl_area_id, &area->area_id))
1035 continue;
1036
1037 if (IPV4_ADDR_SAME(&vl_data->vl_peer, &vl_peer))
1038 return vl_data;
1039 }
1040
1041 return NULL;
1042 }
1043
1044 static void ospf_vl_shutdown(struct ospf_vl_data *vl_data)
1045 {
1046 struct ospf_interface *oi;
1047
1048 if ((oi = vl_data->vl_oi) == NULL)
1049 return;
1050
1051 oi->address->u.prefix4.s_addr = INADDR_ANY;
1052 oi->address->prefixlen = 0;
1053
1054 UNSET_FLAG(oi->ifp->flags, IFF_UP);
1055 /* OSPF_ISM_EVENT_SCHEDULE (oi, ISM_InterfaceDown); */
1056 OSPF_ISM_EVENT_EXECUTE(oi, ISM_InterfaceDown);
1057 }
1058
1059 void ospf_vl_add(struct ospf *ospf, struct ospf_vl_data *vl_data)
1060 {
1061 listnode_add(ospf->vlinks, vl_data);
1062 hook_call(ospf_vl_add, vl_data);
1063 }
1064
1065 void ospf_vl_delete(struct ospf *ospf, struct ospf_vl_data *vl_data)
1066 {
1067 ospf_vl_shutdown(vl_data);
1068 ospf_vl_if_delete(vl_data);
1069
1070 hook_call(ospf_vl_delete, vl_data);
1071 listnode_delete(ospf->vlinks, vl_data);
1072
1073 ospf_vl_data_free(vl_data);
1074 }
1075
1076 static int ospf_vl_set_params(struct ospf_area *area,
1077 struct ospf_vl_data *vl_data, struct vertex *v)
1078 {
1079 int changed = 0;
1080 struct ospf_interface *voi;
1081 struct listnode *node;
1082 struct vertex_parent *vp = NULL;
1083 unsigned int i;
1084 struct router_lsa *rl;
1085 struct ospf_interface *oi;
1086
1087 voi = vl_data->vl_oi;
1088
1089 if (voi->output_cost != v->distance) {
1090
1091 voi->output_cost = v->distance;
1092 changed = 1;
1093 }
1094
1095 for (ALL_LIST_ELEMENTS_RO(v->parents, node, vp)) {
1096 vl_data->nexthop.lsa_pos = vp->nexthop->lsa_pos;
1097 vl_data->nexthop.router = vp->nexthop->router;
1098
1099 /*
1100 * Only deal with interface data when the local
1101 * (calculating) node is the SPF root node
1102 */
1103 if (!area->spf_dry_run) {
1104 oi = ospf_if_lookup_by_lsa_pos(
1105 area, vl_data->nexthop.lsa_pos);
1106
1107 if (!IPV4_ADDR_SAME(&voi->address->u.prefix4,
1108 &oi->address->u.prefix4))
1109 changed = 1;
1110
1111 voi->address->u.prefix4 = oi->address->u.prefix4;
1112 voi->address->prefixlen = oi->address->prefixlen;
1113 }
1114
1115 break; /* We take the first interface. */
1116 }
1117
1118 rl = (struct router_lsa *)v->lsa;
1119
1120 /* use SPF determined backlink index in struct vertex
1121 * for virtual link destination address
1122 */
1123 if (vp && vp->backlink >= 0) {
1124 if (!IPV4_ADDR_SAME(&vl_data->peer_addr,
1125 &rl->link[vp->backlink].link_data))
1126 changed = 1;
1127 vl_data->peer_addr = rl->link[vp->backlink].link_data;
1128 } else {
1129 /* This is highly odd, there is no backlink index
1130 * there should be due to the ospf_spf_has_link() check
1131 * in SPF. Lets warn and try pick a link anyway.
1132 */
1133 zlog_info("ospf_vl_set_params: No backlink for %s!",
1134 vl_data->vl_oi->ifp->name);
1135 for (i = 0; i < ntohs(rl->links); i++) {
1136 switch (rl->link[i].type) {
1137 case LSA_LINK_TYPE_VIRTUALLINK:
1138 if (IS_DEBUG_OSPF_EVENT)
1139 zlog_debug(
1140 "found back link through VL");
1141 /* fallthru */
1142 case LSA_LINK_TYPE_TRANSIT:
1143 case LSA_LINK_TYPE_POINTOPOINT:
1144 if (!IPV4_ADDR_SAME(&vl_data->peer_addr,
1145 &rl->link[i].link_data))
1146 changed = 1;
1147 vl_data->peer_addr = rl->link[i].link_data;
1148 }
1149 }
1150 }
1151
1152 if (IS_DEBUG_OSPF_EVENT)
1153 zlog_debug("%s: %s peer address: %pI4, cost: %d,%schanged",
1154 __func__, vl_data->vl_oi->ifp->name,
1155 &vl_data->peer_addr, voi->output_cost,
1156 (changed ? " " : " un"));
1157
1158 return changed;
1159 }
1160
1161
1162 void ospf_vl_up_check(struct ospf_area *area, struct in_addr rid,
1163 struct vertex *v)
1164 {
1165 struct ospf *ospf = area->ospf;
1166 struct listnode *node;
1167 struct ospf_vl_data *vl_data;
1168 struct ospf_interface *oi;
1169
1170 if (IS_DEBUG_OSPF_EVENT) {
1171 zlog_debug("%s: Start", __func__);
1172 zlog_debug("%s: Router ID is %pI4 Area is %pI4", __func__, &rid,
1173 &area->area_id);
1174 }
1175
1176 for (ALL_LIST_ELEMENTS_RO(ospf->vlinks, node, vl_data)) {
1177 if (IS_DEBUG_OSPF_EVENT) {
1178 zlog_debug("%s: considering VL, %s in area %pI4",
1179 __func__, vl_data->vl_oi->ifp->name,
1180 &vl_data->vl_area_id);
1181 zlog_debug("%s: peer ID: %pI4", __func__,
1182 &vl_data->vl_peer);
1183 }
1184
1185 if (IPV4_ADDR_SAME(&vl_data->vl_peer, &rid)
1186 && IPV4_ADDR_SAME(&vl_data->vl_area_id, &area->area_id)) {
1187 oi = vl_data->vl_oi;
1188 SET_FLAG(vl_data->flags, OSPF_VL_FLAG_APPROVED);
1189
1190 if (IS_DEBUG_OSPF_EVENT)
1191 zlog_debug("%s: this VL matched", __func__);
1192
1193 if (oi->state == ISM_Down) {
1194 if (IS_DEBUG_OSPF_EVENT)
1195 zlog_debug(
1196 "%s: VL is down, waking it up",
1197 __func__);
1198 SET_FLAG(oi->ifp->flags, IFF_UP);
1199 OSPF_ISM_EVENT_EXECUTE(oi, ISM_InterfaceUp);
1200 }
1201
1202 if (ospf_vl_set_params(area, vl_data, v)) {
1203 if (IS_DEBUG_OSPF(ism, ISM_EVENTS))
1204 zlog_debug(
1205 "%s: VL cost change, scheduling router lsa refresh",
1206 __func__);
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 "%s: VL cost change, no backbone!",
1213 __func__);
1214 }
1215 }
1216 }
1217 }
1218
1219 void ospf_vl_unapprove(struct ospf *ospf)
1220 {
1221 struct listnode *node;
1222 struct ospf_vl_data *vl_data;
1223
1224 for (ALL_LIST_ELEMENTS_RO(ospf->vlinks, node, vl_data))
1225 UNSET_FLAG(vl_data->flags, OSPF_VL_FLAG_APPROVED);
1226 }
1227
1228 void ospf_vl_shut_unapproved(struct ospf *ospf)
1229 {
1230 struct listnode *node, *nnode;
1231 struct ospf_vl_data *vl_data;
1232
1233 for (ALL_LIST_ELEMENTS(ospf->vlinks, node, nnode, vl_data))
1234 if (!CHECK_FLAG(vl_data->flags, OSPF_VL_FLAG_APPROVED))
1235 ospf_vl_shutdown(vl_data);
1236 }
1237
1238 int ospf_full_virtual_nbrs(struct ospf_area *area)
1239 {
1240 if (IS_DEBUG_OSPF_EVENT) {
1241 zlog_debug(
1242 "counting fully adjacent virtual neighbors in area %pI4",
1243 &area->area_id);
1244 zlog_debug("there are %d of them", area->full_vls);
1245 }
1246
1247 return area->full_vls;
1248 }
1249
1250 int ospf_vls_in_area(struct ospf_area *area)
1251 {
1252 struct listnode *node;
1253 struct ospf_vl_data *vl_data;
1254 int c = 0;
1255
1256 for (ALL_LIST_ELEMENTS_RO(area->ospf->vlinks, node, vl_data))
1257 if (IPV4_ADDR_SAME(&vl_data->vl_area_id, &area->area_id))
1258 c++;
1259
1260 return c;
1261 }
1262
1263
1264 struct crypt_key *ospf_crypt_key_new(void)
1265 {
1266 return XCALLOC(MTYPE_OSPF_CRYPT_KEY, sizeof(struct crypt_key));
1267 }
1268
1269 void ospf_crypt_key_add(struct list *crypt, struct crypt_key *ck)
1270 {
1271 listnode_add(crypt, ck);
1272 }
1273
1274 struct crypt_key *ospf_crypt_key_lookup(struct list *auth_crypt, uint8_t key_id)
1275 {
1276 struct listnode *node;
1277 struct crypt_key *ck;
1278
1279 for (ALL_LIST_ELEMENTS_RO(auth_crypt, node, ck))
1280 if (ck->key_id == key_id)
1281 return ck;
1282
1283 return NULL;
1284 }
1285
1286 int ospf_crypt_key_delete(struct list *auth_crypt, uint8_t key_id)
1287 {
1288 struct listnode *node, *nnode;
1289 struct crypt_key *ck;
1290
1291 for (ALL_LIST_ELEMENTS(auth_crypt, node, nnode, ck)) {
1292 if (ck->key_id == key_id) {
1293 listnode_delete(auth_crypt, ck);
1294 XFREE(MTYPE_OSPF_CRYPT_KEY, ck);
1295 return 1;
1296 }
1297 }
1298
1299 return 0;
1300 }
1301
1302 uint8_t ospf_default_iftype(struct interface *ifp)
1303 {
1304 if (if_is_pointopoint(ifp))
1305 return OSPF_IFTYPE_POINTOPOINT;
1306 else if (if_is_loopback(ifp))
1307 return OSPF_IFTYPE_LOOPBACK;
1308 else
1309 return OSPF_IFTYPE_BROADCAST;
1310 }
1311
1312 void ospf_if_interface(struct interface *ifp)
1313 {
1314 hook_call(ospf_if_update, ifp);
1315 }
1316
1317 uint32_t ospf_if_count_area_params(struct interface *ifp)
1318 {
1319 struct ospf_if_params *params;
1320 struct route_node *rn;
1321 uint32_t count = 0;
1322
1323 params = IF_DEF_PARAMS(ifp);
1324 if (OSPF_IF_PARAM_CONFIGURED(params, if_area))
1325 count++;
1326
1327 for (rn = route_top(IF_OIFS_PARAMS(ifp)); rn; rn = route_next(rn))
1328 if ((params = rn->info)
1329 && OSPF_IF_PARAM_CONFIGURED(params, if_area))
1330 count++;
1331
1332 return count;
1333 }
1334
1335 static int ospf_ifp_create(struct interface *ifp)
1336 {
1337 struct ospf *ospf = NULL;
1338 struct ospf_if_info *oii;
1339
1340 if (IS_DEBUG_OSPF(zebra, ZEBRA_INTERFACE))
1341 zlog_debug(
1342 "Zebra: interface add %s vrf %s[%u] index %d flags %llx metric %d mtu %d speed %u",
1343 ifp->name, ifp->vrf->name, ifp->vrf->vrf_id,
1344 ifp->ifindex, (unsigned long long)ifp->flags,
1345 ifp->metric, ifp->mtu, ifp->speed);
1346
1347 assert(ifp->info);
1348
1349 oii = ifp->info;
1350 oii->curr_mtu = ifp->mtu;
1351
1352 if (IF_DEF_PARAMS(ifp)
1353 && !OSPF_IF_PARAM_CONFIGURED(IF_DEF_PARAMS(ifp), type)) {
1354 SET_IF_PARAM(IF_DEF_PARAMS(ifp), type);
1355 IF_DEF_PARAMS(ifp)->type = ospf_default_iftype(ifp);
1356 }
1357
1358 ospf = ifp->vrf->info;
1359 if (!ospf)
1360 return 0;
1361
1362 if (ospf_if_count_area_params(ifp) > 0)
1363 ospf_interface_area_set(ospf, ifp);
1364
1365 ospf_if_recalculate_output_cost(ifp);
1366
1367 ospf_if_update(ospf, ifp);
1368
1369 if (HAS_LINK_PARAMS(ifp))
1370 ospf_mpls_te_update_if(ifp);
1371
1372 hook_call(ospf_if_update, ifp);
1373
1374 return 0;
1375 }
1376
1377 static int ospf_ifp_up(struct interface *ifp)
1378 {
1379 struct ospf_interface *oi;
1380 struct route_node *rn;
1381 struct ospf_if_info *oii = ifp->info;
1382
1383 ospf_if_recalculate_output_cost(ifp);
1384
1385 if (oii && oii->curr_mtu != ifp->mtu) {
1386 if (IS_DEBUG_OSPF(zebra, ZEBRA_INTERFACE))
1387 zlog_debug(
1388 "Zebra: Interface[%s] MTU change %u -> %u.",
1389 ifp->name, oii->curr_mtu, ifp->mtu);
1390
1391 oii->curr_mtu = ifp->mtu;
1392 /* Must reset the interface (simulate down/up) when MTU
1393 * changes. */
1394 ospf_if_reset(ifp);
1395
1396 return 0;
1397 }
1398
1399 if (IS_DEBUG_OSPF(zebra, ZEBRA_INTERFACE))
1400 zlog_debug("Zebra: Interface[%s] state change to up.",
1401 ifp->name);
1402
1403 for (rn = route_top(IF_OIFS(ifp)); rn; rn = route_next(rn)) {
1404 if ((oi = rn->info) == NULL)
1405 continue;
1406
1407 ospf_if_up(oi);
1408 }
1409
1410 if (HAS_LINK_PARAMS(ifp))
1411 ospf_mpls_te_update_if(ifp);
1412
1413 return 0;
1414 }
1415
1416 static int ospf_ifp_down(struct interface *ifp)
1417 {
1418 struct ospf_interface *oi;
1419 struct route_node *node;
1420
1421 if (IS_DEBUG_OSPF(zebra, ZEBRA_INTERFACE))
1422 zlog_debug("Zebra: Interface[%s] state change to down.",
1423 ifp->name);
1424
1425 for (node = route_top(IF_OIFS(ifp)); node; node = route_next(node)) {
1426 if ((oi = node->info) == NULL)
1427 continue;
1428 ospf_if_down(oi);
1429 }
1430
1431 return 0;
1432 }
1433
1434 static int ospf_ifp_destroy(struct interface *ifp)
1435 {
1436 struct ospf *ospf;
1437 struct route_node *rn;
1438
1439 if (IS_DEBUG_OSPF(zebra, ZEBRA_INTERFACE))
1440 zlog_debug(
1441 "Zebra: interface delete %s vrf %s[%u] index %d flags %llx metric %d mtu %d",
1442 ifp->name, ifp->vrf->name, ifp->vrf->vrf_id,
1443 ifp->ifindex, (unsigned long long)ifp->flags,
1444 ifp->metric, ifp->mtu);
1445
1446 hook_call(ospf_if_delete, ifp);
1447
1448 ospf = ifp->vrf->info;
1449 if (ospf) {
1450 if (ospf_if_count_area_params(ifp) > 0)
1451 ospf_interface_area_unset(ospf, ifp);
1452 }
1453
1454 for (rn = route_top(IF_OIFS(ifp)); rn; rn = route_next(rn))
1455 if (rn->info)
1456 ospf_if_free((struct ospf_interface *)rn->info);
1457
1458 return 0;
1459 }
1460
1461 /* Resetting ospf hello timer */
1462 void ospf_reset_hello_timer(struct interface *ifp, struct in_addr addr,
1463 bool is_addr)
1464 {
1465 struct route_node *rn;
1466
1467 if (is_addr) {
1468 struct prefix p;
1469 struct ospf_interface *oi = NULL;
1470
1471 p.u.prefix4 = addr;
1472 p.family = AF_INET;
1473 p.prefixlen = IPV4_MAX_BITLEN;
1474
1475 oi = ospf_if_table_lookup(ifp, &p);
1476
1477 if (oi) {
1478 /* Send hello before restart the hello timer
1479 * to avoid session flaps in case of bigger
1480 * hello interval configurations.
1481 */
1482 ospf_hello_send(oi);
1483
1484 /* Restart hello timer for this interface */
1485 THREAD_OFF(oi->t_hello);
1486 OSPF_HELLO_TIMER_ON(oi);
1487 }
1488
1489 return;
1490 }
1491
1492 for (rn = route_top(IF_OIFS(ifp)); rn; rn = route_next(rn)) {
1493 struct ospf_interface *oi = rn->info;
1494
1495 if (!oi)
1496 continue;
1497
1498 /* If hello interval configured on this oi, don't restart. */
1499 if (OSPF_IF_PARAM_CONFIGURED(oi->params, v_hello))
1500 continue;
1501
1502 /* Send hello before restart the hello timer
1503 * to avoid session flaps in case of bigger
1504 * hello interval configurations.
1505 */
1506 ospf_hello_send(oi);
1507
1508 /* Restart the hello timer. */
1509 THREAD_OFF(oi->t_hello);
1510 OSPF_HELLO_TIMER_ON(oi);
1511 }
1512 }
1513
1514 void ospf_if_init(void)
1515 {
1516 if_zapi_callbacks(ospf_ifp_create, ospf_ifp_up,
1517 ospf_ifp_down, ospf_ifp_destroy);
1518
1519 /* Initialize Zebra interface data structure. */
1520 hook_register_prio(if_add, 0, ospf_if_new_hook);
1521 hook_register_prio(if_del, 0, ospf_if_delete_hook);
1522 }