blob: a46ca6d46d34bbdec99cff4dc9057f3abe4f597a [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/*
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
paul68980082003-03-25 05:07:42 +000035#include "ospfd/ospfd.h"
paul718e3742002-12-13 20:15:29 +000036#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"
paul718e3742002-12-13 20:15:29 +000046#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
David Lamparter6b0655a2014-06-04 06:53:35 +020052
paul718e3742002-12-13 20:15:29 +000053int
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;
paul68980082003-03-25 05:07:42 +000061 refbw = oi->ospf->ref_bandwidth;
paul718e3742002-12-13 20:15:29 +000062
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;
Paul Jakmac363d382010-01-24 22:42:13 +0000100 ospf_router_lsa_update_area (oi->area);
paul718e3742002-12-13 20:15:29 +0000101 }
102 }
103}
104
ajsa608bbf2005-03-29 17:03:49 +0000105/* 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
paul718e3742002-12-13 20:15:29 +0000124void
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
Paul Jakma0c175f82015-12-21 12:57:31 +0000147void
148ospf_if_reset_type (struct interface *ifp, u_char type)
149{
150 struct route_node *rn;
151
152 for (rn = route_top (IF_OIFS (ifp)); rn; rn = route_next (rn))
153 {
154 struct ospf_interface *oi = rn->info;
155 u_char orig_ism_state;
156
157 if (!oi)
158 continue;
159
160 orig_ism_state = oi->state;
161 OSPF_ISM_EVENT_EXECUTE (oi, ISM_InterfaceDown);
162
163 oi->type = IF_DEF_PARAMS (ifp)->type;
164
165 if (orig_ism_state > ISM_Down)
166 OSPF_ISM_EVENT_EXECUTE (oi, ISM_InterfaceUp);
167 }
168}
169
paul20916fb2003-10-15 21:14:20 +0000170/* lookup oi for specified prefix/ifp */
Joakim Tjernlundf0f63842009-07-27 12:42:29 +0200171struct ospf_interface *
paul20916fb2003-10-15 21:14:20 +0000172ospf_if_table_lookup (struct interface *ifp, struct prefix *prefix)
173{
174 struct prefix p;
paulaffe1d92003-10-15 21:40:57 +0000175 struct route_node *rn;
paula3387a42005-05-18 23:29:57 +0000176 struct ospf_interface *rninfo = NULL;
paul20916fb2003-10-15 21:14:20 +0000177
178 p = *prefix;
paula3387a42005-05-18 23:29:57 +0000179 p.prefixlen = IPV4_MAX_PREFIXLEN;
180
paul20916fb2003-10-15 21:14:20 +0000181 /* route_node_get implicitely locks */
paulf9ad9372005-10-21 00:45:17 +0000182 if ((rn = route_node_lookup (IF_OIFS (ifp), &p)))
paula3387a42005-05-18 23:29:57 +0000183 {
184 rninfo = (struct ospf_interface *) rn->info;
185 route_unlock_node (rn);
186 }
187
paulb5f2c122003-11-10 23:56:29 +0000188 return rninfo;
paul20916fb2003-10-15 21:14:20 +0000189}
190
paul4dadc292005-05-06 21:37:42 +0000191static void
paul718e3742002-12-13 20:15:29 +0000192ospf_add_to_if (struct interface *ifp, struct ospf_interface *oi)
193{
194 struct route_node *rn;
195 struct prefix p;
196
197 p = *oi->address;
198 p.prefixlen = IPV4_MAX_PREFIXLEN;
199
200 rn = route_node_get (IF_OIFS (ifp), &p);
paul8c80cb72003-02-18 23:25:44 +0000201 /* rn->info should either be NULL or equal to this oi
202 * as route_node_get may return an existing node
203 */
paul20916fb2003-10-15 21:14:20 +0000204 assert (!rn->info || rn->info == oi);
paul718e3742002-12-13 20:15:29 +0000205 rn->info = oi;
206}
207
paul4dadc292005-05-06 21:37:42 +0000208static void
paul718e3742002-12-13 20:15:29 +0000209ospf_delete_from_if (struct interface *ifp, struct ospf_interface *oi)
210{
211 struct route_node *rn;
212 struct prefix p;
213
214 p = *oi->address;
215 p.prefixlen = IPV4_MAX_PREFIXLEN;
216
217 rn = route_node_lookup (IF_OIFS (oi->ifp), &p);
218 assert (rn);
219 assert (rn->info);
220 rn->info = NULL;
221 route_unlock_node (rn);
222 route_unlock_node (rn);
223}
224
225struct ospf_interface *
paul68980082003-03-25 05:07:42 +0000226ospf_if_new (struct ospf *ospf, struct interface *ifp, struct prefix *p)
paul718e3742002-12-13 20:15:29 +0000227{
228 struct ospf_interface *oi;
229
paul20916fb2003-10-15 21:14:20 +0000230 if ((oi = ospf_if_table_lookup (ifp, p)) == NULL)
231 {
232 oi = XCALLOC (MTYPE_OSPF_IF, sizeof (struct ospf_interface));
233 memset (oi, 0, sizeof (struct ospf_interface));
234 }
235 else
236 return oi;
237
paul718e3742002-12-13 20:15:29 +0000238 /* Set zebra interface pointer. */
239 oi->ifp = ifp;
240 oi->address = p;
241
242 ospf_add_to_if (ifp, oi);
paul68980082003-03-25 05:07:42 +0000243 listnode_add (ospf->oiflist, oi);
paul718e3742002-12-13 20:15:29 +0000244
paul718e3742002-12-13 20:15:29 +0000245 /* Initialize neighbor list. */
246 oi->nbrs = route_table_init ();
247
248 /* Initialize static neighbor list. */
249 oi->nbr_nbma = list_new ();
250
251 /* Initialize Link State Acknowledgment list. */
252 oi->ls_ack = list_new ();
253 oi->ls_ack_direct.ls_ack = list_new ();
254
255 /* Set default values. */
256 ospf_if_reset_variables (oi);
257
Jafar Al-Gharaibehbb01bdd2016-04-21 16:22:33 -0500258 /* Set pseudo neighbor to Null */
259 oi->nbr_self = NULL;
paul718e3742002-12-13 20:15:29 +0000260
261 oi->ls_upd_queue = route_table_init ();
262 oi->t_ls_upd_event = NULL;
263 oi->t_ls_ack_direct = NULL;
264
paul68980082003-03-25 05:07:42 +0000265 oi->crypt_seqnum = time (NULL);
266
paul718e3742002-12-13 20:15:29 +0000267 ospf_opaque_type9_lsa_init (oi);
paul718e3742002-12-13 20:15:29 +0000268
paul68980082003-03-25 05:07:42 +0000269 oi->ospf = ospf;
paul718e3742002-12-13 20:15:29 +0000270
271 return oi;
272}
273
274/* Restore an interface to its pre UP state
275 Used from ism_interface_down only */
276void
277ospf_if_cleanup (struct ospf_interface *oi)
278{
279 struct route_node *rn;
paul1eb8ef22005-04-07 07:30:20 +0000280 struct listnode *node, *nnode;
paul718e3742002-12-13 20:15:29 +0000281 struct ospf_neighbor *nbr;
paul1eb8ef22005-04-07 07:30:20 +0000282 struct ospf_nbr_nbma *nbr_nbma;
283 struct ospf_lsa *lsa;
paul718e3742002-12-13 20:15:29 +0000284
paul1a643f82006-01-11 01:08:19 +0000285 /* oi->nbrs and oi->nbr_nbma should be deleted on InterfaceDown event */
paul718e3742002-12-13 20:15:29 +0000286 /* delete all static neighbors attached to this interface */
paul1eb8ef22005-04-07 07:30:20 +0000287 for (ALL_LIST_ELEMENTS (oi->nbr_nbma, node, nnode, nbr_nbma))
paul718e3742002-12-13 20:15:29 +0000288 {
paul718e3742002-12-13 20:15:29 +0000289 OSPF_POLL_TIMER_OFF (nbr_nbma->t_poll);
290
291 if (nbr_nbma->nbr)
292 {
293 nbr_nbma->nbr->nbr_nbma = NULL;
294 nbr_nbma->nbr = NULL;
295 }
296
297 nbr_nbma->oi = NULL;
298
299 listnode_delete (oi->nbr_nbma, nbr_nbma);
300 }
301
302 /* send Neighbor event KillNbr to all associated neighbors. */
303 for (rn = route_top (oi->nbrs); rn; rn = route_next (rn))
304 if ((nbr = rn->info) != NULL)
305 if (nbr != oi->nbr_self)
306 OSPF_NSM_EVENT_EXECUTE (nbr, NSM_KillNbr);
307
308 /* Cleanup Link State Acknowlegdment list. */
paul1eb8ef22005-04-07 07:30:20 +0000309 for (ALL_LIST_ELEMENTS (oi->ls_ack, node, nnode, lsa))
Paul Jakma1fe6ed32006-07-26 09:37:26 +0000310 ospf_lsa_unlock (&lsa); /* oi->ls_ack */
paul718e3742002-12-13 20:15:29 +0000311 list_delete_all_node (oi->ls_ack);
312
313 oi->crypt_seqnum = 0;
314
315 /* Empty link state update queue */
316 ospf_ls_upd_queue_empty (oi);
317
paul1a643f82006-01-11 01:08:19 +0000318 /* Reset pseudo neighbor. */
Paul Jakmac920e512015-09-08 15:31:45 +0100319 ospf_nbr_self_reset (oi);
paul718e3742002-12-13 20:15:29 +0000320}
321
322void
323ospf_if_free (struct ospf_interface *oi)
324{
325 ospf_if_down (oi);
326
327 assert (oi->state == ISM_Down);
328
paul718e3742002-12-13 20:15:29 +0000329 ospf_opaque_type9_lsa_term (oi);
paul718e3742002-12-13 20:15:29 +0000330
331 /* Free Pseudo Neighbour */
332 ospf_nbr_delete (oi->nbr_self);
333
334 route_table_finish (oi->nbrs);
335 route_table_finish (oi->ls_upd_queue);
336
337 /* Free any lists that should be freed */
338 list_free (oi->nbr_nbma);
339
340 list_free (oi->ls_ack);
341 list_free (oi->ls_ack_direct.ls_ack);
342
343 ospf_delete_from_if (oi->ifp, oi);
344
paul68980082003-03-25 05:07:42 +0000345 listnode_delete (oi->ospf->oiflist, oi);
paul718e3742002-12-13 20:15:29 +0000346 listnode_delete (oi->area->oiflist, oi);
347
Paul Jakmacfd670f2010-04-15 11:39:05 +0100348 thread_cancel_event (master, oi);
349
paul718e3742002-12-13 20:15:29 +0000350 memset (oi, 0, sizeof (*oi));
351 XFREE (MTYPE_OSPF_IF, oi);
352}
353
David Lamparter6b0655a2014-06-04 06:53:35 +0200354
paul718e3742002-12-13 20:15:29 +0000355/*
356* check if interface with given address is configured and
hasso3fb9cd62004-10-19 19:44:43 +0000357* return it if yes. special treatment for PtP networks.
paul718e3742002-12-13 20:15:29 +0000358*/
359struct ospf_interface *
paul68980082003-03-25 05:07:42 +0000360ospf_if_is_configured (struct ospf *ospf, struct in_addr *address)
paul718e3742002-12-13 20:15:29 +0000361{
paul1eb8ef22005-04-07 07:30:20 +0000362 struct listnode *node, *nnode;
paul718e3742002-12-13 20:15:29 +0000363 struct ospf_interface *oi;
hasso3fb9cd62004-10-19 19:44:43 +0000364 struct prefix_ipv4 addr;
365
366 addr.family = AF_INET;
367 addr.prefix = *address;
368 addr.prefixlen = IPV4_MAX_PREFIXLEN;
Andrew J. Schorre4529632006-12-12 19:18:21 +0000369
paul1eb8ef22005-04-07 07:30:20 +0000370 for (ALL_LIST_ELEMENTS (ospf->oiflist, node, nnode, oi))
371 if (oi->type != OSPF_IFTYPE_VIRTUALLINK)
paul718e3742002-12-13 20:15:29 +0000372 {
Andrew J. Schorre4529632006-12-12 19:18:21 +0000373 if (oi->type == OSPF_IFTYPE_POINTOPOINT)
hasso3fb9cd62004-10-19 19:44:43 +0000374 {
Andrew J. Schorre4529632006-12-12 19:18:21 +0000375 /* special leniency: match if addr is anywhere on peer subnet */
376 if (prefix_match(CONNECTED_PREFIX(oi->connected),
377 (struct prefix *)&addr))
378 return oi;
hasso3fb9cd62004-10-19 19:44:43 +0000379 }
Andrew J. Schorre4529632006-12-12 19:18:21 +0000380 else
hasso3fb9cd62004-10-19 19:44:43 +0000381 {
382 if (IPV4_ADDR_SAME (address, &oi->address->u.prefix4))
383 return oi;
384 }
paul718e3742002-12-13 20:15:29 +0000385 }
paul718e3742002-12-13 20:15:29 +0000386 return NULL;
387}
388
389int
390ospf_if_is_up (struct ospf_interface *oi)
391{
392 return if_is_up (oi->ifp);
393}
394
395struct ospf_interface *
hasso2db3d052004-02-11 21:52:13 +0000396ospf_if_exists (struct ospf_interface *oic)
397{
hasso52dc7ee2004-09-23 19:18:23 +0000398 struct listnode *node;
hasso2db3d052004-02-11 21:52:13 +0000399 struct ospf *ospf;
400 struct ospf_interface *oi;
401
Paul Jakmae43be0e2006-05-12 23:00:06 +0000402 if ((ospf = ospf_lookup ()) == NULL)
403 return NULL;
hasso2db3d052004-02-11 21:52:13 +0000404
paul1eb8ef22005-04-07 07:30:20 +0000405 for (ALL_LIST_ELEMENTS_RO (ospf->oiflist, node, oi))
406 if (oi == oic)
hasso2db3d052004-02-11 21:52:13 +0000407 return oi;
paul1eb8ef22005-04-07 07:30:20 +0000408
hasso2db3d052004-02-11 21:52:13 +0000409 return NULL;
410}
411
Joakim Tjernlundc81ee5c2012-07-07 17:06:11 +0200412/* Lookup OSPF interface by router LSA posistion */
413struct ospf_interface *
414ospf_if_lookup_by_lsa_pos (struct ospf_area *area, int lsa_pos)
415{
416 struct listnode *node;
417 struct ospf_interface *oi;
418
419 for (ALL_LIST_ELEMENTS_RO (area->oiflist, node, oi))
420 {
421 if (lsa_pos >= oi->lsa_pos_beg && lsa_pos < oi->lsa_pos_end)
422 return oi;
423 }
424 return NULL;
425}
426
hasso2db3d052004-02-11 21:52:13 +0000427struct ospf_interface *
paul68980082003-03-25 05:07:42 +0000428ospf_if_lookup_by_local_addr (struct ospf *ospf,
429 struct interface *ifp, struct in_addr address)
paul718e3742002-12-13 20:15:29 +0000430{
hasso52dc7ee2004-09-23 19:18:23 +0000431 struct listnode *node;
paul718e3742002-12-13 20:15:29 +0000432 struct ospf_interface *oi;
433
paul1eb8ef22005-04-07 07:30:20 +0000434 for (ALL_LIST_ELEMENTS_RO (ospf->oiflist, node, oi))
435 if (oi->type != OSPF_IFTYPE_VIRTUALLINK)
paul718e3742002-12-13 20:15:29 +0000436 {
437 if (ifp && oi->ifp != ifp)
438 continue;
439
440 if (IPV4_ADDR_SAME (&address, &oi->address->u.prefix4))
441 return oi;
442 }
443
444 return NULL;
445}
446
447struct ospf_interface *
paul68980082003-03-25 05:07:42 +0000448ospf_if_lookup_by_prefix (struct ospf *ospf, struct prefix_ipv4 *p)
paul718e3742002-12-13 20:15:29 +0000449{
hasso52dc7ee2004-09-23 19:18:23 +0000450 struct listnode *node;
paul718e3742002-12-13 20:15:29 +0000451 struct ospf_interface *oi;
paul718e3742002-12-13 20:15:29 +0000452
453 /* Check each Interface. */
paul1eb8ef22005-04-07 07:30:20 +0000454 for (ALL_LIST_ELEMENTS_RO (ospf->oiflist, node, oi))
paul68980082003-03-25 05:07:42 +0000455 {
paul1eb8ef22005-04-07 07:30:20 +0000456 if (oi->type != OSPF_IFTYPE_VIRTUALLINK)
paul68980082003-03-25 05:07:42 +0000457 {
Andrew J. Schorre4529632006-12-12 19:18:21 +0000458 struct prefix ptmp;
459
460 prefix_copy (&ptmp, CONNECTED_PREFIX(oi->connected));
paul68980082003-03-25 05:07:42 +0000461 apply_mask (&ptmp);
462 if (prefix_same (&ptmp, (struct prefix *) p))
463 return oi;
464 }
465 }
paul718e3742002-12-13 20:15:29 +0000466 return NULL;
467}
468
Joakim Tjernlund05cf46b2009-07-27 12:42:30 +0200469/* determine receiving interface by ifp and source address */
paul718e3742002-12-13 20:15:29 +0000470struct ospf_interface *
Joakim Tjernlund05cf46b2009-07-27 12:42:30 +0200471ospf_if_lookup_recv_if (struct ospf *ospf, struct in_addr src,
472 struct interface *ifp)
paul718e3742002-12-13 20:15:29 +0000473{
Joakim Tjernlund05cf46b2009-07-27 12:42:30 +0200474 struct route_node *rn;
paul718e3742002-12-13 20:15:29 +0000475 struct prefix_ipv4 addr;
476 struct ospf_interface *oi, *match;
477
478 addr.family = AF_INET;
479 addr.prefix = src;
480 addr.prefixlen = IPV4_MAX_BITLEN;
481
482 match = NULL;
483
Joakim Tjernlund05cf46b2009-07-27 12:42:30 +0200484 for (rn = route_top (IF_OIFS (ifp)); rn; rn = route_next (rn))
paul718e3742002-12-13 20:15:29 +0000485 {
Joakim Tjernlund05cf46b2009-07-27 12:42:30 +0200486 oi = rn->info;
487
488 if (!oi) /* oi can be NULL for PtP aliases */
489 continue;
490
paul718e3742002-12-13 20:15:29 +0000491 if (oi->type == OSPF_IFTYPE_VIRTUALLINK)
492 continue;
Joakim Tjernlund05cf46b2009-07-27 12:42:30 +0200493
Paul Jakma1a8ee0e2006-03-30 14:20:00 +0000494 if (if_is_loopback (oi->ifp))
495 continue;
Andrew J. Schorre4529632006-12-12 19:18:21 +0000496
497 if (prefix_match (CONNECTED_PREFIX(oi->connected),
498 (struct prefix *) &addr))
paul718e3742002-12-13 20:15:29 +0000499 {
Andrew J. Schorre4529632006-12-12 19:18:21 +0000500 if ( (match == NULL) ||
501 (match->address->prefixlen < oi->address->prefixlen)
502 )
503 match = oi;
paul718e3742002-12-13 20:15:29 +0000504 }
505 }
506
507 return match;
508}
David Lamparter6b0655a2014-06-04 06:53:35 +0200509
paul718e3742002-12-13 20:15:29 +0000510void
511ospf_if_stream_set (struct ospf_interface *oi)
512{
513 /* set output fifo queue. */
514 if (oi->obuf == NULL)
515 oi->obuf = ospf_fifo_new ();
516}
517
518void
519ospf_if_stream_unset (struct ospf_interface *oi)
520{
paul68980082003-03-25 05:07:42 +0000521 struct ospf *ospf = oi->ospf;
522
paul718e3742002-12-13 20:15:29 +0000523 if (oi->obuf)
524 {
525 ospf_fifo_free (oi->obuf);
526 oi->obuf = NULL;
527
528 if (oi->on_write_q)
529 {
paul68980082003-03-25 05:07:42 +0000530 listnode_delete (ospf->oi_write_q, oi);
531 if (list_isempty(ospf->oi_write_q))
532 OSPF_TIMER_OFF (ospf->t_write);
paul718e3742002-12-13 20:15:29 +0000533 oi->on_write_q = 0;
534 }
535 }
536}
paul68980082003-03-25 05:07:42 +0000537
David Lamparter6b0655a2014-06-04 06:53:35 +0200538
paul4dadc292005-05-06 21:37:42 +0000539static struct ospf_if_params *
540ospf_new_if_params (void)
paul718e3742002-12-13 20:15:29 +0000541{
542 struct ospf_if_params *oip;
543
Stephen Hemminger393deb92008-08-18 14:13:29 -0700544 oip = XCALLOC (MTYPE_OSPF_IF_PARAMS, sizeof (struct ospf_if_params));
paul718e3742002-12-13 20:15:29 +0000545
546 if (!oip)
547 return NULL;
548
paul718e3742002-12-13 20:15:29 +0000549 UNSET_IF_PARAM (oip, output_cost_cmd);
550 UNSET_IF_PARAM (oip, transmit_delay);
551 UNSET_IF_PARAM (oip, retransmit_interval);
552 UNSET_IF_PARAM (oip, passive_interface);
553 UNSET_IF_PARAM (oip, v_hello);
paulf9ad9372005-10-21 00:45:17 +0000554 UNSET_IF_PARAM (oip, fast_hello);
paul718e3742002-12-13 20:15:29 +0000555 UNSET_IF_PARAM (oip, v_wait);
556 UNSET_IF_PARAM (oip, priority);
557 UNSET_IF_PARAM (oip, type);
558 UNSET_IF_PARAM (oip, auth_simple);
559 UNSET_IF_PARAM (oip, auth_crypt);
560 UNSET_IF_PARAM (oip, auth_type);
paulec1ca632003-06-04 02:23:15 +0000561
562 oip->auth_crypt = list_new ();
paul718e3742002-12-13 20:15:29 +0000563
Paul Jakma7eb5b472009-10-13 16:13:13 +0100564 oip->network_lsa_seqnum = htonl(OSPF_INITIAL_SEQUENCE_NUMBER);
565
paul718e3742002-12-13 20:15:29 +0000566 return oip;
567}
568
569void
570ospf_del_if_params (struct ospf_if_params *oip)
571{
572 list_delete (oip->auth_crypt);
573 XFREE (MTYPE_OSPF_IF_PARAMS, oip);
574}
575
576void
577ospf_free_if_params (struct interface *ifp, struct in_addr addr)
578{
579 struct ospf_if_params *oip;
580 struct prefix_ipv4 p;
581 struct route_node *rn;
gdt630e4802004-08-31 17:28:41 +0000582
583 p.family = AF_INET;
paul718e3742002-12-13 20:15:29 +0000584 p.prefixlen = IPV4_MAX_PREFIXLEN;
585 p.prefix = addr;
586 rn = route_node_lookup (IF_OIFS_PARAMS (ifp), (struct prefix*)&p);
587 if (!rn || !rn->info)
588 return;
589
590 oip = rn->info;
591 route_unlock_node (rn);
592
593 if (!OSPF_IF_PARAM_CONFIGURED (oip, output_cost_cmd) &&
594 !OSPF_IF_PARAM_CONFIGURED (oip, transmit_delay) &&
595 !OSPF_IF_PARAM_CONFIGURED (oip, retransmit_interval) &&
596 !OSPF_IF_PARAM_CONFIGURED (oip, passive_interface) &&
597 !OSPF_IF_PARAM_CONFIGURED (oip, v_hello) &&
paulf9ad9372005-10-21 00:45:17 +0000598 !OSPF_IF_PARAM_CONFIGURED (oip, fast_hello) &&
paul718e3742002-12-13 20:15:29 +0000599 !OSPF_IF_PARAM_CONFIGURED (oip, v_wait) &&
600 !OSPF_IF_PARAM_CONFIGURED (oip, priority) &&
601 !OSPF_IF_PARAM_CONFIGURED (oip, type) &&
602 !OSPF_IF_PARAM_CONFIGURED (oip, auth_simple) &&
603 !OSPF_IF_PARAM_CONFIGURED (oip, auth_type) &&
Paul Jakma7eb5b472009-10-13 16:13:13 +0100604 listcount (oip->auth_crypt) == 0 &&
605 ntohl (oip->network_lsa_seqnum) != OSPF_INITIAL_SEQUENCE_NUMBER)
paul718e3742002-12-13 20:15:29 +0000606 {
607 ospf_del_if_params (oip);
608 rn->info = NULL;
609 route_unlock_node (rn);
610 }
611}
612
613struct ospf_if_params *
614ospf_lookup_if_params (struct interface *ifp, struct in_addr addr)
615{
616 struct prefix_ipv4 p;
617 struct route_node *rn;
618
gdt630e4802004-08-31 17:28:41 +0000619 p.family = AF_INET;
paul718e3742002-12-13 20:15:29 +0000620 p.prefixlen = IPV4_MAX_PREFIXLEN;
621 p.prefix = addr;
622
623 rn = route_node_lookup (IF_OIFS_PARAMS (ifp), (struct prefix*)&p);
624
625 if (rn)
626 {
627 route_unlock_node (rn);
628 return rn->info;
629 }
630
631 return NULL;
632}
633
634struct ospf_if_params *
635ospf_get_if_params (struct interface *ifp, struct in_addr addr)
636{
637 struct prefix_ipv4 p;
638 struct route_node *rn;
639
640 p.family = AF_INET;
641 p.prefixlen = IPV4_MAX_PREFIXLEN;
642 p.prefix = addr;
643
644 rn = route_node_get (IF_OIFS_PARAMS (ifp), (struct prefix*)&p);
645
646 if (rn->info == NULL)
647 rn->info = ospf_new_if_params ();
648 else
649 route_unlock_node (rn);
650
651 return rn->info;
652}
653
654void
655ospf_if_update_params (struct interface *ifp, struct in_addr addr)
656{
657 struct route_node *rn;
658 struct ospf_interface *oi;
659
660 for (rn = route_top (IF_OIFS (ifp)); rn; rn = route_next (rn))
661 {
662 if ((oi = rn->info) == NULL)
663 continue;
664
665 if (IPV4_ADDR_SAME (&oi->address->u.prefix4, &addr))
666 oi->params = ospf_lookup_if_params (ifp, oi->address->u.prefix4);
667 }
668}
669
670int
671ospf_if_new_hook (struct interface *ifp)
672{
673 int rc = 0;
674
Stephen Hemminger393deb92008-08-18 14:13:29 -0700675 ifp->info = XCALLOC (MTYPE_OSPF_IF_INFO, sizeof (struct ospf_if_info));
paul718e3742002-12-13 20:15:29 +0000676
677 IF_OIFS (ifp) = route_table_init ();
678 IF_OIFS_PARAMS (ifp) = route_table_init ();
679
680 IF_DEF_PARAMS (ifp) = ospf_new_if_params ();
681
682 SET_IF_PARAM (IF_DEF_PARAMS (ifp), transmit_delay);
683 IF_DEF_PARAMS (ifp)->transmit_delay = OSPF_TRANSMIT_DELAY_DEFAULT;
684
685 SET_IF_PARAM (IF_DEF_PARAMS (ifp), retransmit_interval);
686 IF_DEF_PARAMS (ifp)->retransmit_interval = OSPF_RETRANSMIT_INTERVAL_DEFAULT;
687
688 SET_IF_PARAM (IF_DEF_PARAMS (ifp), priority);
689 IF_DEF_PARAMS (ifp)->priority = OSPF_ROUTER_PRIORITY_DEFAULT;
690
vincentba682532005-09-29 13:52:57 +0000691 IF_DEF_PARAMS (ifp)->mtu_ignore = OSPF_MTU_IGNORE_DEFAULT;
692
paul718e3742002-12-13 20:15:29 +0000693 SET_IF_PARAM (IF_DEF_PARAMS (ifp), v_hello);
694 IF_DEF_PARAMS (ifp)->v_hello = OSPF_HELLO_INTERVAL_DEFAULT;
695
paulf9ad9372005-10-21 00:45:17 +0000696 SET_IF_PARAM (IF_DEF_PARAMS (ifp), fast_hello);
697 IF_DEF_PARAMS (ifp)->fast_hello = OSPF_FAST_HELLO_DEFAULT;
698
paul718e3742002-12-13 20:15:29 +0000699 SET_IF_PARAM (IF_DEF_PARAMS (ifp), v_wait);
700 IF_DEF_PARAMS (ifp)->v_wait = OSPF_ROUTER_DEAD_INTERVAL_DEFAULT;
701
702 SET_IF_PARAM (IF_DEF_PARAMS (ifp), auth_simple);
703 memset (IF_DEF_PARAMS (ifp)->auth_simple, 0, OSPF_AUTH_SIMPLE_SIZE);
704
paul718e3742002-12-13 20:15:29 +0000705 SET_IF_PARAM (IF_DEF_PARAMS (ifp), auth_type);
706 IF_DEF_PARAMS (ifp)->auth_type = OSPF_AUTH_NOTSET;
707
paul718e3742002-12-13 20:15:29 +0000708 rc = ospf_opaque_new_if (ifp);
paul718e3742002-12-13 20:15:29 +0000709 return rc;
710}
711
paul4dadc292005-05-06 21:37:42 +0000712static int
paul718e3742002-12-13 20:15:29 +0000713ospf_if_delete_hook (struct interface *ifp)
714{
715 int rc = 0;
paul940b01a2004-02-17 20:07:30 +0000716 struct route_node *rn;
paul718e3742002-12-13 20:15:29 +0000717 rc = ospf_opaque_del_if (ifp);
paul940b01a2004-02-17 20:07:30 +0000718
paul718e3742002-12-13 20:15:29 +0000719 route_table_finish (IF_OIFS (ifp));
paul940b01a2004-02-17 20:07:30 +0000720
721 for (rn = route_top (IF_OIFS_PARAMS (ifp)); rn; rn = route_next (rn))
722 if (rn->info)
723 ospf_del_if_params (rn->info);
paul718e3742002-12-13 20:15:29 +0000724 route_table_finish (IF_OIFS_PARAMS (ifp));
paul940b01a2004-02-17 20:07:30 +0000725
paulcfc959b2003-06-04 02:28:45 +0000726 ospf_del_if_params ((struct ospf_if_params *) IF_DEF_PARAMS (ifp));
paul718e3742002-12-13 20:15:29 +0000727 XFREE (MTYPE_OSPF_IF_INFO, ifp->info);
728 ifp->info = NULL;
729
730 return rc;
731}
732
733int
734ospf_if_is_enable (struct ospf_interface *oi)
735{
736 if (!if_is_loopback (oi->ifp))
737 if (if_is_up (oi->ifp))
738 return 1;
739
740 return 0;
741}
742
ajsba6454e2005-02-08 15:37:30 +0000743void
744ospf_if_set_multicast(struct ospf_interface *oi)
745{
746 if ((oi->state > ISM_Loopback) &&
747 (oi->type != OSPF_IFTYPE_LOOPBACK) &&
748 (oi->type != OSPF_IFTYPE_VIRTUALLINK) &&
Andrew J. Schorre8a56f02007-04-21 20:46:31 +0000749 (OSPF_IF_PASSIVE_STATUS(oi) == OSPF_IF_ACTIVE))
ajsba6454e2005-02-08 15:37:30 +0000750 {
751 /* The interface should belong to the OSPF-all-routers group. */
Paul Jakma429ac782006-06-15 18:40:49 +0000752 if (!OI_MEMBER_CHECK(oi, MEMBER_ALLROUTERS) &&
ajsba6454e2005-02-08 15:37:30 +0000753 (ospf_if_add_allspfrouters(oi->ospf, oi->address,
754 oi->ifp->ifindex) >= 0))
Paul Jakma429ac782006-06-15 18:40:49 +0000755 /* Set the flag only if the system call to join succeeded. */
756 OI_MEMBER_JOINED(oi, MEMBER_ALLROUTERS);
ajsba6454e2005-02-08 15:37:30 +0000757 }
758 else
759 {
760 /* The interface should NOT belong to the OSPF-all-routers group. */
Paul Jakma429ac782006-06-15 18:40:49 +0000761 if (OI_MEMBER_CHECK(oi, MEMBER_ALLROUTERS))
ajsba6454e2005-02-08 15:37:30 +0000762 {
Paul Jakma429ac782006-06-15 18:40:49 +0000763 /* Only actually drop if this is the last reference */
764 if (OI_MEMBER_COUNT(oi, MEMBER_ALLROUTERS) == 1)
765 ospf_if_drop_allspfrouters (oi->ospf, oi->address,
766 oi->ifp->ifindex);
ajsba6454e2005-02-08 15:37:30 +0000767 /* Unset the flag regardless of whether the system call to leave
768 the group succeeded, since it's much safer to assume that
769 we are not a member. */
Paul Jakma429ac782006-06-15 18:40:49 +0000770 OI_MEMBER_LEFT(oi,MEMBER_ALLROUTERS);
ajsba6454e2005-02-08 15:37:30 +0000771 }
772 }
773
774 if (((oi->type == OSPF_IFTYPE_BROADCAST) ||
775 (oi->type == OSPF_IFTYPE_POINTOPOINT)) &&
776 ((oi->state == ISM_DR) || (oi->state == ISM_Backup)) &&
Andrew J. Schorre8a56f02007-04-21 20:46:31 +0000777 (OSPF_IF_PASSIVE_STATUS(oi) == OSPF_IF_ACTIVE))
ajsba6454e2005-02-08 15:37:30 +0000778 {
779 /* The interface should belong to the OSPF-designated-routers group. */
Paul Jakma429ac782006-06-15 18:40:49 +0000780 if (!OI_MEMBER_CHECK(oi, MEMBER_DROUTERS) &&
ajsba6454e2005-02-08 15:37:30 +0000781 (ospf_if_add_alldrouters(oi->ospf, oi->address,
782 oi->ifp->ifindex) >= 0))
783 /* Set the flag only if the system call to join succeeded. */
Paul Jakma429ac782006-06-15 18:40:49 +0000784 OI_MEMBER_JOINED(oi, MEMBER_DROUTERS);
ajsba6454e2005-02-08 15:37:30 +0000785 }
786 else
787 {
788 /* The interface should NOT belong to the OSPF-designated-routers group */
Paul Jakma429ac782006-06-15 18:40:49 +0000789 if (OI_MEMBER_CHECK(oi, MEMBER_DROUTERS))
ajsba6454e2005-02-08 15:37:30 +0000790 {
Paul Jakma429ac782006-06-15 18:40:49 +0000791 /* drop only if last reference */
792 if (OI_MEMBER_COUNT(oi, MEMBER_DROUTERS) == 1)
793 ospf_if_drop_alldrouters(oi->ospf, oi->address, oi->ifp->ifindex);
794
ajsba6454e2005-02-08 15:37:30 +0000795 /* Unset the flag regardless of whether the system call to leave
796 the group succeeded, since it's much safer to assume that
797 we are not a member. */
Paul Jakma429ac782006-06-15 18:40:49 +0000798 OI_MEMBER_LEFT(oi, MEMBER_DROUTERS);
ajsba6454e2005-02-08 15:37:30 +0000799 }
800 }
801}
802
paul718e3742002-12-13 20:15:29 +0000803int
804ospf_if_up (struct ospf_interface *oi)
805{
806 if (oi == NULL)
807 return 0;
808
809 if (oi->type == OSPF_IFTYPE_LOOPBACK)
810 OSPF_ISM_EVENT_SCHEDULE (oi, ISM_LoopInd);
811 else
812 {
Denis Ovsienkob7fe4142007-08-21 16:32:56 +0000813 struct ospf *ospf = ospf_lookup ();
814 if (ospf != NULL)
815 ospf_adjust_sndbuflen (ospf, oi->ifp->mtu);
816 else
Denis Ovsienkofb31c0f2007-09-18 09:03:13 +0000817 zlog_warn ("%s: ospf_lookup() returned NULL", __func__);
paul718e3742002-12-13 20:15:29 +0000818 ospf_if_stream_set (oi);
819 OSPF_ISM_EVENT_SCHEDULE (oi, ISM_InterfaceUp);
820 }
821
822 return 1;
823}
824
825int
826ospf_if_down (struct ospf_interface *oi)
827{
828 if (oi == NULL)
829 return 0;
830
831 OSPF_ISM_EVENT_EXECUTE (oi, ISM_InterfaceDown);
Joakim Tjernlundc81ee5c2012-07-07 17:06:11 +0200832 /* delete position in router LSA */
833 oi->lsa_pos_beg = 0;
834 oi->lsa_pos_end = 0;
paul718e3742002-12-13 20:15:29 +0000835 /* Shutdown packet reception and sending */
836 ospf_if_stream_unset (oi);
paul718e3742002-12-13 20:15:29 +0000837
838 return 1;
839}
840
David Lamparter6b0655a2014-06-04 06:53:35 +0200841
paul718e3742002-12-13 20:15:29 +0000842/* Virtual Link related functions. */
843
844struct ospf_vl_data *
845ospf_vl_data_new (struct ospf_area *area, struct in_addr vl_peer)
846{
847 struct ospf_vl_data *vl_data;
848
Stephen Hemminger393deb92008-08-18 14:13:29 -0700849 vl_data = XCALLOC (MTYPE_OSPF_VL_DATA, sizeof (struct ospf_vl_data));
paul718e3742002-12-13 20:15:29 +0000850
851 vl_data->vl_peer.s_addr = vl_peer.s_addr;
852 vl_data->vl_area_id = area->area_id;
853 vl_data->format = area->format;
854
855 return vl_data;
856}
857
858void
859ospf_vl_data_free (struct ospf_vl_data *vl_data)
860{
861 XFREE (MTYPE_OSPF_VL_DATA, vl_data);
862}
863
864u_int vlink_count = 0;
865
866struct ospf_interface *
paul68980082003-03-25 05:07:42 +0000867ospf_vl_new (struct ospf *ospf, struct ospf_vl_data *vl_data)
paul718e3742002-12-13 20:15:29 +0000868{
869 struct ospf_interface * voi;
870 struct interface * vi;
871 char ifname[INTERFACE_NAMSIZ + 1];
872 struct ospf_area *area;
873 struct in_addr area_id;
874 struct connected *co;
875 struct prefix_ipv4 *p;
876
877 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000878 zlog_debug ("ospf_vl_new(): Start");
paul718e3742002-12-13 20:15:29 +0000879 if (vlink_count == OSPF_VL_MAX_COUNT)
880 {
881 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000882 zlog_debug ("ospf_vl_new(): Alarm: "
paul718e3742002-12-13 20:15:29 +0000883 "cannot create more than OSPF_MAX_VL_COUNT virtual links");
884 return NULL;
885 }
886
887 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000888 zlog_debug ("ospf_vl_new(): creating pseudo zebra interface");
paul718e3742002-12-13 20:15:29 +0000889
ajsa3491982005-04-02 22:50:38 +0000890 snprintf (ifname, sizeof(ifname), "VLINK%d", vlink_count);
891 vi = if_create (ifname, strnlen(ifname, sizeof(ifname)));
Dinesh G Dutta6d400c2015-09-18 08:32:56 -0400892 /* Ensure that linkdetection is not enabled on the stub interfaces
893 * created for OSPF virtual links. */
894 UNSET_FLAG(vi->status, ZEBRA_INTERFACE_LINKDETECTION);
paul718e3742002-12-13 20:15:29 +0000895 co = connected_new ();
896 co->ifp = vi;
897 listnode_add (vi->connected, co);
898
899 p = prefix_ipv4_new ();
900 p->family = AF_INET;
901 p->prefix.s_addr = 0;
902 p->prefixlen = 0;
903
904 co->address = (struct prefix *)p;
905
paul68980082003-03-25 05:07:42 +0000906 voi = ospf_if_new (ospf, vi, co->address);
paul718e3742002-12-13 20:15:29 +0000907 if (voi == NULL)
908 {
909 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000910 zlog_debug ("ospf_vl_new(): Alarm: OSPF int structure is not created");
paul718e3742002-12-13 20:15:29 +0000911 return NULL;
912 }
913 voi->connected = co;
914 voi->vl_data = vl_data;
915 voi->ifp->mtu = OSPF_VL_MTU;
916 voi->type = OSPF_IFTYPE_VIRTUALLINK;
917
paul106d2fd2003-08-01 00:24:13 +0000918 vlink_count++;
paul718e3742002-12-13 20:15:29 +0000919 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000920 zlog_debug ("ospf_vl_new(): Created name: %s", ifname);
paul718e3742002-12-13 20:15:29 +0000921 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000922 zlog_debug ("ospf_vl_new(): set if->name to %s", vi->name);
paul718e3742002-12-13 20:15:29 +0000923
924 area_id.s_addr = 0;
paul68980082003-03-25 05:07:42 +0000925 area = ospf_area_get (ospf, area_id, OSPF_AREA_ID_FORMAT_ADDRESS);
paul718e3742002-12-13 20:15:29 +0000926 voi->area = area;
927
928 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000929 zlog_debug ("ospf_vl_new(): set associated area to the backbone");
paul718e3742002-12-13 20:15:29 +0000930
Jafar Al-Gharaibehbb01bdd2016-04-21 16:22:33 -0500931 /* Add pseudo neighbor. */
932 ospf_nbr_self_reset (voi);
933
paul718e3742002-12-13 20:15:29 +0000934 ospf_area_add_if (voi->area, voi);
935
936 ospf_if_stream_set (voi);
937
938 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +0000939 zlog_debug ("ospf_vl_new(): Stop");
paul718e3742002-12-13 20:15:29 +0000940 return voi;
941}
942
paul4dadc292005-05-06 21:37:42 +0000943static void
paul718e3742002-12-13 20:15:29 +0000944ospf_vl_if_delete (struct ospf_vl_data *vl_data)
945{
946 struct interface *ifp = vl_data->vl_oi->ifp;
947 vl_data->vl_oi->address->u.prefix4.s_addr = 0;
948 vl_data->vl_oi->address->prefixlen = 0;
949 ospf_if_free (vl_data->vl_oi);
950 if_delete (ifp);
951 vlink_count--;
952}
953
Paul Jakma9c27ef92006-05-04 07:32:57 +0000954/* Look up vl_data for given peer, optionally qualified to be in the
955 * specified area. NULL area returns first found..
956 */
paul718e3742002-12-13 20:15:29 +0000957struct ospf_vl_data *
Paul Jakma9c27ef92006-05-04 07:32:57 +0000958ospf_vl_lookup (struct ospf *ospf, struct ospf_area *area,
959 struct in_addr vl_peer)
paul718e3742002-12-13 20:15:29 +0000960{
961 struct ospf_vl_data *vl_data;
hasso52dc7ee2004-09-23 19:18:23 +0000962 struct listnode *node;
Paul Jakma9c27ef92006-05-04 07:32:57 +0000963
964 if (IS_DEBUG_OSPF_EVENT)
965 {
966 zlog_debug ("%s: Looking for %s", __func__, inet_ntoa (vl_peer));
967 if (area)
968 zlog_debug ("%s: in area %s", __func__, inet_ntoa (area->area_id));
969 }
970
971 for (ALL_LIST_ELEMENTS_RO (ospf->vlinks, node, vl_data))
972 {
973 if (IS_DEBUG_OSPF_EVENT)
974 zlog_debug ("%s: VL %s, peer %s", __func__,
975 vl_data->vl_oi->ifp->name,
976 inet_ntoa (vl_data->vl_peer));
977
978 if (area && !IPV4_ADDR_SAME (&vl_data->vl_area_id, &area->area_id))
979 continue;
980
981 if (IPV4_ADDR_SAME (&vl_data->vl_peer, &vl_peer))
982 return vl_data;
983 }
paul718e3742002-12-13 20:15:29 +0000984
985 return NULL;
986}
987
paul4dadc292005-05-06 21:37:42 +0000988static void
paul718e3742002-12-13 20:15:29 +0000989ospf_vl_shutdown (struct ospf_vl_data *vl_data)
990{
991 struct ospf_interface *oi;
992
993 if ((oi = vl_data->vl_oi) == NULL)
994 return;
995
996 oi->address->u.prefix4.s_addr = 0;
997 oi->address->prefixlen = 0;
998
999 UNSET_FLAG (oi->ifp->flags, IFF_UP);
1000 /* OSPF_ISM_EVENT_SCHEDULE (oi, ISM_InterfaceDown); */
1001 OSPF_ISM_EVENT_EXECUTE (oi, ISM_InterfaceDown);
1002}
1003
1004void
paul68980082003-03-25 05:07:42 +00001005ospf_vl_add (struct ospf *ospf, struct ospf_vl_data *vl_data)
paul718e3742002-12-13 20:15:29 +00001006{
paul68980082003-03-25 05:07:42 +00001007 listnode_add (ospf->vlinks, vl_data);
paul718e3742002-12-13 20:15:29 +00001008#ifdef HAVE_SNMP
1009 ospf_snmp_vl_add (vl_data);
1010#endif /* HAVE_SNMP */
1011}
1012
1013void
paul68980082003-03-25 05:07:42 +00001014ospf_vl_delete (struct ospf *ospf, struct ospf_vl_data *vl_data)
paul718e3742002-12-13 20:15:29 +00001015{
1016 ospf_vl_shutdown (vl_data);
1017 ospf_vl_if_delete (vl_data);
1018
1019#ifdef HAVE_SNMP
1020 ospf_snmp_vl_delete (vl_data);
1021#endif /* HAVE_SNMP */
paul68980082003-03-25 05:07:42 +00001022 listnode_delete (ospf->vlinks, vl_data);
paul718e3742002-12-13 20:15:29 +00001023
1024 ospf_vl_data_free (vl_data);
1025}
1026
paul4dadc292005-05-06 21:37:42 +00001027static int
paul718e3742002-12-13 20:15:29 +00001028ospf_vl_set_params (struct ospf_vl_data *vl_data, struct vertex *v)
1029{
1030 int changed = 0;
1031 struct ospf_interface *voi;
hasso52dc7ee2004-09-23 19:18:23 +00001032 struct listnode *node;
pauleb3da6d2005-10-18 04:20:33 +00001033 struct vertex_parent *vp = NULL;
Donald Sharp0bc874b2015-07-29 19:16:13 -04001034 unsigned int i;
paul718e3742002-12-13 20:15:29 +00001035 struct router_lsa *rl;
1036
1037 voi = vl_data->vl_oi;
1038
1039 if (voi->output_cost != v->distance)
1040 {
paulcd59da62004-05-05 17:26:55 +00001041
paul718e3742002-12-13 20:15:29 +00001042 voi->output_cost = v->distance;
1043 changed = 1;
1044 }
1045
pauleb3da6d2005-10-18 04:20:33 +00001046 for (ALL_LIST_ELEMENTS_RO (v->parents, node, vp))
paul1eb8ef22005-04-07 07:30:20 +00001047 {
Paul Jakma9c27ef92006-05-04 07:32:57 +00001048 vl_data->nexthop.oi = vp->nexthop->oi;
1049 vl_data->nexthop.router = vp->nexthop->router;
paul1eb8ef22005-04-07 07:30:20 +00001050
1051 if (!IPV4_ADDR_SAME(&voi->address->u.prefix4,
Paul Jakma9c27ef92006-05-04 07:32:57 +00001052 &vl_data->nexthop.oi->address->u.prefix4))
paul1eb8ef22005-04-07 07:30:20 +00001053 changed = 1;
paulcd59da62004-05-05 17:26:55 +00001054
Paul Jakma9c27ef92006-05-04 07:32:57 +00001055 voi->address->u.prefix4 = vl_data->nexthop.oi->address->u.prefix4;
1056 voi->address->prefixlen = vl_data->nexthop.oi->address->prefixlen;
paul718e3742002-12-13 20:15:29 +00001057
paul1eb8ef22005-04-07 07:30:20 +00001058 break; /* We take the first interface. */
1059 }
paul718e3742002-12-13 20:15:29 +00001060
1061 rl = (struct router_lsa *)v->lsa;
pauld355bfa2004-04-08 07:43:45 +00001062
1063 /* use SPF determined backlink index in struct vertex
1064 * for virtual link destination address
1065 */
pauleb3da6d2005-10-18 04:20:33 +00001066 if (vp && vp->backlink >= 0)
paul718e3742002-12-13 20:15:29 +00001067 {
pauld355bfa2004-04-08 07:43:45 +00001068 if (!IPV4_ADDR_SAME (&vl_data->peer_addr,
pauleb3da6d2005-10-18 04:20:33 +00001069 &rl->link[vp->backlink].link_data))
pauld355bfa2004-04-08 07:43:45 +00001070 changed = 1;
pauleb3da6d2005-10-18 04:20:33 +00001071 vl_data->peer_addr = rl->link[vp->backlink].link_data;
pauld355bfa2004-04-08 07:43:45 +00001072 }
1073 else
1074 {
1075 /* This is highly odd, there is no backlink index
1076 * there should be due to the ospf_spf_has_link() check
1077 * in SPF. Lets warn and try pick a link anyway.
1078 */
1079 zlog_warn ("ospf_vl_set_params: No backlink for %s!",
1080 vl_data->vl_oi->ifp->name);
1081 for (i = 0; i < ntohs (rl->links); i++)
paul2e6b0bb2003-06-22 08:17:12 +00001082 {
pauld355bfa2004-04-08 07:43:45 +00001083 switch (rl->link[i].type)
1084 {
1085 case LSA_LINK_TYPE_VIRTUALLINK:
1086 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +00001087 zlog_debug ("found back link through VL");
pauld355bfa2004-04-08 07:43:45 +00001088 case LSA_LINK_TYPE_TRANSIT:
1089 case LSA_LINK_TYPE_POINTOPOINT:
paulcd59da62004-05-05 17:26:55 +00001090 if (!IPV4_ADDR_SAME (&vl_data->peer_addr,
1091 &rl->link[i].link_data))
1092 changed = 1;
pauld355bfa2004-04-08 07:43:45 +00001093 vl_data->peer_addr = rl->link[i].link_data;
pauld355bfa2004-04-08 07:43:45 +00001094 }
paul2e6b0bb2003-06-22 08:17:12 +00001095 }
paul718e3742002-12-13 20:15:29 +00001096 }
pauld355bfa2004-04-08 07:43:45 +00001097
1098 if (IS_DEBUG_OSPF_EVENT)
Paul Jakma9c27ef92006-05-04 07:32:57 +00001099 zlog_debug ("%s: %s peer address: %s, cost: %d,%schanged", __func__,
pauld355bfa2004-04-08 07:43:45 +00001100 vl_data->vl_oi->ifp->name,
Paul Jakma9c27ef92006-05-04 07:32:57 +00001101 inet_ntoa(vl_data->peer_addr),
1102 voi->output_cost,
1103 (changed ? " " : " un"));
pauld355bfa2004-04-08 07:43:45 +00001104
paul2e6b0bb2003-06-22 08:17:12 +00001105 return changed;
paul718e3742002-12-13 20:15:29 +00001106}
1107
1108
1109void
paul68980082003-03-25 05:07:42 +00001110ospf_vl_up_check (struct ospf_area *area, struct in_addr rid,
paul718e3742002-12-13 20:15:29 +00001111 struct vertex *v)
1112{
paul68980082003-03-25 05:07:42 +00001113 struct ospf *ospf = area->ospf;
hasso52dc7ee2004-09-23 19:18:23 +00001114 struct listnode *node;
paul718e3742002-12-13 20:15:29 +00001115 struct ospf_vl_data *vl_data;
1116 struct ospf_interface *oi;
1117
1118 if (IS_DEBUG_OSPF_EVENT)
1119 {
ajs60925302004-12-08 17:45:02 +00001120 zlog_debug ("ospf_vl_up_check(): Start");
1121 zlog_debug ("ospf_vl_up_check(): Router ID is %s", inet_ntoa (rid));
1122 zlog_debug ("ospf_vl_up_check(): Area is %s", inet_ntoa (area->area_id));
paul718e3742002-12-13 20:15:29 +00001123 }
1124
paul1eb8ef22005-04-07 07:30:20 +00001125 for (ALL_LIST_ELEMENTS_RO (ospf->vlinks, node, vl_data))
paul718e3742002-12-13 20:15:29 +00001126 {
paul718e3742002-12-13 20:15:29 +00001127 if (IS_DEBUG_OSPF_EVENT)
1128 {
Paul Jakma9c27ef92006-05-04 07:32:57 +00001129 zlog_debug ("%s: considering VL, %s in area %s", __func__,
1130 vl_data->vl_oi->ifp->name,
1131 inet_ntoa (vl_data->vl_area_id));
1132 zlog_debug ("%s: peer ID: %s", __func__,
paul718e3742002-12-13 20:15:29 +00001133 inet_ntoa (vl_data->vl_peer));
1134 }
1135
1136 if (IPV4_ADDR_SAME (&vl_data->vl_peer, &rid) &&
1137 IPV4_ADDR_SAME (&vl_data->vl_area_id, &area->area_id))
1138 {
1139 oi = vl_data->vl_oi;
1140 SET_FLAG (vl_data->flags, OSPF_VL_FLAG_APPROVED);
1141
1142 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +00001143 zlog_debug ("ospf_vl_up_check(): this VL matched");
paul718e3742002-12-13 20:15:29 +00001144
1145 if (oi->state == ISM_Down)
1146 {
1147 if (IS_DEBUG_OSPF_EVENT)
ajs60925302004-12-08 17:45:02 +00001148 zlog_debug ("ospf_vl_up_check(): VL is down, waking it up");
paul718e3742002-12-13 20:15:29 +00001149 SET_FLAG (oi->ifp->flags, IFF_UP);
paul2e6b0bb2003-06-22 08:17:12 +00001150 OSPF_ISM_EVENT_EXECUTE(oi,ISM_InterfaceUp);
paul718e3742002-12-13 20:15:29 +00001151 }
1152
paul2e6b0bb2003-06-22 08:17:12 +00001153 if (ospf_vl_set_params (vl_data, v))
1154 {
1155 if (IS_DEBUG_OSPF (ism, ISM_EVENTS))
ajs60925302004-12-08 17:45:02 +00001156 zlog_debug ("ospf_vl_up_check: VL cost change,"
paulcd59da62004-05-05 17:26:55 +00001157 " scheduling router lsa refresh");
Paul Jakmac363d382010-01-24 22:42:13 +00001158 if (ospf->backbone)
1159 ospf_router_lsa_update_area (ospf->backbone);
paul2e6b0bb2003-06-22 08:17:12 +00001160 else if (IS_DEBUG_OSPF (ism, ISM_EVENTS))
ajs60925302004-12-08 17:45:02 +00001161 zlog_debug ("ospf_vl_up_check: VL cost change, no backbone!");
paul2e6b0bb2003-06-22 08:17:12 +00001162 }
paul718e3742002-12-13 20:15:29 +00001163 }
1164 }
1165}
1166
1167void
paul68980082003-03-25 05:07:42 +00001168ospf_vl_unapprove (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00001169{
hasso52dc7ee2004-09-23 19:18:23 +00001170 struct listnode *node;
paul718e3742002-12-13 20:15:29 +00001171 struct ospf_vl_data *vl_data;
1172
paul1eb8ef22005-04-07 07:30:20 +00001173 for (ALL_LIST_ELEMENTS_RO (ospf->vlinks, node, vl_data))
1174 UNSET_FLAG (vl_data->flags, OSPF_VL_FLAG_APPROVED);
paul718e3742002-12-13 20:15:29 +00001175}
1176
1177void
paul68980082003-03-25 05:07:42 +00001178ospf_vl_shut_unapproved (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00001179{
paul1eb8ef22005-04-07 07:30:20 +00001180 struct listnode *node, *nnode;
paul718e3742002-12-13 20:15:29 +00001181 struct ospf_vl_data *vl_data;
1182
paul1eb8ef22005-04-07 07:30:20 +00001183 for (ALL_LIST_ELEMENTS (ospf->vlinks, node, nnode, vl_data))
1184 if (!CHECK_FLAG (vl_data->flags, OSPF_VL_FLAG_APPROVED))
1185 ospf_vl_shutdown (vl_data);
paul718e3742002-12-13 20:15:29 +00001186}
1187
1188int
1189ospf_full_virtual_nbrs (struct ospf_area *area)
1190{
1191 if (IS_DEBUG_OSPF_EVENT)
1192 {
ajs60925302004-12-08 17:45:02 +00001193 zlog_debug ("counting fully adjacent virtual neighbors in area %s",
paul718e3742002-12-13 20:15:29 +00001194 inet_ntoa (area->area_id));
ajs60925302004-12-08 17:45:02 +00001195 zlog_debug ("there are %d of them", area->full_vls);
paul718e3742002-12-13 20:15:29 +00001196 }
1197
1198 return area->full_vls;
1199}
1200
1201int
1202ospf_vls_in_area (struct ospf_area *area)
1203{
hasso52dc7ee2004-09-23 19:18:23 +00001204 struct listnode *node;
paul718e3742002-12-13 20:15:29 +00001205 struct ospf_vl_data *vl_data;
1206 int c = 0;
1207
paul1eb8ef22005-04-07 07:30:20 +00001208 for (ALL_LIST_ELEMENTS_RO (area->ospf->vlinks, node, vl_data))
1209 if (IPV4_ADDR_SAME (&vl_data->vl_area_id, &area->area_id))
1210 c++;
paul718e3742002-12-13 20:15:29 +00001211
1212 return c;
1213}
1214
David Lamparter6b0655a2014-06-04 06:53:35 +02001215
paul718e3742002-12-13 20:15:29 +00001216struct crypt_key *
1217ospf_crypt_key_new ()
1218{
Stephen Hemminger393deb92008-08-18 14:13:29 -07001219 return XCALLOC (MTYPE_OSPF_CRYPT_KEY, sizeof (struct crypt_key));
paul718e3742002-12-13 20:15:29 +00001220}
1221
1222void
hasso52dc7ee2004-09-23 19:18:23 +00001223ospf_crypt_key_add (struct list *crypt, struct crypt_key *ck)
paul718e3742002-12-13 20:15:29 +00001224{
1225 listnode_add (crypt, ck);
1226}
1227
1228struct crypt_key *
hasso52dc7ee2004-09-23 19:18:23 +00001229ospf_crypt_key_lookup (struct list *auth_crypt, u_char key_id)
paul718e3742002-12-13 20:15:29 +00001230{
hasso52dc7ee2004-09-23 19:18:23 +00001231 struct listnode *node;
paul718e3742002-12-13 20:15:29 +00001232 struct crypt_key *ck;
1233
paul1eb8ef22005-04-07 07:30:20 +00001234 for (ALL_LIST_ELEMENTS_RO (auth_crypt, node, ck))
1235 if (ck->key_id == key_id)
1236 return ck;
paul718e3742002-12-13 20:15:29 +00001237
1238 return NULL;
1239}
1240
1241int
hasso52dc7ee2004-09-23 19:18:23 +00001242ospf_crypt_key_delete (struct list *auth_crypt, u_char key_id)
paul718e3742002-12-13 20:15:29 +00001243{
paul1eb8ef22005-04-07 07:30:20 +00001244 struct listnode *node, *nnode;
paul718e3742002-12-13 20:15:29 +00001245 struct crypt_key *ck;
1246
paul1eb8ef22005-04-07 07:30:20 +00001247 for (ALL_LIST_ELEMENTS (auth_crypt, node, nnode, ck))
paul718e3742002-12-13 20:15:29 +00001248 {
paul718e3742002-12-13 20:15:29 +00001249 if (ck->key_id == key_id)
1250 {
1251 listnode_delete (auth_crypt, ck);
vincentba682532005-09-29 13:52:57 +00001252 XFREE (MTYPE_OSPF_CRYPT_KEY, ck);
paul718e3742002-12-13 20:15:29 +00001253 return 1;
1254 }
1255 }
1256
1257 return 0;
1258}
1259
ajsbc18d612004-12-15 15:07:19 +00001260u_char
1261ospf_default_iftype(struct interface *ifp)
1262{
1263 if (if_is_pointopoint (ifp))
1264 return OSPF_IFTYPE_POINTOPOINT;
1265 else if (if_is_loopback (ifp))
1266 return OSPF_IFTYPE_LOOPBACK;
1267 else
1268 return OSPF_IFTYPE_BROADCAST;
1269}
1270
paul718e3742002-12-13 20:15:29 +00001271void
1272ospf_if_init ()
1273{
1274 /* Initialize Zebra interface data structure. */
paul020709f2003-04-04 02:44:16 +00001275 om->iflist = iflist;
paul718e3742002-12-13 20:15:29 +00001276 if_add_hook (IF_NEW_HOOK, ospf_if_new_hook);
1277 if_add_hook (IF_DELETE_HOOK, ospf_if_delete_hook);
1278}