]> git.proxmox.com Git - mirror_frr.git/blame - ospfd/ospf_neighbor.c
zebra: Allow ns delete to happen after under/over flow checks
[mirror_frr.git] / ospfd / ospf_neighbor.c
CommitLineData
2d59836a 1/*
2 * OSPF Neighbor functions.
3 * Copyright (C) 1999, 2000 Toshiaki Takada
4 *
5 * This file is part of GNU Zebra.
896014f4 6 *
2d59836a 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 *
896014f4
DL
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
2d59836a 20 */
21
22#include <zebra.h>
23
24#include "linklist.h"
25#include "prefix.h"
26#include "memory.h"
27#include "command.h"
28#include "thread.h"
29#include "stream.h"
30#include "table.h"
31#include "log.h"
68fe91d6 32#include "json.h"
2d59836a 33
34#include "ospfd/ospfd.h"
35#include "ospfd/ospf_interface.h"
36#include "ospfd/ospf_asbr.h"
37#include "ospfd/ospf_lsa.h"
38#include "ospfd/ospf_lsdb.h"
39#include "ospfd/ospf_neighbor.h"
40#include "ospfd/ospf_nsm.h"
41#include "ospfd/ospf_packet.h"
42#include "ospfd/ospf_network.h"
43#include "ospfd/ospf_flood.h"
44#include "ospfd/ospf_dump.h"
68fe91d6 45#include "ospfd/ospf_bfd.h"
2d59836a 46
478aab98
PJ
47/* Fill in the the 'key' as appropriate to retrieve the entry for nbr
48 * from the ospf_interface's nbrs table. Indexed by interface address
0ab4a2d6
JT
49 * for all cases except Virtual-link and PointToPoint interfaces, where
50 * neighbours are indexed by router-ID instead.
478aab98 51 */
d62a17ae 52static void ospf_nbr_key(struct ospf_interface *oi, struct ospf_neighbor *nbr,
53 struct prefix *key)
478aab98 54{
d62a17ae 55 key->family = AF_INET;
56 key->prefixlen = IPV4_MAX_BITLEN;
57
58 /* vlinks are indexed by router-id */
59 if (oi->type == OSPF_IFTYPE_VIRTUALLINK
60 || oi->type == OSPF_IFTYPE_POINTOPOINT)
61 key->u.prefix4 = nbr->router_id;
62 else
63 key->u.prefix4 = nbr->src;
64 return;
478aab98
PJ
65}
66
d62a17ae 67struct ospf_neighbor *ospf_nbr_new(struct ospf_interface *oi)
2d59836a 68{
d62a17ae 69 struct ospf_neighbor *nbr;
2d59836a 70
d62a17ae 71 /* Allcate new neighbor. */
72 nbr = XCALLOC(MTYPE_OSPF_NEIGHBOR, sizeof(struct ospf_neighbor));
2d59836a 73
d62a17ae 74 /* Relate neighbor to the interface. */
75 nbr->oi = oi;
2d59836a 76
d62a17ae 77 /* Set default values. */
78 nbr->state = NSM_Down;
2d59836a 79
d62a17ae 80 /* Set inheritance values. */
81 nbr->v_inactivity = OSPF_IF_PARAM(oi, v_wait);
82 nbr->v_db_desc = OSPF_IF_PARAM(oi, retransmit_interval);
83 nbr->v_ls_req = OSPF_IF_PARAM(oi, retransmit_interval);
84 nbr->v_ls_upd = OSPF_IF_PARAM(oi, retransmit_interval);
85 nbr->priority = -1;
2d59836a 86
d62a17ae 87 /* DD flags. */
88 nbr->dd_flags = OSPF_DD_FLAG_MS | OSPF_DD_FLAG_M | OSPF_DD_FLAG_I;
2d59836a 89
d62a17ae 90 /* Last received and sent DD. */
91 nbr->last_send = NULL;
2d59836a 92
d62a17ae 93 nbr->nbr_nbma = NULL;
2d59836a 94
d62a17ae 95 ospf_lsdb_init(&nbr->db_sum);
96 ospf_lsdb_init(&nbr->ls_rxmt);
97 ospf_lsdb_init(&nbr->ls_req);
2d59836a 98
d62a17ae 99 nbr->crypt_seqnum = 0;
2d59836a 100
d62a17ae 101 ospf_bfd_info_nbr_create(oi, nbr);
102 return nbr;
2d59836a 103}
104
d62a17ae 105void ospf_nbr_free(struct ospf_neighbor *nbr)
2d59836a 106{
d62a17ae 107 /* Free DB summary list. */
108 if (ospf_db_summary_count(nbr))
109 ospf_db_summary_clear(nbr);
110 /* ospf_db_summary_delete_all (nbr); */
111
112 /* Free ls request list. */
113 if (ospf_ls_request_count(nbr))
114 ospf_ls_request_delete_all(nbr);
115
116 /* Free retransmit list. */
117 if (ospf_ls_retransmit_count(nbr))
118 ospf_ls_retransmit_clear(nbr);
119
120 /* Cleanup LSDBs. */
121 ospf_lsdb_cleanup(&nbr->db_sum);
122 ospf_lsdb_cleanup(&nbr->ls_req);
123 ospf_lsdb_cleanup(&nbr->ls_rxmt);
124
125 /* Clear last send packet. */
126 if (nbr->last_send)
127 ospf_packet_free(nbr->last_send);
128
129 if (nbr->nbr_nbma) {
130 nbr->nbr_nbma->nbr = NULL;
131 nbr->nbr_nbma = NULL;
132 }
133
134 /* Cancel all timers. */
135 OSPF_NSM_TIMER_OFF(nbr->t_inactivity);
136 OSPF_NSM_TIMER_OFF(nbr->t_db_desc);
137 OSPF_NSM_TIMER_OFF(nbr->t_ls_req);
138 OSPF_NSM_TIMER_OFF(nbr->t_ls_upd);
139
140 /* Cancel all events. */ /* Thread lookup cost would be negligible. */
141 thread_cancel_event(master, nbr);
142
143 ospf_bfd_info_free(&nbr->bfd_info);
144 XFREE(MTYPE_OSPF_NEIGHBOR, nbr);
2d59836a 145}
146
147/* Delete specified OSPF neighbor from interface. */
d62a17ae 148void ospf_nbr_delete(struct ospf_neighbor *nbr)
2d59836a 149{
d62a17ae 150 struct ospf_interface *oi;
151 struct route_node *rn;
152 struct prefix p;
153
154 oi = nbr->oi;
155
156 /* get appropriate prefix 'key' */
157 ospf_nbr_key(oi, nbr, &p);
158
159 rn = route_node_lookup(oi->nbrs, &p);
160 if (rn) {
161 /* If lookup for a NBR succeeds, the leaf route_node could
162 * only exist because there is (or was) a nbr there.
163 * If the nbr was deleted, the leaf route_node should have
164 * lost its last refcount too, and be deleted.
165 * Therefore a looked-up leaf route_node in nbrs table
166 * should never have NULL info.
167 */
168 assert(rn->info);
169
170 if (rn->info) {
171 rn->info = NULL;
172 route_unlock_node(rn);
173 } else
174 zlog_info("Can't find neighbor %s in the interface %s",
175 inet_ntoa(nbr->src), IF_NAME(oi));
176
177 route_unlock_node(rn);
178 } else {
179 /*
180 * This neighbor was not found, but before we move on and
181 * free the neighbor structre, make sure that it was not
182 * indexed incorrectly and ended up in the "worng" place
183 */
184
185 /* Reverse the lookup rules */
186 if (oi->type == OSPF_IFTYPE_VIRTUALLINK
187 || oi->type == OSPF_IFTYPE_POINTOPOINT)
188 p.u.prefix4 = nbr->src;
189 else
190 p.u.prefix4 = nbr->router_id;
191
192 rn = route_node_lookup(oi->nbrs, &p);
193 if (rn) {
194 /* We found the neighbor!
195 * Now make sure it is not the exact same neighbor
196 * structure that we are about to free
197 */
198 if (nbr == rn->info) {
199 /* Same neighbor, drop the reference to it */
200 rn->info = NULL;
201 route_unlock_node(rn);
202 }
203 route_unlock_node(rn);
204 }
2d59836a 205 }
2d59836a 206
d62a17ae 207 /* Free ospf_neighbor structure. */
208 ospf_nbr_free(nbr);
2d59836a 209}
210
211/* Check myself is in the neighbor list. */
d62a17ae 212int ospf_nbr_bidirectional(struct in_addr *router_id, struct in_addr *neighbors,
213 int size)
2d59836a 214{
d62a17ae 215 int i;
216 int max;
2d59836a 217
d62a17ae 218 max = size / sizeof(struct in_addr);
2d59836a 219
d62a17ae 220 for (i = 0; i < max; i++)
221 if (IPV4_ADDR_SAME(router_id, &neighbors[i]))
222 return 1;
2d59836a 223
d62a17ae 224 return 0;
2d59836a 225}
226
cdd0c849 227/* reset nbr_self */
d62a17ae 228void ospf_nbr_self_reset(struct ospf_interface *oi, struct in_addr router_id)
cdd0c849 229{
d62a17ae 230 if (oi->nbr_self)
231 ospf_nbr_delete(oi->nbr_self);
ecea0cb0 232
d62a17ae 233 oi->nbr_self = ospf_nbr_new(oi);
234 ospf_nbr_add_self(oi, router_id);
cdd0c849
PJ
235}
236
2d59836a 237/* Add self to nbr list. */
d62a17ae 238void ospf_nbr_add_self(struct ospf_interface *oi, struct in_addr router_id)
2d59836a 239{
d62a17ae 240 struct prefix p;
241 struct route_node *rn;
242
243 if (!oi->nbr_self)
244 oi->nbr_self = ospf_nbr_new(oi);
245
246 /* Initial state */
247 oi->nbr_self->address = *oi->address;
248 oi->nbr_self->priority = OSPF_IF_PARAM(oi, priority);
249 oi->nbr_self->router_id = router_id;
250 oi->nbr_self->src = oi->address->u.prefix4;
251 oi->nbr_self->state = NSM_TwoWay;
252
253 switch (oi->area->external_routing) {
254 case OSPF_AREA_DEFAULT:
255 SET_FLAG(oi->nbr_self->options, OSPF_OPTION_E);
256 break;
257 case OSPF_AREA_STUB:
258 UNSET_FLAG(oi->nbr_self->options, OSPF_OPTION_E);
259 break;
260 case OSPF_AREA_NSSA:
261 UNSET_FLAG(oi->nbr_self->options, OSPF_OPTION_E);
262 SET_FLAG(oi->nbr_self->options, OSPF_OPTION_NP);
263 break;
264 }
265
266 /* Add nbr_self to nbrs table */
267 ospf_nbr_key(oi, oi->nbr_self, &p);
268
269 rn = route_node_get(oi->nbrs, &p);
270 if (rn->info) {
271 /* There is already pseudo neighbor. */
ed59abd5
DS
272 if (IS_DEBUG_OSPF_EVENT)
273 zlog_debug(
ade6974d
QY
274 "router_id %s already present in neighbor table. node refcount %u",
275 inet_ntoa(router_id), rn->lock);
d62a17ae 276 route_unlock_node(rn);
277 } else
278 rn->info = oi->nbr_self;
2d59836a 279}
280
281/* Get neighbor count by status.
282 Specify status = 0, get all neighbor other than myself. */
d62a17ae 283int ospf_nbr_count(struct ospf_interface *oi, int state)
2d59836a 284{
d62a17ae 285 struct ospf_neighbor *nbr;
286 struct route_node *rn;
287 int count = 0;
288
289 for (rn = route_top(oi->nbrs); rn; rn = route_next(rn))
290 if ((nbr = rn->info))
291 if (!IPV4_ADDR_SAME(&nbr->router_id,
292 &oi->ospf->router_id))
293 if (state == 0 || nbr->state == state)
294 count++;
295
296 return count;
2d59836a 297}
298
d62a17ae 299int ospf_nbr_count_opaque_capable(struct ospf_interface *oi)
2d59836a 300{
d62a17ae 301 struct ospf_neighbor *nbr;
302 struct route_node *rn;
303 int count = 0;
304
305 for (rn = route_top(oi->nbrs); rn; rn = route_next(rn))
306 if ((nbr = rn->info))
307 if (!IPV4_ADDR_SAME(&nbr->router_id,
308 &oi->ospf->router_id))
309 if (nbr->state == NSM_Full)
310 if (CHECK_FLAG(nbr->options,
311 OSPF_OPTION_O))
312 count++;
313
314 return count;
2d59836a 315}
2d59836a 316
d3f0d621 317/* lookup nbr by address - use this only if you know you must
0ab4a2d6
JT
318 * otherwise use the ospf_nbr_lookup() wrapper, which deals
319 * with virtual link and PointToPoint neighbours
d3f0d621 320 */
d62a17ae 321struct ospf_neighbor *ospf_nbr_lookup_by_addr(struct route_table *nbrs,
322 struct in_addr *addr)
323{
324 struct prefix p;
325 struct route_node *rn;
326 struct ospf_neighbor *nbr;
327
328 p.family = AF_INET;
329 p.prefixlen = IPV4_MAX_BITLEN;
330 p.u.prefix4 = *addr;
331
332 rn = route_node_lookup(nbrs, &p);
333 if (!rn)
334 return NULL;
335
336 /* See comment in ospf_nbr_delete */
337 assert(rn->info);
338
339 if (rn->info == NULL) {
340 route_unlock_node(rn);
341 return NULL;
342 }
343
344 nbr = (struct ospf_neighbor *)rn->info;
345 route_unlock_node(rn);
346
347 return nbr;
348}
349
350struct ospf_neighbor *ospf_nbr_lookup_by_routerid(struct route_table *nbrs,
351 struct in_addr *id)
2d59836a 352{
d62a17ae 353 struct route_node *rn;
354 struct ospf_neighbor *nbr;
355
356 for (rn = route_top(nbrs); rn; rn = route_next(rn))
357 if ((nbr = rn->info) != NULL)
358 if (IPV4_ADDR_SAME(&nbr->router_id, id)) {
359 route_unlock_node(rn);
360 return nbr;
361 }
362
363 return NULL;
2d59836a 364}
365
d62a17ae 366void ospf_renegotiate_optional_capabilities(struct ospf *top)
2d59836a 367{
d62a17ae 368 struct listnode *node;
369 struct ospf_interface *oi;
370 struct route_table *nbrs;
371 struct route_node *rn;
372 struct ospf_neighbor *nbr;
373
374 /* At first, flush self-originated LSAs from routing domain. */
375 ospf_flush_self_originated_lsas_now(top);
376
377 /* Revert all neighbor status to ExStart. */
378 for (ALL_LIST_ELEMENTS_RO(top->oiflist, node, oi)) {
379 if ((nbrs = oi->nbrs) == NULL)
380 continue;
381
382 for (rn = route_top(nbrs); rn; rn = route_next(rn)) {
383 if ((nbr = rn->info) == NULL || nbr == oi->nbr_self)
384 continue;
385
386 if (nbr->state < NSM_ExStart)
387 continue;
388
389 if (IS_DEBUG_OSPF_EVENT)
390 zlog_debug(
391 "Renegotiate optional capabilities with neighbor(%s)",
392 inet_ntoa(nbr->router_id));
393
394 OSPF_NSM_EVENT_SCHEDULE(nbr, NSM_SeqNumberMismatch);
395 }
2d59836a 396 }
397
d62a17ae 398 return;
2d59836a 399}
400
d62a17ae 401
402struct ospf_neighbor *ospf_nbr_lookup(struct ospf_interface *oi, struct ip *iph,
403 struct ospf_header *ospfh)
2d59836a 404{
d62a17ae 405 if (oi->type == OSPF_IFTYPE_VIRTUALLINK
406 || oi->type == OSPF_IFTYPE_POINTOPOINT)
407 return (ospf_nbr_lookup_by_routerid(oi->nbrs,
408 &ospfh->router_id));
409 else
410 return (ospf_nbr_lookup_by_addr(oi->nbrs, &iph->ip_src));
411}
2d59836a 412
d62a17ae 413static struct ospf_neighbor *ospf_nbr_add(struct ospf_interface *oi,
414 struct ospf_header *ospfh,
415 struct prefix *p)
416{
417 struct ospf_neighbor *nbr;
2d59836a 418
d62a17ae 419 nbr = ospf_nbr_new(oi);
420 nbr->state = NSM_Down;
421 nbr->src = p->u.prefix4;
422 memcpy(&nbr->address, p, sizeof(struct prefix));
2d59836a 423
d62a17ae 424 nbr->nbr_nbma = NULL;
425 if (oi->type == OSPF_IFTYPE_NBMA) {
426 struct ospf_nbr_nbma *nbr_nbma;
427 struct listnode *node;
2d59836a 428
d62a17ae 429 for (ALL_LIST_ELEMENTS_RO(oi->nbr_nbma, node, nbr_nbma)) {
430 if (IPV4_ADDR_SAME(&nbr_nbma->addr, &nbr->src)) {
431 nbr_nbma->nbr = nbr;
432 nbr->nbr_nbma = nbr_nbma;
2d59836a 433
d62a17ae 434 if (nbr_nbma->t_poll)
435 OSPF_POLL_TIMER_OFF(nbr_nbma->t_poll);
2d59836a 436
d62a17ae 437 nbr->state_change = nbr_nbma->state_change + 1;
438 }
439 }
440 }
2d59836a 441
d62a17ae 442 /* New nbr, save the crypto sequence number if necessary */
443 if (ntohs(ospfh->auth_type) == OSPF_AUTH_CRYPTOGRAPHIC)
444 nbr->crypt_seqnum = ospfh->u.crypt.crypt_seqnum;
d3f0d621 445
d62a17ae 446 if (IS_DEBUG_OSPF_EVENT)
447 zlog_debug("NSM[%s:%s]: start", IF_NAME(nbr->oi),
448 inet_ntoa(nbr->router_id));
d3f0d621 449
d62a17ae 450 return nbr;
d3f0d621 451}
452
d62a17ae 453struct ospf_neighbor *ospf_nbr_get(struct ospf_interface *oi,
454 struct ospf_header *ospfh, struct ip *iph,
455 struct prefix *p)
d3f0d621 456{
d62a17ae 457 struct route_node *rn;
458 struct prefix key;
459 struct ospf_neighbor *nbr;
460
461 key.family = AF_INET;
462 key.prefixlen = IPV4_MAX_BITLEN;
463
464 if (oi->type == OSPF_IFTYPE_VIRTUALLINK
465 || oi->type == OSPF_IFTYPE_POINTOPOINT)
996c9314
LB
466 key.u.prefix4 = ospfh->router_id; /* index vlink and ptp nbrs by
467 router-id */
d62a17ae 468 else
469 key.u.prefix4 = iph->ip_src;
470
471 rn = route_node_get(oi->nbrs, &key);
472 if (rn->info) {
473 route_unlock_node(rn);
474 nbr = rn->info;
475
476 if (oi->type == OSPF_IFTYPE_NBMA && nbr->state == NSM_Attempt) {
477 nbr->src = iph->ip_src;
478 memcpy(&nbr->address, p, sizeof(struct prefix));
479 }
480 } else {
481 rn->info = nbr = ospf_nbr_add(oi, ospfh, p);
482 }
d3f0d621 483
d62a17ae 484 nbr->router_id = ospfh->router_id;
485
486 return nbr;
d3f0d621 487}