]> git.proxmox.com Git - mirror_frr.git/blame - ospfd/ospf_interface.c
[doc] bug #245, remove reference to non-existent log_mode argument
[mirror_frr.git] / ospfd / ospf_interface.c
CommitLineData
718e3744 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
18 * along with GNU Zebra; see the file COPYING. If not, write to the
19 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 * Boston, MA 02111-1307, USA.
21 */
22
23#include <zebra.h>
24
25#include "thread.h"
26#include "linklist.h"
27#include "prefix.h"
28#include "if.h"
29#include "table.h"
30#include "memory.h"
31#include "command.h"
32#include "stream.h"
33#include "log.h"
34
68980084 35#include "ospfd/ospfd.h"
718e3744 36#include "ospfd/ospf_spf.h"
37#include "ospfd/ospf_interface.h"
38#include "ospfd/ospf_ism.h"
39#include "ospfd/ospf_asbr.h"
40#include "ospfd/ospf_lsa.h"
41#include "ospfd/ospf_lsdb.h"
42#include "ospfd/ospf_neighbor.h"
43#include "ospfd/ospf_nsm.h"
44#include "ospfd/ospf_packet.h"
45#include "ospfd/ospf_abr.h"
718e3744 46#include "ospfd/ospf_network.h"
47#include "ospfd/ospf_dump.h"
48#ifdef HAVE_SNMP
49#include "ospfd/ospf_snmp.h"
50#endif /* HAVE_SNMP */
51
52\f
53int
54ospf_if_get_output_cost (struct ospf_interface *oi)
55{
56 /* If all else fails, use default OSPF cost */
57 u_int32_t cost;
58 u_int32_t bw, refbw;
59
60 bw = oi->ifp->bandwidth ? oi->ifp->bandwidth : OSPF_DEFAULT_BANDWIDTH;
68980084 61 refbw = oi->ospf->ref_bandwidth;
718e3744 62
63 /* A specifed ip ospf cost overrides a calculated one. */
64 if (OSPF_IF_PARAM_CONFIGURED (IF_DEF_PARAMS (oi->ifp), output_cost_cmd) ||
65 OSPF_IF_PARAM_CONFIGURED (oi->params, output_cost_cmd))
66 cost = OSPF_IF_PARAM (oi, output_cost_cmd);
67 /* See if a cost can be calculated from the zebra processes
68 interface bandwidth field. */
69 else
70 {
71 cost = (u_int32_t) ((double)refbw / (double)bw + (double)0.5);
72 if (cost < 1)
73 cost = 1;
74 else if (cost > 65535)
75 cost = 65535;
76 }
77
78 return cost;
79}
80
81void
82ospf_if_recalculate_output_cost (struct interface *ifp)
83{
84 u_int32_t newcost;
85 struct route_node *rn;
86
87 for (rn = route_top (IF_OIFS (ifp)); rn; rn = route_next (rn))
88 {
89 struct ospf_interface *oi;
90
91 if ( (oi = rn->info) == NULL)
92 continue;
93
94 newcost = ospf_if_get_output_cost (oi);
95
96 /* Is actual output cost changed? */
97 if (oi->output_cost != newcost)
98 {
99 oi->output_cost = newcost;
100 ospf_router_lsa_timer_add (oi->area);
101 }
102 }
103}
104
a608bbf2 105/* Simulate down/up on the interface. This is needed, for example, when
106 the MTU changes. */
107void
108ospf_if_reset(struct interface *ifp)
109{
110 struct route_node *rn;
111
112 for (rn = route_top (IF_OIFS (ifp)); rn; rn = route_next (rn))
113 {
114 struct ospf_interface *oi;
115
116 if ( (oi = rn->info) == NULL)
117 continue;
118
119 ospf_if_down(oi);
120 ospf_if_up(oi);
121 }
122}
123
718e3744 124void
125ospf_if_reset_variables (struct ospf_interface *oi)
126{
127 /* Set default values. */
128 /* don't clear this flag. oi->flag = OSPF_IF_DISABLE; */
129
130 if (oi->vl_data)
131 oi->type = OSPF_IFTYPE_VIRTUALLINK;
132 else
133 /* preserve network-type */
134 if (oi->type != OSPF_IFTYPE_NBMA)
135 oi->type = OSPF_IFTYPE_BROADCAST;
136
137 oi->state = ISM_Down;
138
139 oi->crypt_seqnum = 0;
140
141 /* This must be short, (less than RxmtInterval)
142 - RFC 2328 Section 13.5 para 3. Set to 1 second to avoid Acks being
143 held back for too long - MAG */
144 oi->v_ls_ack = 1;
145}
146
20916fba 147/* lookup oi for specified prefix/ifp */
4dadc291 148static struct ospf_interface *
20916fba 149ospf_if_table_lookup (struct interface *ifp, struct prefix *prefix)
150{
151 struct prefix p;
affe1d9c 152 struct route_node *rn;
a3387a44 153 struct ospf_interface *rninfo = NULL;
20916fba 154
155 p = *prefix;
a3387a44 156 p.prefixlen = IPV4_MAX_PREFIXLEN;
157
20916fba 158 /* route_node_get implicitely locks */
f9ad937f 159 if ((rn = route_node_lookup (IF_OIFS (ifp), &p)))
a3387a44 160 {
161 rninfo = (struct ospf_interface *) rn->info;
162 route_unlock_node (rn);
163 }
164
b5f2c126 165 return rninfo;
20916fba 166}
167
4dadc291 168static void
718e3744 169ospf_add_to_if (struct interface *ifp, struct ospf_interface *oi)
170{
171 struct route_node *rn;
172 struct prefix p;
173
174 p = *oi->address;
175 p.prefixlen = IPV4_MAX_PREFIXLEN;
176
177 rn = route_node_get (IF_OIFS (ifp), &p);
8c80cb7e 178 /* rn->info should either be NULL or equal to this oi
179 * as route_node_get may return an existing node
180 */
20916fba 181 assert (!rn->info || rn->info == oi);
718e3744 182 rn->info = oi;
183}
184
4dadc291 185static void
718e3744 186ospf_delete_from_if (struct interface *ifp, struct ospf_interface *oi)
187{
188 struct route_node *rn;
189 struct prefix p;
190
191 p = *oi->address;
192 p.prefixlen = IPV4_MAX_PREFIXLEN;
193
194 rn = route_node_lookup (IF_OIFS (oi->ifp), &p);
195 assert (rn);
196 assert (rn->info);
197 rn->info = NULL;
198 route_unlock_node (rn);
199 route_unlock_node (rn);
200}
201
202struct ospf_interface *
68980084 203ospf_if_new (struct ospf *ospf, struct interface *ifp, struct prefix *p)
718e3744 204{
205 struct ospf_interface *oi;
206
20916fba 207 if ((oi = ospf_if_table_lookup (ifp, p)) == NULL)
208 {
209 oi = XCALLOC (MTYPE_OSPF_IF, sizeof (struct ospf_interface));
210 memset (oi, 0, sizeof (struct ospf_interface));
211 }
212 else
213 return oi;
214
718e3744 215 /* Set zebra interface pointer. */
216 oi->ifp = ifp;
217 oi->address = p;
218
219 ospf_add_to_if (ifp, oi);
68980084 220 listnode_add (ospf->oiflist, oi);
718e3744 221
222 /* Clear self-originated network-LSA. */
223 oi->network_lsa_self = NULL;
224
225 /* Initialize neighbor list. */
226 oi->nbrs = route_table_init ();
227
228 /* Initialize static neighbor list. */
229 oi->nbr_nbma = list_new ();
230
231 /* Initialize Link State Acknowledgment list. */
232 oi->ls_ack = list_new ();
233 oi->ls_ack_direct.ls_ack = list_new ();
234
235 /* Set default values. */
236 ospf_if_reset_variables (oi);
237
238 /* Add pseudo neighbor. */
239 oi->nbr_self = ospf_nbr_new (oi);
718e3744 240
241 oi->ls_upd_queue = route_table_init ();
242 oi->t_ls_upd_event = NULL;
243 oi->t_ls_ack_direct = NULL;
244
68980084 245 oi->crypt_seqnum = time (NULL);
246
718e3744 247#ifdef HAVE_OPAQUE_LSA
248 ospf_opaque_type9_lsa_init (oi);
249#endif /* HAVE_OPAQUE_LSA */
250
68980084 251 oi->ospf = ospf;
718e3744 252
253 return oi;
254}
255
256/* Restore an interface to its pre UP state
257 Used from ism_interface_down only */
258void
259ospf_if_cleanup (struct ospf_interface *oi)
260{
261 struct route_node *rn;
1eb8ef25 262 struct listnode *node, *nnode;
718e3744 263 struct ospf_neighbor *nbr;
1eb8ef25 264 struct ospf_nbr_nbma *nbr_nbma;
265 struct ospf_lsa *lsa;
718e3744 266
1a643f88 267 /* oi->nbrs and oi->nbr_nbma should be deleted on InterfaceDown event */
718e3744 268 /* delete all static neighbors attached to this interface */
1eb8ef25 269 for (ALL_LIST_ELEMENTS (oi->nbr_nbma, node, nnode, nbr_nbma))
718e3744 270 {
718e3744 271 OSPF_POLL_TIMER_OFF (nbr_nbma->t_poll);
272
273 if (nbr_nbma->nbr)
274 {
275 nbr_nbma->nbr->nbr_nbma = NULL;
276 nbr_nbma->nbr = NULL;
277 }
278
279 nbr_nbma->oi = NULL;
280
281 listnode_delete (oi->nbr_nbma, nbr_nbma);
282 }
283
284 /* send Neighbor event KillNbr to all associated neighbors. */
285 for (rn = route_top (oi->nbrs); rn; rn = route_next (rn))
286 if ((nbr = rn->info) != NULL)
287 if (nbr != oi->nbr_self)
288 OSPF_NSM_EVENT_EXECUTE (nbr, NSM_KillNbr);
289
290 /* Cleanup Link State Acknowlegdment list. */
1eb8ef25 291 for (ALL_LIST_ELEMENTS (oi->ls_ack, node, nnode, lsa))
292 ospf_lsa_unlock (lsa);
718e3744 293 list_delete_all_node (oi->ls_ack);
294
295 oi->crypt_seqnum = 0;
296
297 /* Empty link state update queue */
298 ospf_ls_upd_queue_empty (oi);
299
1a643f88 300 /* Reset pseudo neighbor. */
718e3744 301 ospf_nbr_delete (oi->nbr_self);
302 oi->nbr_self = ospf_nbr_new (oi);
1a643f88 303 ospf_nbr_add_self (oi);
304
718e3744 305 ospf_lsa_unlock (oi->network_lsa_self);
306 oi->network_lsa_self = NULL;
307 OSPF_TIMER_OFF (oi->t_network_lsa_self);
308}
309
310void
311ospf_if_free (struct ospf_interface *oi)
312{
313 ospf_if_down (oi);
314
315 assert (oi->state == ISM_Down);
316
317#ifdef HAVE_OPAQUE_LSA
318 ospf_opaque_type9_lsa_term (oi);
319#endif /* HAVE_OPAQUE_LSA */
320
321 /* Free Pseudo Neighbour */
322 ospf_nbr_delete (oi->nbr_self);
323
324 route_table_finish (oi->nbrs);
325 route_table_finish (oi->ls_upd_queue);
326
327 /* Free any lists that should be freed */
328 list_free (oi->nbr_nbma);
329
330 list_free (oi->ls_ack);
331 list_free (oi->ls_ack_direct.ls_ack);
332
333 ospf_delete_from_if (oi->ifp, oi);
334
68980084 335 listnode_delete (oi->ospf->oiflist, oi);
718e3744 336 listnode_delete (oi->area->oiflist, oi);
337
338 memset (oi, 0, sizeof (*oi));
339 XFREE (MTYPE_OSPF_IF, oi);
340}
341
342\f
343/*
344* check if interface with given address is configured and
3fb9cd6e 345* return it if yes. special treatment for PtP networks.
718e3744 346*/
347struct ospf_interface *
68980084 348ospf_if_is_configured (struct ospf *ospf, struct in_addr *address)
718e3744 349{
1eb8ef25 350 struct listnode *node, *nnode;
718e3744 351 struct ospf_interface *oi;
3fb9cd6e 352 struct prefix_ipv4 addr;
353
354 addr.family = AF_INET;
355 addr.prefix = *address;
356 addr.prefixlen = IPV4_MAX_PREFIXLEN;
718e3744 357
1eb8ef25 358 for (ALL_LIST_ELEMENTS (ospf->oiflist, node, nnode, oi))
359 if (oi->type != OSPF_IFTYPE_VIRTUALLINK)
718e3744 360 {
361 if (oi->type == OSPF_IFTYPE_POINTOPOINT)
3fb9cd6e 362 {
363 if (CONNECTED_DEST_HOST(oi->connected))
364 {
365 /* match only destination addr, since local addr is most likely
366 * not unique (borrowed from another interface) */
367 if (IPV4_ADDR_SAME (address,
368 &oi->connected->destination->u.prefix4))
369 return oi;
370 }
371 else
372 {
373 /* special leniency: match if addr is anywhere on PtP subnet */
374 if (prefix_match(oi->address,(struct prefix *)&addr))
375 return oi;
376 }
377 }
718e3744 378 else
3fb9cd6e 379 {
380 if (IPV4_ADDR_SAME (address, &oi->address->u.prefix4))
381 return oi;
382 }
718e3744 383 }
718e3744 384 return NULL;
385}
386
387int
388ospf_if_is_up (struct ospf_interface *oi)
389{
390 return if_is_up (oi->ifp);
391}
392
2db3d05d 393struct ospf_interface *
394ospf_if_exists (struct ospf_interface *oic)
395{
52dc7ee6 396 struct listnode *node;
2db3d05d 397 struct ospf *ospf;
398 struct ospf_interface *oi;
399
400 ospf = ospf_lookup ();
401
1eb8ef25 402 for (ALL_LIST_ELEMENTS_RO (ospf->oiflist, node, oi))
403 if (oi == oic)
2db3d05d 404 return oi;
1eb8ef25 405
2db3d05d 406 return NULL;
407}
408
718e3744 409struct ospf_interface *
68980084 410ospf_if_lookup_by_local_addr (struct ospf *ospf,
411 struct interface *ifp, struct in_addr address)
718e3744 412{
52dc7ee6 413 struct listnode *node;
718e3744 414 struct ospf_interface *oi;
415
1eb8ef25 416 for (ALL_LIST_ELEMENTS_RO (ospf->oiflist, node, oi))
417 if (oi->type != OSPF_IFTYPE_VIRTUALLINK)
718e3744 418 {
419 if (ifp && oi->ifp != ifp)
420 continue;
421
422 if (IPV4_ADDR_SAME (&address, &oi->address->u.prefix4))
423 return oi;
424 }
425
426 return NULL;
427}
428
429struct ospf_interface *
68980084 430ospf_if_lookup_by_prefix (struct ospf *ospf, struct prefix_ipv4 *p)
718e3744 431{
52dc7ee6 432 struct listnode *node;
718e3744 433 struct ospf_interface *oi;
434 struct prefix ptmp;
435
436 /* Check each Interface. */
1eb8ef25 437 for (ALL_LIST_ELEMENTS_RO (ospf->oiflist, node, oi))
68980084 438 {
1eb8ef25 439 if (oi->type != OSPF_IFTYPE_VIRTUALLINK)
68980084 440 {
3fb9cd6e 441 if ((oi->type == OSPF_IFTYPE_POINTOPOINT) &&
442 CONNECTED_DEST_HOST(oi->connected))
68980084 443 {
444 prefix_copy (&ptmp, oi->connected->destination);
445 ptmp.prefixlen = IPV4_MAX_BITLEN;
446 }
447 else
448 prefix_copy (&ptmp, oi->address);
718e3744 449
68980084 450 apply_mask (&ptmp);
451 if (prefix_same (&ptmp, (struct prefix *) p))
452 return oi;
453 }
454 }
718e3744 455 return NULL;
456}
457
458/* determine receiving interface by source of packet */
459struct ospf_interface *
68980084 460ospf_if_lookup_recv_if (struct ospf *ospf, struct in_addr src)
718e3744 461{
52dc7ee6 462 struct listnode *node;
718e3744 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
1eb8ef25 472 for (ALL_LIST_ELEMENTS_RO (ospf->oiflist, node, oi))
718e3744 473 {
718e3744 474 if (oi->type == OSPF_IFTYPE_VIRTUALLINK)
475 continue;
476
1a8ee0ec
PJ
477 if (if_is_loopback (oi->ifp))
478 continue;
479
3fb9cd6e 480 if ((oi->type == OSPF_IFTYPE_POINTOPOINT) &&
481 CONNECTED_DEST_HOST(oi->connected))
718e3744 482 {
483 if (IPV4_ADDR_SAME (&oi->connected->destination->u.prefix4, &src))
484 return oi;
485 }
486 else
487 {
488 if (prefix_match (oi->address, (struct prefix *) &addr))
0a825c79 489 {
af8d0336 490 if ( (match == NULL) ||
491 (match->address->prefixlen < oi->address->prefixlen)
492 )
0a825c79 493 match = oi;
494 }
718e3744 495 }
496 }
497
498 return match;
499}
500\f
501void
502ospf_if_stream_set (struct ospf_interface *oi)
503{
504 /* set output fifo queue. */
505 if (oi->obuf == NULL)
506 oi->obuf = ospf_fifo_new ();
507}
508
509void
510ospf_if_stream_unset (struct ospf_interface *oi)
511{
68980084 512 struct ospf *ospf = oi->ospf;
513
718e3744 514 if (oi->obuf)
515 {
516 ospf_fifo_free (oi->obuf);
517 oi->obuf = NULL;
518
519 if (oi->on_write_q)
520 {
68980084 521 listnode_delete (ospf->oi_write_q, oi);
522 if (list_isempty(ospf->oi_write_q))
523 OSPF_TIMER_OFF (ospf->t_write);
718e3744 524 oi->on_write_q = 0;
525 }
526 }
527}
68980084 528
718e3744 529\f
4dadc291 530static struct ospf_if_params *
531ospf_new_if_params (void)
718e3744 532{
533 struct ospf_if_params *oip;
534
535 oip = XMALLOC (MTYPE_OSPF_IF_PARAMS, sizeof (struct ospf_if_params));
718e3744 536
537 if (!oip)
538 return NULL;
539
f645789b 540 memset (oip, 0, sizeof (struct ospf_if_params));
541
718e3744 542 UNSET_IF_PARAM (oip, output_cost_cmd);
543 UNSET_IF_PARAM (oip, transmit_delay);
544 UNSET_IF_PARAM (oip, retransmit_interval);
545 UNSET_IF_PARAM (oip, passive_interface);
546 UNSET_IF_PARAM (oip, v_hello);
f9ad937f 547 UNSET_IF_PARAM (oip, fast_hello);
718e3744 548 UNSET_IF_PARAM (oip, v_wait);
549 UNSET_IF_PARAM (oip, priority);
550 UNSET_IF_PARAM (oip, type);
551 UNSET_IF_PARAM (oip, auth_simple);
552 UNSET_IF_PARAM (oip, auth_crypt);
553 UNSET_IF_PARAM (oip, auth_type);
ec1ca63c 554
555 oip->auth_crypt = list_new ();
718e3744 556
718e3744 557 return oip;
558}
559
560void
561ospf_del_if_params (struct ospf_if_params *oip)
562{
563 list_delete (oip->auth_crypt);
564 XFREE (MTYPE_OSPF_IF_PARAMS, oip);
565}
566
567void
568ospf_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;
630e4807 573
574 p.family = AF_INET;
718e3744 575 p.prefixlen = IPV4_MAX_PREFIXLEN;
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) &&
f9ad937f 589 !OSPF_IF_PARAM_CONFIGURED (oip, fast_hello) &&
718e3744 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 listcount (oip->auth_crypt) == 0)
596 {
597 ospf_del_if_params (oip);
598 rn->info = NULL;
599 route_unlock_node (rn);
600 }
601}
602
603struct ospf_if_params *
604ospf_lookup_if_params (struct interface *ifp, struct in_addr addr)
605{
606 struct prefix_ipv4 p;
607 struct route_node *rn;
608
630e4807 609 p.family = AF_INET;
718e3744 610 p.prefixlen = IPV4_MAX_PREFIXLEN;
611 p.prefix = addr;
612
613 rn = route_node_lookup (IF_OIFS_PARAMS (ifp), (struct prefix*)&p);
614
615 if (rn)
616 {
617 route_unlock_node (rn);
618 return rn->info;
619 }
620
621 return NULL;
622}
623
624struct ospf_if_params *
625ospf_get_if_params (struct interface *ifp, struct in_addr addr)
626{
627 struct prefix_ipv4 p;
628 struct route_node *rn;
629
630 p.family = AF_INET;
631 p.prefixlen = IPV4_MAX_PREFIXLEN;
632 p.prefix = addr;
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
644void
645ospf_if_update_params (struct interface *ifp, struct in_addr addr)
646{
647 struct route_node *rn;
648 struct ospf_interface *oi;
649
650 for (rn = route_top (IF_OIFS (ifp)); rn; rn = route_next (rn))
651 {
652 if ((oi = rn->info) == NULL)
653 continue;
654
655 if (IPV4_ADDR_SAME (&oi->address->u.prefix4, &addr))
656 oi->params = ospf_lookup_if_params (ifp, oi->address->u.prefix4);
657 }
658}
659
660int
661ospf_if_new_hook (struct interface *ifp)
662{
663 int rc = 0;
664
665 ifp->info = XMALLOC (MTYPE_OSPF_IF_INFO, sizeof (struct ospf_if_info));
666 memset (ifp->info, 0, sizeof (struct ospf_if_info));
667
668 IF_OIFS (ifp) = route_table_init ();
669 IF_OIFS_PARAMS (ifp) = route_table_init ();
670
671 IF_DEF_PARAMS (ifp) = ospf_new_if_params ();
672
673 SET_IF_PARAM (IF_DEF_PARAMS (ifp), transmit_delay);
674 IF_DEF_PARAMS (ifp)->transmit_delay = OSPF_TRANSMIT_DELAY_DEFAULT;
675
676 SET_IF_PARAM (IF_DEF_PARAMS (ifp), retransmit_interval);
677 IF_DEF_PARAMS (ifp)->retransmit_interval = OSPF_RETRANSMIT_INTERVAL_DEFAULT;
678
679 SET_IF_PARAM (IF_DEF_PARAMS (ifp), priority);
680 IF_DEF_PARAMS (ifp)->priority = OSPF_ROUTER_PRIORITY_DEFAULT;
681
ba682537 682 IF_DEF_PARAMS (ifp)->mtu_ignore = OSPF_MTU_IGNORE_DEFAULT;
683
718e3744 684 SET_IF_PARAM (IF_DEF_PARAMS (ifp), passive_interface);
685 IF_DEF_PARAMS (ifp)->passive_interface = OSPF_IF_ACTIVE;
686
687 SET_IF_PARAM (IF_DEF_PARAMS (ifp), v_hello);
688 IF_DEF_PARAMS (ifp)->v_hello = OSPF_HELLO_INTERVAL_DEFAULT;
689
f9ad937f 690 SET_IF_PARAM (IF_DEF_PARAMS (ifp), fast_hello);
691 IF_DEF_PARAMS (ifp)->fast_hello = OSPF_FAST_HELLO_DEFAULT;
692
718e3744 693 SET_IF_PARAM (IF_DEF_PARAMS (ifp), v_wait);
694 IF_DEF_PARAMS (ifp)->v_wait = OSPF_ROUTER_DEAD_INTERVAL_DEFAULT;
695
696 SET_IF_PARAM (IF_DEF_PARAMS (ifp), auth_simple);
697 memset (IF_DEF_PARAMS (ifp)->auth_simple, 0, OSPF_AUTH_SIMPLE_SIZE);
698
718e3744 699 SET_IF_PARAM (IF_DEF_PARAMS (ifp), auth_type);
700 IF_DEF_PARAMS (ifp)->auth_type = OSPF_AUTH_NOTSET;
701
702#ifdef HAVE_OPAQUE_LSA
703 rc = ospf_opaque_new_if (ifp);
704#endif /* HAVE_OPAQUE_LSA */
705 return rc;
706}
707
4dadc291 708static int
718e3744 709ospf_if_delete_hook (struct interface *ifp)
710{
711 int rc = 0;
940b01aa 712 struct route_node *rn;
718e3744 713#ifdef HAVE_OPAQUE_LSA
714 rc = ospf_opaque_del_if (ifp);
715#endif /* HAVE_OPAQUE_LSA */
940b01aa 716
718e3744 717 route_table_finish (IF_OIFS (ifp));
940b01aa 718
719 for (rn = route_top (IF_OIFS_PARAMS (ifp)); rn; rn = route_next (rn))
720 if (rn->info)
721 ospf_del_if_params (rn->info);
718e3744 722 route_table_finish (IF_OIFS_PARAMS (ifp));
940b01aa 723
cfc959b8 724 ospf_del_if_params ((struct ospf_if_params *) IF_DEF_PARAMS (ifp));
718e3744 725 XFREE (MTYPE_OSPF_IF_INFO, ifp->info);
726 ifp->info = NULL;
727
728 return rc;
729}
730
731int
732ospf_if_is_enable (struct ospf_interface *oi)
733{
734 if (!if_is_loopback (oi->ifp))
735 if (if_is_up (oi->ifp))
736 return 1;
737
738 return 0;
739}
740
ba6454ec 741void
742ospf_if_set_multicast(struct ospf_interface *oi)
743{
744 if ((oi->state > ISM_Loopback) &&
745 (oi->type != OSPF_IFTYPE_LOOPBACK) &&
746 (oi->type != OSPF_IFTYPE_VIRTUALLINK) &&
747 (OSPF_IF_PARAM(oi, passive_interface) == OSPF_IF_ACTIVE))
748 {
749 /* The interface should belong to the OSPF-all-routers group. */
750 if (!CHECK_FLAG(oi->multicast_memberships, MEMBER_ALLROUTERS) &&
751 (ospf_if_add_allspfrouters(oi->ospf, oi->address,
752 oi->ifp->ifindex) >= 0))
753 /* Set the flag only if the system call to join succeeded. */
754 SET_FLAG(oi->multicast_memberships, MEMBER_ALLROUTERS);
755 }
756 else
757 {
758 /* The interface should NOT belong to the OSPF-all-routers group. */
759 if (CHECK_FLAG(oi->multicast_memberships, MEMBER_ALLROUTERS))
760 {
761 ospf_if_drop_allspfrouters (oi->ospf, oi->address, oi->ifp->ifindex);
762 /* Unset the flag regardless of whether the system call to leave
763 the group succeeded, since it's much safer to assume that
764 we are not a member. */
765 UNSET_FLAG(oi->multicast_memberships, MEMBER_ALLROUTERS);
766 }
767 }
768
769 if (((oi->type == OSPF_IFTYPE_BROADCAST) ||
770 (oi->type == OSPF_IFTYPE_POINTOPOINT)) &&
771 ((oi->state == ISM_DR) || (oi->state == ISM_Backup)) &&
772 (OSPF_IF_PARAM(oi, passive_interface) == OSPF_IF_ACTIVE))
773 {
774 /* The interface should belong to the OSPF-designated-routers group. */
775 if (!CHECK_FLAG(oi->multicast_memberships, MEMBER_DROUTERS) &&
776 (ospf_if_add_alldrouters(oi->ospf, oi->address,
777 oi->ifp->ifindex) >= 0))
778 /* Set the flag only if the system call to join succeeded. */
779 SET_FLAG(oi->multicast_memberships, MEMBER_DROUTERS);
780 }
781 else
782 {
783 /* The interface should NOT belong to the OSPF-designated-routers group */
784 if (CHECK_FLAG(oi->multicast_memberships, MEMBER_DROUTERS))
785 {
786 ospf_if_drop_alldrouters(oi->ospf, oi->address, oi->ifp->ifindex);
787 /* Unset the flag regardless of whether the system call to leave
788 the group succeeded, since it's much safer to assume that
789 we are not a member. */
790 UNSET_FLAG(oi->multicast_memberships, MEMBER_DROUTERS);
791 }
792 }
793}
794
718e3744 795int
796ospf_if_up (struct ospf_interface *oi)
797{
798 if (oi == NULL)
799 return 0;
800
801 if (oi->type == OSPF_IFTYPE_LOOPBACK)
802 OSPF_ISM_EVENT_SCHEDULE (oi, ISM_LoopInd);
803 else
804 {
718e3744 805 ospf_if_stream_set (oi);
806 OSPF_ISM_EVENT_SCHEDULE (oi, ISM_InterfaceUp);
807 }
808
809 return 1;
810}
811
812int
813ospf_if_down (struct ospf_interface *oi)
814{
815 if (oi == NULL)
816 return 0;
817
818 OSPF_ISM_EVENT_EXECUTE (oi, ISM_InterfaceDown);
819 /* Shutdown packet reception and sending */
820 ospf_if_stream_unset (oi);
718e3744 821
822 return 1;
823}
824
825\f
826/* Virtual Link related functions. */
827
828struct ospf_vl_data *
829ospf_vl_data_new (struct ospf_area *area, struct in_addr vl_peer)
830{
831 struct ospf_vl_data *vl_data;
832
833 vl_data = XMALLOC (MTYPE_OSPF_VL_DATA, sizeof (struct ospf_vl_data));
834 memset (vl_data, 0, sizeof (struct ospf_vl_data));
835
836 vl_data->vl_peer.s_addr = vl_peer.s_addr;
837 vl_data->vl_area_id = area->area_id;
838 vl_data->format = area->format;
839
840 return vl_data;
841}
842
843void
844ospf_vl_data_free (struct ospf_vl_data *vl_data)
845{
846 XFREE (MTYPE_OSPF_VL_DATA, vl_data);
847}
848
849u_int vlink_count = 0;
850
851struct ospf_interface *
68980084 852ospf_vl_new (struct ospf *ospf, struct ospf_vl_data *vl_data)
718e3744 853{
854 struct ospf_interface * voi;
855 struct interface * vi;
856 char ifname[INTERFACE_NAMSIZ + 1];
857 struct ospf_area *area;
858 struct in_addr area_id;
859 struct connected *co;
860 struct prefix_ipv4 *p;
861
862 if (IS_DEBUG_OSPF_EVENT)
60925303 863 zlog_debug ("ospf_vl_new(): Start");
718e3744 864 if (vlink_count == OSPF_VL_MAX_COUNT)
865 {
866 if (IS_DEBUG_OSPF_EVENT)
60925303 867 zlog_debug ("ospf_vl_new(): Alarm: "
718e3744 868 "cannot create more than OSPF_MAX_VL_COUNT virtual links");
869 return NULL;
870 }
871
872 if (IS_DEBUG_OSPF_EVENT)
60925303 873 zlog_debug ("ospf_vl_new(): creating pseudo zebra interface");
718e3744 874
a349198f 875 snprintf (ifname, sizeof(ifname), "VLINK%d", vlink_count);
876 vi = if_create (ifname, strnlen(ifname, sizeof(ifname)));
718e3744 877 co = connected_new ();
878 co->ifp = vi;
879 listnode_add (vi->connected, co);
880
881 p = prefix_ipv4_new ();
882 p->family = AF_INET;
883 p->prefix.s_addr = 0;
884 p->prefixlen = 0;
885
886 co->address = (struct prefix *)p;
887
68980084 888 voi = ospf_if_new (ospf, vi, co->address);
718e3744 889 if (voi == NULL)
890 {
891 if (IS_DEBUG_OSPF_EVENT)
60925303 892 zlog_debug ("ospf_vl_new(): Alarm: OSPF int structure is not created");
718e3744 893 return NULL;
894 }
895 voi->connected = co;
896 voi->vl_data = vl_data;
897 voi->ifp->mtu = OSPF_VL_MTU;
898 voi->type = OSPF_IFTYPE_VIRTUALLINK;
899
106d2fd5 900 vlink_count++;
718e3744 901 if (IS_DEBUG_OSPF_EVENT)
60925303 902 zlog_debug ("ospf_vl_new(): Created name: %s", ifname);
718e3744 903 if (IS_DEBUG_OSPF_EVENT)
60925303 904 zlog_debug ("ospf_vl_new(): set if->name to %s", vi->name);
718e3744 905
906 area_id.s_addr = 0;
68980084 907 area = ospf_area_get (ospf, area_id, OSPF_AREA_ID_FORMAT_ADDRESS);
718e3744 908 voi->area = area;
909
910 if (IS_DEBUG_OSPF_EVENT)
60925303 911 zlog_debug ("ospf_vl_new(): set associated area to the backbone");
718e3744 912
478aab98 913 ospf_nbr_add_self (voi);
718e3744 914 ospf_area_add_if (voi->area, voi);
915
916 ospf_if_stream_set (voi);
917
918 if (IS_DEBUG_OSPF_EVENT)
60925303 919 zlog_debug ("ospf_vl_new(): Stop");
718e3744 920 return voi;
921}
922
4dadc291 923static void
718e3744 924ospf_vl_if_delete (struct ospf_vl_data *vl_data)
925{
926 struct interface *ifp = vl_data->vl_oi->ifp;
927 vl_data->vl_oi->address->u.prefix4.s_addr = 0;
928 vl_data->vl_oi->address->prefixlen = 0;
929 ospf_if_free (vl_data->vl_oi);
930 if_delete (ifp);
931 vlink_count--;
932}
933
9c27ef9b
PJ
934/* Look up vl_data for given peer, optionally qualified to be in the
935 * specified area. NULL area returns first found..
936 */
718e3744 937struct ospf_vl_data *
9c27ef9b
PJ
938ospf_vl_lookup (struct ospf *ospf, struct ospf_area *area,
939 struct in_addr vl_peer)
718e3744 940{
941 struct ospf_vl_data *vl_data;
52dc7ee6 942 struct listnode *node;
9c27ef9b
PJ
943
944 if (IS_DEBUG_OSPF_EVENT)
945 {
946 zlog_debug ("%s: Looking for %s", __func__, inet_ntoa (vl_peer));
947 if (area)
948 zlog_debug ("%s: in area %s", __func__, inet_ntoa (area->area_id));
949 }
950
951 for (ALL_LIST_ELEMENTS_RO (ospf->vlinks, node, vl_data))
952 {
953 if (IS_DEBUG_OSPF_EVENT)
954 zlog_debug ("%s: VL %s, peer %s", __func__,
955 vl_data->vl_oi->ifp->name,
956 inet_ntoa (vl_data->vl_peer));
957
958 if (area && !IPV4_ADDR_SAME (&vl_data->vl_area_id, &area->area_id))
959 continue;
960
961 if (IPV4_ADDR_SAME (&vl_data->vl_peer, &vl_peer))
962 return vl_data;
963 }
718e3744 964
965 return NULL;
966}
967
4dadc291 968static void
718e3744 969ospf_vl_shutdown (struct ospf_vl_data *vl_data)
970{
971 struct ospf_interface *oi;
972
973 if ((oi = vl_data->vl_oi) == NULL)
974 return;
975
976 oi->address->u.prefix4.s_addr = 0;
977 oi->address->prefixlen = 0;
978
979 UNSET_FLAG (oi->ifp->flags, IFF_UP);
980 /* OSPF_ISM_EVENT_SCHEDULE (oi, ISM_InterfaceDown); */
981 OSPF_ISM_EVENT_EXECUTE (oi, ISM_InterfaceDown);
982}
983
984void
68980084 985ospf_vl_add (struct ospf *ospf, struct ospf_vl_data *vl_data)
718e3744 986{
68980084 987 listnode_add (ospf->vlinks, vl_data);
718e3744 988#ifdef HAVE_SNMP
989 ospf_snmp_vl_add (vl_data);
990#endif /* HAVE_SNMP */
991}
992
993void
68980084 994ospf_vl_delete (struct ospf *ospf, struct ospf_vl_data *vl_data)
718e3744 995{
996 ospf_vl_shutdown (vl_data);
997 ospf_vl_if_delete (vl_data);
998
999#ifdef HAVE_SNMP
1000 ospf_snmp_vl_delete (vl_data);
1001#endif /* HAVE_SNMP */
68980084 1002 listnode_delete (ospf->vlinks, vl_data);
718e3744 1003
1004 ospf_vl_data_free (vl_data);
1005}
1006
4dadc291 1007static int
718e3744 1008ospf_vl_set_params (struct ospf_vl_data *vl_data, struct vertex *v)
1009{
1010 int changed = 0;
1011 struct ospf_interface *voi;
52dc7ee6 1012 struct listnode *node;
eb3da6df 1013 struct vertex_parent *vp = NULL;
718e3744 1014 int i;
1015 struct router_lsa *rl;
1016
1017 voi = vl_data->vl_oi;
1018
1019 if (voi->output_cost != v->distance)
1020 {
cd59da68 1021
718e3744 1022 voi->output_cost = v->distance;
1023 changed = 1;
1024 }
1025
eb3da6df 1026 for (ALL_LIST_ELEMENTS_RO (v->parents, node, vp))
1eb8ef25 1027 {
9c27ef9b
PJ
1028 vl_data->nexthop.oi = vp->nexthop->oi;
1029 vl_data->nexthop.router = vp->nexthop->router;
1eb8ef25 1030
1031 if (!IPV4_ADDR_SAME(&voi->address->u.prefix4,
9c27ef9b 1032 &vl_data->nexthop.oi->address->u.prefix4))
1eb8ef25 1033 changed = 1;
cd59da68 1034
9c27ef9b
PJ
1035 voi->address->u.prefix4 = vl_data->nexthop.oi->address->u.prefix4;
1036 voi->address->prefixlen = vl_data->nexthop.oi->address->prefixlen;
1eb8ef25 1037
1038 break; /* We take the first interface. */
1039 }
718e3744 1040
1041 rl = (struct router_lsa *)v->lsa;
d355bfa7 1042
1043 /* use SPF determined backlink index in struct vertex
1044 * for virtual link destination address
1045 */
eb3da6df 1046 if (vp && vp->backlink >= 0)
d355bfa7 1047 {
1048 if (!IPV4_ADDR_SAME (&vl_data->peer_addr,
eb3da6df 1049 &rl->link[vp->backlink].link_data))
d355bfa7 1050 changed = 1;
eb3da6df 1051 vl_data->peer_addr = rl->link[vp->backlink].link_data;
d355bfa7 1052 }
1053 else
718e3744 1054 {
d355bfa7 1055 /* This is highly odd, there is no backlink index
1056 * there should be due to the ospf_spf_has_link() check
1057 * in SPF. Lets warn and try pick a link anyway.
1058 */
1059 zlog_warn ("ospf_vl_set_params: No backlink for %s!",
1060 vl_data->vl_oi->ifp->name);
1061 for (i = 0; i < ntohs (rl->links); i++)
2e6b0bbb 1062 {
d355bfa7 1063 switch (rl->link[i].type)
1064 {
1065 case LSA_LINK_TYPE_VIRTUALLINK:
1066 if (IS_DEBUG_OSPF_EVENT)
60925303 1067 zlog_debug ("found back link through VL");
d355bfa7 1068 case LSA_LINK_TYPE_TRANSIT:
1069 case LSA_LINK_TYPE_POINTOPOINT:
cd59da68 1070 if (!IPV4_ADDR_SAME (&vl_data->peer_addr,
1071 &rl->link[i].link_data))
1072 changed = 1;
d355bfa7 1073 vl_data->peer_addr = rl->link[i].link_data;
d355bfa7 1074 }
2e6b0bbb 1075 }
718e3744 1076 }
d355bfa7 1077
1078 if (IS_DEBUG_OSPF_EVENT)
9c27ef9b 1079 zlog_debug ("%s: %s peer address: %s, cost: %d,%schanged", __func__,
d355bfa7 1080 vl_data->vl_oi->ifp->name,
9c27ef9b
PJ
1081 inet_ntoa(vl_data->peer_addr),
1082 voi->output_cost,
1083 (changed ? " " : " un"));
d355bfa7 1084
2e6b0bbb 1085 return changed;
718e3744 1086}
1087
1088
1089void
68980084 1090ospf_vl_up_check (struct ospf_area *area, struct in_addr rid,
718e3744 1091 struct vertex *v)
1092{
68980084 1093 struct ospf *ospf = area->ospf;
52dc7ee6 1094 struct listnode *node;
718e3744 1095 struct ospf_vl_data *vl_data;
1096 struct ospf_interface *oi;
1097
1098 if (IS_DEBUG_OSPF_EVENT)
1099 {
60925303 1100 zlog_debug ("ospf_vl_up_check(): Start");
1101 zlog_debug ("ospf_vl_up_check(): Router ID is %s", inet_ntoa (rid));
1102 zlog_debug ("ospf_vl_up_check(): Area is %s", inet_ntoa (area->area_id));
718e3744 1103 }
1104
1eb8ef25 1105 for (ALL_LIST_ELEMENTS_RO (ospf->vlinks, node, vl_data))
718e3744 1106 {
718e3744 1107 if (IS_DEBUG_OSPF_EVENT)
1108 {
9c27ef9b
PJ
1109 zlog_debug ("%s: considering VL, %s in area %s", __func__,
1110 vl_data->vl_oi->ifp->name,
1111 inet_ntoa (vl_data->vl_area_id));
1112 zlog_debug ("%s: peer ID: %s", __func__,
718e3744 1113 inet_ntoa (vl_data->vl_peer));
1114 }
1115
1116 if (IPV4_ADDR_SAME (&vl_data->vl_peer, &rid) &&
1117 IPV4_ADDR_SAME (&vl_data->vl_area_id, &area->area_id))
1118 {
1119 oi = vl_data->vl_oi;
1120 SET_FLAG (vl_data->flags, OSPF_VL_FLAG_APPROVED);
1121
1122 if (IS_DEBUG_OSPF_EVENT)
60925303 1123 zlog_debug ("ospf_vl_up_check(): this VL matched");
718e3744 1124
1125 if (oi->state == ISM_Down)
1126 {
1127 if (IS_DEBUG_OSPF_EVENT)
60925303 1128 zlog_debug ("ospf_vl_up_check(): VL is down, waking it up");
718e3744 1129 SET_FLAG (oi->ifp->flags, IFF_UP);
2e6b0bbb 1130 OSPF_ISM_EVENT_EXECUTE(oi,ISM_InterfaceUp);
718e3744 1131 }
1132
2e6b0bbb 1133 if (ospf_vl_set_params (vl_data, v))
1134 {
1135 if (IS_DEBUG_OSPF (ism, ISM_EVENTS))
60925303 1136 zlog_debug ("ospf_vl_up_check: VL cost change,"
cd59da68 1137 " scheduling router lsa refresh");
2e6b0bbb 1138 if(ospf->backbone)
cd59da68 1139 ospf_router_lsa_timer_add (ospf->backbone);
2e6b0bbb 1140 else if (IS_DEBUG_OSPF (ism, ISM_EVENTS))
60925303 1141 zlog_debug ("ospf_vl_up_check: VL cost change, no backbone!");
2e6b0bbb 1142 }
718e3744 1143 }
1144 }
1145}
1146
1147void
68980084 1148ospf_vl_unapprove (struct ospf *ospf)
718e3744 1149{
52dc7ee6 1150 struct listnode *node;
718e3744 1151 struct ospf_vl_data *vl_data;
1152
1eb8ef25 1153 for (ALL_LIST_ELEMENTS_RO (ospf->vlinks, node, vl_data))
1154 UNSET_FLAG (vl_data->flags, OSPF_VL_FLAG_APPROVED);
718e3744 1155}
1156
1157void
68980084 1158ospf_vl_shut_unapproved (struct ospf *ospf)
718e3744 1159{
1eb8ef25 1160 struct listnode *node, *nnode;
718e3744 1161 struct ospf_vl_data *vl_data;
1162
1eb8ef25 1163 for (ALL_LIST_ELEMENTS (ospf->vlinks, node, nnode, vl_data))
1164 if (!CHECK_FLAG (vl_data->flags, OSPF_VL_FLAG_APPROVED))
1165 ospf_vl_shutdown (vl_data);
718e3744 1166}
1167
1168int
1169ospf_full_virtual_nbrs (struct ospf_area *area)
1170{
1171 if (IS_DEBUG_OSPF_EVENT)
1172 {
60925303 1173 zlog_debug ("counting fully adjacent virtual neighbors in area %s",
718e3744 1174 inet_ntoa (area->area_id));
60925303 1175 zlog_debug ("there are %d of them", area->full_vls);
718e3744 1176 }
1177
1178 return area->full_vls;
1179}
1180
1181int
1182ospf_vls_in_area (struct ospf_area *area)
1183{
52dc7ee6 1184 struct listnode *node;
718e3744 1185 struct ospf_vl_data *vl_data;
1186 int c = 0;
1187
1eb8ef25 1188 for (ALL_LIST_ELEMENTS_RO (area->ospf->vlinks, node, vl_data))
1189 if (IPV4_ADDR_SAME (&vl_data->vl_area_id, &area->area_id))
1190 c++;
718e3744 1191
1192 return c;
1193}
1194
1195\f
1196struct crypt_key *
1197ospf_crypt_key_new ()
1198{
1199 struct crypt_key *ck;
1200
1201 ck = XMALLOC (MTYPE_OSPF_CRYPT_KEY, sizeof (struct crypt_key));
1202 memset (ck, 0, sizeof (struct crypt_key));
1203
1204 return ck;
1205}
1206
1207void
52dc7ee6 1208ospf_crypt_key_add (struct list *crypt, struct crypt_key *ck)
718e3744 1209{
1210 listnode_add (crypt, ck);
1211}
1212
1213struct crypt_key *
52dc7ee6 1214ospf_crypt_key_lookup (struct list *auth_crypt, u_char key_id)
718e3744 1215{
52dc7ee6 1216 struct listnode *node;
718e3744 1217 struct crypt_key *ck;
1218
1eb8ef25 1219 for (ALL_LIST_ELEMENTS_RO (auth_crypt, node, ck))
1220 if (ck->key_id == key_id)
1221 return ck;
718e3744 1222
1223 return NULL;
1224}
1225
1226int
52dc7ee6 1227ospf_crypt_key_delete (struct list *auth_crypt, u_char key_id)
718e3744 1228{
1eb8ef25 1229 struct listnode *node, *nnode;
718e3744 1230 struct crypt_key *ck;
1231
1eb8ef25 1232 for (ALL_LIST_ELEMENTS (auth_crypt, node, nnode, ck))
718e3744 1233 {
718e3744 1234 if (ck->key_id == key_id)
1235 {
1236 listnode_delete (auth_crypt, ck);
ba682537 1237 XFREE (MTYPE_OSPF_CRYPT_KEY, ck);
718e3744 1238 return 1;
1239 }
1240 }
1241
1242 return 0;
1243}
1244
bc18d616 1245u_char
1246ospf_default_iftype(struct interface *ifp)
1247{
1248 if (if_is_pointopoint (ifp))
1249 return OSPF_IFTYPE_POINTOPOINT;
1250 else if (if_is_loopback (ifp))
1251 return OSPF_IFTYPE_LOOPBACK;
1252 else
1253 return OSPF_IFTYPE_BROADCAST;
1254}
1255
718e3744 1256void
1257ospf_if_init ()
1258{
1259 /* Initialize Zebra interface data structure. */
1260 if_init ();
020709f9 1261 om->iflist = iflist;
718e3744 1262 if_add_hook (IF_NEW_HOOK, ospf_if_new_hook);
1263 if_add_hook (IF_DELETE_HOOK, ospf_if_delete_hook);
1264}