paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | /* |
| 2 | * OSPF Link State Advertisement |
| 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 it |
| 8 | * under the terms of the GNU General Public License as published by the |
| 9 | * Free Software Foundation; either version 2, or (at your option) any |
| 10 | * 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 Free |
| 19 | * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
| 20 | * 02111-1307, USA. |
| 21 | */ |
| 22 | |
| 23 | #include <zebra.h> |
| 24 | |
| 25 | #include "linklist.h" |
| 26 | #include "prefix.h" |
| 27 | #include "if.h" |
| 28 | #include "table.h" |
| 29 | #include "memory.h" |
| 30 | #include "stream.h" |
| 31 | #include "log.h" |
| 32 | #include "thread.h" |
| 33 | #include "hash.h" |
| 34 | #include "sockunion.h" /* for inet_aton() */ |
| 35 | |
| 36 | #include "ospfd/ospfd.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_flood.h" |
| 45 | #include "ospfd/ospf_packet.h" |
| 46 | #include "ospfd/ospf_spf.h" |
| 47 | #include "ospfd/ospf_dump.h" |
| 48 | #include "ospfd/ospf_route.h" |
| 49 | #include "ospfd/ospf_ase.h" |
| 50 | #include "ospfd/ospf_zebra.h" |
| 51 | |
| 52 | |
| 53 | u_int32_t |
| 54 | get_metric (u_char *metric) |
| 55 | { |
| 56 | u_int32_t m; |
| 57 | m = metric[0]; |
| 58 | m = (m << 8) + metric[1]; |
| 59 | m = (m << 8) + metric[2]; |
| 60 | return m; |
| 61 | } |
| 62 | |
| 63 | |
| 64 | struct timeval |
| 65 | tv_adjust (struct timeval a) |
| 66 | { |
| 67 | while (a.tv_usec >= 1000000) |
| 68 | { |
| 69 | a.tv_usec -= 1000000; |
| 70 | a.tv_sec++; |
| 71 | } |
| 72 | |
| 73 | while (a.tv_usec < 0) |
| 74 | { |
| 75 | a.tv_usec += 1000000; |
| 76 | a.tv_sec--; |
| 77 | } |
| 78 | |
| 79 | return a; |
| 80 | } |
| 81 | |
| 82 | int |
| 83 | tv_ceil (struct timeval a) |
| 84 | { |
| 85 | a = tv_adjust (a); |
| 86 | |
| 87 | return (a.tv_usec ? a.tv_sec + 1 : a.tv_sec); |
| 88 | } |
| 89 | |
| 90 | int |
| 91 | tv_floor (struct timeval a) |
| 92 | { |
| 93 | a = tv_adjust (a); |
| 94 | |
| 95 | return a.tv_sec; |
| 96 | } |
| 97 | |
| 98 | struct timeval |
| 99 | int2tv (int a) |
| 100 | { |
| 101 | struct timeval ret; |
| 102 | |
| 103 | ret.tv_sec = a; |
| 104 | ret.tv_usec = 0; |
| 105 | |
| 106 | return ret; |
| 107 | } |
| 108 | |
| 109 | struct timeval |
| 110 | tv_add (struct timeval a, struct timeval b) |
| 111 | { |
| 112 | struct timeval ret; |
| 113 | |
| 114 | ret.tv_sec = a.tv_sec + b.tv_sec; |
| 115 | ret.tv_usec = a.tv_usec + b.tv_usec; |
| 116 | |
| 117 | return tv_adjust (ret); |
| 118 | } |
| 119 | |
| 120 | struct timeval |
| 121 | tv_sub (struct timeval a, struct timeval b) |
| 122 | { |
| 123 | struct timeval ret; |
| 124 | |
| 125 | ret.tv_sec = a.tv_sec - b.tv_sec; |
| 126 | ret.tv_usec = a.tv_usec - b.tv_usec; |
| 127 | |
| 128 | return tv_adjust (ret); |
| 129 | } |
| 130 | |
| 131 | int |
| 132 | tv_cmp (struct timeval a, struct timeval b) |
| 133 | { |
| 134 | return (a.tv_sec == b.tv_sec ? |
| 135 | a.tv_usec - b.tv_usec : a.tv_sec - b.tv_sec); |
| 136 | } |
| 137 | |
| 138 | int |
| 139 | ospf_lsa_refresh_delay (struct ospf_lsa *lsa) |
| 140 | { |
| 141 | struct timeval delta, now; |
| 142 | int delay = 0; |
| 143 | |
| 144 | gettimeofday (&now, NULL); |
| 145 | delta = tv_sub (now, lsa->tv_orig); |
| 146 | |
| 147 | if (tv_cmp (delta, int2tv (OSPF_MIN_LS_INTERVAL)) < 0) |
| 148 | { |
| 149 | delay = tv_ceil (tv_sub (int2tv (OSPF_MIN_LS_INTERVAL), delta)); |
| 150 | |
| 151 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 152 | zlog_debug ("LSA[Type%d:%s]: Refresh timer delay %d seconds", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 153 | lsa->data->type, inet_ntoa (lsa->data->id), delay); |
| 154 | |
| 155 | assert (delay > 0); |
| 156 | } |
| 157 | |
| 158 | return delay; |
| 159 | } |
| 160 | |
| 161 | |
| 162 | int |
| 163 | get_age (struct ospf_lsa *lsa) |
| 164 | { |
| 165 | int age; |
| 166 | struct timeval now; |
| 167 | |
| 168 | gettimeofday (&now, NULL); |
| 169 | age = ntohs (lsa->data->ls_age) + tv_floor (tv_sub (now, lsa->tv_recv)); |
| 170 | |
| 171 | return age; |
| 172 | } |
| 173 | |
| 174 | |
| 175 | /* Fletcher Checksum -- Refer to RFC1008. */ |
| 176 | #define MODX 4102 |
| 177 | #define LSA_CHECKSUM_OFFSET 15 |
| 178 | |
| 179 | u_int16_t |
| 180 | ospf_lsa_checksum (struct lsa_header *lsa) |
| 181 | { |
| 182 | u_char *sp, *ep, *p, *q; |
| 183 | int c0 = 0, c1 = 0; |
| 184 | int x, y; |
| 185 | u_int16_t length; |
| 186 | |
| 187 | lsa->checksum = 0; |
| 188 | length = ntohs (lsa->length) - 2; |
hasso | c9e52be | 2004-09-26 16:09:34 +0000 | [diff] [blame] | 189 | sp = (u_char *) &lsa->options; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 190 | |
| 191 | for (ep = sp + length; sp < ep; sp = q) |
| 192 | { |
| 193 | q = sp + MODX; |
| 194 | if (q > ep) |
| 195 | q = ep; |
| 196 | for (p = sp; p < q; p++) |
| 197 | { |
| 198 | c0 += *p; |
| 199 | c1 += c0; |
| 200 | } |
| 201 | c0 %= 255; |
| 202 | c1 %= 255; |
| 203 | } |
| 204 | |
Paul Jakma | 075c201 | 2006-03-30 14:34:31 +0000 | [diff] [blame] | 205 | x = (((int)length - LSA_CHECKSUM_OFFSET) * c0 - c1) % 255; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 206 | if (x <= 0) |
| 207 | x += 255; |
| 208 | y = 510 - c0 - x; |
| 209 | if (y > 255) |
| 210 | y -= 255; |
| 211 | |
| 212 | /* take care endian issue. */ |
| 213 | lsa->checksum = htons ((x << 8) + y); |
| 214 | |
| 215 | return (lsa->checksum); |
| 216 | } |
| 217 | |
| 218 | |
| 219 | |
| 220 | /* Create OSPF LSA. */ |
| 221 | struct ospf_lsa * |
| 222 | ospf_lsa_new () |
| 223 | { |
| 224 | struct ospf_lsa *new; |
| 225 | |
| 226 | new = XCALLOC (MTYPE_OSPF_LSA, sizeof (struct ospf_lsa)); |
| 227 | memset (new, 0, sizeof (struct ospf_lsa)); |
| 228 | |
| 229 | new->flags = 0; |
| 230 | new->lock = 1; |
| 231 | new->retransmit_counter = 0; |
| 232 | gettimeofday (&new->tv_recv, NULL); |
| 233 | new->tv_orig = new->tv_recv; |
| 234 | new->refresh_list = -1; |
| 235 | |
| 236 | return new; |
| 237 | } |
| 238 | |
| 239 | /* Duplicate OSPF LSA. */ |
| 240 | struct ospf_lsa * |
| 241 | ospf_lsa_dup (struct ospf_lsa *lsa) |
| 242 | { |
| 243 | struct ospf_lsa *new; |
| 244 | |
| 245 | if (lsa == NULL) |
| 246 | return NULL; |
| 247 | |
| 248 | new = XCALLOC (MTYPE_OSPF_LSA, sizeof (struct ospf_lsa)); |
| 249 | |
| 250 | memcpy (new, lsa, sizeof (struct ospf_lsa)); |
| 251 | UNSET_FLAG (new->flags, OSPF_LSA_DISCARD); |
| 252 | new->lock = 1; |
| 253 | new->retransmit_counter = 0; |
| 254 | new->data = ospf_lsa_data_dup (lsa->data); |
| 255 | |
paul | f2c8065 | 2002-12-13 21:44:27 +0000 | [diff] [blame] | 256 | /* kevinm: Clear the refresh_list, otherwise there are going |
| 257 | to be problems when we try to remove the LSA from the |
| 258 | queue (which it's not a member of.) |
| 259 | XXX: Should we add the LSA to the refresh_list queue? */ |
| 260 | new->refresh_list = -1; |
| 261 | |
| 262 | if (IS_DEBUG_OSPF (lsa, LSA)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 263 | zlog_debug ("LSA: duplicated %p (new: %p)", lsa, new); |
paul | f2c8065 | 2002-12-13 21:44:27 +0000 | [diff] [blame] | 264 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 265 | return new; |
| 266 | } |
| 267 | |
| 268 | /* Free OSPF LSA. */ |
| 269 | void |
| 270 | ospf_lsa_free (struct ospf_lsa *lsa) |
| 271 | { |
| 272 | assert (lsa->lock == 0); |
| 273 | |
| 274 | if (IS_DEBUG_OSPF (lsa, LSA)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 275 | zlog_debug ("LSA: freed %p", lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 276 | |
| 277 | /* Delete LSA data. */ |
| 278 | if (lsa->data != NULL) |
| 279 | ospf_lsa_data_free (lsa->data); |
| 280 | |
| 281 | assert (lsa->refresh_list < 0); |
| 282 | |
| 283 | memset (lsa, 0, sizeof (struct ospf_lsa)); |
| 284 | XFREE (MTYPE_OSPF_LSA, lsa); |
| 285 | } |
| 286 | |
| 287 | /* Lock LSA. */ |
| 288 | struct ospf_lsa * |
| 289 | ospf_lsa_lock (struct ospf_lsa *lsa) |
| 290 | { |
| 291 | lsa->lock++; |
| 292 | return lsa; |
| 293 | } |
| 294 | |
| 295 | /* Unlock LSA. */ |
| 296 | void |
| 297 | ospf_lsa_unlock (struct ospf_lsa *lsa) |
| 298 | { |
| 299 | /* This is sanity check. */ |
| 300 | if (!lsa) |
| 301 | return; |
| 302 | |
| 303 | lsa->lock--; |
| 304 | |
| 305 | assert (lsa->lock >= 0); |
| 306 | |
| 307 | if (lsa->lock == 0) |
| 308 | { |
| 309 | assert (CHECK_FLAG (lsa->flags, OSPF_LSA_DISCARD)); |
| 310 | ospf_lsa_free (lsa); |
| 311 | } |
| 312 | } |
| 313 | |
| 314 | /* Check discard flag. */ |
| 315 | void |
| 316 | ospf_lsa_discard (struct ospf_lsa *lsa) |
| 317 | { |
| 318 | if (!CHECK_FLAG (lsa->flags, OSPF_LSA_DISCARD)) |
| 319 | { |
| 320 | SET_FLAG (lsa->flags, OSPF_LSA_DISCARD); |
| 321 | ospf_lsa_unlock (lsa); |
| 322 | } |
| 323 | } |
| 324 | |
| 325 | /* Create LSA data. */ |
| 326 | struct lsa_header * |
| 327 | ospf_lsa_data_new (size_t size) |
| 328 | { |
| 329 | struct lsa_header *new; |
| 330 | |
| 331 | new = (struct lsa_header *) XMALLOC (MTYPE_OSPF_LSA_DATA, size); |
| 332 | memset (new, 0, size); |
| 333 | |
| 334 | return new; |
| 335 | } |
| 336 | |
| 337 | /* Duplicate LSA data. */ |
| 338 | struct lsa_header * |
| 339 | ospf_lsa_data_dup (struct lsa_header *lsah) |
| 340 | { |
| 341 | struct lsa_header *new; |
| 342 | |
| 343 | new = ospf_lsa_data_new (ntohs (lsah->length)); |
| 344 | memcpy (new, lsah, ntohs (lsah->length)); |
| 345 | |
| 346 | return new; |
| 347 | } |
| 348 | |
| 349 | /* Free LSA data. */ |
| 350 | void |
| 351 | ospf_lsa_data_free (struct lsa_header *lsah) |
| 352 | { |
| 353 | if (IS_DEBUG_OSPF (lsa, LSA)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 354 | zlog_debug ("LSA[Type%d:%s]: data freed %p", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 355 | lsah->type, inet_ntoa (lsah->id), lsah); |
| 356 | |
| 357 | XFREE (MTYPE_OSPF_LSA_DATA, lsah); |
| 358 | } |
| 359 | |
| 360 | |
| 361 | /* LSA general functions. */ |
| 362 | |
| 363 | const char * |
| 364 | dump_lsa_key (struct ospf_lsa *lsa) |
| 365 | { |
| 366 | static char buf[] = { |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 367 | "Type255,id(255.255.255.255),ar(255.255.255.255)" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 368 | }; |
| 369 | struct lsa_header *lsah; |
| 370 | |
| 371 | if (lsa != NULL && (lsah = lsa->data) != NULL) |
| 372 | { |
| 373 | char id[INET_ADDRSTRLEN], ar[INET_ADDRSTRLEN]; |
| 374 | strcpy (id, inet_ntoa (lsah->id)); |
| 375 | strcpy (ar, inet_ntoa (lsah->adv_router)); |
| 376 | |
| 377 | sprintf (buf, "Type%d,id(%s),ar(%s)", lsah->type, id, ar); |
| 378 | } |
| 379 | else |
| 380 | strcpy (buf, "NULL"); |
| 381 | |
| 382 | return buf; |
| 383 | } |
| 384 | |
| 385 | u_int32_t |
| 386 | lsa_seqnum_increment (struct ospf_lsa *lsa) |
| 387 | { |
| 388 | u_int32_t seqnum; |
| 389 | |
| 390 | seqnum = ntohl (lsa->data->ls_seqnum) + 1; |
| 391 | |
| 392 | return htonl (seqnum); |
| 393 | } |
| 394 | |
| 395 | void |
| 396 | lsa_header_set (struct stream *s, u_char options, |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 397 | u_char type, struct in_addr id, struct in_addr router_id) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 398 | { |
| 399 | struct lsa_header *lsah; |
| 400 | |
| 401 | lsah = (struct lsa_header *) STREAM_DATA (s); |
| 402 | |
| 403 | lsah->ls_age = htons (0); |
| 404 | lsah->options = options; |
| 405 | lsah->type = type; |
| 406 | lsah->id = id; |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 407 | lsah->adv_router = router_id; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 408 | lsah->ls_seqnum = htonl (OSPF_INITIAL_SEQUENCE_NUMBER); |
| 409 | |
paul | 9985f83 | 2005-02-09 15:51:56 +0000 | [diff] [blame] | 410 | stream_forward_endp (s, OSPF_LSA_HEADER_SIZE); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 411 | } |
| 412 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 413 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 414 | /* router-LSA related functions. */ |
| 415 | /* Get router-LSA flags. */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 416 | static u_char |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 417 | router_lsa_flags (struct ospf_area *area) |
| 418 | { |
| 419 | u_char flags; |
| 420 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 421 | flags = area->ospf->flags; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 422 | |
| 423 | /* Set virtual link flag. */ |
| 424 | if (ospf_full_virtual_nbrs (area)) |
| 425 | SET_FLAG (flags, ROUTER_LSA_VIRTUAL); |
| 426 | else |
| 427 | /* Just sanity check */ |
| 428 | UNSET_FLAG (flags, ROUTER_LSA_VIRTUAL); |
| 429 | |
| 430 | /* Set Shortcut ABR behabiour flag. */ |
| 431 | UNSET_FLAG (flags, ROUTER_LSA_SHORTCUT); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 432 | if (area->ospf->abr_type == OSPF_ABR_SHORTCUT) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 433 | if (!OSPF_IS_AREA_BACKBONE (area)) |
| 434 | if ((area->shortcut_configured == OSPF_SHORTCUT_DEFAULT && |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 435 | area->ospf->backbone == NULL) || |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 436 | area->shortcut_configured == OSPF_SHORTCUT_ENABLE) |
| 437 | SET_FLAG (flags, ROUTER_LSA_SHORTCUT); |
| 438 | |
| 439 | /* ASBR can't exit in stub area. */ |
| 440 | if (area->external_routing == OSPF_AREA_STUB) |
paul | 942b6c1 | 2003-06-22 08:22:18 +0000 | [diff] [blame] | 441 | UNSET_FLAG (flags, ROUTER_LSA_EXTERNAL); |
| 442 | /* If ASBR set External flag */ |
| 443 | else if (IS_OSPF_ASBR (area->ospf)) |
| 444 | SET_FLAG (flags, ROUTER_LSA_EXTERNAL); |
| 445 | |
| 446 | /* Set ABR dependent flags */ |
| 447 | if (IS_OSPF_ABR (area->ospf)) |
| 448 | { |
| 449 | SET_FLAG (flags, ROUTER_LSA_BORDER); |
paul | 942b6c1 | 2003-06-22 08:22:18 +0000 | [diff] [blame] | 450 | /* If Area is NSSA and we are both ABR and unconditional translator, |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 451 | * set Nt bit to inform other routers. |
paul | 942b6c1 | 2003-06-22 08:22:18 +0000 | [diff] [blame] | 452 | */ |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 453 | if ( (area->external_routing == OSPF_AREA_NSSA) |
| 454 | && (area->NSSATranslatorRole == OSPF_NSSA_ROLE_ALWAYS)) |
| 455 | SET_FLAG (flags, ROUTER_LSA_NT); |
paul | 942b6c1 | 2003-06-22 08:22:18 +0000 | [diff] [blame] | 456 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 457 | return flags; |
| 458 | } |
| 459 | |
| 460 | /* Lookup neighbor other than myself. |
| 461 | And check neighbor count, |
| 462 | Point-to-Point link must have only 1 neighbor. */ |
| 463 | struct ospf_neighbor * |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 464 | ospf_nbr_lookup_ptop (struct ospf_interface *oi) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 465 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 466 | struct ospf_neighbor *nbr = NULL; |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 467 | struct route_node *rn; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 468 | |
| 469 | /* Search neighbor, there must be one of two nbrs. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 470 | for (rn = route_top (oi->nbrs); rn; rn = route_next (rn)) |
| 471 | if ((nbr = rn->info)) |
| 472 | if (!IPV4_ADDR_SAME (&nbr->router_id, &oi->ospf->router_id)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 473 | if (nbr->state == NSM_Full) |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 474 | { |
| 475 | route_unlock_node (rn); |
| 476 | break; |
| 477 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 478 | |
| 479 | /* PtoP link must have only 1 neighbor. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 480 | if (ospf_nbr_count (oi, 0) > 1) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 481 | zlog_warn ("Point-to-Point link has more than 1 neighobrs."); |
| 482 | |
| 483 | return nbr; |
| 484 | } |
| 485 | |
paul | 88d6cf3 | 2005-10-29 12:50:09 +0000 | [diff] [blame] | 486 | /* Determine cost of link, taking RFC3137 stub-router support into |
| 487 | * consideration |
| 488 | */ |
| 489 | static u_int16_t |
| 490 | ospf_link_cost (struct ospf_interface *oi) |
| 491 | { |
| 492 | /* RFC3137 stub router support */ |
| 493 | if (!CHECK_FLAG (oi->area->stub_router_state, OSPF_AREA_IS_STUB_ROUTED)) |
| 494 | return oi->output_cost; |
| 495 | else |
| 496 | return OSPF_OUTPUT_COST_INFINITE; |
| 497 | } |
| 498 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 499 | /* Set a link information. */ |
paul | 779adb0 | 2006-01-18 15:07:38 +0000 | [diff] [blame] | 500 | static char |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 501 | link_info_set (struct stream *s, struct in_addr id, |
| 502 | struct in_addr data, u_char type, u_char tos, u_int16_t cost) |
| 503 | { |
paul | 779adb0 | 2006-01-18 15:07:38 +0000 | [diff] [blame] | 504 | /* LSA stream is initially allocated to OSPF_MAX_LSA_SIZE, suits |
| 505 | * vast majority of cases. Some rare routers with lots of links need more. |
| 506 | * we try accomodate those here. |
| 507 | */ |
| 508 | if (STREAM_WRITEABLE(s) < OSPF_ROUTER_LSA_LINK_SIZE) |
| 509 | { |
| 510 | size_t ret = OSPF_MAX_LSA_SIZE; |
| 511 | |
| 512 | /* Can we enlarge the stream still? */ |
| 513 | if (STREAM_SIZE(s) == OSPF_MAX_LSA_SIZE) |
| 514 | { |
| 515 | /* we futz the size here for simplicity, really we need to account |
| 516 | * for just: |
| 517 | * IP Header - (sizeof (struct ip)) |
| 518 | * OSPF Header - OSPF_HEADER_SIZE |
| 519 | * LSA Header - OSPF_LSA_HEADER_SIZE |
| 520 | * MD5 auth data, if MD5 is configured - OSPF_AUTH_MD5_SIZE. |
| 521 | * |
| 522 | * Simpler just to subtract OSPF_MAX_LSA_SIZE though. |
| 523 | */ |
| 524 | ret = stream_resize (s, OSPF_MAX_PACKET_SIZE - OSPF_MAX_LSA_SIZE); |
| 525 | } |
| 526 | |
| 527 | if (ret == OSPF_MAX_LSA_SIZE) |
| 528 | { |
| 529 | zlog_warn ("%s: Out of space in LSA stream, left %ld, size %ld", |
| 530 | __func__, STREAM_REMAIN (s), STREAM_SIZE (s)); |
| 531 | return 0; |
| 532 | } |
| 533 | } |
| 534 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 535 | /* TOS based routing is not supported. */ |
| 536 | stream_put_ipv4 (s, id.s_addr); /* Link ID. */ |
| 537 | stream_put_ipv4 (s, data.s_addr); /* Link Data. */ |
| 538 | stream_putc (s, type); /* Link Type. */ |
| 539 | stream_putc (s, tos); /* TOS = 0. */ |
| 540 | stream_putw (s, cost); /* Link Cost. */ |
paul | 779adb0 | 2006-01-18 15:07:38 +0000 | [diff] [blame] | 541 | |
| 542 | return 1; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 543 | } |
| 544 | |
| 545 | /* Describe Point-to-Point link. */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 546 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 547 | lsa_link_ptop_set (struct stream *s, struct ospf_interface *oi) |
| 548 | { |
| 549 | int links = 0; |
| 550 | struct ospf_neighbor *nbr; |
| 551 | struct in_addr id, mask; |
paul | 88d6cf3 | 2005-10-29 12:50:09 +0000 | [diff] [blame] | 552 | u_int16_t cost = ospf_link_cost (oi); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 553 | |
| 554 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 555 | zlog_debug ("LSA[Type1]: Set link Point-to-Point"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 556 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 557 | if ((nbr = ospf_nbr_lookup_ptop (oi))) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 558 | if (nbr->state == NSM_Full) |
| 559 | { |
| 560 | /* For unnumbered point-to-point networks, the Link Data field |
| 561 | should specify the interface's MIB-II ifIndex value. */ |
paul | 779adb0 | 2006-01-18 15:07:38 +0000 | [diff] [blame] | 562 | links += link_info_set (s, nbr->router_id, oi->address->u.prefix4, |
| 563 | LSA_LINK_TYPE_POINTOPOINT, 0, cost); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 564 | } |
| 565 | |
hasso | 3fb9cd6 | 2004-10-19 19:44:43 +0000 | [diff] [blame] | 566 | if (CONNECTED_DEST_HOST(oi->connected)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 567 | { |
| 568 | /* Option 1: |
| 569 | link_type = LSA_LINK_TYPE_STUB; |
| 570 | link_id = nbr->address.u.prefix4; |
| 571 | link_data.s_addr = 0xffffffff; |
| 572 | link_cost = o->output_cost; */ |
| 573 | |
| 574 | id.s_addr = oi->connected->destination->u.prefix4.s_addr; |
| 575 | mask.s_addr = 0xffffffff; |
paul | 779adb0 | 2006-01-18 15:07:38 +0000 | [diff] [blame] | 576 | links += link_info_set (s, id, mask, LSA_LINK_TYPE_STUB, 0, |
| 577 | oi->output_cost); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 578 | } |
| 579 | else |
| 580 | { |
| 581 | /* Option 2: We need to include link to a stub |
| 582 | network regardless of the state of the neighbor */ |
| 583 | masklen2ip (oi->address->prefixlen, &mask); |
| 584 | id.s_addr = oi->address->u.prefix4.s_addr & mask.s_addr; |
paul | 779adb0 | 2006-01-18 15:07:38 +0000 | [diff] [blame] | 585 | links += link_info_set (s, id, mask, LSA_LINK_TYPE_STUB, 0, |
| 586 | oi->output_cost); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 587 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 588 | return links; |
| 589 | } |
| 590 | |
| 591 | /* Describe Broadcast Link. */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 592 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 593 | lsa_link_broadcast_set (struct stream *s, struct ospf_interface *oi) |
| 594 | { |
| 595 | struct ospf_neighbor *dr; |
| 596 | struct in_addr id, mask; |
paul | 88d6cf3 | 2005-10-29 12:50:09 +0000 | [diff] [blame] | 597 | u_int16_t cost = ospf_link_cost (oi); |
| 598 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 599 | /* Describe Type 3 Link. */ |
| 600 | if (oi->state == ISM_Waiting) |
| 601 | { |
| 602 | masklen2ip (oi->address->prefixlen, &mask); |
| 603 | id.s_addr = oi->address->u.prefix4.s_addr & mask.s_addr; |
paul | 779adb0 | 2006-01-18 15:07:38 +0000 | [diff] [blame] | 604 | return link_info_set (s, id, mask, LSA_LINK_TYPE_STUB, 0, |
| 605 | oi->output_cost); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 606 | } |
| 607 | |
| 608 | dr = ospf_nbr_lookup_by_addr (oi->nbrs, &DR (oi)); |
| 609 | /* Describe Type 2 link. */ |
| 610 | if (dr && (dr->state == NSM_Full || |
| 611 | IPV4_ADDR_SAME (&oi->address->u.prefix4, &DR (oi))) && |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 612 | ospf_nbr_count (oi, NSM_Full) > 0) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 613 | { |
paul | 779adb0 | 2006-01-18 15:07:38 +0000 | [diff] [blame] | 614 | return link_info_set (s, DR (oi), oi->address->u.prefix4, |
| 615 | LSA_LINK_TYPE_TRANSIT, 0, cost); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 616 | } |
| 617 | /* Describe type 3 link. */ |
| 618 | else |
| 619 | { |
| 620 | masklen2ip (oi->address->prefixlen, &mask); |
| 621 | id.s_addr = oi->address->u.prefix4.s_addr & mask.s_addr; |
paul | 779adb0 | 2006-01-18 15:07:38 +0000 | [diff] [blame] | 622 | return link_info_set (s, id, mask, LSA_LINK_TYPE_STUB, 0, |
| 623 | oi->output_cost); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 624 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 625 | } |
| 626 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 627 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 628 | lsa_link_loopback_set (struct stream *s, struct ospf_interface *oi) |
| 629 | { |
| 630 | struct in_addr id, mask; |
paul | 88d6cf3 | 2005-10-29 12:50:09 +0000 | [diff] [blame] | 631 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 632 | /* Describe Type 3 Link. */ |
| 633 | if (oi->state != ISM_Loopback) |
| 634 | return 0; |
| 635 | |
| 636 | mask.s_addr = 0xffffffff; |
| 637 | id.s_addr = oi->address->u.prefix4.s_addr; |
paul | 779adb0 | 2006-01-18 15:07:38 +0000 | [diff] [blame] | 638 | return link_info_set (s, id, mask, LSA_LINK_TYPE_STUB, 0, oi->output_cost); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 639 | } |
| 640 | |
| 641 | /* Describe Virtual Link. */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 642 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 643 | lsa_link_virtuallink_set (struct stream *s, struct ospf_interface *oi) |
| 644 | { |
| 645 | struct ospf_neighbor *nbr; |
paul | 88d6cf3 | 2005-10-29 12:50:09 +0000 | [diff] [blame] | 646 | u_int16_t cost = ospf_link_cost (oi); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 647 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 648 | if (oi->state == ISM_PointToPoint) |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 649 | if ((nbr = ospf_nbr_lookup_ptop (oi))) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 650 | if (nbr->state == NSM_Full) |
| 651 | { |
paul | 779adb0 | 2006-01-18 15:07:38 +0000 | [diff] [blame] | 652 | return link_info_set (s, nbr->router_id, oi->address->u.prefix4, |
| 653 | LSA_LINK_TYPE_VIRTUALLINK, 0, cost); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 654 | } |
| 655 | |
| 656 | return 0; |
| 657 | } |
| 658 | |
| 659 | #define lsa_link_nbma_set(S,O) lsa_link_broadcast_set (S, O) |
| 660 | |
paul | 7afa08d | 2002-12-13 20:59:45 +0000 | [diff] [blame] | 661 | /* this function add for support point-to-multipoint ,see rfc2328 |
| 662 | 12.4.1.4.*/ |
| 663 | /* from "edward rrr" <edward_rrr@hotmail.com> |
| 664 | http://marc.theaimsgroup.com/?l=zebra&m=100739222210507&w=2 */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 665 | static int |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 666 | lsa_link_ptomp_set (struct stream *s, struct ospf_interface *oi) |
paul | 7afa08d | 2002-12-13 20:59:45 +0000 | [diff] [blame] | 667 | { |
| 668 | int links = 0; |
| 669 | struct route_node *rn; |
| 670 | struct ospf_neighbor *nbr = NULL; |
| 671 | struct in_addr id, mask; |
paul | 88d6cf3 | 2005-10-29 12:50:09 +0000 | [diff] [blame] | 672 | u_int16_t cost = ospf_link_cost (oi); |
paul | 7afa08d | 2002-12-13 20:59:45 +0000 | [diff] [blame] | 673 | |
| 674 | mask.s_addr = 0xffffffff; |
| 675 | id.s_addr = oi->address->u.prefix4.s_addr; |
paul | 779adb0 | 2006-01-18 15:07:38 +0000 | [diff] [blame] | 676 | links += link_info_set (s, id, mask, LSA_LINK_TYPE_STUB, 0, 0); |
paul | 7afa08d | 2002-12-13 20:59:45 +0000 | [diff] [blame] | 677 | |
paul | 1cc8f76 | 2003-04-05 19:34:32 +0000 | [diff] [blame] | 678 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 679 | zlog_debug ("PointToMultipoint: running ptomultip_set"); |
paul | 7afa08d | 2002-12-13 20:59:45 +0000 | [diff] [blame] | 680 | |
| 681 | /* Search neighbor, */ |
| 682 | for (rn = route_top (oi->nbrs); rn; rn = route_next (rn)) |
| 683 | if ((nbr = rn->info) != NULL) |
| 684 | /* Ignore myself. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 685 | if (!IPV4_ADDR_SAME (&nbr->router_id, &oi->ospf->router_id)) |
paul | 7afa08d | 2002-12-13 20:59:45 +0000 | [diff] [blame] | 686 | if (nbr->state == NSM_Full) |
| 687 | |
| 688 | { |
paul | 779adb0 | 2006-01-18 15:07:38 +0000 | [diff] [blame] | 689 | links += link_info_set (s, nbr->router_id, oi->address->u.prefix4, |
| 690 | LSA_LINK_TYPE_POINTOPOINT, 0, cost); |
paul | 1cc8f76 | 2003-04-05 19:34:32 +0000 | [diff] [blame] | 691 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 692 | zlog_debug ("PointToMultipoint: set link to %s", |
paul | 1cc8f76 | 2003-04-05 19:34:32 +0000 | [diff] [blame] | 693 | inet_ntoa(oi->address->u.prefix4)); |
paul | 7afa08d | 2002-12-13 20:59:45 +0000 | [diff] [blame] | 694 | } |
| 695 | |
| 696 | return links; |
paul | 7afa08d | 2002-12-13 20:59:45 +0000 | [diff] [blame] | 697 | } |
| 698 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 699 | /* Set router-LSA link information. */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 700 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 701 | router_lsa_link_set (struct stream *s, struct ospf_area *area) |
| 702 | { |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 703 | struct listnode *node; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 704 | struct ospf_interface *oi; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 705 | int links = 0; |
| 706 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 707 | for (ALL_LIST_ELEMENTS_RO (area->oiflist, node, oi)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 708 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 709 | struct interface *ifp = oi->ifp; |
| 710 | |
| 711 | /* Check interface is up, OSPF is enable. */ |
paul | 2e3b2e4 | 2002-12-13 21:03:13 +0000 | [diff] [blame] | 712 | if (if_is_operative (ifp)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 713 | { |
| 714 | if (oi->state != ISM_Down) |
| 715 | { |
| 716 | /* Describe each link. */ |
| 717 | switch (oi->type) |
| 718 | { |
| 719 | case OSPF_IFTYPE_POINTOPOINT: |
| 720 | links += lsa_link_ptop_set (s, oi); |
| 721 | break; |
| 722 | case OSPF_IFTYPE_BROADCAST: |
| 723 | links += lsa_link_broadcast_set (s, oi); |
| 724 | break; |
| 725 | case OSPF_IFTYPE_NBMA: |
| 726 | links += lsa_link_nbma_set (s, oi); |
| 727 | break; |
| 728 | case OSPF_IFTYPE_POINTOMULTIPOINT: |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 729 | links += lsa_link_ptomp_set (s, oi); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 730 | break; |
| 731 | case OSPF_IFTYPE_VIRTUALLINK: |
| 732 | links += lsa_link_virtuallink_set (s, oi); |
| 733 | break; |
| 734 | case OSPF_IFTYPE_LOOPBACK: |
| 735 | links += lsa_link_loopback_set (s, oi); |
| 736 | } |
| 737 | } |
| 738 | } |
| 739 | } |
| 740 | |
| 741 | return links; |
| 742 | } |
| 743 | |
| 744 | /* Set router-LSA body. */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 745 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 746 | ospf_router_lsa_body_set (struct stream *s, struct ospf_area *area) |
| 747 | { |
| 748 | unsigned long putp; |
| 749 | u_int16_t cnt; |
| 750 | |
| 751 | /* Set flags. */ |
| 752 | stream_putc (s, router_lsa_flags (area)); |
| 753 | |
| 754 | /* Set Zero fields. */ |
| 755 | stream_putc (s, 0); |
| 756 | |
| 757 | /* Keep pointer to # links. */ |
paul | 9985f83 | 2005-02-09 15:51:56 +0000 | [diff] [blame] | 758 | putp = stream_get_endp(s); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 759 | |
| 760 | /* Forward word */ |
| 761 | stream_putw(s, 0); |
| 762 | |
| 763 | /* Set all link information. */ |
| 764 | cnt = router_lsa_link_set (s, area); |
| 765 | |
| 766 | /* Set # of links here. */ |
| 767 | stream_putw_at (s, putp, cnt); |
| 768 | } |
paul | 88d6cf3 | 2005-10-29 12:50:09 +0000 | [diff] [blame] | 769 | |
| 770 | static int |
| 771 | ospf_stub_router_timer (struct thread *t) |
| 772 | { |
| 773 | struct ospf_area *area = THREAD_ARG (t); |
| 774 | |
| 775 | area->t_stub_router = NULL; |
| 776 | |
| 777 | SET_FLAG (area->stub_router_state, OSPF_AREA_WAS_START_STUB_ROUTED); |
| 778 | |
| 779 | /* clear stub route state and generate router-lsa refresh, don't |
| 780 | * clobber an administratively set stub-router state though. |
| 781 | */ |
| 782 | if (CHECK_FLAG (area->stub_router_state, OSPF_AREA_ADMIN_STUB_ROUTED)) |
| 783 | return 0; |
| 784 | |
| 785 | UNSET_FLAG (area->stub_router_state, OSPF_AREA_IS_STUB_ROUTED); |
| 786 | |
| 787 | ospf_router_lsa_timer_add (area); |
| 788 | |
| 789 | return 0; |
| 790 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 791 | |
paul | 88d6cf3 | 2005-10-29 12:50:09 +0000 | [diff] [blame] | 792 | inline static void |
| 793 | ospf_stub_router_check (struct ospf_area *area) |
| 794 | { |
| 795 | /* area must either be administratively configured to be stub |
| 796 | * or startup-time stub-router must be configured and we must in a pre-stub |
| 797 | * state. |
| 798 | */ |
| 799 | if (CHECK_FLAG (area->stub_router_state, OSPF_AREA_ADMIN_STUB_ROUTED)) |
| 800 | { |
| 801 | SET_FLAG (area->stub_router_state, OSPF_AREA_IS_STUB_ROUTED); |
| 802 | return; |
| 803 | } |
| 804 | |
| 805 | /* not admin-stubbed, check whether startup stubbing is configured and |
| 806 | * whether it's not been done yet |
| 807 | */ |
| 808 | if (CHECK_FLAG (area->stub_router_state, OSPF_AREA_WAS_START_STUB_ROUTED)) |
| 809 | return; |
| 810 | |
| 811 | if (area->ospf->stub_router_startup_time == OSPF_STUB_ROUTER_UNCONFIGURED) |
| 812 | { |
| 813 | /* stub-router is hence done forever for this area, even if someone |
| 814 | * tries configure it (take effect next restart). |
| 815 | */ |
| 816 | SET_FLAG (area->stub_router_state, OSPF_AREA_WAS_START_STUB_ROUTED); |
| 817 | return; |
| 818 | } |
| 819 | |
| 820 | /* startup stub-router configured and not yet done */ |
| 821 | SET_FLAG (area->stub_router_state, OSPF_AREA_IS_STUB_ROUTED); |
| 822 | |
| 823 | OSPF_AREA_TIMER_ON (area->t_stub_router, ospf_stub_router_timer, |
| 824 | area->ospf->stub_router_startup_time); |
| 825 | } |
| 826 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 827 | /* Create new router-LSA. */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 828 | static struct ospf_lsa * |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 829 | ospf_router_lsa_new (struct ospf_area *area) |
| 830 | { |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 831 | struct ospf *ospf = area->ospf; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 832 | struct stream *s; |
| 833 | struct lsa_header *lsah; |
| 834 | struct ospf_lsa *new; |
| 835 | int length; |
| 836 | |
| 837 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 838 | zlog_debug ("LSA[Type1]: Create router-LSA instance"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 839 | |
paul | 88d6cf3 | 2005-10-29 12:50:09 +0000 | [diff] [blame] | 840 | /* check whether stub-router is desired, and if this is the first |
| 841 | * router LSA. |
| 842 | */ |
| 843 | ospf_stub_router_check (area); |
| 844 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 845 | /* Create a stream for LSA. */ |
| 846 | s = stream_new (OSPF_MAX_LSA_SIZE); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 847 | /* Set LSA common header fields. */ |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 848 | lsa_header_set (s, LSA_OPTIONS_GET (area) | LSA_OPTIONS_NSSA_GET (area), |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 849 | OSPF_ROUTER_LSA, ospf->router_id, ospf->router_id); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 850 | |
| 851 | /* Set router-LSA body fields. */ |
| 852 | ospf_router_lsa_body_set (s, area); |
| 853 | |
| 854 | /* Set length. */ |
| 855 | length = stream_get_endp (s); |
paul | 779adb0 | 2006-01-18 15:07:38 +0000 | [diff] [blame] | 856 | lsah = (struct lsa_header *) STREAM_DATA (s); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 857 | lsah->length = htons (length); |
| 858 | |
| 859 | /* Now, create OSPF LSA instance. */ |
paul | c24d602 | 2005-11-20 14:54:12 +0000 | [diff] [blame] | 860 | if ( (new = ospf_lsa_new ()) == NULL) |
| 861 | { |
| 862 | zlog_err ("%s: Unable to create new lsa", __func__); |
| 863 | return NULL; |
| 864 | } |
| 865 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 866 | new->area = area; |
| 867 | SET_FLAG (new->flags, OSPF_LSA_SELF); |
| 868 | |
| 869 | /* Copy LSA data to store, discard stream. */ |
| 870 | new->data = ospf_lsa_data_new (length); |
| 871 | memcpy (new->data, lsah, length); |
| 872 | stream_free (s); |
| 873 | |
| 874 | return new; |
| 875 | } |
| 876 | |
| 877 | /* Originate Router-LSA. */ |
paul | 88d6cf3 | 2005-10-29 12:50:09 +0000 | [diff] [blame] | 878 | static struct ospf_lsa * |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 879 | ospf_router_lsa_originate (struct ospf_area *area) |
| 880 | { |
| 881 | struct ospf_lsa *new; |
paul | 88d6cf3 | 2005-10-29 12:50:09 +0000 | [diff] [blame] | 882 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 883 | /* Create new router-LSA instance. */ |
paul | c24d602 | 2005-11-20 14:54:12 +0000 | [diff] [blame] | 884 | if ( (new = ospf_router_lsa_new (area)) == NULL) |
| 885 | { |
| 886 | zlog_err ("%s: ospf_router_lsa_new returned NULL", __func__); |
| 887 | return NULL; |
| 888 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 889 | |
| 890 | /* Sanity check. */ |
| 891 | if (new->data->adv_router.s_addr == 0) |
| 892 | { |
| 893 | if (IS_DEBUG_OSPF_EVENT) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 894 | zlog_debug ("LSA[Type1]: AdvRouter is 0, discard"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 895 | ospf_lsa_discard (new); |
| 896 | return NULL; |
| 897 | } |
| 898 | |
| 899 | /* Install LSA to LSDB. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 900 | new = ospf_lsa_install (area->ospf, NULL, new); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 901 | |
| 902 | /* Update LSA origination count. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 903 | area->ospf->lsa_originate_count++; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 904 | |
| 905 | /* Flooding new LSA through area. */ |
| 906 | ospf_flood_through_area (area, NULL, new); |
| 907 | |
| 908 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
| 909 | { |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 910 | zlog_debug ("LSA[Type%d:%s]: Originate router-LSA %p", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 911 | new->data->type, inet_ntoa (new->data->id), new); |
| 912 | ospf_lsa_header_dump (new->data); |
| 913 | } |
| 914 | |
| 915 | return new; |
| 916 | } |
| 917 | |
| 918 | /* Refresh router-LSA. */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 919 | static struct ospf_lsa * |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 920 | ospf_router_lsa_refresh (struct ospf_lsa *lsa) |
| 921 | { |
| 922 | struct ospf_area *area = lsa->area; |
| 923 | struct ospf_lsa *new; |
| 924 | |
| 925 | /* Sanity check. */ |
| 926 | assert (lsa->data); |
| 927 | |
| 928 | /* Delete LSA from neighbor retransmit-list. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 929 | ospf_ls_retransmit_delete_nbr_area (area, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 930 | |
| 931 | /* Create new router-LSA instance. */ |
paul | c24d602 | 2005-11-20 14:54:12 +0000 | [diff] [blame] | 932 | if ( (new = ospf_router_lsa_new (area)) == NULL) |
| 933 | { |
| 934 | zlog_err ("%s: ospf_router_lsa_new returned NULL", __func__); |
| 935 | return NULL; |
| 936 | } |
| 937 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 938 | new->data->ls_seqnum = lsa_seqnum_increment (lsa); |
| 939 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 940 | ospf_lsa_install (area->ospf, NULL, new); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 941 | |
| 942 | /* Flood LSA through area. */ |
| 943 | ospf_flood_through_area (area, NULL, new); |
| 944 | |
| 945 | /* Debug logging. */ |
| 946 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
| 947 | { |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 948 | zlog_debug ("LSA[Type%d:%s]: router-LSA refresh", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 949 | new->data->type, inet_ntoa (new->data->id)); |
| 950 | ospf_lsa_header_dump (new->data); |
| 951 | } |
| 952 | |
| 953 | return NULL; |
| 954 | } |
| 955 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 956 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 957 | ospf_router_lsa_timer (struct thread *t) |
| 958 | { |
| 959 | struct ospf_area *area; |
| 960 | |
| 961 | if (IS_DEBUG_OSPF_EVENT) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 962 | zlog_debug ("Timer[router-LSA]: (router-LSA Refresh expire)"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 963 | |
| 964 | area = THREAD_ARG (t); |
| 965 | area->t_router_lsa_self = NULL; |
| 966 | |
| 967 | /* Now refresh router-LSA. */ |
| 968 | if (area->router_lsa_self) |
| 969 | ospf_router_lsa_refresh (area->router_lsa_self); |
| 970 | /* Newly originate router-LSA. */ |
| 971 | else |
| 972 | ospf_router_lsa_originate (area); |
| 973 | |
| 974 | return 0; |
| 975 | } |
| 976 | |
| 977 | void |
| 978 | ospf_router_lsa_timer_add (struct ospf_area *area) |
| 979 | { |
| 980 | /* Keep area's self-originated router-LSA. */ |
| 981 | struct ospf_lsa *lsa = area->router_lsa_self; |
| 982 | |
| 983 | /* Cancel previously scheduled router-LSA timer. */ |
| 984 | if (area->t_router_lsa_self) |
| 985 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 986 | zlog_debug ("LSA[Type1]: Cancel previous router-LSA timer"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 987 | |
| 988 | OSPF_TIMER_OFF (area->t_router_lsa_self); |
| 989 | |
| 990 | /* If router-LSA is originated previously, check the interval time. */ |
| 991 | if (lsa) |
| 992 | { |
| 993 | int delay; |
| 994 | if ((delay = ospf_lsa_refresh_delay (lsa)) > 0) |
| 995 | { |
| 996 | OSPF_AREA_TIMER_ON (area->t_router_lsa_self, |
| 997 | ospf_router_lsa_timer, delay); |
| 998 | return; |
| 999 | } |
| 1000 | } |
| 1001 | |
| 1002 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 1003 | zlog_debug ("LSA[Type1]: Scheduling router-LSA origination right away"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1004 | |
| 1005 | /* Immediately refresh router-LSA. */ |
| 1006 | OSPF_AREA_TIMER_ON (area->t_router_lsa_self, ospf_router_lsa_timer, 0); |
| 1007 | } |
| 1008 | |
| 1009 | int |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1010 | ospf_router_lsa_update_timer (struct thread *thread) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1011 | { |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1012 | struct ospf *ospf = THREAD_ARG (thread); |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1013 | struct listnode *node, *nnode; |
| 1014 | struct ospf_area *area; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1015 | |
| 1016 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 1017 | zlog_debug ("Timer[router-LSA Update]: (timer expire)"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1018 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1019 | ospf->t_router_lsa_update = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1020 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1021 | for (ALL_LIST_ELEMENTS (ospf->areas, node, nnode, area)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1022 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1023 | struct ospf_lsa *lsa = area->router_lsa_self; |
| 1024 | struct router_lsa *rl; |
hasso | eb1ce60 | 2004-10-08 08:17:22 +0000 | [diff] [blame] | 1025 | const char *area_str; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1026 | |
| 1027 | /* Keep Area ID string. */ |
| 1028 | area_str = AREA_NAME (area); |
| 1029 | |
| 1030 | /* If LSA not exist in this Area, originate new. */ |
| 1031 | if (lsa == NULL) |
| 1032 | { |
| 1033 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 1034 | zlog_debug("LSA[Type1]: Create router-LSA for Area %s", area_str); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1035 | |
| 1036 | ospf_router_lsa_originate (area); |
| 1037 | } |
| 1038 | /* If router-ID is changed, Link ID must change. |
| 1039 | First flush old LSA, then originate new. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1040 | else if (!IPV4_ADDR_SAME (&lsa->data->id, &ospf->router_id)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1041 | { |
| 1042 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 1043 | zlog_debug("LSA[Type%d:%s]: Refresh router-LSA for Area %s", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1044 | lsa->data->type, inet_ntoa (lsa->data->id), area_str); |
| 1045 | ospf_lsa_flush_area (lsa, area); |
| 1046 | ospf_lsa_unlock (area->router_lsa_self); |
| 1047 | area->router_lsa_self = NULL; |
| 1048 | |
| 1049 | /* Refresh router-LSA, (not install) and flood through area. */ |
| 1050 | ospf_router_lsa_timer_add (area); |
| 1051 | } |
| 1052 | else |
| 1053 | { |
| 1054 | rl = (struct router_lsa *) lsa->data; |
| 1055 | /* Refresh router-LSA, (not install) and flood through area. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1056 | if (rl->flags != ospf->flags) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1057 | ospf_router_lsa_timer_add (area); |
| 1058 | } |
| 1059 | } |
| 1060 | |
| 1061 | return 0; |
| 1062 | } |
| 1063 | |
| 1064 | |
| 1065 | /* network-LSA related functions. */ |
| 1066 | /* Originate Network-LSA. */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 1067 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1068 | ospf_network_lsa_body_set (struct stream *s, struct ospf_interface *oi) |
| 1069 | { |
| 1070 | struct in_addr mask; |
| 1071 | struct route_node *rn; |
| 1072 | struct ospf_neighbor *nbr; |
| 1073 | |
| 1074 | masklen2ip (oi->address->prefixlen, &mask); |
| 1075 | stream_put_ipv4 (s, mask.s_addr); |
| 1076 | |
| 1077 | /* The network-LSA lists those routers that are fully adjacent to |
| 1078 | the Designated Router; each fully adjacent router is identified by |
| 1079 | its OSPF Router ID. The Designated Router includes itself in this |
| 1080 | list. RFC2328, Section 12.4.2 */ |
| 1081 | |
| 1082 | for (rn = route_top (oi->nbrs); rn; rn = route_next (rn)) |
| 1083 | if ((nbr = rn->info) != NULL) |
| 1084 | if (nbr->state == NSM_Full || nbr == oi->nbr_self) |
| 1085 | stream_put_ipv4 (s, nbr->router_id.s_addr); |
| 1086 | } |
| 1087 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 1088 | static struct ospf_lsa * |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1089 | ospf_network_lsa_new (struct ospf_interface *oi) |
| 1090 | { |
| 1091 | struct stream *s; |
| 1092 | struct ospf_lsa *new; |
| 1093 | struct lsa_header *lsah; |
| 1094 | int length; |
| 1095 | |
| 1096 | /* If there are no neighbours on this network (the net is stub), |
| 1097 | the router does not originate network-LSA (see RFC 12.4.2) */ |
| 1098 | if (oi->full_nbrs == 0) |
| 1099 | return NULL; |
| 1100 | |
| 1101 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 1102 | zlog_debug ("LSA[Type2]: Create network-LSA instance"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1103 | |
| 1104 | /* Create new stream for LSA. */ |
| 1105 | s = stream_new (OSPF_MAX_LSA_SIZE); |
| 1106 | lsah = (struct lsa_header *) STREAM_DATA (s); |
| 1107 | |
| 1108 | lsa_header_set (s, (OPTIONS (oi) | LSA_OPTIONS_GET (oi->area)), |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1109 | OSPF_NETWORK_LSA, DR (oi), oi->ospf->router_id); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1110 | |
| 1111 | /* Set network-LSA body fields. */ |
| 1112 | ospf_network_lsa_body_set (s, oi); |
| 1113 | |
| 1114 | /* Set length. */ |
| 1115 | length = stream_get_endp (s); |
| 1116 | lsah->length = htons (length); |
| 1117 | |
| 1118 | /* Create OSPF LSA instance. */ |
paul | c24d602 | 2005-11-20 14:54:12 +0000 | [diff] [blame] | 1119 | if ( (new = ospf_lsa_new ()) == NULL) |
| 1120 | { |
| 1121 | zlog_err ("%s: ospf_lsa_new returned NULL", __func__); |
| 1122 | return NULL; |
| 1123 | } |
| 1124 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1125 | new->area = oi->area; |
| 1126 | SET_FLAG (new->flags, OSPF_LSA_SELF); |
| 1127 | |
| 1128 | /* Copy LSA to store. */ |
| 1129 | new->data = ospf_lsa_data_new (length); |
| 1130 | memcpy (new->data, lsah, length); |
| 1131 | stream_free (s); |
| 1132 | |
| 1133 | return new; |
| 1134 | } |
| 1135 | |
| 1136 | /* Originate network-LSA. */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 1137 | static struct ospf_lsa * |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1138 | ospf_network_lsa_originate (struct ospf_interface *oi) |
| 1139 | { |
| 1140 | struct ospf_lsa *new; |
| 1141 | |
| 1142 | /* Create new network-LSA instance. */ |
| 1143 | new = ospf_network_lsa_new (oi); |
| 1144 | if (new == NULL) |
| 1145 | return NULL; |
| 1146 | |
| 1147 | /* Install LSA to LSDB. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1148 | new = ospf_lsa_install (oi->ospf, oi, new); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1149 | |
| 1150 | /* Update LSA origination count. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1151 | oi->ospf->lsa_originate_count++; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1152 | |
| 1153 | /* Flooding new LSA through area. */ |
| 1154 | ospf_flood_through_area (oi->area, NULL, new); |
| 1155 | |
| 1156 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
| 1157 | { |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 1158 | zlog_debug ("LSA[Type%d:%s]: Originate network-LSA %p", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1159 | new->data->type, inet_ntoa (new->data->id), new); |
| 1160 | ospf_lsa_header_dump (new->data); |
| 1161 | } |
| 1162 | |
| 1163 | return new; |
| 1164 | } |
| 1165 | |
| 1166 | int |
| 1167 | ospf_network_lsa_refresh (struct ospf_lsa *lsa, struct ospf_interface *oi) |
| 1168 | { |
| 1169 | struct ospf_area *area = lsa->area; |
| 1170 | struct ospf_lsa *new; |
| 1171 | |
| 1172 | assert (lsa->data); |
| 1173 | |
| 1174 | /* Delete LSA from neighbor retransmit-list. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1175 | ospf_ls_retransmit_delete_nbr_area (area, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1176 | |
| 1177 | /* Create new network-LSA instance. */ |
| 1178 | new = ospf_network_lsa_new (oi); |
| 1179 | if (new == NULL) |
| 1180 | return -1; |
| 1181 | new->data->ls_seqnum = lsa_seqnum_increment (lsa); |
| 1182 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1183 | ospf_lsa_install (area->ospf, oi, new); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1184 | |
| 1185 | /* Flood LSA through aera. */ |
| 1186 | ospf_flood_through_area (area, NULL, new); |
| 1187 | |
| 1188 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
| 1189 | { |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 1190 | zlog_debug ("LSA[Type%d:%s]: network-LSA refresh", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1191 | new->data->type, inet_ntoa (new->data->id)); |
| 1192 | ospf_lsa_header_dump (new->data); |
| 1193 | } |
| 1194 | |
| 1195 | return 0; |
| 1196 | } |
| 1197 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 1198 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1199 | ospf_network_lsa_refresh_timer (struct thread *t) |
| 1200 | { |
| 1201 | struct ospf_interface *oi; |
| 1202 | |
| 1203 | oi = THREAD_ARG (t); |
| 1204 | oi->t_network_lsa_self = NULL; |
| 1205 | |
| 1206 | if (oi->network_lsa_self) |
| 1207 | /* Now refresh network-LSA. */ |
| 1208 | ospf_network_lsa_refresh (oi->network_lsa_self, oi); |
| 1209 | else |
| 1210 | /* Newly create network-LSA. */ |
| 1211 | ospf_network_lsa_originate (oi); |
| 1212 | |
| 1213 | return 0; |
| 1214 | } |
| 1215 | |
| 1216 | void |
| 1217 | ospf_network_lsa_timer_add (struct ospf_interface *oi) |
| 1218 | { |
| 1219 | /* Keep interface's self-originated network-LSA. */ |
| 1220 | struct ospf_lsa *lsa = oi->network_lsa_self; |
| 1221 | |
| 1222 | /* Cancel previously schedules network-LSA timer. */ |
| 1223 | if (oi->t_network_lsa_self) |
| 1224 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 1225 | zlog_debug ("LSA[Type2]: Cancel previous network-LSA timer"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1226 | OSPF_TIMER_OFF (oi->t_network_lsa_self); |
| 1227 | |
| 1228 | /* If network-LSA is originated previously, check the interval time. */ |
| 1229 | if (lsa) |
| 1230 | { |
| 1231 | int delay; |
| 1232 | if ((delay = ospf_lsa_refresh_delay (lsa)) > 0) |
| 1233 | { |
| 1234 | oi->t_network_lsa_self = |
| 1235 | thread_add_timer (master, ospf_network_lsa_refresh_timer, |
| 1236 | oi, delay); |
| 1237 | return; |
| 1238 | } |
| 1239 | } |
| 1240 | |
| 1241 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 1242 | zlog_debug ("Scheduling network-LSA origination right away"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1243 | |
| 1244 | /* Immediately refresh network-LSA. */ |
| 1245 | oi->t_network_lsa_self = |
| 1246 | thread_add_event (master, ospf_network_lsa_refresh_timer, oi, 0); |
| 1247 | } |
| 1248 | |
| 1249 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 1250 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1251 | stream_put_ospf_metric (struct stream *s, u_int32_t metric_value) |
| 1252 | { |
| 1253 | u_int32_t metric; |
| 1254 | char *mp; |
| 1255 | |
| 1256 | /* Put 0 metric. TOS metric is not supported. */ |
| 1257 | metric = htonl (metric_value); |
| 1258 | mp = (char *) &metric; |
| 1259 | mp++; |
| 1260 | stream_put (s, mp, 3); |
| 1261 | } |
| 1262 | |
| 1263 | /* summary-LSA related functions. */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 1264 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1265 | ospf_summary_lsa_body_set (struct stream *s, struct prefix *p, |
| 1266 | u_int32_t metric) |
| 1267 | { |
| 1268 | struct in_addr mask; |
| 1269 | |
| 1270 | masklen2ip (p->prefixlen, &mask); |
| 1271 | |
| 1272 | /* Put Network Mask. */ |
| 1273 | stream_put_ipv4 (s, mask.s_addr); |
| 1274 | |
| 1275 | /* Set # TOS. */ |
| 1276 | stream_putc (s, (u_char) 0); |
| 1277 | |
| 1278 | /* Set metric. */ |
| 1279 | stream_put_ospf_metric (s, metric); |
| 1280 | } |
| 1281 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 1282 | static struct ospf_lsa * |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1283 | ospf_summary_lsa_new (struct ospf_area *area, struct prefix *p, |
| 1284 | u_int32_t metric, struct in_addr id) |
| 1285 | { |
| 1286 | struct stream *s; |
| 1287 | struct ospf_lsa *new; |
| 1288 | struct lsa_header *lsah; |
| 1289 | int length; |
| 1290 | |
paul | c24d602 | 2005-11-20 14:54:12 +0000 | [diff] [blame] | 1291 | if (id.s_addr == 0xffffffff) |
| 1292 | { |
| 1293 | /* Maybe Link State ID not available. */ |
| 1294 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
| 1295 | zlog_debug ("LSA[Type%d]: Link ID not available, can't originate", |
| 1296 | OSPF_SUMMARY_LSA); |
| 1297 | return NULL; |
| 1298 | } |
| 1299 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1300 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 1301 | zlog_debug ("LSA[Type3]: Create summary-LSA instance"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1302 | |
| 1303 | /* Create new stream for LSA. */ |
| 1304 | s = stream_new (OSPF_MAX_LSA_SIZE); |
| 1305 | lsah = (struct lsa_header *) STREAM_DATA (s); |
| 1306 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1307 | lsa_header_set (s, LSA_OPTIONS_GET (area), OSPF_SUMMARY_LSA, |
| 1308 | id, area->ospf->router_id); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1309 | |
| 1310 | /* Set summary-LSA body fields. */ |
| 1311 | ospf_summary_lsa_body_set (s, p, metric); |
| 1312 | |
| 1313 | /* Set length. */ |
| 1314 | length = stream_get_endp (s); |
| 1315 | lsah->length = htons (length); |
| 1316 | |
| 1317 | /* Create OSPF LSA instance. */ |
| 1318 | new = ospf_lsa_new (); |
| 1319 | new->area = area; |
| 1320 | SET_FLAG (new->flags, OSPF_LSA_SELF); |
| 1321 | |
| 1322 | /* Copy LSA to store. */ |
| 1323 | new->data = ospf_lsa_data_new (length); |
| 1324 | memcpy (new->data, lsah, length); |
| 1325 | stream_free (s); |
| 1326 | |
| 1327 | return new; |
| 1328 | } |
| 1329 | |
| 1330 | /* Originate Summary-LSA. */ |
| 1331 | struct ospf_lsa * |
| 1332 | ospf_summary_lsa_originate (struct prefix_ipv4 *p, u_int32_t metric, |
| 1333 | struct ospf_area *area) |
| 1334 | { |
| 1335 | struct ospf_lsa *new; |
| 1336 | struct in_addr id; |
| 1337 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1338 | id = ospf_lsa_unique_id (area->ospf, area->lsdb, OSPF_SUMMARY_LSA, p); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1339 | |
paul | c24d602 | 2005-11-20 14:54:12 +0000 | [diff] [blame] | 1340 | if (id.s_addr == 0xffffffff) |
| 1341 | { |
| 1342 | /* Maybe Link State ID not available. */ |
| 1343 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
| 1344 | zlog_debug ("LSA[Type%d]: Link ID not available, can't originate", |
| 1345 | OSPF_SUMMARY_LSA); |
| 1346 | return NULL; |
| 1347 | } |
| 1348 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1349 | /* Create new summary-LSA instance. */ |
paul | c24d602 | 2005-11-20 14:54:12 +0000 | [diff] [blame] | 1350 | if ( !(new = ospf_summary_lsa_new (area, (struct prefix *) p, metric, id))) |
| 1351 | return NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1352 | |
| 1353 | /* Instlal LSA to LSDB. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1354 | new = ospf_lsa_install (area->ospf, NULL, new); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1355 | |
| 1356 | /* Update LSA origination count. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1357 | area->ospf->lsa_originate_count++; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1358 | |
| 1359 | /* Flooding new LSA through area. */ |
| 1360 | ospf_flood_through_area (area, NULL, new); |
| 1361 | |
| 1362 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
| 1363 | { |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 1364 | zlog_debug ("LSA[Type%d:%s]: Originate summary-LSA %p", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1365 | new->data->type, inet_ntoa (new->data->id), new); |
| 1366 | ospf_lsa_header_dump (new->data); |
| 1367 | } |
| 1368 | |
| 1369 | return new; |
| 1370 | } |
| 1371 | |
| 1372 | struct ospf_lsa* |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1373 | ospf_summary_lsa_refresh (struct ospf *ospf, struct ospf_lsa *lsa) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1374 | { |
| 1375 | struct ospf_lsa *new; |
| 1376 | struct summary_lsa *sl; |
| 1377 | struct prefix p; |
| 1378 | |
| 1379 | /* Sanity check. */ |
| 1380 | assert (lsa->data); |
| 1381 | |
| 1382 | sl = (struct summary_lsa *)lsa->data; |
| 1383 | p.prefixlen = ip_masklen (sl->mask); |
| 1384 | new = ospf_summary_lsa_new (lsa->area, &p, GET_METRIC (sl->metric), |
| 1385 | sl->header.id); |
paul | c24d602 | 2005-11-20 14:54:12 +0000 | [diff] [blame] | 1386 | |
| 1387 | if (!new) |
| 1388 | return NULL; |
| 1389 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1390 | new->data->ls_seqnum = lsa_seqnum_increment (lsa); |
| 1391 | |
| 1392 | /* Re-calculate checksum. */ |
| 1393 | ospf_lsa_checksum (new->data); |
| 1394 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1395 | ospf_lsa_install (ospf, NULL, new); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1396 | |
| 1397 | /* Flood LSA through AS. */ |
| 1398 | ospf_flood_through_area (new->area, NULL, new); |
| 1399 | |
| 1400 | /* Debug logging. */ |
| 1401 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
| 1402 | { |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 1403 | zlog_debug ("LSA[Type%d:%s]: summary-LSA refresh", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1404 | new->data->type, inet_ntoa (new->data->id)); |
| 1405 | ospf_lsa_header_dump (new->data); |
| 1406 | } |
| 1407 | |
| 1408 | return new; |
| 1409 | } |
| 1410 | |
| 1411 | |
| 1412 | /* summary-ASBR-LSA related functions. */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 1413 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1414 | ospf_summary_asbr_lsa_body_set (struct stream *s, struct prefix *p, |
| 1415 | u_int32_t metric) |
| 1416 | { |
| 1417 | struct in_addr mask; |
| 1418 | |
| 1419 | masklen2ip (p->prefixlen, &mask); |
| 1420 | |
| 1421 | /* Put Network Mask. */ |
| 1422 | stream_put_ipv4 (s, mask.s_addr); |
| 1423 | |
| 1424 | /* Set # TOS. */ |
| 1425 | stream_putc (s, (u_char) 0); |
| 1426 | |
| 1427 | /* Set metric. */ |
| 1428 | stream_put_ospf_metric (s, metric); |
| 1429 | } |
| 1430 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 1431 | static struct ospf_lsa * |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1432 | ospf_summary_asbr_lsa_new (struct ospf_area *area, struct prefix *p, |
| 1433 | u_int32_t metric, struct in_addr id) |
| 1434 | { |
| 1435 | struct stream *s; |
| 1436 | struct ospf_lsa *new; |
| 1437 | struct lsa_header *lsah; |
| 1438 | int length; |
| 1439 | |
paul | c24d602 | 2005-11-20 14:54:12 +0000 | [diff] [blame] | 1440 | if (id.s_addr == 0xffffffff) |
| 1441 | { |
| 1442 | /* Maybe Link State ID not available. */ |
| 1443 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
| 1444 | zlog_debug ("LSA[Type%d]: Link ID not available, can't originate", |
| 1445 | OSPF_ASBR_SUMMARY_LSA); |
| 1446 | return NULL; |
| 1447 | } |
| 1448 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1449 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 1450 | zlog_debug ("LSA[Type3]: Create summary-LSA instance"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1451 | |
| 1452 | /* Create new stream for LSA. */ |
| 1453 | s = stream_new (OSPF_MAX_LSA_SIZE); |
| 1454 | lsah = (struct lsa_header *) STREAM_DATA (s); |
| 1455 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1456 | lsa_header_set (s, LSA_OPTIONS_GET (area), OSPF_ASBR_SUMMARY_LSA, |
| 1457 | id, area->ospf->router_id); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1458 | |
| 1459 | /* Set summary-LSA body fields. */ |
| 1460 | ospf_summary_asbr_lsa_body_set (s, p, metric); |
| 1461 | |
| 1462 | /* Set length. */ |
| 1463 | length = stream_get_endp (s); |
| 1464 | lsah->length = htons (length); |
| 1465 | |
| 1466 | /* Create OSPF LSA instance. */ |
| 1467 | new = ospf_lsa_new (); |
| 1468 | new->area = area; |
| 1469 | SET_FLAG (new->flags, OSPF_LSA_SELF); |
| 1470 | |
| 1471 | /* Copy LSA to store. */ |
| 1472 | new->data = ospf_lsa_data_new (length); |
| 1473 | memcpy (new->data, lsah, length); |
| 1474 | stream_free (s); |
| 1475 | |
| 1476 | return new; |
| 1477 | } |
| 1478 | |
| 1479 | /* Originate summary-ASBR-LSA. */ |
| 1480 | struct ospf_lsa * |
| 1481 | ospf_summary_asbr_lsa_originate (struct prefix_ipv4 *p, u_int32_t metric, |
| 1482 | struct ospf_area *area) |
| 1483 | { |
| 1484 | struct ospf_lsa *new; |
| 1485 | struct in_addr id; |
| 1486 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1487 | id = ospf_lsa_unique_id (area->ospf, area->lsdb, OSPF_ASBR_SUMMARY_LSA, p); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1488 | |
paul | c24d602 | 2005-11-20 14:54:12 +0000 | [diff] [blame] | 1489 | if (id.s_addr == 0xffffffff) |
| 1490 | { |
| 1491 | /* Maybe Link State ID not available. */ |
| 1492 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
| 1493 | zlog_debug ("LSA[Type%d]: Link ID not available, can't originate", |
| 1494 | OSPF_ASBR_SUMMARY_LSA); |
| 1495 | return NULL; |
| 1496 | } |
| 1497 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1498 | /* Create new summary-LSA instance. */ |
| 1499 | new = ospf_summary_asbr_lsa_new (area, (struct prefix *) p, metric, id); |
paul | c24d602 | 2005-11-20 14:54:12 +0000 | [diff] [blame] | 1500 | if (!new) |
| 1501 | return NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1502 | |
| 1503 | /* Install LSA to LSDB. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1504 | new = ospf_lsa_install (area->ospf, NULL, new); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1505 | |
| 1506 | /* Update LSA origination count. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1507 | area->ospf->lsa_originate_count++; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1508 | |
| 1509 | /* Flooding new LSA through area. */ |
| 1510 | ospf_flood_through_area (area, NULL, new); |
| 1511 | |
| 1512 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
| 1513 | { |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 1514 | zlog_debug ("LSA[Type%d:%s]: Originate summary-ASBR-LSA %p", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1515 | new->data->type, inet_ntoa (new->data->id), new); |
| 1516 | ospf_lsa_header_dump (new->data); |
| 1517 | } |
| 1518 | |
| 1519 | return new; |
| 1520 | } |
| 1521 | |
| 1522 | struct ospf_lsa* |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1523 | ospf_summary_asbr_lsa_refresh (struct ospf *ospf, struct ospf_lsa *lsa) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1524 | { |
| 1525 | struct ospf_lsa *new; |
| 1526 | struct summary_lsa *sl; |
| 1527 | struct prefix p; |
| 1528 | |
| 1529 | /* Sanity check. */ |
| 1530 | assert (lsa->data); |
| 1531 | |
| 1532 | sl = (struct summary_lsa *)lsa->data; |
| 1533 | p.prefixlen = ip_masklen (sl->mask); |
| 1534 | new = ospf_summary_asbr_lsa_new (lsa->area, &p, GET_METRIC (sl->metric), |
| 1535 | sl->header.id); |
paul | c24d602 | 2005-11-20 14:54:12 +0000 | [diff] [blame] | 1536 | if (!new) |
| 1537 | return NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1538 | |
| 1539 | new->data->ls_seqnum = lsa_seqnum_increment (lsa); |
| 1540 | |
| 1541 | /* Re-calculate checksum. */ |
| 1542 | ospf_lsa_checksum (new->data); |
| 1543 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1544 | ospf_lsa_install (ospf, NULL, new); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1545 | |
| 1546 | /* Flood LSA through area. */ |
| 1547 | ospf_flood_through_area (new->area, NULL, new); |
| 1548 | |
| 1549 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
| 1550 | { |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 1551 | zlog_debug ("LSA[Type%d:%s]: summary-ASBR-LSA refresh", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1552 | new->data->type, inet_ntoa (new->data->id)); |
| 1553 | ospf_lsa_header_dump (new->data); |
| 1554 | } |
| 1555 | |
| 1556 | return new; |
| 1557 | } |
| 1558 | |
| 1559 | /* AS-external-LSA related functions. */ |
| 1560 | |
| 1561 | /* Get nexthop for AS-external-LSAs. Return nexthop if its interface |
| 1562 | is connected, else 0*/ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 1563 | static struct in_addr |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1564 | ospf_external_lsa_nexthop_get (struct ospf *ospf, struct in_addr nexthop) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1565 | { |
| 1566 | struct in_addr fwd; |
| 1567 | struct prefix nh; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1568 | struct listnode *node; |
| 1569 | struct ospf_interface *oi; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1570 | |
| 1571 | fwd.s_addr = 0; |
| 1572 | |
| 1573 | if (!nexthop.s_addr) |
| 1574 | return fwd; |
| 1575 | |
| 1576 | /* Check whether nexthop is covered by OSPF network. */ |
| 1577 | nh.family = AF_INET; |
| 1578 | nh.u.prefix4 = nexthop; |
| 1579 | nh.prefixlen = IPV4_MAX_BITLEN; |
| 1580 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1581 | for (ALL_LIST_ELEMENTS_RO (ospf->oiflist, node, oi)) |
| 1582 | if (if_is_operative (oi->ifp)) |
| 1583 | if (oi->address->family == AF_INET) |
| 1584 | if (prefix_match (oi->address, &nh)) |
| 1585 | return nexthop; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1586 | |
| 1587 | return fwd; |
| 1588 | } |
| 1589 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1590 | /* NSSA-external-LSA related functions. */ |
| 1591 | |
| 1592 | /* Get 1st IP connection for Forward Addr */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 1593 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1594 | struct in_addr |
| 1595 | ospf_get_ip_from_ifp (struct ospf_interface *oi) |
| 1596 | { |
| 1597 | struct in_addr fwd; |
| 1598 | |
| 1599 | fwd.s_addr = 0; |
| 1600 | |
paul | 2e3b2e4 | 2002-12-13 21:03:13 +0000 | [diff] [blame] | 1601 | if (if_is_operative (oi->ifp)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1602 | return oi->address->u.prefix4; |
| 1603 | |
| 1604 | return fwd; |
| 1605 | } |
| 1606 | |
| 1607 | /* Get 1st IP connection for Forward Addr */ |
| 1608 | struct in_addr |
paul | f2c8065 | 2002-12-13 21:44:27 +0000 | [diff] [blame] | 1609 | ospf_get_nssa_ip (struct ospf_area *area) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1610 | { |
| 1611 | struct in_addr fwd; |
paul | f2c8065 | 2002-12-13 21:44:27 +0000 | [diff] [blame] | 1612 | struct in_addr best_default; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1613 | struct listnode *node; |
| 1614 | struct ospf_interface *oi; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1615 | |
| 1616 | fwd.s_addr = 0; |
paul | f2c8065 | 2002-12-13 21:44:27 +0000 | [diff] [blame] | 1617 | best_default.s_addr = 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1618 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1619 | for (ALL_LIST_ELEMENTS_RO (area->ospf->oiflist, node, oi)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1620 | { |
paul | 2e3b2e4 | 2002-12-13 21:03:13 +0000 | [diff] [blame] | 1621 | if (if_is_operative (oi->ifp)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1622 | if (oi->area->external_routing == OSPF_AREA_NSSA) |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1623 | if (oi->address && oi->address->family == AF_INET) |
| 1624 | { |
| 1625 | if (best_default.s_addr == 0) |
| 1626 | best_default = oi->address->u.prefix4; |
| 1627 | if (oi->area == area) |
| 1628 | return oi->address->u.prefix4; |
paul | f2c8065 | 2002-12-13 21:44:27 +0000 | [diff] [blame] | 1629 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1630 | } |
paul | f2c8065 | 2002-12-13 21:44:27 +0000 | [diff] [blame] | 1631 | if (best_default.s_addr != 0) |
| 1632 | return best_default; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1633 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1634 | if (best_default.s_addr != 0) |
| 1635 | return best_default; |
| 1636 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1637 | return fwd; |
| 1638 | } |
hasso | beebba7 | 2004-06-20 21:00:27 +0000 | [diff] [blame] | 1639 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1640 | #define DEFAULT_DEFAULT_METRIC 20 |
| 1641 | #define DEFAULT_DEFAULT_ORIGINATE_METRIC 10 |
| 1642 | #define DEFAULT_DEFAULT_ALWAYS_METRIC 1 |
| 1643 | |
| 1644 | #define DEFAULT_METRIC_TYPE EXTERNAL_METRIC_TYPE_2 |
| 1645 | |
| 1646 | int |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1647 | metric_type (struct ospf *ospf, u_char src) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1648 | { |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1649 | return (ospf->dmetric[src].type < 0 ? |
| 1650 | DEFAULT_METRIC_TYPE : ospf->dmetric[src].type); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1651 | } |
| 1652 | |
| 1653 | int |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1654 | metric_value (struct ospf *ospf, u_char src) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1655 | { |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1656 | if (ospf->dmetric[src].value < 0) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1657 | { |
| 1658 | if (src == DEFAULT_ROUTE) |
| 1659 | { |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1660 | if (ospf->default_originate == DEFAULT_ORIGINATE_ZEBRA) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1661 | return DEFAULT_DEFAULT_ORIGINATE_METRIC; |
| 1662 | else |
| 1663 | return DEFAULT_DEFAULT_ALWAYS_METRIC; |
| 1664 | } |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1665 | else if (ospf->default_metric < 0) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1666 | return DEFAULT_DEFAULT_METRIC; |
| 1667 | else |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1668 | return ospf->default_metric; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1669 | } |
| 1670 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1671 | return ospf->dmetric[src].value; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1672 | } |
| 1673 | |
| 1674 | /* Set AS-external-LSA body. */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 1675 | static void |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1676 | ospf_external_lsa_body_set (struct stream *s, struct external_info *ei, |
| 1677 | struct ospf *ospf) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1678 | { |
| 1679 | struct prefix_ipv4 *p = &ei->p; |
| 1680 | struct in_addr mask, fwd_addr; |
| 1681 | u_int32_t mvalue; |
| 1682 | int mtype; |
| 1683 | int type; |
| 1684 | |
| 1685 | /* Put Network Mask. */ |
| 1686 | masklen2ip (p->prefixlen, &mask); |
| 1687 | stream_put_ipv4 (s, mask.s_addr); |
| 1688 | |
| 1689 | /* If prefix is default, specify DEFAULT_ROUTE. */ |
| 1690 | type = is_prefix_default (&ei->p) ? DEFAULT_ROUTE : ei->type; |
| 1691 | |
| 1692 | mtype = (ROUTEMAP_METRIC_TYPE (ei) != -1) ? |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1693 | ROUTEMAP_METRIC_TYPE (ei) : metric_type (ospf, type); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1694 | |
| 1695 | mvalue = (ROUTEMAP_METRIC (ei) != -1) ? |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1696 | ROUTEMAP_METRIC (ei) : metric_value (ospf, type); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1697 | |
| 1698 | /* Put type of external metric. */ |
| 1699 | stream_putc (s, (mtype == EXTERNAL_METRIC_TYPE_2 ? 0x80 : 0)); |
| 1700 | |
| 1701 | /* Put 0 metric. TOS metric is not supported. */ |
| 1702 | stream_put_ospf_metric (s, mvalue); |
| 1703 | |
| 1704 | /* Get forwarding address to nexthop if on the Connection List, else 0. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1705 | fwd_addr = ospf_external_lsa_nexthop_get (ospf, ei->nexthop); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1706 | |
| 1707 | /* Put forwarding address. */ |
| 1708 | stream_put_ipv4 (s, fwd_addr.s_addr); |
| 1709 | |
| 1710 | /* Put route tag -- This value should be introduced from configuration. */ |
| 1711 | stream_putl (s, 0); |
| 1712 | } |
| 1713 | |
| 1714 | /* Create new external-LSA. */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 1715 | static struct ospf_lsa * |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1716 | ospf_external_lsa_new (struct ospf *ospf, |
| 1717 | struct external_info *ei, struct in_addr *old_id) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1718 | { |
| 1719 | struct stream *s; |
| 1720 | struct lsa_header *lsah; |
| 1721 | struct ospf_lsa *new; |
| 1722 | struct in_addr id; |
| 1723 | int length; |
| 1724 | |
| 1725 | if (ei == NULL) |
| 1726 | { |
| 1727 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 1728 | zlog_debug ("LSA[Type5]: External info is NULL, could not originated"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1729 | return NULL; |
| 1730 | } |
| 1731 | |
| 1732 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 1733 | zlog_debug ("LSA[Type5]: Originate AS-external-LSA instance"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1734 | |
| 1735 | /* If old Link State ID is specified, refresh LSA with same ID. */ |
| 1736 | if (old_id) |
| 1737 | id = *old_id; |
| 1738 | /* Get Link State with unique ID. */ |
| 1739 | else |
| 1740 | { |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1741 | id = ospf_lsa_unique_id (ospf, ospf->lsdb, OSPF_AS_EXTERNAL_LSA, &ei->p); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1742 | if (id.s_addr == 0xffffffff) |
| 1743 | { |
| 1744 | /* Maybe Link State ID not available. */ |
| 1745 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 1746 | zlog_debug ("LSA[Type5]: Link ID not available, can't originate"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1747 | return NULL; |
| 1748 | } |
| 1749 | } |
| 1750 | |
| 1751 | /* Create new stream for LSA. */ |
| 1752 | s = stream_new (OSPF_MAX_LSA_SIZE); |
| 1753 | lsah = (struct lsa_header *) STREAM_DATA (s); |
| 1754 | |
| 1755 | /* Set LSA common header fields. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1756 | lsa_header_set (s, OSPF_OPTION_E, OSPF_AS_EXTERNAL_LSA, |
| 1757 | id, ospf->router_id); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1758 | |
| 1759 | /* Set AS-external-LSA body fields. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1760 | ospf_external_lsa_body_set (s, ei, ospf); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1761 | |
| 1762 | /* Set length. */ |
| 1763 | length = stream_get_endp (s); |
| 1764 | lsah->length = htons (length); |
| 1765 | |
| 1766 | /* Now, create OSPF LSA instance. */ |
| 1767 | new = ospf_lsa_new (); |
| 1768 | new->area = NULL; |
| 1769 | SET_FLAG (new->flags, OSPF_LSA_SELF|OSPF_LSA_APPROVED); |
| 1770 | |
| 1771 | /* Copy LSA data to store, discard stream. */ |
| 1772 | new->data = ospf_lsa_data_new (length); |
| 1773 | memcpy (new->data, lsah, length); |
| 1774 | stream_free (s); |
| 1775 | |
| 1776 | return new; |
| 1777 | } |
| 1778 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1779 | /* As Type-7 */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 1780 | static void |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1781 | ospf_install_flood_nssa (struct ospf *ospf, |
| 1782 | struct ospf_lsa *lsa, struct external_info *ei) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1783 | { |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 1784 | struct ospf_lsa *new; |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1785 | struct as_external_lsa *extlsa; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1786 | struct ospf_area *area; |
| 1787 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1788 | |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 1789 | /* LSA may be a Type-5 originated via translation of a Type-7 LSA |
| 1790 | * which originated from an NSSA area. In which case it should not be |
| 1791 | * flooded back to NSSA areas. |
| 1792 | */ |
| 1793 | if (CHECK_FLAG (lsa->flags, OSPF_LSA_LOCAL_XLT)) |
| 1794 | return; |
| 1795 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1796 | /* NSSA Originate or Refresh (If anyNSSA) |
| 1797 | |
| 1798 | LSA is self-originated. And just installed as Type-5. |
| 1799 | Additionally, install as Type-7 LSDB for every attached NSSA. |
| 1800 | |
| 1801 | P-Bit controls which ABR performs translation to outside world; If |
| 1802 | we are an ABR....do not set the P-bit, because we send the Type-5, |
| 1803 | not as the ABR Translator, but as the ASBR owner within the AS! |
| 1804 | |
| 1805 | If we are NOT ABR, Flood through NSSA as Type-7 w/P-bit set. The |
| 1806 | elected ABR Translator will see the P-bit, Translate, and re-flood. |
| 1807 | |
| 1808 | Later, ABR_TASK and P-bit will scan Type-7 LSDB and translate to |
| 1809 | Type-5's to non-NSSA Areas. (it will also attempt a re-install) */ |
| 1810 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1811 | for (ALL_LIST_ELEMENTS (ospf->areas, node, nnode, area)) |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1812 | { |
hasso | 0c14ad8 | 2003-07-03 08:36:02 +0000 | [diff] [blame] | 1813 | /* Don't install Type-7 LSA's into nonNSSA area */ |
| 1814 | if (area->external_routing != OSPF_AREA_NSSA) |
| 1815 | continue; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1816 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1817 | /* make lsa duplicate, lock=1 */ |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 1818 | new = ospf_lsa_dup (lsa); |
| 1819 | new->area = area; |
| 1820 | new->data->type = OSPF_AS_NSSA_LSA; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1821 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1822 | /* set P-bit if not ABR */ |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 1823 | if (! IS_OSPF_ABR (ospf)) |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1824 | { |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 1825 | SET_FLAG(new->data->options, OSPF_OPTION_NP); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1826 | |
| 1827 | /* set non-zero FWD ADDR |
| 1828 | |
| 1829 | draft-ietf-ospf-nssa-update-09.txt |
| 1830 | |
| 1831 | if the network between the NSSA AS boundary router and the |
| 1832 | adjacent AS is advertised into OSPF as an internal OSPF route, |
| 1833 | the forwarding address should be the next op address as is cu |
| 1834 | currently done with type-5 LSAs. If the intervening network is |
| 1835 | not adversited into OSPF as an internal OSPF route and the |
| 1836 | type-7 LSA's P-bit is set a forwarding address should be |
| 1837 | selected from one of the router's active OSPF inteface addresses |
| 1838 | which belong to the NSSA. If no such addresses exist, then |
| 1839 | no type-7 LSA's with the P-bit set should originate from this |
| 1840 | router. */ |
| 1841 | |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 1842 | /* kevinm: not updating lsa anymore, just new */ |
| 1843 | extlsa = (struct as_external_lsa *)(new->data); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1844 | |
| 1845 | if (extlsa->e[0].fwd_addr.s_addr == 0) |
| 1846 | extlsa->e[0].fwd_addr = ospf_get_nssa_ip(area); /* this NSSA area in ifp */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1847 | |
paul | d748032 | 2003-05-16 17:31:51 +0000 | [diff] [blame] | 1848 | if (extlsa->e[0].fwd_addr.s_addr == 0) |
| 1849 | { |
| 1850 | if (IS_DEBUG_OSPF_NSSA) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 1851 | zlog_debug ("LSA[Type-7]: Could not build FWD-ADDR"); |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 1852 | ospf_lsa_discard(new); |
paul | d748032 | 2003-05-16 17:31:51 +0000 | [diff] [blame] | 1853 | return; |
| 1854 | } |
paul | f2c8065 | 2002-12-13 21:44:27 +0000 | [diff] [blame] | 1855 | } |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1856 | /* Re-calculate checksum. */ |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 1857 | ospf_lsa_checksum (new->data); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1858 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1859 | /* install also as Type-7 */ |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 1860 | ospf_lsa_install (ospf, NULL, new); /* Remove Old, Lock New = 2 */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1861 | |
| 1862 | /* will send each copy, lock=2+n */ |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 1863 | ospf_flood_through_as (ospf, NULL, new); /* all attached NSSA's, no AS/STUBs */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1864 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1865 | } |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 1866 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 1867 | static struct ospf_lsa * |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 1868 | ospf_lsa_translated_nssa_new (struct ospf *ospf, |
| 1869 | struct ospf_lsa *type7) |
| 1870 | { |
| 1871 | |
| 1872 | struct ospf_lsa *new; |
| 1873 | struct as_external_lsa *ext, *extnew; |
| 1874 | struct external_info ei; |
| 1875 | |
| 1876 | ext = (struct as_external_lsa *)(type7->data); |
| 1877 | |
| 1878 | /* need external_info struct, fill in bare minimum */ |
| 1879 | ei.p.family = AF_INET; |
| 1880 | ei.p.prefix = type7->data->id; |
| 1881 | ei.p.prefixlen = ip_masklen (ext->mask); |
| 1882 | ei.type = ZEBRA_ROUTE_OSPF; |
| 1883 | ei.nexthop = ext->header.adv_router; |
| 1884 | ei.route_map_set.metric = -1; |
| 1885 | ei.route_map_set.metric_type = -1; |
| 1886 | ei.tag = 0; |
| 1887 | |
| 1888 | if ( (new = ospf_external_lsa_new (ospf, &ei, &type7->data->id)) == NULL) |
| 1889 | { |
| 1890 | if (IS_DEBUG_OSPF_NSSA) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 1891 | zlog_debug ("ospf_nssa_translate_originate(): Could not originate " |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 1892 | "Translated Type-5 for %s", |
| 1893 | inet_ntoa (ei.p.prefix)); |
| 1894 | return NULL; |
| 1895 | } |
| 1896 | |
| 1897 | extnew = (struct as_external_lsa *)(new->data); |
| 1898 | |
| 1899 | /* copy over Type-7 data to new */ |
| 1900 | extnew->e[0].tos = ext->e[0].tos; |
| 1901 | extnew->e[0].route_tag = ext->e[0].route_tag; |
| 1902 | extnew->e[0].fwd_addr.s_addr = ext->e[0].fwd_addr.s_addr; |
| 1903 | new->data->ls_seqnum = type7->data->ls_seqnum; |
| 1904 | |
| 1905 | /* add translated flag, checksum and lock new lsa */ |
| 1906 | SET_FLAG (new->flags, OSPF_LSA_LOCAL_XLT); /* Translated from 7 */ |
| 1907 | ospf_lsa_checksum (new->data); |
| 1908 | new = ospf_lsa_lock (new); |
| 1909 | |
| 1910 | return new; |
| 1911 | } |
| 1912 | |
| 1913 | /* compare type-5 to type-7 |
| 1914 | * -1: err, 0: same, 1: different |
| 1915 | */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 1916 | static int |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 1917 | ospf_lsa_translated_nssa_compare (struct ospf_lsa *t7, struct ospf_lsa *t5) |
| 1918 | { |
| 1919 | |
| 1920 | struct as_external_lsa *e5 = (struct as_external_lsa *)t5, |
| 1921 | *e7 = (struct as_external_lsa *)t7; |
| 1922 | |
| 1923 | |
| 1924 | /* sanity checks */ |
| 1925 | if (! ((t5->data->type == OSPF_AS_EXTERNAL_LSA) |
| 1926 | && (t7->data->type == OSPF_AS_NSSA_LSA))) |
| 1927 | return -1; |
| 1928 | |
| 1929 | if (t5->data->id.s_addr != t7->data->id.s_addr) |
| 1930 | return -1; |
| 1931 | |
| 1932 | if (t5->data->ls_seqnum != t7->data->ls_seqnum) |
| 1933 | return LSA_REFRESH_FORCE; |
| 1934 | |
| 1935 | if (e5->mask.s_addr != e7->mask.s_addr) |
| 1936 | return LSA_REFRESH_FORCE; |
| 1937 | |
| 1938 | if (e5->e[0].fwd_addr.s_addr != e7->e[0].fwd_addr.s_addr) |
| 1939 | return LSA_REFRESH_FORCE; |
| 1940 | |
| 1941 | if (e5->e[0].route_tag != e7->e[0].route_tag) |
| 1942 | return LSA_REFRESH_FORCE; |
| 1943 | |
| 1944 | if (GET_METRIC (e5->e[0].metric) != GET_METRIC (e7->e[0].metric)) |
| 1945 | return LSA_REFRESH_FORCE; |
| 1946 | |
| 1947 | return LSA_REFRESH_IF_CHANGED; |
| 1948 | } |
| 1949 | |
| 1950 | /* Originate Translated Type-5 for supplied Type-7 NSSA LSA */ |
| 1951 | struct ospf_lsa * |
| 1952 | ospf_translated_nssa_originate (struct ospf *ospf, struct ospf_lsa *type7) |
| 1953 | { |
| 1954 | struct ospf_lsa *new; |
| 1955 | struct as_external_lsa *extnew; |
| 1956 | |
| 1957 | /* we cant use ospf_external_lsa_originate() as we need to set |
| 1958 | * the OSPF_LSA_LOCAL_XLT flag, must originate by hand |
| 1959 | */ |
| 1960 | |
| 1961 | if ( (new = ospf_lsa_translated_nssa_new (ospf, type7)) == NULL) |
| 1962 | { |
| 1963 | if (IS_DEBUG_OSPF_NSSA) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 1964 | zlog_debug ("ospf_translated_nssa_originate(): Could not translate " |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 1965 | "Type-7, Id %s, to Type-5", |
| 1966 | inet_ntoa (type7->data->id)); |
| 1967 | return NULL; |
| 1968 | } |
| 1969 | |
| 1970 | extnew = (struct as_external_lsa *)new; |
| 1971 | |
| 1972 | if (IS_DEBUG_OSPF_NSSA) |
| 1973 | { |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 1974 | zlog_debug ("ospf_translated_nssa_originate(): " |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 1975 | "translated Type 7, installed:"); |
| 1976 | ospf_lsa_header_dump (new->data); |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 1977 | zlog_debug (" Network mask: %d",ip_masklen (extnew->mask)); |
| 1978 | zlog_debug (" Forward addr: %s", inet_ntoa (extnew->e[0].fwd_addr)); |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 1979 | } |
| 1980 | |
| 1981 | if ( (new = ospf_lsa_install (ospf, NULL, new)) == NULL) |
| 1982 | { |
| 1983 | if (IS_DEBUG_OSPF_NSSA); |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 1984 | zlog_debug ("ospf_lsa_translated_nssa_originate(): " |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 1985 | "Could not install LSA " |
| 1986 | "id %s", inet_ntoa (type7->data->id)); |
| 1987 | return NULL; |
| 1988 | } |
| 1989 | |
| 1990 | ospf->lsa_originate_count++; |
| 1991 | ospf_flood_through_as (ospf, NULL, new); |
| 1992 | |
| 1993 | return new; |
| 1994 | } |
| 1995 | |
| 1996 | /* Refresh Translated from NSSA AS-external-LSA. */ |
| 1997 | struct ospf_lsa * |
| 1998 | ospf_translated_nssa_refresh (struct ospf *ospf, struct ospf_lsa *type7, |
| 1999 | struct ospf_lsa *type5) |
| 2000 | { |
| 2001 | struct ospf_lsa *new = NULL; |
| 2002 | |
| 2003 | /* Sanity checks. */ |
| 2004 | assert (type7 || type5); |
| 2005 | if (type7) |
| 2006 | assert (type7->data); |
| 2007 | if (type5) |
| 2008 | assert (type5->data); |
| 2009 | assert (ospf->anyNSSA); |
| 2010 | |
| 2011 | /* get required data according to what has been given */ |
| 2012 | if (type7 && type5 == NULL) |
| 2013 | { |
| 2014 | /* find the translated Type-5 for this Type-7 */ |
| 2015 | struct as_external_lsa *ext = (struct as_external_lsa *)(type7->data); |
| 2016 | struct prefix_ipv4 p = |
| 2017 | { |
| 2018 | .prefix = type7->data->id, |
| 2019 | .prefixlen = ip_masklen (ext->mask), |
| 2020 | .family = AF_INET, |
| 2021 | }; |
| 2022 | |
| 2023 | type5 = ospf_external_info_find_lsa (ospf, &p); |
| 2024 | } |
| 2025 | else if (type5 && type7 == NULL) |
| 2026 | { |
| 2027 | /* find the type-7 from which supplied type-5 was translated, |
| 2028 | * ie find first type-7 with same LSA Id. |
| 2029 | */ |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 2030 | struct listnode *ln, *lnn; |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 2031 | struct route_node *rn; |
| 2032 | struct ospf_lsa *lsa; |
| 2033 | struct ospf_area *area; |
| 2034 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 2035 | for (ALL_LIST_ELEMENTS (ospf->areas, ln, lnn, area)) |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 2036 | { |
| 2037 | if (area->external_routing != OSPF_AREA_NSSA |
| 2038 | && !type7) |
| 2039 | continue; |
| 2040 | |
| 2041 | LSDB_LOOP (NSSA_LSDB(area), rn, lsa) |
| 2042 | { |
| 2043 | if (lsa->data->id.s_addr == type5->data->id.s_addr) |
| 2044 | { |
| 2045 | type7 = lsa; |
| 2046 | break; |
| 2047 | } |
| 2048 | } |
| 2049 | } |
| 2050 | } |
| 2051 | |
| 2052 | /* do we have type7? */ |
| 2053 | if (!type7) |
| 2054 | { |
| 2055 | if (IS_DEBUG_OSPF_NSSA) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 2056 | zlog_debug ("ospf_translated_nssa_refresh(): no Type-7 found for " |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 2057 | "Type-5 LSA Id %s", |
| 2058 | inet_ntoa (type7->data->id)); |
| 2059 | return NULL; |
| 2060 | } |
| 2061 | |
| 2062 | /* do we have valid translated type5? */ |
| 2063 | if (type5 == NULL || !CHECK_FLAG (type5->flags, OSPF_LSA_LOCAL_XLT) ) |
| 2064 | { |
| 2065 | if (IS_DEBUG_OSPF_NSSA) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 2066 | zlog_debug ("ospf_translated_nssa_refresh(): No translated Type-5 " |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 2067 | "found for Type-7 with Id %s", |
| 2068 | inet_ntoa (type7->data->id)); |
| 2069 | return NULL; |
| 2070 | } |
| 2071 | |
| 2072 | /* Delete LSA from neighbor retransmit-list. */ |
| 2073 | ospf_ls_retransmit_delete_nbr_as (ospf, type5); |
| 2074 | |
| 2075 | /* create new translated LSA */ |
| 2076 | if ( (new = ospf_lsa_translated_nssa_new (ospf, type7)) == NULL) |
| 2077 | { |
| 2078 | if (IS_DEBUG_OSPF_NSSA) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 2079 | zlog_debug ("ospf_translated_nssa_refresh(): Could not translate " |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 2080 | "Type-7 for %s to Type-5", |
| 2081 | inet_ntoa (type7->data->id)); |
| 2082 | return NULL; |
| 2083 | } |
| 2084 | |
| 2085 | if ( !(new = ospf_lsa_install (ospf, NULL, new)) ) |
| 2086 | { |
| 2087 | if (IS_DEBUG_OSPF_NSSA) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 2088 | zlog_debug ("ospf_translated_nssa_refresh(): Could not install " |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 2089 | "translated LSA, Id %s", |
| 2090 | inet_ntoa (new->data->id)); |
| 2091 | return NULL; |
| 2092 | } |
| 2093 | |
| 2094 | /* Flood LSA through area. */ |
| 2095 | ospf_flood_through_as (ospf, NULL, new); |
| 2096 | |
| 2097 | return new; |
| 2098 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2099 | |
| 2100 | int |
| 2101 | is_prefix_default (struct prefix_ipv4 *p) |
| 2102 | { |
| 2103 | struct prefix_ipv4 q; |
| 2104 | |
| 2105 | q.family = AF_INET; |
| 2106 | q.prefix.s_addr = 0; |
| 2107 | q.prefixlen = 0; |
| 2108 | |
| 2109 | return prefix_same ((struct prefix *) p, (struct prefix *) &q); |
| 2110 | } |
| 2111 | |
| 2112 | /* Originate an AS-external-LSA, install and flood. */ |
| 2113 | struct ospf_lsa * |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2114 | ospf_external_lsa_originate (struct ospf *ospf, struct external_info *ei) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2115 | { |
| 2116 | struct ospf_lsa *new; |
| 2117 | |
| 2118 | /* Added for NSSA project.... |
| 2119 | |
| 2120 | External LSAs are originated in ASBRs as usual, but for NSSA systems. |
| 2121 | there is the global Type-5 LSDB and a Type-7 LSDB installed for |
| 2122 | every area. The Type-7's are flooded to every IR and every ABR; We |
| 2123 | install the Type-5 LSDB so that the normal "refresh" code operates |
| 2124 | as usual, and flag them as not used during ASE calculations. The |
| 2125 | Type-7 LSDB is used for calculations. Each Type-7 has a Forwarding |
| 2126 | Address of non-zero. |
| 2127 | |
| 2128 | If an ABR is the elected NSSA translator, following SPF and during |
| 2129 | the ABR task it will translate all the scanned Type-7's, with P-bit |
| 2130 | ON and not-self generated, and translate to Type-5's throughout the |
| 2131 | non-NSSA/STUB AS. |
| 2132 | |
| 2133 | A difference in operation depends whether this ASBR is an ABR |
| 2134 | or not. If not an ABR, the P-bit is ON, to indicate that any |
| 2135 | elected NSSA-ABR can perform its translation. |
| 2136 | |
| 2137 | If an ABR, the P-bit is OFF; No ABR will perform translation and |
| 2138 | this ASBR will flood the Type-5 LSA as usual. |
| 2139 | |
| 2140 | For the case where this ASBR is not an ABR, the ASE calculations |
| 2141 | are based on the Type-5 LSDB; The Type-7 LSDB exists just to |
| 2142 | demonstrate to the user that there are LSA's that belong to any |
| 2143 | attached NSSA. |
| 2144 | |
| 2145 | Finally, it just so happens that when the ABR is translating every |
| 2146 | Type-7 into Type-5, it installs it into the Type-5 LSDB as an |
| 2147 | approved Type-5 (translated from Type-7); at the end of translation |
| 2148 | if any Translated Type-5's remain unapproved, then they must be |
| 2149 | flushed from the AS. |
| 2150 | |
| 2151 | */ |
| 2152 | |
| 2153 | /* Check the AS-external-LSA should be originated. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2154 | if (!ospf_redistribute_check (ospf, ei, NULL)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2155 | return NULL; |
| 2156 | |
| 2157 | /* Create new AS-external-LSA instance. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2158 | if ((new = ospf_external_lsa_new (ospf, ei, NULL)) == NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2159 | { |
| 2160 | if (IS_DEBUG_OSPF_EVENT) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 2161 | zlog_debug ("LSA[Type5:%s]: Could not originate AS-external-LSA", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2162 | inet_ntoa (ei->p.prefix)); |
| 2163 | return NULL; |
| 2164 | } |
| 2165 | |
| 2166 | /* Install newly created LSA into Type-5 LSDB, lock = 1. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2167 | ospf_lsa_install (ospf, NULL, new); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2168 | |
| 2169 | /* Update LSA origination count. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2170 | ospf->lsa_originate_count++; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2171 | |
| 2172 | /* Flooding new LSA. only to AS (non-NSSA/STUB) */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2173 | ospf_flood_through_as (ospf, NULL, new); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2174 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2175 | /* If there is any attached NSSA, do special handling */ |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 2176 | if (ospf->anyNSSA && |
| 2177 | /* stay away from translated LSAs! */ |
| 2178 | !(CHECK_FLAG (new->flags, OSPF_LSA_LOCAL_XLT))) |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2179 | ospf_install_flood_nssa (ospf, new, ei); /* Install/Flood Type-7 to all NSSAs */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2180 | |
| 2181 | /* Debug logging. */ |
| 2182 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
| 2183 | { |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 2184 | zlog_debug ("LSA[Type%d:%s]: Originate AS-external-LSA %p", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2185 | new->data->type, inet_ntoa (new->data->id), new); |
| 2186 | ospf_lsa_header_dump (new->data); |
| 2187 | } |
| 2188 | |
| 2189 | return new; |
| 2190 | } |
| 2191 | |
| 2192 | /* Originate AS-external-LSA from external info with initial flag. */ |
| 2193 | int |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2194 | ospf_external_lsa_originate_timer (struct thread *thread) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2195 | { |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2196 | struct ospf *ospf = THREAD_ARG (thread); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2197 | struct route_node *rn; |
| 2198 | struct external_info *ei; |
| 2199 | struct route_table *rt; |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2200 | int type = THREAD_VAL (thread); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2201 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2202 | ospf->t_external_lsa = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2203 | |
| 2204 | /* Originate As-external-LSA from all type of distribute source. */ |
| 2205 | if ((rt = EXTERNAL_INFO (type))) |
| 2206 | for (rn = route_top (rt); rn; rn = route_next (rn)) |
| 2207 | if ((ei = rn->info) != NULL) |
| 2208 | if (!is_prefix_default ((struct prefix_ipv4 *)&ei->p)) |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2209 | if (!ospf_external_lsa_originate (ospf, ei)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2210 | zlog_warn ("LSA: AS-external-LSA was not originated."); |
| 2211 | |
| 2212 | return 0; |
| 2213 | } |
| 2214 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 2215 | static struct external_info * |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 2216 | ospf_default_external_info (struct ospf *ospf) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2217 | { |
| 2218 | int type; |
| 2219 | struct route_node *rn; |
| 2220 | struct prefix_ipv4 p; |
| 2221 | |
| 2222 | p.family = AF_INET; |
| 2223 | p.prefix.s_addr = 0; |
| 2224 | p.prefixlen = 0; |
| 2225 | |
| 2226 | /* First, lookup redistributed default route. */ |
| 2227 | for (type = 0; type <= ZEBRA_ROUTE_MAX; type++) |
| 2228 | if (EXTERNAL_INFO (type) && type != ZEBRA_ROUTE_OSPF) |
| 2229 | { |
| 2230 | rn = route_node_lookup (EXTERNAL_INFO (type), (struct prefix *) &p); |
| 2231 | if (rn != NULL) |
| 2232 | { |
| 2233 | route_unlock_node (rn); |
| 2234 | assert (rn->info); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2235 | if (ospf_redistribute_check (ospf, rn->info, NULL)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2236 | return rn->info; |
| 2237 | } |
| 2238 | } |
| 2239 | |
| 2240 | return NULL; |
| 2241 | } |
| 2242 | |
| 2243 | int |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2244 | ospf_default_originate_timer (struct thread *thread) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2245 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2246 | struct prefix_ipv4 p; |
| 2247 | struct in_addr nexthop; |
| 2248 | struct external_info *ei; |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 2249 | struct ospf *ospf; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2250 | |
Paul Jakma | 4021b60 | 2006-05-12 22:55:41 +0000 | [diff] [blame^] | 2251 | ospf = THREAD_ARG (thread); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2252 | |
| 2253 | p.family = AF_INET; |
| 2254 | p.prefix.s_addr = 0; |
| 2255 | p.prefixlen = 0; |
| 2256 | |
Paul Jakma | 4021b60 | 2006-05-12 22:55:41 +0000 | [diff] [blame^] | 2257 | if (ospf->default_originate == DEFAULT_ORIGINATE_ALWAYS) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2258 | { |
| 2259 | /* If there is no default route via redistribute, |
| 2260 | then originate AS-external-LSA with nexthop 0 (self). */ |
| 2261 | nexthop.s_addr = 0; |
| 2262 | ospf_external_info_add (DEFAULT_ROUTE, p, 0, nexthop); |
| 2263 | } |
| 2264 | |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 2265 | if ((ei = ospf_default_external_info (ospf))) |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2266 | ospf_external_lsa_originate (ospf, ei); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2267 | |
| 2268 | return 0; |
| 2269 | } |
| 2270 | |
paul | 645878f | 2003-04-13 21:42:11 +0000 | [diff] [blame] | 2271 | /* Flush any NSSA LSAs for given prefix */ |
| 2272 | void |
| 2273 | ospf_nssa_lsa_flush (struct ospf *ospf, struct prefix_ipv4 *p) |
| 2274 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 2275 | struct listnode *node, *nnode; |
paul | 645878f | 2003-04-13 21:42:11 +0000 | [diff] [blame] | 2276 | struct ospf_lsa *lsa; |
| 2277 | struct ospf_area *area; |
| 2278 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 2279 | for (ALL_LIST_ELEMENTS (ospf->areas, node, nnode, area)) |
paul | 645878f | 2003-04-13 21:42:11 +0000 | [diff] [blame] | 2280 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 2281 | if (area->external_routing == OSPF_AREA_NSSA) |
paul | d748032 | 2003-05-16 17:31:51 +0000 | [diff] [blame] | 2282 | { |
| 2283 | if (!(lsa = ospf_lsa_lookup (area, OSPF_AS_NSSA_LSA, p->prefix, |
| 2284 | ospf->router_id))) |
| 2285 | { |
| 2286 | if (IS_DEBUG_OSPF (lsa, LSA_FLOODING)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 2287 | zlog_debug ("LSA: There is no such AS-NSSA-LSA %s/%d in LSDB", |
paul | d748032 | 2003-05-16 17:31:51 +0000 | [diff] [blame] | 2288 | inet_ntoa (p->prefix), p->prefixlen); |
| 2289 | continue; |
| 2290 | } |
| 2291 | ospf_ls_retransmit_delete_nbr_area (area, lsa); |
| 2292 | if (!IS_LSA_MAXAGE (lsa)) |
| 2293 | { |
| 2294 | ospf_refresher_unregister_lsa (ospf, lsa); |
| 2295 | ospf_lsa_flush_area (lsa, area); |
| 2296 | } |
| 2297 | } |
paul | 645878f | 2003-04-13 21:42:11 +0000 | [diff] [blame] | 2298 | } |
| 2299 | } |
paul | 645878f | 2003-04-13 21:42:11 +0000 | [diff] [blame] | 2300 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2301 | /* Flush an AS-external-LSA from LSDB and routing domain. */ |
| 2302 | void |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2303 | ospf_external_lsa_flush (struct ospf *ospf, |
| 2304 | u_char type, struct prefix_ipv4 *p, |
ajs | 5339cfd | 2005-09-19 13:28:05 +0000 | [diff] [blame] | 2305 | unsigned int ifindex /*, struct in_addr nexthop */) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2306 | { |
| 2307 | struct ospf_lsa *lsa; |
| 2308 | |
| 2309 | if (IS_DEBUG_OSPF (lsa, LSA_FLOODING)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 2310 | zlog_debug ("LSA: Flushing AS-external-LSA %s/%d", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2311 | inet_ntoa (p->prefix), p->prefixlen); |
| 2312 | |
| 2313 | /* First lookup LSA from LSDB. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2314 | if (!(lsa = ospf_external_info_find_lsa (ospf, p))) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2315 | { |
| 2316 | if (IS_DEBUG_OSPF (lsa, LSA_FLOODING)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 2317 | zlog_debug ("LSA: There is no such AS-external-LSA %s/%d in LSDB", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2318 | inet_ntoa (p->prefix), p->prefixlen); |
| 2319 | return; |
| 2320 | } |
hasso | beebba7 | 2004-06-20 21:00:27 +0000 | [diff] [blame] | 2321 | |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 2322 | /* If LSA is selforiginated, not a translated LSA, and there is |
| 2323 | * NSSA area, flush Type-7 LSA's at first. |
| 2324 | */ |
| 2325 | if (IS_LSA_SELF(lsa) && (ospf->anyNSSA) |
| 2326 | && !(CHECK_FLAG (lsa->flags, OSPF_LSA_LOCAL_XLT))) |
paul | d748032 | 2003-05-16 17:31:51 +0000 | [diff] [blame] | 2327 | ospf_nssa_lsa_flush (ospf, p); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2328 | |
| 2329 | /* Sweep LSA from Link State Retransmit List. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2330 | ospf_ls_retransmit_delete_nbr_as (ospf, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2331 | |
| 2332 | /* There must be no self-originated LSA in rtrs_external. */ |
| 2333 | #if 0 |
| 2334 | /* Remove External route from Zebra. */ |
| 2335 | ospf_zebra_delete ((struct prefix_ipv4 *) p, &nexthop); |
| 2336 | #endif |
| 2337 | |
| 2338 | if (!IS_LSA_MAXAGE (lsa)) |
| 2339 | { |
| 2340 | /* Unregister LSA from Refresh queue. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2341 | ospf_refresher_unregister_lsa (ospf, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2342 | |
| 2343 | /* Flush AS-external-LSA through AS. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2344 | ospf_lsa_flush_as (ospf, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2345 | } |
| 2346 | |
| 2347 | if (IS_DEBUG_OSPF (lsa, LSA_FLOODING)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 2348 | zlog_debug ("ospf_external_lsa_flush(): stop"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2349 | } |
| 2350 | |
| 2351 | void |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2352 | ospf_external_lsa_refresh_default (struct ospf *ospf) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2353 | { |
| 2354 | struct prefix_ipv4 p; |
| 2355 | struct external_info *ei; |
| 2356 | struct ospf_lsa *lsa; |
| 2357 | |
| 2358 | p.family = AF_INET; |
| 2359 | p.prefixlen = 0; |
| 2360 | p.prefix.s_addr = 0; |
| 2361 | |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 2362 | ei = ospf_default_external_info (ospf); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2363 | lsa = ospf_external_info_find_lsa (ospf, &p); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2364 | |
| 2365 | if (ei) |
| 2366 | { |
| 2367 | if (lsa) |
| 2368 | { |
| 2369 | if (IS_DEBUG_OSPF_EVENT) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 2370 | zlog_debug ("LSA[Type5:0.0.0.0]: Refresh AS-external-LSA %p", lsa); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2371 | ospf_external_lsa_refresh (ospf, lsa, ei, LSA_REFRESH_FORCE); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2372 | } |
| 2373 | else |
| 2374 | { |
| 2375 | if (IS_DEBUG_OSPF_EVENT) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 2376 | zlog_debug ("LSA[Type5:0.0.0.0]: Originate AS-external-LSA"); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2377 | ospf_external_lsa_originate (ospf, ei); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2378 | } |
| 2379 | } |
| 2380 | else |
| 2381 | { |
| 2382 | if (lsa) |
| 2383 | { |
| 2384 | if (IS_DEBUG_OSPF_EVENT) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 2385 | zlog_debug ("LSA[Type5:0.0.0.0]: Flush AS-external-LSA"); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2386 | ospf_lsa_flush_as (ospf, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2387 | } |
| 2388 | } |
| 2389 | } |
| 2390 | |
| 2391 | void |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2392 | ospf_external_lsa_refresh_type (struct ospf *ospf, u_char type, int force) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2393 | { |
| 2394 | struct route_node *rn; |
| 2395 | struct external_info *ei; |
| 2396 | |
| 2397 | if (type != DEFAULT_ROUTE) |
| 2398 | if (EXTERNAL_INFO(type)) |
| 2399 | /* Refresh each redistributed AS-external-LSAs. */ |
| 2400 | for (rn = route_top (EXTERNAL_INFO (type)); rn; rn = route_next (rn)) |
| 2401 | if ((ei = rn->info)) |
| 2402 | if (!is_prefix_default (&ei->p)) |
| 2403 | { |
| 2404 | struct ospf_lsa *lsa; |
| 2405 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2406 | if ((lsa = ospf_external_info_find_lsa (ospf, &ei->p))) |
| 2407 | ospf_external_lsa_refresh (ospf, lsa, ei, force); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2408 | else |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2409 | ospf_external_lsa_originate (ospf, ei); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2410 | } |
| 2411 | } |
| 2412 | |
| 2413 | /* Refresh AS-external-LSA. */ |
| 2414 | void |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2415 | ospf_external_lsa_refresh (struct ospf *ospf, struct ospf_lsa *lsa, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2416 | struct external_info *ei, int force) |
| 2417 | { |
| 2418 | struct ospf_lsa *new; |
| 2419 | int changed; |
| 2420 | |
| 2421 | /* Check the AS-external-LSA should be originated. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2422 | if (!ospf_redistribute_check (ospf, ei, &changed)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2423 | { |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 2424 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 2425 | zlog_debug ("LSA[Type%d:%s]: Could not be refreshed, " |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 2426 | "redist check fail", |
| 2427 | lsa->data->type, inet_ntoa (lsa->data->id)); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2428 | ospf_external_lsa_flush (ospf, ei->type, &ei->p, |
ajs | 5339cfd | 2005-09-19 13:28:05 +0000 | [diff] [blame] | 2429 | ei->ifindex /*, ei->nexthop */); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2430 | return; |
| 2431 | } |
| 2432 | |
| 2433 | if (!changed && !force) |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 2434 | { |
| 2435 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 2436 | zlog_debug ("LSA[Type%d:%s]: Not refreshed, not changed/forced", |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 2437 | lsa->data->type, inet_ntoa (lsa->data->id)); |
| 2438 | return; |
| 2439 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2440 | |
| 2441 | /* Delete LSA from neighbor retransmit-list. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2442 | ospf_ls_retransmit_delete_nbr_as (ospf, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2443 | |
| 2444 | /* Unregister AS-external-LSA from refresh-list. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2445 | ospf_refresher_unregister_lsa (ospf, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2446 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2447 | new = ospf_external_lsa_new (ospf, ei, &lsa->data->id); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2448 | |
| 2449 | if (new == NULL) |
| 2450 | { |
| 2451 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 2452 | zlog_debug ("LSA[Type%d:%s]: Could not be refreshed", lsa->data->type, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2453 | inet_ntoa (lsa->data->id)); |
| 2454 | return; |
| 2455 | } |
| 2456 | |
| 2457 | new->data->ls_seqnum = lsa_seqnum_increment (lsa); |
| 2458 | |
| 2459 | /* Record timestamp. */ |
| 2460 | gettimeofday (&new->tv_orig, NULL); |
| 2461 | |
| 2462 | /* Re-calculate checksum. */ |
| 2463 | ospf_lsa_checksum (new->data); |
| 2464 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2465 | ospf_lsa_install (ospf, NULL, new); /* As type-5. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2466 | |
| 2467 | /* Flood LSA through AS. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2468 | ospf_flood_through_as (ospf, NULL, new); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2469 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2470 | /* If any attached NSSA, install as Type-7, flood to all NSSA Areas */ |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 2471 | if (ospf->anyNSSA && !(CHECK_FLAG (new->flags, OSPF_LSA_LOCAL_XLT))) |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2472 | ospf_install_flood_nssa (ospf, new, ei); /* Install/Flood per new rules */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2473 | |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 2474 | /* Register self-originated LSA to refresh queue. |
| 2475 | * Translated LSAs should not be registered, but refreshed upon |
| 2476 | * refresh of the Type-7 |
| 2477 | */ |
| 2478 | if ( !CHECK_FLAG (new->flags, OSPF_LSA_LOCAL_XLT) ) |
| 2479 | ospf_refresher_register_lsa (ospf, new); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2480 | |
| 2481 | /* Debug logging. */ |
| 2482 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
| 2483 | { |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 2484 | zlog_debug ("LSA[Type%d:%s]: AS-external-LSA refresh", |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 2485 | new->data->type, inet_ntoa (new->data->id)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2486 | ospf_lsa_header_dump (new->data); |
| 2487 | } |
| 2488 | |
| 2489 | return; |
| 2490 | } |
| 2491 | |
| 2492 | |
| 2493 | /* LSA installation functions. */ |
| 2494 | |
| 2495 | /* Install router-LSA to an area. */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 2496 | static struct ospf_lsa * |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2497 | ospf_router_lsa_install (struct ospf *ospf, |
| 2498 | struct ospf_lsa *new, int rt_recalc) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2499 | { |
| 2500 | struct ospf_area *area = new->area; |
| 2501 | |
| 2502 | /* RFC 2328 Section 13.2 Router-LSAs and network-LSAs |
| 2503 | The entire routing table must be recalculated, starting with |
| 2504 | the shortest path calculations for each area (not just the |
| 2505 | area whose link-state database has changed). |
| 2506 | */ |
| 2507 | if (rt_recalc) |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2508 | ospf_spf_calculate_schedule (ospf); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2509 | |
| 2510 | if (IS_LSA_SELF (new)) |
| 2511 | { |
| 2512 | /* Set router-LSA refresh timer. */ |
| 2513 | OSPF_TIMER_OFF (area->t_router_lsa_self); |
| 2514 | OSPF_AREA_TIMER_ON (area->t_router_lsa_self, |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 2515 | ospf_router_lsa_timer, OSPF_LS_REFRESH_TIME); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2516 | |
| 2517 | /* Set self-originated router-LSA. */ |
| 2518 | ospf_lsa_unlock (area->router_lsa_self); |
| 2519 | area->router_lsa_self = ospf_lsa_lock (new); |
| 2520 | |
| 2521 | if (IS_DEBUG_OSPF (lsa, LSA_INSTALL)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 2522 | zlog_debug("LSA[Type%d]: ID %s seq 0x%x is self-originated", |
paul | 0c2be26 | 2004-05-31 14:16:54 +0000 | [diff] [blame] | 2523 | new->data->type, inet_ntoa (new->data->id), |
| 2524 | ntohl(new->data->ls_seqnum)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2525 | } |
| 2526 | |
| 2527 | return new; |
| 2528 | } |
| 2529 | |
| 2530 | #define OSPF_INTERFACE_TIMER_ON(T,F,V) \ |
| 2531 | if (!(T)) \ |
| 2532 | (T) = thread_add_timer (master, (F), oi, (V)) |
| 2533 | |
| 2534 | /* Install network-LSA to an area. */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 2535 | static struct ospf_lsa * |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2536 | ospf_network_lsa_install (struct ospf *ospf, |
| 2537 | struct ospf_interface *oi, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2538 | struct ospf_lsa *new, |
| 2539 | int rt_recalc) |
| 2540 | { |
| 2541 | |
| 2542 | /* RFC 2328 Section 13.2 Router-LSAs and network-LSAs |
| 2543 | The entire routing table must be recalculated, starting with |
| 2544 | the shortest path calculations for each area (not just the |
| 2545 | area whose link-state database has changed). |
| 2546 | */ |
| 2547 | if (rt_recalc) |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2548 | ospf_spf_calculate_schedule (ospf); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2549 | |
| 2550 | /* We supposed that when LSA is originated by us, we pass the int |
| 2551 | for which it was originated. If LSA was received by flooding, |
| 2552 | the RECEIVED flag is set, so we do not link the LSA to the int. */ |
| 2553 | if (IS_LSA_SELF (new) && !CHECK_FLAG (new->flags, OSPF_LSA_RECEIVED)) |
| 2554 | { |
| 2555 | /* Set LSRefresh timer. */ |
| 2556 | OSPF_TIMER_OFF (oi->t_network_lsa_self); |
| 2557 | |
| 2558 | OSPF_INTERFACE_TIMER_ON (oi->t_network_lsa_self, |
| 2559 | ospf_network_lsa_refresh_timer, |
| 2560 | OSPF_LS_REFRESH_TIME); |
| 2561 | |
| 2562 | ospf_lsa_unlock (oi->network_lsa_self); |
| 2563 | oi->network_lsa_self = ospf_lsa_lock (new); |
| 2564 | } |
| 2565 | |
| 2566 | return new; |
| 2567 | } |
| 2568 | |
| 2569 | /* Install summary-LSA to an area. */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 2570 | static struct ospf_lsa * |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2571 | ospf_summary_lsa_install (struct ospf *ospf, struct ospf_lsa *new, |
| 2572 | int rt_recalc) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2573 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2574 | if (rt_recalc && !IS_LSA_SELF (new)) |
| 2575 | { |
| 2576 | /* RFC 2328 Section 13.2 Summary-LSAs |
| 2577 | The best route to the destination described by the summary- |
| 2578 | LSA must be recalculated (see Section 16.5). If this |
| 2579 | destination is an AS boundary router, it may also be |
| 2580 | necessary to re-examine all the AS-external-LSAs. |
| 2581 | */ |
| 2582 | |
| 2583 | #if 0 |
| 2584 | /* This doesn't exist yet... */ |
| 2585 | ospf_summary_incremental_update(new); */ |
| 2586 | #else /* #if 0 */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2587 | ospf_spf_calculate_schedule (ospf); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2588 | #endif /* #if 0 */ |
| 2589 | |
| 2590 | if (IS_DEBUG_OSPF (lsa, LSA_INSTALL)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 2591 | zlog_debug ("ospf_summary_lsa_install(): SPF scheduled"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2592 | } |
| 2593 | |
| 2594 | if (IS_LSA_SELF (new)) |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2595 | ospf_refresher_register_lsa (ospf, new); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2596 | |
| 2597 | return new; |
| 2598 | } |
| 2599 | |
| 2600 | /* Install ASBR-summary-LSA to an area. */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 2601 | static struct ospf_lsa * |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2602 | ospf_summary_asbr_lsa_install (struct ospf *ospf, struct ospf_lsa *new, |
| 2603 | int rt_recalc) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2604 | { |
| 2605 | if (rt_recalc && !IS_LSA_SELF (new)) |
| 2606 | { |
| 2607 | /* RFC 2328 Section 13.2 Summary-LSAs |
| 2608 | The best route to the destination described by the summary- |
| 2609 | LSA must be recalculated (see Section 16.5). If this |
| 2610 | destination is an AS boundary router, it may also be |
| 2611 | necessary to re-examine all the AS-external-LSAs. |
| 2612 | */ |
| 2613 | #if 0 |
| 2614 | /* These don't exist yet... */ |
| 2615 | ospf_summary_incremental_update(new); |
| 2616 | /* Isn't this done by the above call? |
| 2617 | - RFC 2328 Section 16.5 implies it should be */ |
| 2618 | /* ospf_ase_calculate_schedule(); */ |
| 2619 | #else /* #if 0 */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2620 | ospf_spf_calculate_schedule (ospf); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2621 | #endif /* #if 0 */ |
| 2622 | } |
| 2623 | |
| 2624 | /* register LSA to refresh-list. */ |
| 2625 | if (IS_LSA_SELF (new)) |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2626 | ospf_refresher_register_lsa (ospf, new); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2627 | |
| 2628 | return new; |
| 2629 | } |
| 2630 | |
| 2631 | /* Install AS-external-LSA. */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 2632 | static struct ospf_lsa * |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2633 | ospf_external_lsa_install (struct ospf *ospf, struct ospf_lsa *new, |
| 2634 | int rt_recalc) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2635 | { |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2636 | ospf_ase_register_external_lsa (new, ospf); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2637 | /* If LSA is not self-originated, calculate an external route. */ |
| 2638 | if (rt_recalc) |
| 2639 | { |
| 2640 | /* RFC 2328 Section 13.2 AS-external-LSAs |
| 2641 | The best route to the destination described by the AS- |
| 2642 | external-LSA must be recalculated (see Section 16.6). |
| 2643 | */ |
| 2644 | |
| 2645 | if (!IS_LSA_SELF (new)) |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 2646 | ospf_ase_incremental_update (ospf, new); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2647 | } |
| 2648 | |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 2649 | if (new->data->type == OSPF_AS_NSSA_LSA) |
| 2650 | { |
| 2651 | /* There is no point to register selforiginate Type-7 LSA for |
| 2652 | * refreshing. We rely on refreshing Type-5 LSA's |
| 2653 | */ |
| 2654 | if (IS_LSA_SELF (new)) |
| 2655 | return new; |
| 2656 | else |
| 2657 | { |
| 2658 | /* Try refresh type-5 translated LSA for this LSA, if one exists. |
| 2659 | * New translations will be taken care of by the abr_task. |
| 2660 | */ |
| 2661 | ospf_translated_nssa_refresh (ospf, new, NULL); |
| 2662 | } |
| 2663 | } |
paul | d748032 | 2003-05-16 17:31:51 +0000 | [diff] [blame] | 2664 | |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 2665 | /* Register self-originated LSA to refresh queue. |
paul | 8fc0f64 | 2003-07-13 01:36:06 +0000 | [diff] [blame] | 2666 | * Leave Translated LSAs alone if NSSA is enabled |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 2667 | */ |
hasso | beebba7 | 2004-06-20 21:00:27 +0000 | [diff] [blame] | 2668 | if (IS_LSA_SELF (new) && !CHECK_FLAG (new->flags, OSPF_LSA_LOCAL_XLT ) ) |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2669 | ospf_refresher_register_lsa (ospf, new); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2670 | |
| 2671 | return new; |
| 2672 | } |
| 2673 | |
| 2674 | void |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2675 | ospf_discard_from_db (struct ospf *ospf, |
| 2676 | struct ospf_lsdb *lsdb, struct ospf_lsa *lsa) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2677 | { |
| 2678 | struct ospf_lsa *old; |
| 2679 | |
| 2680 | old = ospf_lsdb_lookup (lsdb, lsa); |
| 2681 | |
| 2682 | if (!old) |
| 2683 | return; |
| 2684 | |
| 2685 | if (old->refresh_list >= 0) |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2686 | ospf_refresher_unregister_lsa (ospf, old); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2687 | |
| 2688 | switch (old->data->type) |
| 2689 | { |
| 2690 | case OSPF_AS_EXTERNAL_LSA: |
paul | 69310a6 | 2005-05-11 18:09:59 +0000 | [diff] [blame] | 2691 | ospf_ase_unregister_external_lsa (old, ospf); |
| 2692 | ospf_ls_retransmit_delete_nbr_as (ospf, old); |
| 2693 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2694 | #ifdef HAVE_OPAQUE_LSA |
| 2695 | case OSPF_OPAQUE_AS_LSA: |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2696 | ospf_ls_retransmit_delete_nbr_as (ospf, old); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2697 | break; |
paul | 69310a6 | 2005-05-11 18:09:59 +0000 | [diff] [blame] | 2698 | #endif /* HAVE_OPAQUE_LSA */ |
paul | d748032 | 2003-05-16 17:31:51 +0000 | [diff] [blame] | 2699 | case OSPF_AS_NSSA_LSA: |
| 2700 | ospf_ls_retransmit_delete_nbr_area (old->area, old); |
| 2701 | ospf_ase_unregister_external_lsa (old, ospf); |
hasso | beebba7 | 2004-06-20 21:00:27 +0000 | [diff] [blame] | 2702 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2703 | default: |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2704 | ospf_ls_retransmit_delete_nbr_area (old->area, old); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2705 | break; |
| 2706 | } |
| 2707 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2708 | ospf_lsa_maxage_delete (ospf, old); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2709 | ospf_lsa_discard (old); |
| 2710 | } |
| 2711 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2712 | struct ospf_lsa * |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2713 | ospf_lsa_install (struct ospf *ospf, struct ospf_interface *oi, |
| 2714 | struct ospf_lsa *lsa) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2715 | { |
| 2716 | struct ospf_lsa *new = NULL; |
| 2717 | struct ospf_lsa *old = NULL; |
| 2718 | struct ospf_lsdb *lsdb = NULL; |
| 2719 | int rt_recalc; |
| 2720 | |
| 2721 | /* Set LSDB. */ |
| 2722 | switch (lsa->data->type) |
| 2723 | { |
paul | f2c8065 | 2002-12-13 21:44:27 +0000 | [diff] [blame] | 2724 | /* kevinm */ |
| 2725 | case OSPF_AS_NSSA_LSA: |
| 2726 | if (lsa->area) |
| 2727 | lsdb = lsa->area->lsdb; |
| 2728 | else |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2729 | lsdb = ospf->lsdb; |
paul | f2c8065 | 2002-12-13 21:44:27 +0000 | [diff] [blame] | 2730 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2731 | case OSPF_AS_EXTERNAL_LSA: |
| 2732 | #ifdef HAVE_OPAQUE_LSA |
| 2733 | case OSPF_OPAQUE_AS_LSA: |
| 2734 | #endif /* HAVE_OPAQUE_LSA */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2735 | lsdb = ospf->lsdb; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2736 | break; |
| 2737 | default: |
| 2738 | lsdb = lsa->area->lsdb; |
| 2739 | break; |
| 2740 | } |
| 2741 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2742 | assert (lsdb); |
| 2743 | |
| 2744 | /* RFC 2328 13.2. Installing LSAs in the database |
| 2745 | |
| 2746 | Installing a new LSA in the database, either as the result of |
| 2747 | flooding or a newly self-originated LSA, may cause the OSPF |
| 2748 | routing table structure to be recalculated. The contents of the |
| 2749 | new LSA should be compared to the old instance, if present. If |
| 2750 | there is no difference, there is no need to recalculate the |
| 2751 | routing table. When comparing an LSA to its previous instance, |
| 2752 | the following are all considered to be differences in contents: |
| 2753 | |
| 2754 | o The LSA's Options field has changed. |
| 2755 | |
| 2756 | o One of the LSA instances has LS age set to MaxAge, and |
| 2757 | the other does not. |
| 2758 | |
| 2759 | o The length field in the LSA header has changed. |
| 2760 | |
| 2761 | o The body of the LSA (i.e., anything outside the 20-byte |
| 2762 | LSA header) has changed. Note that this excludes changes |
| 2763 | in LS Sequence Number and LS Checksum. |
| 2764 | |
| 2765 | */ |
| 2766 | /* Look up old LSA and determine if any SPF calculation or incremental |
| 2767 | update is needed */ |
| 2768 | old = ospf_lsdb_lookup (lsdb, lsa); |
| 2769 | |
| 2770 | /* Do comparision and record if recalc needed. */ |
| 2771 | rt_recalc = 0; |
| 2772 | if ( old == NULL || ospf_lsa_different(old, lsa)) |
| 2773 | rt_recalc = 1; |
| 2774 | |
paul | 7ddf1d6 | 2003-10-13 09:06:46 +0000 | [diff] [blame] | 2775 | /* |
| 2776 | Sequence number check (Section 14.1 of rfc 2328) |
| 2777 | "Premature aging is used when it is time for a self-originated |
| 2778 | LSA's sequence number field to wrap. At this point, the current |
| 2779 | LSA instance (having LS sequence number MaxSequenceNumber) must |
| 2780 | be prematurely aged and flushed from the routing domain before a |
| 2781 | new instance with sequence number equal to InitialSequenceNumber |
| 2782 | can be originated. " |
| 2783 | */ |
| 2784 | |
Paul Jakma | c2b478d | 2006-03-30 14:16:11 +0000 | [diff] [blame] | 2785 | if (ntohl(lsa->data->ls_seqnum) - 1 == OSPF_MAX_SEQUENCE_NUMBER) |
paul | 7ddf1d6 | 2003-10-13 09:06:46 +0000 | [diff] [blame] | 2786 | { |
| 2787 | if (ospf_lsa_is_self_originated(ospf, lsa)) |
| 2788 | { |
paul | 0c2be26 | 2004-05-31 14:16:54 +0000 | [diff] [blame] | 2789 | lsa->data->ls_seqnum = htonl(OSPF_MAX_SEQUENCE_NUMBER); |
| 2790 | |
| 2791 | if (!IS_LSA_MAXAGE(lsa)) |
paul | 7ddf1d6 | 2003-10-13 09:06:46 +0000 | [diff] [blame] | 2792 | lsa->flags |= OSPF_LSA_PREMATURE_AGE; |
| 2793 | lsa->data->ls_age = htons (OSPF_LSA_MAXAGE); |
| 2794 | |
| 2795 | if (IS_DEBUG_OSPF (lsa, LSA_REFRESH)) |
| 2796 | { |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 2797 | zlog_debug ("ospf_lsa_install() Premature Aging " |
paul | 7ddf1d6 | 2003-10-13 09:06:46 +0000 | [diff] [blame] | 2798 | "lsa 0x%lx", (u_long)lsa); |
| 2799 | ospf_lsa_header_dump (lsa->data); |
| 2800 | } |
| 2801 | } |
| 2802 | else |
| 2803 | { |
| 2804 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
| 2805 | { |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 2806 | zlog_debug ("ospf_lsa_install() got an lsa with seq 0x80000000 " |
paul | 7ddf1d6 | 2003-10-13 09:06:46 +0000 | [diff] [blame] | 2807 | "that was not self originated. Ignoring\n"); |
| 2808 | ospf_lsa_header_dump (lsa->data); |
| 2809 | } |
| 2810 | return old; |
| 2811 | } |
| 2812 | } |
| 2813 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2814 | /* discard old LSA from LSDB */ |
| 2815 | if (old != NULL) |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2816 | ospf_discard_from_db (ospf, lsdb, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2817 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2818 | /* Calculate Checksum if self-originated?. */ |
| 2819 | if (IS_LSA_SELF (lsa)) |
| 2820 | ospf_lsa_checksum (lsa->data); |
| 2821 | |
hasso | fe71a97 | 2004-12-22 16:16:02 +0000 | [diff] [blame] | 2822 | /* Insert LSA to LSDB. */ |
| 2823 | ospf_lsdb_add (lsdb, lsa); |
| 2824 | lsa->lsdb = lsdb; |
| 2825 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2826 | /* Do LSA specific installation process. */ |
| 2827 | switch (lsa->data->type) |
| 2828 | { |
| 2829 | case OSPF_ROUTER_LSA: |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2830 | new = ospf_router_lsa_install (ospf, lsa, rt_recalc); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2831 | break; |
| 2832 | case OSPF_NETWORK_LSA: |
| 2833 | assert (oi); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2834 | new = ospf_network_lsa_install (ospf, oi, lsa, rt_recalc); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2835 | break; |
| 2836 | case OSPF_SUMMARY_LSA: |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2837 | new = ospf_summary_lsa_install (ospf, lsa, rt_recalc); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2838 | break; |
| 2839 | case OSPF_ASBR_SUMMARY_LSA: |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2840 | new = ospf_summary_asbr_lsa_install (ospf, lsa, rt_recalc); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2841 | break; |
| 2842 | case OSPF_AS_EXTERNAL_LSA: |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2843 | new = ospf_external_lsa_install (ospf, lsa, rt_recalc); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2844 | break; |
| 2845 | #ifdef HAVE_OPAQUE_LSA |
| 2846 | case OSPF_OPAQUE_LINK_LSA: |
paul | 09e4efd | 2003-01-18 00:12:02 +0000 | [diff] [blame] | 2847 | if (IS_LSA_SELF (lsa)) |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2848 | lsa->oi = oi; /* Specify outgoing ospf-interface for this LSA. */ |
paul | 09e4efd | 2003-01-18 00:12:02 +0000 | [diff] [blame] | 2849 | else |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2850 | ; /* Incoming "oi" for this LSA has set at LSUpd reception. */ |
paul | 09e4efd | 2003-01-18 00:12:02 +0000 | [diff] [blame] | 2851 | /* Fallthrough */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2852 | case OSPF_OPAQUE_AREA_LSA: |
| 2853 | case OSPF_OPAQUE_AS_LSA: |
| 2854 | new = ospf_opaque_lsa_install (lsa, rt_recalc); |
| 2855 | break; |
| 2856 | #endif /* HAVE_OPAQUE_LSA */ |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 2857 | case OSPF_AS_NSSA_LSA: |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2858 | new = ospf_external_lsa_install (ospf, lsa, rt_recalc); |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 2859 | default: /* type-6,8,9....nothing special */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2860 | break; |
| 2861 | } |
| 2862 | |
| 2863 | if (new == NULL) |
| 2864 | return new; /* Installation failed, cannot proceed further -- endo. */ |
| 2865 | |
| 2866 | /* Debug logs. */ |
| 2867 | if (IS_DEBUG_OSPF (lsa, LSA_INSTALL)) |
| 2868 | { |
| 2869 | char area_str[INET_ADDRSTRLEN]; |
| 2870 | |
| 2871 | switch (lsa->data->type) |
| 2872 | { |
| 2873 | case OSPF_AS_EXTERNAL_LSA: |
| 2874 | #ifdef HAVE_OPAQUE_LSA |
| 2875 | case OSPF_OPAQUE_AS_LSA: |
| 2876 | #endif /* HAVE_OPAQUE_LSA */ |
hasso | beebba7 | 2004-06-20 21:00:27 +0000 | [diff] [blame] | 2877 | case OSPF_AS_NSSA_LSA: |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 2878 | zlog_debug ("LSA[%s]: Install %s", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2879 | dump_lsa_key (new), |
| 2880 | LOOKUP (ospf_lsa_type_msg, new->data->type)); |
| 2881 | break; |
| 2882 | default: |
| 2883 | strcpy (area_str, inet_ntoa (new->area->area_id)); |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 2884 | zlog_debug ("LSA[%s]: Install %s to Area %s", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2885 | dump_lsa_key (new), |
| 2886 | LOOKUP (ospf_lsa_type_msg, new->data->type), area_str); |
| 2887 | break; |
| 2888 | } |
| 2889 | } |
| 2890 | |
paul | 7ddf1d6 | 2003-10-13 09:06:46 +0000 | [diff] [blame] | 2891 | /* |
| 2892 | If received LSA' ls_age is MaxAge, or lsa is being prematurely aged |
| 2893 | (it's getting flushed out of the area), set LSA on MaxAge LSA list. |
| 2894 | */ |
| 2895 | if ((lsa->flags & OSPF_LSA_PREMATURE_AGE) || |
| 2896 | (IS_LSA_MAXAGE (new) && !IS_LSA_SELF (new))) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2897 | { |
paul | 7ddf1d6 | 2003-10-13 09:06:46 +0000 | [diff] [blame] | 2898 | if (IS_DEBUG_OSPF (lsa, LSA_INSTALL)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 2899 | zlog_debug ("LSA[Type%d:%s]: Install LSA 0x%p, MaxAge", |
paul | 0c2be26 | 2004-05-31 14:16:54 +0000 | [diff] [blame] | 2900 | new->data->type, |
| 2901 | inet_ntoa (new->data->id), |
| 2902 | lsa); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2903 | ospf_lsa_maxage (ospf, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2904 | } |
| 2905 | |
| 2906 | return new; |
| 2907 | } |
| 2908 | |
| 2909 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 2910 | static int |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2911 | ospf_check_nbr_status (struct ospf *ospf) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2912 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 2913 | struct listnode *node, *nnode; |
| 2914 | struct ospf_interface *oi; |
| 2915 | |
| 2916 | for (ALL_LIST_ELEMENTS (ospf->oiflist, node, nnode, oi)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2917 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2918 | struct route_node *rn; |
| 2919 | struct ospf_neighbor *nbr; |
| 2920 | |
| 2921 | if (ospf_if_is_enable (oi)) |
| 2922 | for (rn = route_top (oi->nbrs); rn; rn = route_next (rn)) |
| 2923 | if ((nbr = rn->info) != NULL) |
| 2924 | if (nbr->state == NSM_Exchange || nbr->state == NSM_Loading) |
| 2925 | { |
| 2926 | route_unlock_node (rn); |
| 2927 | return 0; |
| 2928 | } |
| 2929 | } |
| 2930 | |
| 2931 | return 1; |
| 2932 | } |
| 2933 | |
| 2934 | |
| 2935 | #ifdef ORIGINAL_CODING |
| 2936 | /* This function flood the maxaged LSA to DR. */ |
| 2937 | void |
| 2938 | ospf_maxage_flood (struct ospf_lsa *lsa) |
| 2939 | { |
| 2940 | switch (lsa->data->type) |
| 2941 | { |
| 2942 | case OSPF_ROUTER_LSA: |
| 2943 | case OSPF_NETWORK_LSA: |
| 2944 | case OSPF_SUMMARY_LSA: |
| 2945 | case OSPF_ASBR_SUMMARY_LSA: |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2946 | case OSPF_AS_NSSA_LSA: |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2947 | #ifdef HAVE_OPAQUE_LSA |
| 2948 | case OSPF_OPAQUE_LINK_LSA: |
| 2949 | case OSPF_OPAQUE_AREA_LSA: |
| 2950 | #endif /* HAVE_OPAQUE_LSA */ |
| 2951 | ospf_flood_through_area (lsa->area, NULL, lsa); |
| 2952 | break; |
| 2953 | case OSPF_AS_EXTERNAL_LSA: |
| 2954 | #ifdef HAVE_OPAQUE_LSA |
| 2955 | case OSPF_OPAQUE_AS_LSA: |
| 2956 | #endif /* HAVE_OPAQUE_LSA */ |
| 2957 | ospf_flood_through_as (NULL, lsa); |
| 2958 | break; |
| 2959 | default: |
| 2960 | break; |
| 2961 | } |
| 2962 | } |
| 2963 | #endif /* ORIGINAL_CODING */ |
| 2964 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 2965 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2966 | ospf_maxage_lsa_remover (struct thread *thread) |
| 2967 | { |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2968 | struct ospf *ospf = THREAD_ARG (thread); |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 2969 | struct ospf_lsa *lsa; |
| 2970 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2971 | int reschedule = 0; |
| 2972 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2973 | ospf->t_maxage = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2974 | |
| 2975 | if (IS_DEBUG_OSPF (lsa, LSA_FLOODING)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 2976 | zlog_debug ("LSA[MaxAge]: remover Start"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2977 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2978 | reschedule = !ospf_check_nbr_status (ospf); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2979 | |
| 2980 | if (!reschedule) |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 2981 | for (ALL_LIST_ELEMENTS (ospf->maxage_lsa, node, nnode, lsa)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2982 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2983 | if (lsa->retransmit_counter > 0) |
| 2984 | { |
| 2985 | reschedule = 1; |
| 2986 | continue; |
| 2987 | } |
| 2988 | |
| 2989 | /* Remove LSA from the LSDB */ |
| 2990 | if (CHECK_FLAG (lsa->flags, OSPF_LSA_SELF)) |
| 2991 | if (IS_DEBUG_OSPF (lsa, LSA_FLOODING)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 2992 | zlog_debug ("LSA[Type%d:%s]: LSA 0x%lx is self-oririnated: ", |
paul | 7ddf1d6 | 2003-10-13 09:06:46 +0000 | [diff] [blame] | 2993 | lsa->data->type, inet_ntoa (lsa->data->id), (u_long)lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2994 | |
| 2995 | if (IS_DEBUG_OSPF (lsa, LSA_FLOODING)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 2996 | zlog_debug ("LSA[Type%d:%s]: MaxAge LSA removed from list", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2997 | lsa->data->type, inet_ntoa (lsa->data->id)); |
| 2998 | |
| 2999 | /* Flood max age LSA. */ |
| 3000 | #ifdef ORIGINAL_CODING |
| 3001 | ospf_maxage_flood (lsa); |
| 3002 | #else /* ORIGINAL_CODING */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3003 | ospf_flood_through (ospf, NULL, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3004 | #endif /* ORIGINAL_CODING */ |
| 3005 | |
paul | 7ddf1d6 | 2003-10-13 09:06:46 +0000 | [diff] [blame] | 3006 | if (lsa->flags & OSPF_LSA_PREMATURE_AGE) |
| 3007 | { |
| 3008 | if (IS_DEBUG_OSPF (lsa, LSA_FLOODING)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 3009 | zlog_debug ("originating new router lsa for lsa 0x%lx \n", |
paul | 7ddf1d6 | 2003-10-13 09:06:46 +0000 | [diff] [blame] | 3010 | (u_long)lsa); |
| 3011 | ospf_router_lsa_originate(lsa->area); |
| 3012 | } |
| 3013 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3014 | /* Remove from lsdb. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3015 | ospf_discard_from_db (ospf, lsa->lsdb, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3016 | ospf_lsdb_delete (lsa->lsdb, lsa); |
| 3017 | } |
| 3018 | |
| 3019 | /* A MaxAge LSA must be removed immediately from the router's link |
| 3020 | state database as soon as both a) it is no longer contained on any |
| 3021 | neighbor Link state retransmission lists and b) none of the router's |
| 3022 | neighbors are in states Exchange or Loading. */ |
| 3023 | if (reschedule) |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3024 | OSPF_TIMER_ON (ospf->t_maxage, ospf_maxage_lsa_remover, 2); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3025 | |
| 3026 | return 0; |
| 3027 | } |
| 3028 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 3029 | static int |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3030 | ospf_lsa_maxage_exist (struct ospf *ospf, struct ospf_lsa *new) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3031 | { |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 3032 | struct listnode *node; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 3033 | struct ospf_lsa *lsa; |
| 3034 | |
| 3035 | for (ALL_LIST_ELEMENTS_RO (ospf->maxage_lsa, node, lsa)) |
| 3036 | if (lsa == new) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3037 | return 1; |
| 3038 | |
| 3039 | return 0; |
| 3040 | } |
| 3041 | |
| 3042 | void |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3043 | ospf_lsa_maxage_delete (struct ospf *ospf, struct ospf_lsa *lsa) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3044 | { |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 3045 | struct listnode *n; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3046 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3047 | if ((n = listnode_lookup (ospf->maxage_lsa, lsa))) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3048 | { |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3049 | list_delete_node (ospf->maxage_lsa, n); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3050 | ospf_lsa_unlock (lsa); |
| 3051 | } |
| 3052 | } |
| 3053 | |
| 3054 | void |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3055 | ospf_lsa_maxage (struct ospf *ospf, struct ospf_lsa *lsa) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3056 | { |
| 3057 | /* When we saw a MaxAge LSA flooded to us, we put it on the list |
| 3058 | and schedule the MaxAge LSA remover. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3059 | if (ospf_lsa_maxage_exist (ospf, lsa)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3060 | { |
| 3061 | if (IS_DEBUG_OSPF (lsa, LSA_FLOODING)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 3062 | zlog_debug ("LSA[Type%d:%s]: %p already exists on MaxAge LSA list", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3063 | lsa->data->type, inet_ntoa (lsa->data->id), lsa); |
| 3064 | return; |
| 3065 | } |
| 3066 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3067 | listnode_add (ospf->maxage_lsa, ospf_lsa_lock (lsa)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3068 | |
| 3069 | if (IS_DEBUG_OSPF (lsa, LSA_FLOODING)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 3070 | zlog_debug ("LSA[%s]: MaxAge LSA remover scheduled.", dump_lsa_key (lsa)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3071 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3072 | OSPF_TIMER_ON (ospf->t_maxage, ospf_maxage_lsa_remover, 2); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3073 | } |
| 3074 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 3075 | static int |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3076 | ospf_lsa_maxage_walker_remover (struct ospf *ospf, struct ospf_lsa *lsa) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3077 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3078 | /* Stay away from any Local Translated Type-7 LSAs */ |
| 3079 | if (CHECK_FLAG (lsa->flags, OSPF_LSA_LOCAL_XLT)) |
| 3080 | return 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3081 | |
| 3082 | if (IS_LSA_MAXAGE (lsa)) |
| 3083 | /* Self-originated LSAs should NOT time-out instead, |
| 3084 | they're flushed and submitted to the max_age list explicitly. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3085 | if (!ospf_lsa_is_self_originated (ospf, lsa)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3086 | { |
| 3087 | if (IS_DEBUG_OSPF (lsa, LSA_FLOODING)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 3088 | zlog_debug("LSA[%s]: is MaxAge", dump_lsa_key (lsa)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3089 | |
| 3090 | switch (lsa->data->type) |
| 3091 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3092 | #ifdef HAVE_OPAQUE_LSA |
paul | 37163d6 | 2003-02-03 18:40:56 +0000 | [diff] [blame] | 3093 | case OSPF_OPAQUE_LINK_LSA: |
| 3094 | case OSPF_OPAQUE_AREA_LSA: |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3095 | case OSPF_OPAQUE_AS_LSA: |
paul | 09e4efd | 2003-01-18 00:12:02 +0000 | [diff] [blame] | 3096 | /* |
| 3097 | * As a general rule, whenever network topology has changed |
| 3098 | * (due to an LSA removal in this case), routing recalculation |
| 3099 | * should be triggered. However, this is not true for opaque |
| 3100 | * LSAs. Even if an opaque LSA instance is going to be removed |
| 3101 | * from the routing domain, it does not mean a change in network |
| 3102 | * topology, and thus, routing recalculation is not needed here. |
| 3103 | */ |
| 3104 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3105 | #endif /* HAVE_OPAQUE_LSA */ |
paul | 09e4efd | 2003-01-18 00:12:02 +0000 | [diff] [blame] | 3106 | case OSPF_AS_EXTERNAL_LSA: |
hasso | beebba7 | 2004-06-20 21:00:27 +0000 | [diff] [blame] | 3107 | case OSPF_AS_NSSA_LSA: |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3108 | ospf_ase_incremental_update (ospf, lsa); |
| 3109 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3110 | default: |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3111 | ospf_spf_calculate_schedule (ospf); |
| 3112 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3113 | } |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3114 | ospf_lsa_maxage (ospf, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3115 | } |
| 3116 | |
| 3117 | return 0; |
| 3118 | } |
| 3119 | |
| 3120 | /* Periodical check of MaxAge LSA. */ |
| 3121 | int |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3122 | ospf_lsa_maxage_walker (struct thread *thread) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3123 | { |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3124 | struct ospf *ospf = THREAD_ARG (thread); |
| 3125 | struct route_node *rn; |
| 3126 | struct ospf_lsa *lsa; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 3127 | struct ospf_area *area; |
| 3128 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3129 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3130 | ospf->t_maxage_walker = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3131 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 3132 | for (ALL_LIST_ELEMENTS (ospf->areas, node, nnode, area)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3133 | { |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3134 | LSDB_LOOP (ROUTER_LSDB (area), rn, lsa) |
| 3135 | ospf_lsa_maxage_walker_remover (ospf, lsa); |
| 3136 | LSDB_LOOP (NETWORK_LSDB (area), rn, lsa) |
| 3137 | ospf_lsa_maxage_walker_remover (ospf, lsa); |
| 3138 | LSDB_LOOP (SUMMARY_LSDB (area), rn, lsa) |
| 3139 | ospf_lsa_maxage_walker_remover (ospf, lsa); |
| 3140 | LSDB_LOOP (ASBR_SUMMARY_LSDB (area), rn, lsa) |
| 3141 | ospf_lsa_maxage_walker_remover (ospf, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3142 | #ifdef HAVE_OPAQUE_LSA |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3143 | LSDB_LOOP (OPAQUE_AREA_LSDB (area), rn, lsa) |
| 3144 | ospf_lsa_maxage_walker_remover (ospf, lsa); |
| 3145 | LSDB_LOOP (OPAQUE_LINK_LSDB (area), rn, lsa) |
| 3146 | ospf_lsa_maxage_walker_remover (ospf, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3147 | #endif /* HAVE_OPAQUE_LSA */ |
paul | 4fb949e | 2003-05-10 20:06:51 +0000 | [diff] [blame] | 3148 | LSDB_LOOP (NSSA_LSDB (area), rn, lsa) |
| 3149 | ospf_lsa_maxage_walker_remover (ospf, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3150 | } |
| 3151 | |
paul | 4fb949e | 2003-05-10 20:06:51 +0000 | [diff] [blame] | 3152 | /* for AS-external-LSAs. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3153 | if (ospf->lsdb) |
| 3154 | { |
| 3155 | LSDB_LOOP (EXTERNAL_LSDB (ospf), rn, lsa) |
| 3156 | ospf_lsa_maxage_walker_remover (ospf, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3157 | #ifdef HAVE_OPAQUE_LSA |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3158 | LSDB_LOOP (OPAQUE_AS_LSDB (ospf), rn, lsa) |
| 3159 | ospf_lsa_maxage_walker_remover (ospf, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3160 | #endif /* HAVE_OPAQUE_LSA */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3161 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3162 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3163 | OSPF_TIMER_ON (ospf->t_maxage_walker, ospf_lsa_maxage_walker, |
| 3164 | OSPF_LSA_MAXAGE_CHECK_INTERVAL); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3165 | return 0; |
| 3166 | } |
| 3167 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3168 | struct ospf_lsa * |
| 3169 | ospf_lsa_lookup_by_prefix (struct ospf_lsdb *lsdb, u_char type, |
| 3170 | struct prefix_ipv4 *p, struct in_addr router_id) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3171 | { |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3172 | struct ospf_lsa *lsa; |
| 3173 | struct in_addr mask, id; |
| 3174 | struct lsa_header_mask |
| 3175 | { |
| 3176 | struct lsa_header header; |
| 3177 | struct in_addr mask; |
| 3178 | } *hmask; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3179 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3180 | lsa = ospf_lsdb_lookup_by_id (lsdb, type, p->prefix, router_id); |
| 3181 | if (lsa == NULL) |
| 3182 | return NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3183 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3184 | masklen2ip (p->prefixlen, &mask); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3185 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3186 | hmask = (struct lsa_header_mask *) lsa->data; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3187 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3188 | if (mask.s_addr != hmask->mask.s_addr) |
| 3189 | { |
| 3190 | id.s_addr = p->prefix.s_addr | (~mask.s_addr); |
| 3191 | lsa = ospf_lsdb_lookup_by_id (lsdb, type, id, router_id); |
| 3192 | if (!lsa) |
| 3193 | return NULL; |
| 3194 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3195 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3196 | return lsa; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3197 | } |
| 3198 | |
| 3199 | struct ospf_lsa * |
| 3200 | ospf_lsa_lookup (struct ospf_area *area, u_int32_t type, |
| 3201 | struct in_addr id, struct in_addr adv_router) |
| 3202 | { |
paul | e05fba4 | 2003-04-13 20:20:53 +0000 | [diff] [blame] | 3203 | struct ospf *ospf = ospf_lookup(); |
| 3204 | assert(ospf); |
| 3205 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3206 | switch (type) |
| 3207 | { |
| 3208 | case OSPF_ROUTER_LSA: |
| 3209 | case OSPF_NETWORK_LSA: |
| 3210 | case OSPF_SUMMARY_LSA: |
| 3211 | case OSPF_ASBR_SUMMARY_LSA: |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3212 | case OSPF_AS_NSSA_LSA: |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3213 | #ifdef HAVE_OPAQUE_LSA |
| 3214 | case OSPF_OPAQUE_LINK_LSA: |
| 3215 | case OSPF_OPAQUE_AREA_LSA: |
| 3216 | #endif /* HAVE_OPAQUE_LSA */ |
| 3217 | return ospf_lsdb_lookup_by_id (area->lsdb, type, id, adv_router); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3218 | case OSPF_AS_EXTERNAL_LSA: |
| 3219 | #ifdef HAVE_OPAQUE_LSA |
| 3220 | case OSPF_OPAQUE_AS_LSA: |
| 3221 | #endif /* HAVE_OPAQUE_LSA */ |
paul | e05fba4 | 2003-04-13 20:20:53 +0000 | [diff] [blame] | 3222 | return ospf_lsdb_lookup_by_id (ospf->lsdb, type, id, adv_router); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3223 | default: |
| 3224 | break; |
| 3225 | } |
| 3226 | |
| 3227 | return NULL; |
| 3228 | } |
| 3229 | |
| 3230 | struct ospf_lsa * |
| 3231 | ospf_lsa_lookup_by_id (struct ospf_area *area, u_int32_t type, |
| 3232 | struct in_addr id) |
| 3233 | { |
| 3234 | struct ospf_lsa *lsa; |
| 3235 | struct route_node *rn; |
| 3236 | |
| 3237 | switch (type) |
| 3238 | { |
| 3239 | case OSPF_ROUTER_LSA: |
| 3240 | return ospf_lsdb_lookup_by_id (area->lsdb, type, id, id); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3241 | case OSPF_NETWORK_LSA: |
| 3242 | for (rn = route_top (NETWORK_LSDB (area)); rn; rn = route_next (rn)) |
| 3243 | if ((lsa = rn->info)) |
| 3244 | if (IPV4_ADDR_SAME (&lsa->data->id, &id)) |
| 3245 | { |
| 3246 | route_unlock_node (rn); |
| 3247 | return lsa; |
| 3248 | } |
| 3249 | break; |
| 3250 | case OSPF_SUMMARY_LSA: |
| 3251 | case OSPF_ASBR_SUMMARY_LSA: |
| 3252 | /* Currently not used. */ |
| 3253 | assert (1); |
| 3254 | return ospf_lsdb_lookup_by_id (area->lsdb, type, id, id); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3255 | case OSPF_AS_EXTERNAL_LSA: |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 3256 | case OSPF_AS_NSSA_LSA: |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3257 | #ifdef HAVE_OPAQUE_LSA |
| 3258 | case OSPF_OPAQUE_LINK_LSA: |
| 3259 | case OSPF_OPAQUE_AREA_LSA: |
| 3260 | case OSPF_OPAQUE_AS_LSA: |
| 3261 | /* Currently not used. */ |
| 3262 | break; |
| 3263 | #endif /* HAVE_OPAQUE_LSA */ |
| 3264 | default: |
| 3265 | break; |
| 3266 | } |
| 3267 | |
| 3268 | return NULL; |
| 3269 | } |
| 3270 | |
| 3271 | struct ospf_lsa * |
| 3272 | ospf_lsa_lookup_by_header (struct ospf_area *area, struct lsa_header *lsah) |
| 3273 | { |
| 3274 | struct ospf_lsa *match; |
| 3275 | |
| 3276 | #ifdef HAVE_OPAQUE_LSA |
| 3277 | /* |
| 3278 | * Strictly speaking, the LSA-ID field for Opaque-LSAs (type-9/10/11) |
| 3279 | * is redefined to have two subfields; opaque-type and opaque-id. |
| 3280 | * However, it is harmless to treat the two sub fields together, as if |
| 3281 | * they two were forming a unique LSA-ID. |
| 3282 | */ |
| 3283 | #endif /* HAVE_OPAQUE_LSA */ |
| 3284 | |
| 3285 | match = ospf_lsa_lookup (area, lsah->type, lsah->id, lsah->adv_router); |
| 3286 | |
| 3287 | if (match == NULL) |
| 3288 | if (IS_DEBUG_OSPF (lsa, LSA) == OSPF_DEBUG_LSA) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 3289 | zlog_debug ("LSA[Type%d:%s]: Lookup by header, NO MATCH", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3290 | lsah->type, inet_ntoa (lsah->id)); |
| 3291 | |
| 3292 | return match; |
| 3293 | } |
| 3294 | |
| 3295 | /* return +n, l1 is more recent. |
| 3296 | return -n, l2 is more recent. |
| 3297 | return 0, l1 and l2 is identical. */ |
| 3298 | int |
| 3299 | ospf_lsa_more_recent (struct ospf_lsa *l1, struct ospf_lsa *l2) |
| 3300 | { |
| 3301 | int r; |
| 3302 | int x, y; |
| 3303 | |
| 3304 | if (l1 == NULL && l2 == NULL) |
| 3305 | return 0; |
| 3306 | if (l1 == NULL) |
| 3307 | return -1; |
| 3308 | if (l2 == NULL) |
| 3309 | return 1; |
| 3310 | |
| 3311 | /* compare LS sequence number. */ |
| 3312 | x = (int) ntohl (l1->data->ls_seqnum); |
| 3313 | y = (int) ntohl (l2->data->ls_seqnum); |
| 3314 | if (x > y) |
| 3315 | return 1; |
| 3316 | if (x < y) |
| 3317 | return -1; |
| 3318 | |
| 3319 | /* compare LS checksum. */ |
| 3320 | r = ntohs (l1->data->checksum) - ntohs (l2->data->checksum); |
| 3321 | if (r) |
| 3322 | return r; |
| 3323 | |
| 3324 | /* compare LS age. */ |
| 3325 | if (IS_LSA_MAXAGE (l1) && !IS_LSA_MAXAGE (l2)) |
| 3326 | return 1; |
| 3327 | else if (!IS_LSA_MAXAGE (l1) && IS_LSA_MAXAGE (l2)) |
| 3328 | return -1; |
| 3329 | |
| 3330 | /* compare LS age with MaxAgeDiff. */ |
| 3331 | if (LS_AGE (l1) - LS_AGE (l2) > OSPF_LSA_MAXAGE_DIFF) |
| 3332 | return -1; |
| 3333 | else if (LS_AGE (l2) - LS_AGE (l1) > OSPF_LSA_MAXAGE_DIFF) |
| 3334 | return 1; |
| 3335 | |
| 3336 | /* LSAs are identical. */ |
| 3337 | return 0; |
| 3338 | } |
| 3339 | |
| 3340 | /* If two LSAs are different, return 1, otherwise return 0. */ |
| 3341 | int |
| 3342 | ospf_lsa_different (struct ospf_lsa *l1, struct ospf_lsa *l2) |
| 3343 | { |
| 3344 | char *p1, *p2; |
| 3345 | assert (l1); |
| 3346 | assert (l2); |
| 3347 | assert (l1->data); |
| 3348 | assert (l2->data); |
| 3349 | |
| 3350 | if (l1->data->options != l2->data->options) |
| 3351 | return 1; |
| 3352 | |
| 3353 | if (IS_LSA_MAXAGE (l1) && !IS_LSA_MAXAGE (l2)) |
| 3354 | return 1; |
| 3355 | |
| 3356 | if (IS_LSA_MAXAGE (l2) && !IS_LSA_MAXAGE (l1)) |
| 3357 | return 1; |
| 3358 | |
| 3359 | if (l1->data->length != l2->data->length) |
| 3360 | return 1; |
| 3361 | |
| 3362 | if (l1->data->length == 0) |
| 3363 | return 1; |
| 3364 | |
paul | d182583 | 2003-04-03 01:27:01 +0000 | [diff] [blame] | 3365 | assert ( ntohs(l1->data->length) > OSPF_LSA_HEADER_SIZE); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3366 | |
| 3367 | p1 = (char *) l1->data; |
| 3368 | p2 = (char *) l2->data; |
| 3369 | |
| 3370 | if (memcmp (p1 + OSPF_LSA_HEADER_SIZE, p2 + OSPF_LSA_HEADER_SIZE, |
| 3371 | ntohs( l1->data->length ) - OSPF_LSA_HEADER_SIZE) != 0) |
| 3372 | return 1; |
| 3373 | |
| 3374 | return 0; |
| 3375 | } |
| 3376 | |
| 3377 | #ifdef ORIGINAL_CODING |
| 3378 | void |
| 3379 | ospf_lsa_flush_self_originated (struct ospf_neighbor *nbr, |
| 3380 | struct ospf_lsa *self, |
| 3381 | struct ospf_lsa *new) |
| 3382 | { |
| 3383 | u_int32_t seqnum; |
| 3384 | |
| 3385 | /* Adjust LS Sequence Number. */ |
| 3386 | seqnum = ntohl (new->data->ls_seqnum) + 1; |
| 3387 | self->data->ls_seqnum = htonl (seqnum); |
| 3388 | |
| 3389 | /* Recalculate LSA checksum. */ |
| 3390 | ospf_lsa_checksum (self->data); |
| 3391 | |
| 3392 | /* Reflooding LSA. */ |
| 3393 | /* RFC2328 Section 13.3 |
| 3394 | On non-broadcast networks, separate Link State Update |
| 3395 | packets must be sent, as unicasts, to each adjacent neighbor |
| 3396 | (i.e., those in state Exchange or greater). The destination |
| 3397 | IP addresses for these packets are the neighbors' IP |
| 3398 | addresses. */ |
| 3399 | if (nbr->oi->type == OSPF_IFTYPE_NBMA) |
| 3400 | { |
| 3401 | struct route_node *rn; |
| 3402 | struct ospf_neighbor *onbr; |
| 3403 | |
| 3404 | for (rn = route_top (nbr->oi->nbrs); rn; rn = route_next (rn)) |
| 3405 | if ((onbr = rn->info) != NULL) |
| 3406 | if (onbr != nbr->oi->nbr_self && onbr->status >= NSM_Exchange) |
| 3407 | ospf_ls_upd_send_lsa (onbr, self, OSPF_SEND_PACKET_DIRECT); |
| 3408 | } |
| 3409 | else |
| 3410 | ospf_ls_upd_send_lsa (nbr, self, OSPF_SEND_PACKET_INDIRECT); |
| 3411 | |
| 3412 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 3413 | zlog_debug ("LSA[Type%d:%s]: Flush self-originated LSA", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3414 | self->data->type, inet_ntoa (self->data->id)); |
| 3415 | } |
| 3416 | #else /* ORIGINAL_CODING */ |
| 3417 | static int |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3418 | ospf_lsa_flush_schedule (struct ospf *ospf, struct ospf_lsa *lsa) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3419 | { |
| 3420 | if (lsa == NULL || !IS_LSA_SELF (lsa)) |
| 3421 | return 0; |
| 3422 | |
| 3423 | if (IS_DEBUG_OSPF_EVENT) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 3424 | zlog_debug ("LSA[Type%d:%s]: Schedule self-originated LSA to FLUSH", lsa->data->type, inet_ntoa (lsa->data->id)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3425 | |
| 3426 | /* Force given lsa's age to MaxAge. */ |
| 3427 | lsa->data->ls_age = htons (OSPF_LSA_MAXAGE); |
| 3428 | |
| 3429 | switch (lsa->data->type) |
| 3430 | { |
| 3431 | #ifdef HAVE_OPAQUE_LSA |
| 3432 | case OSPF_OPAQUE_LINK_LSA: |
| 3433 | case OSPF_OPAQUE_AREA_LSA: |
| 3434 | case OSPF_OPAQUE_AS_LSA: |
| 3435 | ospf_opaque_lsa_refresh (lsa); |
| 3436 | break; |
| 3437 | #endif /* HAVE_OPAQUE_LSA */ |
| 3438 | default: |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3439 | ospf_lsa_maxage (ospf, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3440 | break; |
| 3441 | } |
| 3442 | |
| 3443 | return 0; |
| 3444 | } |
| 3445 | |
| 3446 | void |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3447 | ospf_flush_self_originated_lsas_now (struct ospf *ospf) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3448 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 3449 | struct listnode *node, *nnode; |
| 3450 | struct listnode *node2, *nnode2; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3451 | struct ospf_area *area; |
| 3452 | struct ospf_interface *oi; |
| 3453 | struct ospf_lsa *lsa; |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3454 | struct route_node *rn; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3455 | int need_to_flush_ase = 0; |
| 3456 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 3457 | for (ALL_LIST_ELEMENTS (ospf->areas, node, nnode, area)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3458 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3459 | if ((lsa = area->router_lsa_self) != NULL) |
| 3460 | { |
| 3461 | if (IS_DEBUG_OSPF_EVENT) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 3462 | zlog_debug ("LSA[Type%d:%s]: Schedule self-originated LSA to FLUSH", lsa->data->type, inet_ntoa (lsa->data->id)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3463 | |
| 3464 | ospf_lsa_flush_area (lsa, area); |
| 3465 | ospf_lsa_unlock (area->router_lsa_self); |
| 3466 | area->router_lsa_self = NULL; |
| 3467 | OSPF_TIMER_OFF (area->t_router_lsa_self); |
| 3468 | } |
| 3469 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 3470 | for (ALL_LIST_ELEMENTS (area->oiflist, node2, nnode2, oi)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3471 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3472 | if ((lsa = oi->network_lsa_self) != NULL |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 3473 | && oi->state == ISM_DR |
| 3474 | && oi->full_nbrs > 0) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3475 | { |
| 3476 | if (IS_DEBUG_OSPF_EVENT) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 3477 | zlog_debug ("LSA[Type%d:%s]: Schedule self-originated LSA to FLUSH", lsa->data->type, inet_ntoa (lsa->data->id)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3478 | |
| 3479 | ospf_lsa_flush_area (oi->network_lsa_self, area); |
| 3480 | ospf_lsa_unlock (oi->network_lsa_self); |
| 3481 | oi->network_lsa_self = NULL; |
| 3482 | OSPF_TIMER_OFF (oi->t_network_lsa_self); |
| 3483 | } |
| 3484 | |
| 3485 | if (oi->type != OSPF_IFTYPE_VIRTUALLINK |
| 3486 | && area->external_routing == OSPF_AREA_DEFAULT) |
| 3487 | need_to_flush_ase = 1; |
| 3488 | } |
| 3489 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3490 | LSDB_LOOP (SUMMARY_LSDB (area), rn, lsa) |
| 3491 | ospf_lsa_flush_schedule (ospf, lsa); |
| 3492 | LSDB_LOOP (ASBR_SUMMARY_LSDB (area), rn, lsa) |
| 3493 | ospf_lsa_flush_schedule (ospf, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3494 | #ifdef HAVE_OPAQUE_LSA |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3495 | LSDB_LOOP (OPAQUE_LINK_LSDB (area), rn, lsa) |
| 3496 | ospf_lsa_flush_schedule (ospf, lsa); |
| 3497 | LSDB_LOOP (OPAQUE_AREA_LSDB (area), rn, lsa) |
| 3498 | ospf_lsa_flush_schedule (ospf, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3499 | #endif /* HAVE_OPAQUE_LSA */ |
| 3500 | } |
| 3501 | |
| 3502 | if (need_to_flush_ase) |
| 3503 | { |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3504 | LSDB_LOOP (EXTERNAL_LSDB (ospf), rn, lsa) |
| 3505 | ospf_lsa_flush_schedule (ospf, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3506 | #ifdef HAVE_OPAQUE_LSA |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3507 | LSDB_LOOP (OPAQUE_AS_LSDB (ospf), rn, lsa) |
| 3508 | ospf_lsa_flush_schedule (ospf, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3509 | #endif /* HAVE_OPAQUE_LSA */ |
| 3510 | } |
| 3511 | |
| 3512 | /* |
| 3513 | * Make sure that the MaxAge LSA remover is executed immediately, |
| 3514 | * without conflicting to other threads. |
| 3515 | */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3516 | if (ospf->t_maxage != NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3517 | { |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3518 | OSPF_TIMER_OFF (ospf->t_maxage); |
| 3519 | thread_execute (master, ospf_maxage_lsa_remover, ospf, 0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3520 | } |
| 3521 | |
| 3522 | return; |
| 3523 | } |
| 3524 | #endif /* ORIGINAL_CODING */ |
| 3525 | |
| 3526 | /* If there is self-originated LSA, then return 1, otherwise return 0. */ |
| 3527 | /* An interface-independent version of ospf_lsa_is_self_originated */ |
| 3528 | int |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3529 | ospf_lsa_is_self_originated (struct ospf *ospf, struct ospf_lsa *lsa) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3530 | { |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 3531 | struct listnode *node; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 3532 | struct ospf_interface *oi; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3533 | |
| 3534 | /* This LSA is already checked. */ |
| 3535 | if (CHECK_FLAG (lsa->flags, OSPF_LSA_SELF_CHECKED)) |
| 3536 | return CHECK_FLAG (lsa->flags, OSPF_LSA_SELF); |
| 3537 | |
| 3538 | /* Make sure LSA is self-checked. */ |
| 3539 | SET_FLAG (lsa->flags, OSPF_LSA_SELF_CHECKED); |
| 3540 | |
| 3541 | /* AdvRouter and Router ID is the same. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3542 | if (IPV4_ADDR_SAME (&lsa->data->adv_router, &ospf->router_id)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3543 | SET_FLAG (lsa->flags, OSPF_LSA_SELF); |
| 3544 | |
| 3545 | /* LSA is router-LSA. */ |
| 3546 | else if (lsa->data->type == OSPF_ROUTER_LSA && |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3547 | IPV4_ADDR_SAME (&lsa->data->id, &ospf->router_id)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3548 | SET_FLAG (lsa->flags, OSPF_LSA_SELF); |
| 3549 | |
| 3550 | /* LSA is network-LSA. Compare Link ID with all interfaces. */ |
| 3551 | else if (lsa->data->type == OSPF_NETWORK_LSA) |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 3552 | for (ALL_LIST_ELEMENTS_RO (ospf->oiflist, node, oi)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3553 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3554 | /* Ignore virtual link. */ |
| 3555 | if (oi->type != OSPF_IFTYPE_VIRTUALLINK) |
| 3556 | if (oi->address->family == AF_INET) |
| 3557 | if (IPV4_ADDR_SAME (&lsa->data->id, &oi->address->u.prefix4)) |
| 3558 | { |
| 3559 | /* to make it easier later */ |
| 3560 | SET_FLAG (lsa->flags, OSPF_LSA_SELF); |
| 3561 | return CHECK_FLAG (lsa->flags, OSPF_LSA_SELF); |
| 3562 | } |
| 3563 | } |
| 3564 | |
| 3565 | return CHECK_FLAG (lsa->flags, OSPF_LSA_SELF); |
| 3566 | } |
| 3567 | |
| 3568 | /* Get unique Link State ID. */ |
| 3569 | struct in_addr |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3570 | ospf_lsa_unique_id (struct ospf *ospf, |
| 3571 | struct ospf_lsdb *lsdb, u_char type, struct prefix_ipv4 *p) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3572 | { |
| 3573 | struct ospf_lsa *lsa; |
| 3574 | struct in_addr mask, id; |
| 3575 | |
| 3576 | id = p->prefix; |
| 3577 | |
| 3578 | /* Check existence of LSA instance. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3579 | lsa = ospf_lsdb_lookup_by_id (lsdb, type, id, ospf->router_id); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3580 | if (lsa) |
| 3581 | { |
| 3582 | struct as_external_lsa *al = (struct as_external_lsa *) lsa->data; |
| 3583 | if (ip_masklen (al->mask) == p->prefixlen) |
| 3584 | { |
| 3585 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 3586 | zlog_debug ("ospf_lsa_unique_id(): " |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3587 | "Can't get Link State ID for %s/%d", |
| 3588 | inet_ntoa (p->prefix), p->prefixlen); |
| 3589 | /* id.s_addr = 0; */ |
| 3590 | id.s_addr = 0xffffffff; |
| 3591 | return id; |
| 3592 | } |
| 3593 | /* Masklen differs, then apply wildcard mask to Link State ID. */ |
| 3594 | else |
| 3595 | { |
| 3596 | masklen2ip (p->prefixlen, &mask); |
| 3597 | |
| 3598 | id.s_addr = p->prefix.s_addr | (~mask.s_addr); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3599 | lsa = ospf_lsdb_lookup_by_id (ospf->lsdb, type, |
| 3600 | id, ospf->router_id); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3601 | if (lsa) |
| 3602 | { |
| 3603 | if (IS_DEBUG_OSPF (lsa, LSA_GENERATE)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 3604 | zlog_debug ("ospf_lsa_unique_id(): " |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3605 | "Can't get Link State ID for %s/%d", |
| 3606 | inet_ntoa (p->prefix), p->prefixlen); |
| 3607 | /* id.s_addr = 0; */ |
| 3608 | id.s_addr = 0xffffffff; |
| 3609 | return id; |
| 3610 | } |
| 3611 | } |
| 3612 | } |
| 3613 | |
| 3614 | return id; |
| 3615 | } |
| 3616 | |
| 3617 | |
| 3618 | #define LSA_ACTION_ORIGN_RTR 1 |
| 3619 | #define LSA_ACTION_ORIGN_NET 2 |
| 3620 | #define LSA_ACTION_FLOOD_AREA 3 |
| 3621 | #define LSA_ACTION_FLOOD_AS 4 |
| 3622 | #define LSA_ACTION_FLUSH_AREA 5 |
| 3623 | #define LSA_ACTION_FLUSH_AS 6 |
| 3624 | |
| 3625 | struct lsa_action |
| 3626 | { |
| 3627 | u_char action; |
| 3628 | struct ospf_area *area; |
| 3629 | struct ospf_interface *oi; |
| 3630 | struct ospf_lsa *lsa; |
| 3631 | }; |
| 3632 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 3633 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3634 | ospf_lsa_action (struct thread *t) |
| 3635 | { |
| 3636 | struct lsa_action *data; |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 3637 | struct ospf *ospf; |
| 3638 | |
| 3639 | ospf = ospf_lookup (); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3640 | |
| 3641 | data = THREAD_ARG (t); |
| 3642 | |
| 3643 | if (IS_DEBUG_OSPF (lsa, LSA) == OSPF_DEBUG_LSA) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 3644 | zlog_debug ("LSA[Action]: Performing scheduled LSA action: %d", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3645 | data->action); |
| 3646 | |
| 3647 | switch (data->action) |
| 3648 | { |
| 3649 | case LSA_ACTION_ORIGN_RTR: |
| 3650 | ospf_router_lsa_refresh (data->area->router_lsa_self); |
| 3651 | break; |
| 3652 | case LSA_ACTION_ORIGN_NET: |
| 3653 | ospf_network_lsa_originate (data->oi); |
| 3654 | break; |
| 3655 | case LSA_ACTION_FLOOD_AREA: |
| 3656 | ospf_flood_through_area (data->area, NULL, data->lsa); |
| 3657 | break; |
| 3658 | case LSA_ACTION_FLOOD_AS: |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3659 | ospf_flood_through_as (ospf, NULL, data->lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3660 | break; |
| 3661 | case LSA_ACTION_FLUSH_AREA: |
| 3662 | ospf_lsa_flush_area (data->lsa, data->area); |
| 3663 | break; |
| 3664 | case LSA_ACTION_FLUSH_AS: |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3665 | ospf_lsa_flush_as (ospf, data->lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3666 | break; |
| 3667 | } |
| 3668 | |
| 3669 | ospf_lsa_unlock (data->lsa); |
| 3670 | XFREE (MTYPE_OSPF_MESSAGE, data); |
| 3671 | return 0; |
| 3672 | } |
| 3673 | |
| 3674 | void |
| 3675 | ospf_schedule_lsa_flood_area (struct ospf_area *area, struct ospf_lsa *lsa) |
| 3676 | { |
| 3677 | struct lsa_action *data; |
| 3678 | |
| 3679 | data = XMALLOC (MTYPE_OSPF_MESSAGE, sizeof (struct lsa_action)); |
| 3680 | memset (data, 0, sizeof (struct lsa_action)); |
| 3681 | |
| 3682 | data->action = LSA_ACTION_FLOOD_AREA; |
| 3683 | data->area = area; |
| 3684 | data->lsa = ospf_lsa_lock (lsa); |
| 3685 | |
| 3686 | thread_add_event (master, ospf_lsa_action, data, 0); |
| 3687 | } |
| 3688 | |
| 3689 | void |
| 3690 | ospf_schedule_lsa_flush_area (struct ospf_area *area, struct ospf_lsa *lsa) |
| 3691 | { |
| 3692 | struct lsa_action *data; |
| 3693 | |
| 3694 | data = XMALLOC (MTYPE_OSPF_MESSAGE, sizeof (struct lsa_action)); |
| 3695 | memset (data, 0, sizeof (struct lsa_action)); |
| 3696 | |
| 3697 | data->action = LSA_ACTION_FLUSH_AREA; |
| 3698 | data->area = area; |
| 3699 | data->lsa = ospf_lsa_lock (lsa); |
| 3700 | |
| 3701 | thread_add_event (master, ospf_lsa_action, data, 0); |
| 3702 | } |
| 3703 | |
| 3704 | |
| 3705 | /* LSA Refreshment functions. */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 3706 | static void |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3707 | ospf_lsa_refresh (struct ospf *ospf, struct ospf_lsa *lsa) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3708 | { |
| 3709 | struct external_info *ei; |
| 3710 | assert (CHECK_FLAG (lsa->flags, OSPF_LSA_SELF)); |
| 3711 | |
| 3712 | switch (lsa->data->type) |
| 3713 | { |
| 3714 | /* Router and Network LSAs are processed differently. */ |
| 3715 | case OSPF_ROUTER_LSA: |
| 3716 | case OSPF_NETWORK_LSA: |
| 3717 | break; |
| 3718 | case OSPF_SUMMARY_LSA: |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3719 | ospf_summary_lsa_refresh (ospf, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3720 | break; |
| 3721 | case OSPF_ASBR_SUMMARY_LSA: |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3722 | ospf_summary_asbr_lsa_refresh (ospf, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3723 | break; |
| 3724 | case OSPF_AS_EXTERNAL_LSA: |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 3725 | /* Translated from NSSA Type-5s are refreshed when |
| 3726 | * from refresh of Type-7 - do not refresh these directly. |
| 3727 | */ |
| 3728 | if (CHECK_FLAG (lsa->flags, OSPF_LSA_LOCAL_XLT)) |
| 3729 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3730 | ei = ospf_external_info_check (lsa); |
| 3731 | if (ei) |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 3732 | ospf_external_lsa_refresh (ospf, lsa, ei, LSA_REFRESH_FORCE); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3733 | else |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 3734 | ospf_lsa_flush_as (ospf, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3735 | break; |
| 3736 | #ifdef HAVE_OPAQUE_LSA |
| 3737 | case OSPF_OPAQUE_LINK_LSA: |
| 3738 | case OSPF_OPAQUE_AREA_LSA: |
| 3739 | case OSPF_OPAQUE_AS_LSA: |
| 3740 | ospf_opaque_lsa_refresh (lsa); |
| 3741 | break; |
paul | d748032 | 2003-05-16 17:31:51 +0000 | [diff] [blame] | 3742 | #endif /* HAVE_OPAQUE_LSA */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3743 | default: |
| 3744 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3745 | } |
| 3746 | } |
| 3747 | |
| 3748 | void |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3749 | ospf_refresher_register_lsa (struct ospf *ospf, struct ospf_lsa *lsa) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3750 | { |
| 3751 | u_int16_t index, current_index; |
| 3752 | |
| 3753 | assert (CHECK_FLAG (lsa->flags, OSPF_LSA_SELF)); |
| 3754 | |
| 3755 | if (lsa->refresh_list < 0) |
| 3756 | { |
| 3757 | int delay; |
| 3758 | |
| 3759 | if (LS_AGE (lsa) == 0 && |
| 3760 | ntohl (lsa->data->ls_seqnum) == OSPF_INITIAL_SEQUENCE_NUMBER) |
| 3761 | /* Randomize first update by OSPF_LS_REFRESH_SHIFT factor */ |
| 3762 | delay = OSPF_LS_REFRESH_SHIFT + (random () % OSPF_LS_REFRESH_TIME); |
| 3763 | else |
| 3764 | /* Randomize another updates by +-OSPF_LS_REFRESH_JITTER factor */ |
| 3765 | delay = OSPF_LS_REFRESH_TIME - LS_AGE (lsa) - OSPF_LS_REFRESH_JITTER |
| 3766 | + (random () % (2*OSPF_LS_REFRESH_JITTER)); |
| 3767 | |
| 3768 | if (delay < 0) |
| 3769 | delay = 0; |
| 3770 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3771 | current_index = ospf->lsa_refresh_queue.index + |
| 3772 | (time (NULL) - ospf->lsa_refresher_started)/OSPF_LSA_REFRESHER_GRANULARITY; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3773 | |
| 3774 | index = (current_index + delay/OSPF_LSA_REFRESHER_GRANULARITY) |
| 3775 | % (OSPF_LSA_REFRESHER_SLOTS); |
| 3776 | |
| 3777 | if (IS_DEBUG_OSPF (lsa, LSA_REFRESH)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 3778 | zlog_debug ("LSA[Refresh]: lsa %s with age %d added to index %d", |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 3779 | inet_ntoa (lsa->data->id), LS_AGE (lsa), index); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3780 | if (!ospf->lsa_refresh_queue.qs[index]) |
| 3781 | ospf->lsa_refresh_queue.qs[index] = list_new (); |
| 3782 | listnode_add (ospf->lsa_refresh_queue.qs[index], ospf_lsa_lock (lsa)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3783 | lsa->refresh_list = index; |
paul | f2c8065 | 2002-12-13 21:44:27 +0000 | [diff] [blame] | 3784 | if (IS_DEBUG_OSPF (lsa, LSA_REFRESH)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 3785 | zlog_debug ("LSA[Refresh:%s]: ospf_refresher_register_lsa(): " |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 3786 | "setting refresh_list on lsa %p (slod %d)", |
| 3787 | inet_ntoa (lsa->data->id), lsa, index); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3788 | } |
| 3789 | } |
| 3790 | |
| 3791 | void |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3792 | ospf_refresher_unregister_lsa (struct ospf *ospf, struct ospf_lsa *lsa) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3793 | { |
| 3794 | assert (CHECK_FLAG (lsa->flags, OSPF_LSA_SELF)); |
| 3795 | if (lsa->refresh_list >= 0) |
| 3796 | { |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 3797 | struct list *refresh_list = ospf->lsa_refresh_queue.qs[lsa->refresh_list]; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3798 | listnode_delete (refresh_list, lsa); |
| 3799 | if (!listcount (refresh_list)) |
| 3800 | { |
| 3801 | list_free (refresh_list); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3802 | ospf->lsa_refresh_queue.qs[lsa->refresh_list] = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3803 | } |
| 3804 | ospf_lsa_unlock (lsa); |
| 3805 | lsa->refresh_list = -1; |
| 3806 | } |
| 3807 | } |
| 3808 | |
| 3809 | int |
| 3810 | ospf_lsa_refresh_walker (struct thread *t) |
| 3811 | { |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 3812 | struct list *refresh_list; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 3813 | struct listnode *node, *nnode; |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3814 | struct ospf *ospf = THREAD_ARG (t); |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 3815 | struct ospf_lsa *lsa; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3816 | int i; |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 3817 | struct list *lsa_to_refresh = list_new (); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3818 | |
| 3819 | if (IS_DEBUG_OSPF (lsa, LSA_REFRESH)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 3820 | zlog_debug ("LSA[Refresh]:ospf_lsa_refresh_walker(): start"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3821 | |
| 3822 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3823 | i = ospf->lsa_refresh_queue.index; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3824 | |
ajs | 9dbc797 | 2005-03-13 19:27:22 +0000 | [diff] [blame] | 3825 | /* Note: if clock has jumped backwards, then time change could be negative, |
| 3826 | so we are careful to cast the expression to unsigned before taking |
| 3827 | modulus. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3828 | ospf->lsa_refresh_queue.index = |
ajs | 9dbc797 | 2005-03-13 19:27:22 +0000 | [diff] [blame] | 3829 | ((unsigned long)(ospf->lsa_refresh_queue.index + |
| 3830 | (time (NULL) - ospf->lsa_refresher_started) / |
| 3831 | OSPF_LSA_REFRESHER_GRANULARITY)) % OSPF_LSA_REFRESHER_SLOTS; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3832 | |
| 3833 | if (IS_DEBUG_OSPF (lsa, LSA_REFRESH)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 3834 | zlog_debug ("LSA[Refresh]: ospf_lsa_refresh_walker(): next index %d", |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3835 | ospf->lsa_refresh_queue.index); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3836 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3837 | for (;i != ospf->lsa_refresh_queue.index; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3838 | i = (i + 1) % OSPF_LSA_REFRESHER_SLOTS) |
| 3839 | { |
| 3840 | if (IS_DEBUG_OSPF (lsa, LSA_REFRESH)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 3841 | zlog_debug ("LSA[Refresh]: ospf_lsa_refresh_walker(): " |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 3842 | "refresh index %d", i); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3843 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3844 | refresh_list = ospf->lsa_refresh_queue.qs [i]; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3845 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3846 | ospf->lsa_refresh_queue.qs [i] = NULL; |
| 3847 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3848 | if (refresh_list) |
| 3849 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 3850 | for (ALL_LIST_ELEMENTS (refresh_list, node, nnode, lsa)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3851 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3852 | if (IS_DEBUG_OSPF (lsa, LSA_REFRESH)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 3853 | zlog_debug ("LSA[Refresh:%s]: ospf_lsa_refresh_walker(): " |
paul | d4a53d5 | 2003-07-12 21:30:57 +0000 | [diff] [blame] | 3854 | "refresh lsa %p (slot %d)", |
| 3855 | inet_ntoa (lsa->data->id), lsa, i); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3856 | |
| 3857 | list_delete_node (refresh_list, node); |
| 3858 | ospf_lsa_unlock (lsa); |
| 3859 | lsa->refresh_list = -1; |
| 3860 | listnode_add (lsa_to_refresh, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3861 | } |
| 3862 | list_free (refresh_list); |
| 3863 | } |
| 3864 | } |
| 3865 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3866 | ospf->t_lsa_refresher = thread_add_timer (master, ospf_lsa_refresh_walker, |
| 3867 | ospf, ospf->lsa_refresh_interval); |
| 3868 | ospf->lsa_refresher_started = time (NULL); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3869 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 3870 | for (ALL_LIST_ELEMENTS (lsa_to_refresh, node, nnode, lsa)) |
| 3871 | ospf_lsa_refresh (ospf, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3872 | |
| 3873 | list_delete (lsa_to_refresh); |
| 3874 | |
| 3875 | if (IS_DEBUG_OSPF (lsa, LSA_REFRESH)) |
ajs | e588f21 | 2004-12-08 18:12:06 +0000 | [diff] [blame] | 3876 | zlog_debug ("LSA[Refresh]: ospf_lsa_refresh_walker(): end"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3877 | |
| 3878 | return 0; |
| 3879 | } |
| 3880 | |