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