paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | /* OSPF SPF calculation. |
| 2 | Copyright (C) 1999, 2000 Kunihiro Ishiguro, Toshiaki Takada |
| 3 | |
| 4 | This file is part of GNU Zebra. |
| 5 | |
| 6 | GNU Zebra is free software; you can redistribute it and/or modify it |
| 7 | under the terms of the GNU General Public License as published by the |
| 8 | Free Software Foundation; either version 2, or (at your option) any |
| 9 | later version. |
| 10 | |
| 11 | GNU Zebra is distributed in the hope that it will be useful, but |
| 12 | WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | General Public License for more details. |
| 15 | |
| 16 | You should have received a copy of the GNU General Public License |
| 17 | along with GNU Zebra; see the file COPYING. If not, write to the Free |
| 18 | Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
| 19 | 02111-1307, USA. */ |
| 20 | |
| 21 | #include <zebra.h> |
| 22 | |
| 23 | #include "thread.h" |
| 24 | #include "memory.h" |
| 25 | #include "hash.h" |
| 26 | #include "linklist.h" |
| 27 | #include "prefix.h" |
| 28 | #include "if.h" |
| 29 | #include "table.h" |
| 30 | #include "log.h" |
| 31 | #include "sockunion.h" /* for inet_ntop () */ |
hasso | 462f20d | 2005-02-23 11:29:02 +0000 | [diff] [blame] | 32 | #include "pqueue.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 33 | |
| 34 | #include "ospfd/ospfd.h" |
| 35 | #include "ospfd/ospf_interface.h" |
| 36 | #include "ospfd/ospf_ism.h" |
| 37 | #include "ospfd/ospf_asbr.h" |
| 38 | #include "ospfd/ospf_lsa.h" |
| 39 | #include "ospfd/ospf_lsdb.h" |
| 40 | #include "ospfd/ospf_neighbor.h" |
| 41 | #include "ospfd/ospf_nsm.h" |
| 42 | #include "ospfd/ospf_spf.h" |
| 43 | #include "ospfd/ospf_route.h" |
| 44 | #include "ospfd/ospf_ia.h" |
| 45 | #include "ospfd/ospf_ase.h" |
| 46 | #include "ospfd/ospf_abr.h" |
| 47 | #include "ospfd/ospf_dump.h" |
| 48 | |
Dinesh G Dutt | 50f38b3 | 2014-09-30 12:53:28 -0700 | [diff] [blame^] | 49 | /* Variables to ensure a SPF scheduled log message is printed only once */ |
| 50 | |
| 51 | static unsigned int spf_reason_flags = 0; |
| 52 | |
| 53 | static void ospf_clear_spf_reason_flags () |
| 54 | { |
| 55 | spf_reason_flags = 0; |
| 56 | } |
| 57 | |
| 58 | void ospf_flag_spf_reason (unsigned int reason) |
| 59 | { |
| 60 | if (reason <= SPF_FLAG_MAX_VALUE) |
| 61 | spf_reason_flags |= reason; |
| 62 | else |
| 63 | spf_reason_flags |= SPF_FLAG_MISC; |
| 64 | } |
| 65 | |
| 66 | static void |
| 67 | ospf_get_spf_reason_str (char *buf) |
| 68 | { |
| 69 | if (buf) |
| 70 | { |
| 71 | buf[0] = '\0'; |
| 72 | if (spf_reason_flags) |
| 73 | { |
| 74 | if (spf_reason_flags & SPF_FLAG_ROUTER_LSA_INSTALL) |
| 75 | strcat (buf, "R, "); |
| 76 | if (spf_reason_flags & SPF_FLAG_NETWORK_LSA_INSTALL) |
| 77 | strcat (buf, "N, "); |
| 78 | if (spf_reason_flags & SPF_FLAG_SUMMARY_LSA_INSTALL) |
| 79 | strcat (buf, "S, "); |
| 80 | if (spf_reason_flags & SPF_FLAG_ASBR_SUMMARY_LSA_INSTALL) |
| 81 | strcat (buf, "AS, "); |
| 82 | if (spf_reason_flags & SPF_FLAG_ABR_STATUS_CHANGE) |
| 83 | strcat (buf, "ABR, "); |
| 84 | if (spf_reason_flags & SPF_FLAG_ASBR_STATUS_CHANGE) |
| 85 | strcat (buf, "ASBR, "); |
| 86 | if (spf_reason_flags & SPF_FLAG_MAXAGE) |
| 87 | strcat (buf, "M, "); |
| 88 | } |
| 89 | buf[strlen(buf)-2] = '\0'; /* skip the last ", " */ |
| 90 | } |
| 91 | } |
| 92 | |
Paul Jakma | 9c27ef9 | 2006-05-04 07:32:57 +0000 | [diff] [blame] | 93 | static void ospf_vertex_free (void *); |
| 94 | /* List of allocated vertices, to simplify cleanup of SPF. |
| 95 | * Not thread-safe obviously. If it ever needs to be, it'd have to be |
| 96 | * dynamically allocated at begin of ospf_spf_calculate |
| 97 | */ |
| 98 | static struct list vertex_list = { .del = ospf_vertex_free }; |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 99 | |
hasso | 462f20d | 2005-02-23 11:29:02 +0000 | [diff] [blame] | 100 | /* Heap related functions, for the managment of the candidates, to |
| 101 | * be used with pqueue. */ |
| 102 | static int |
| 103 | cmp (void * node1 , void * node2) |
| 104 | { |
| 105 | struct vertex * v1 = (struct vertex *) node1; |
| 106 | struct vertex * v2 = (struct vertex *) node2; |
| 107 | if (v1 != NULL && v2 != NULL ) |
Paul Jakma | 9c27ef9 | 2006-05-04 07:32:57 +0000 | [diff] [blame] | 108 | { |
| 109 | /* network vertices must be chosen before router vertices of same |
| 110 | * cost in order to find all shortest paths |
| 111 | */ |
| 112 | if ( ((v1->distance - v2->distance) == 0) |
| 113 | && (v1->type != v2->type)) |
| 114 | { |
| 115 | switch (v1->type) |
| 116 | { |
| 117 | case OSPF_VERTEX_NETWORK: |
| 118 | return -1; |
| 119 | case OSPF_VERTEX_ROUTER: |
| 120 | return 1; |
| 121 | } |
| 122 | } |
| 123 | else |
| 124 | return (v1->distance - v2->distance); |
| 125 | } |
| 126 | return 0; |
hasso | 462f20d | 2005-02-23 11:29:02 +0000 | [diff] [blame] | 127 | } |
| 128 | |
| 129 | static void |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 130 | update_stat (void *node , int position) |
hasso | 462f20d | 2005-02-23 11:29:02 +0000 | [diff] [blame] | 131 | { |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 132 | struct vertex *v = node; |
| 133 | |
hasso | 462f20d | 2005-02-23 11:29:02 +0000 | [diff] [blame] | 134 | /* Set the status of the vertex, when its position changes. */ |
| 135 | *(v->stat) = position; |
| 136 | } |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 137 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 138 | static struct vertex_nexthop * |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 139 | vertex_nexthop_new (void) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 140 | { |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 141 | return XCALLOC (MTYPE_OSPF_NEXTHOP, sizeof (struct vertex_nexthop)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 142 | } |
| 143 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 144 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 145 | vertex_nexthop_free (struct vertex_nexthop *nh) |
| 146 | { |
| 147 | XFREE (MTYPE_OSPF_NEXTHOP, nh); |
| 148 | } |
| 149 | |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 150 | /* Free the canonical nexthop objects for an area, ie the nexthop objects |
Paul Jakma | 9c27ef9 | 2006-05-04 07:32:57 +0000 | [diff] [blame] | 151 | * attached to the first-hop router vertices, and any intervening network |
| 152 | * vertices. |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 153 | */ |
| 154 | static void |
| 155 | ospf_canonical_nexthops_free (struct vertex *root) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 156 | { |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 157 | struct listnode *node, *nnode; |
| 158 | struct vertex *child; |
| 159 | |
| 160 | for (ALL_LIST_ELEMENTS (root->children, node, nnode, child)) |
| 161 | { |
| 162 | struct listnode *n2, *nn2; |
| 163 | struct vertex_parent *vp; |
| 164 | |
paul | 58e1bef | 2005-11-11 12:10:03 +0000 | [diff] [blame] | 165 | /* router vertices through an attached network each |
| 166 | * have a distinct (canonical / not inherited) nexthop |
| 167 | * which must be freed. |
| 168 | * |
| 169 | * A network vertex can only have router vertices as its |
| 170 | * children, so only one level of recursion is possible. |
| 171 | */ |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 172 | if (child->type == OSPF_VERTEX_NETWORK) |
| 173 | ospf_canonical_nexthops_free (child); |
| 174 | |
paul | 58e1bef | 2005-11-11 12:10:03 +0000 | [diff] [blame] | 175 | /* Free child nexthops pointing back to this root vertex */ |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 176 | for (ALL_LIST_ELEMENTS (child->parents, n2, nn2, vp)) |
Paul Jakma | 9c27ef9 | 2006-05-04 07:32:57 +0000 | [diff] [blame] | 177 | if (vp->parent == root && vp->nexthop) |
paul | 58e1bef | 2005-11-11 12:10:03 +0000 | [diff] [blame] | 178 | vertex_nexthop_free (vp->nexthop); |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 179 | } |
| 180 | } |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 181 | |
Paul Jakma | 9c27ef9 | 2006-05-04 07:32:57 +0000 | [diff] [blame] | 182 | /* TODO: Parent list should be excised, in favour of maintaining only |
| 183 | * vertex_nexthop, with refcounts. |
| 184 | */ |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 185 | static struct vertex_parent * |
| 186 | vertex_parent_new (struct vertex *v, int backlink, struct vertex_nexthop *hop) |
| 187 | { |
| 188 | struct vertex_parent *new; |
| 189 | |
| 190 | new = XMALLOC (MTYPE_OSPF_VERTEX_PARENT, sizeof (struct vertex_parent)); |
| 191 | |
| 192 | if (new == NULL) |
| 193 | return NULL; |
| 194 | |
| 195 | new->parent = v; |
| 196 | new->backlink = backlink; |
| 197 | new->nexthop = hop; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 198 | return new; |
| 199 | } |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 200 | |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 201 | static void |
Paul Jakma | 9c27ef9 | 2006-05-04 07:32:57 +0000 | [diff] [blame] | 202 | vertex_parent_free (void *p) |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 203 | { |
| 204 | XFREE (MTYPE_OSPF_VERTEX_PARENT, p); |
| 205 | } |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 206 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 207 | static struct vertex * |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 208 | ospf_vertex_new (struct ospf_lsa *lsa) |
| 209 | { |
| 210 | struct vertex *new; |
| 211 | |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 212 | new = XCALLOC (MTYPE_OSPF_VERTEX, sizeof (struct vertex)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 213 | |
| 214 | new->flags = 0; |
hasso | 462f20d | 2005-02-23 11:29:02 +0000 | [diff] [blame] | 215 | new->stat = &(lsa->stat); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 216 | new->type = lsa->data->type; |
| 217 | new->id = lsa->data->id; |
| 218 | new->lsa = lsa->data; |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 219 | new->children = list_new (); |
| 220 | new->parents = list_new (); |
Paul Jakma | 9c27ef9 | 2006-05-04 07:32:57 +0000 | [diff] [blame] | 221 | new->parents->del = vertex_parent_free; |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 222 | |
Paul Jakma | 9c27ef9 | 2006-05-04 07:32:57 +0000 | [diff] [blame] | 223 | listnode_add (&vertex_list, new); |
| 224 | |
| 225 | if (IS_DEBUG_OSPF_EVENT) |
| 226 | zlog_debug ("%s: Created %s vertex %s", __func__, |
| 227 | new->type == OSPF_VERTEX_ROUTER ? "Router" : "Network", |
| 228 | inet_ntoa (new->lsa->id)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 229 | return new; |
| 230 | } |
| 231 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 232 | static void |
Paul Jakma | 9c27ef9 | 2006-05-04 07:32:57 +0000 | [diff] [blame] | 233 | ospf_vertex_free (void *data) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 234 | { |
Paul Jakma | 9c27ef9 | 2006-05-04 07:32:57 +0000 | [diff] [blame] | 235 | struct vertex *v = data; |
paul | 7461d45 | 2005-06-13 13:57:16 +0000 | [diff] [blame] | 236 | |
Paul Jakma | 9c27ef9 | 2006-05-04 07:32:57 +0000 | [diff] [blame] | 237 | if (IS_DEBUG_OSPF_EVENT) |
| 238 | zlog_debug ("%s: Free %s vertex %s", __func__, |
| 239 | v->type == OSPF_VERTEX_ROUTER ? "Router" : "Network", |
| 240 | inet_ntoa (v->lsa->id)); |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 241 | |
Paul Jakma | 9c27ef9 | 2006-05-04 07:32:57 +0000 | [diff] [blame] | 242 | /* There should be no parents potentially holding references to this vertex |
| 243 | * Children however may still be there, but presumably referenced by other |
| 244 | * vertices |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 245 | */ |
Paul Jakma | 9c27ef9 | 2006-05-04 07:32:57 +0000 | [diff] [blame] | 246 | //assert (listcount (v->parents) == 0); |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 247 | |
Paul Jakma | 9c27ef9 | 2006-05-04 07:32:57 +0000 | [diff] [blame] | 248 | if (v->children) |
| 249 | list_delete (v->children); |
| 250 | v->children = NULL; |
| 251 | |
| 252 | if (v->parents) |
| 253 | list_delete (v->parents); |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 254 | v->parents = NULL; |
| 255 | |
| 256 | v->lsa = NULL; |
paul | 7461d45 | 2005-06-13 13:57:16 +0000 | [diff] [blame] | 257 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 258 | XFREE (MTYPE_OSPF_VERTEX, v); |
| 259 | } |
| 260 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 261 | static void |
hasso | eb1ce60 | 2004-10-08 08:17:22 +0000 | [diff] [blame] | 262 | ospf_vertex_dump(const char *msg, struct vertex *v, |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 263 | int print_parents, int print_children) |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 264 | { |
| 265 | if ( ! IS_DEBUG_OSPF_EVENT) |
| 266 | return; |
| 267 | |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 268 | zlog_debug("%s %s vertex %s distance %u flags %u", |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 269 | msg, |
| 270 | v->type == OSPF_VERTEX_ROUTER ? "Router" : "Network", |
| 271 | inet_ntoa(v->lsa->id), |
| 272 | v->distance, |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 273 | (unsigned int)v->flags); |
| 274 | |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 275 | if (print_parents) |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 276 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 277 | struct listnode *node; |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 278 | struct vertex_parent *vp; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 279 | |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 280 | for (ALL_LIST_ELEMENTS_RO (v->parents, node, vp)) |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 281 | { |
| 282 | char buf1[BUFSIZ]; |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 283 | |
| 284 | if (vp) |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 285 | { |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 286 | zlog_debug ("parent %s backlink %d nexthop %s interface %s", |
| 287 | inet_ntoa(vp->parent->lsa->id), vp->backlink, |
| 288 | inet_ntop(AF_INET, &vp->nexthop->router, buf1, BUFSIZ), |
| 289 | vp->nexthop->oi ? IF_NAME(vp->nexthop->oi) : "NULL"); |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 290 | } |
| 291 | } |
| 292 | } |
| 293 | |
| 294 | if (print_children) |
| 295 | { |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 296 | struct listnode *cnode; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 297 | struct vertex *cv; |
| 298 | |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 299 | for (ALL_LIST_ELEMENTS_RO (v->children, cnode, cv)) |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 300 | ospf_vertex_dump(" child:", cv, 0, 0); |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 301 | } |
| 302 | } |
| 303 | |
| 304 | |
| 305 | /* Add a vertex to the list of children in each of its parents. */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 306 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 307 | ospf_vertex_add_parent (struct vertex *v) |
| 308 | { |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 309 | struct vertex_parent *vp; |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 310 | struct listnode *node; |
paul | 7461d45 | 2005-06-13 13:57:16 +0000 | [diff] [blame] | 311 | |
Paul Jakma | 9c27ef9 | 2006-05-04 07:32:57 +0000 | [diff] [blame] | 312 | assert (v && v->parents); |
paul | 7461d45 | 2005-06-13 13:57:16 +0000 | [diff] [blame] | 313 | |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 314 | for (ALL_LIST_ELEMENTS_RO (v->parents, node, vp)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 315 | { |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 316 | assert (vp->parent && vp->parent->children); |
paul | 7461d45 | 2005-06-13 13:57:16 +0000 | [diff] [blame] | 317 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 318 | /* No need to add two links from the same parent. */ |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 319 | if (listnode_lookup (vp->parent->children, v) == NULL) |
| 320 | listnode_add (vp->parent->children, v); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 321 | } |
| 322 | } |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 323 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 324 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 325 | ospf_spf_init (struct ospf_area *area) |
| 326 | { |
| 327 | struct vertex *v; |
Paul Jakma | 9c27ef9 | 2006-05-04 07:32:57 +0000 | [diff] [blame] | 328 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 329 | /* Create root node. */ |
| 330 | v = ospf_vertex_new (area->router_lsa_self); |
Paul Jakma | bd34fb3 | 2007-02-26 17:14:48 +0000 | [diff] [blame] | 331 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 332 | area->spf = v; |
| 333 | |
| 334 | /* Reset ABR and ASBR router counts. */ |
| 335 | area->abr_count = 0; |
| 336 | area->asbr_count = 0; |
| 337 | } |
| 338 | |
paul | d355bfa | 2004-04-08 07:43:45 +0000 | [diff] [blame] | 339 | /* return index of link back to V from W, or -1 if no link found */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 340 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 341 | ospf_lsa_has_link (struct lsa_header *w, struct lsa_header *v) |
| 342 | { |
hasso | eb1ce60 | 2004-10-08 08:17:22 +0000 | [diff] [blame] | 343 | unsigned int i, length; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 344 | struct router_lsa *rl; |
| 345 | struct network_lsa *nl; |
| 346 | |
| 347 | /* In case of W is Network LSA. */ |
| 348 | if (w->type == OSPF_NETWORK_LSA) |
| 349 | { |
| 350 | if (v->type == OSPF_NETWORK_LSA) |
paul | d355bfa | 2004-04-08 07:43:45 +0000 | [diff] [blame] | 351 | return -1; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 352 | |
| 353 | nl = (struct network_lsa *) w; |
| 354 | length = (ntohs (w->length) - OSPF_LSA_HEADER_SIZE - 4) / 4; |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 355 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 356 | for (i = 0; i < length; i++) |
| 357 | if (IPV4_ADDR_SAME (&nl->routers[i], &v->id)) |
paul | d355bfa | 2004-04-08 07:43:45 +0000 | [diff] [blame] | 358 | return i; |
| 359 | return -1; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 360 | } |
| 361 | |
| 362 | /* In case of W is Router LSA. */ |
| 363 | if (w->type == OSPF_ROUTER_LSA) |
| 364 | { |
| 365 | rl = (struct router_lsa *) w; |
| 366 | |
| 367 | length = ntohs (w->length); |
| 368 | |
| 369 | for (i = 0; |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 370 | i < ntohs (rl->links) && length >= sizeof (struct router_lsa); |
| 371 | i++, length -= 12) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 372 | { |
| 373 | switch (rl->link[i].type) |
| 374 | { |
| 375 | case LSA_LINK_TYPE_POINTOPOINT: |
| 376 | case LSA_LINK_TYPE_VIRTUALLINK: |
| 377 | /* Router LSA ID. */ |
| 378 | if (v->type == OSPF_ROUTER_LSA && |
| 379 | IPV4_ADDR_SAME (&rl->link[i].link_id, &v->id)) |
| 380 | { |
paul | d355bfa | 2004-04-08 07:43:45 +0000 | [diff] [blame] | 381 | return i; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 382 | } |
| 383 | break; |
| 384 | case LSA_LINK_TYPE_TRANSIT: |
| 385 | /* Network LSA ID. */ |
| 386 | if (v->type == OSPF_NETWORK_LSA && |
| 387 | IPV4_ADDR_SAME (&rl->link[i].link_id, &v->id)) |
| 388 | { |
paul | d355bfa | 2004-04-08 07:43:45 +0000 | [diff] [blame] | 389 | return i; |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 390 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 391 | break; |
| 392 | case LSA_LINK_TYPE_STUB: |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 393 | /* Stub can't lead anywhere, carry on */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 394 | continue; |
| 395 | default: |
| 396 | break; |
| 397 | } |
| 398 | } |
| 399 | } |
paul | d355bfa | 2004-04-08 07:43:45 +0000 | [diff] [blame] | 400 | return -1; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 401 | } |
| 402 | |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 403 | /* Find the next link after prev_link from v to w. If prev_link is |
| 404 | * NULL, return the first link from v to w. Ignore stub and virtual links; |
| 405 | * these link types will never be returned. |
| 406 | */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 407 | static struct router_lsa_link * |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 408 | ospf_get_next_link (struct vertex *v, struct vertex *w, |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 409 | struct router_lsa_link *prev_link) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 410 | { |
| 411 | u_char *p; |
| 412 | u_char *lim; |
Joakim Tjernlund | bd54037 | 2009-07-27 12:42:31 +0200 | [diff] [blame] | 413 | u_char lsa_type = LSA_LINK_TYPE_TRANSIT; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 414 | struct router_lsa_link *l; |
| 415 | |
Joakim Tjernlund | bd54037 | 2009-07-27 12:42:31 +0200 | [diff] [blame] | 416 | if (w->type == OSPF_VERTEX_ROUTER) |
| 417 | lsa_type = LSA_LINK_TYPE_POINTOPOINT; |
| 418 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 419 | if (prev_link == NULL) |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 420 | p = ((u_char *) v->lsa) + OSPF_LSA_HEADER_SIZE + 4; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 421 | else |
| 422 | { |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 423 | p = (u_char *) prev_link; |
Denis Ovsienko | 05b7709 | 2011-08-23 11:36:27 +0400 | [diff] [blame] | 424 | p += (OSPF_ROUTER_LSA_LINK_SIZE + |
| 425 | (prev_link->m[0].tos_count * OSPF_ROUTER_LSA_TOS_SIZE)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 426 | } |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 427 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 428 | lim = ((u_char *) v->lsa) + ntohs (v->lsa->length); |
| 429 | |
| 430 | while (p < lim) |
| 431 | { |
| 432 | l = (struct router_lsa_link *) p; |
| 433 | |
Denis Ovsienko | 05b7709 | 2011-08-23 11:36:27 +0400 | [diff] [blame] | 434 | p += (OSPF_ROUTER_LSA_LINK_SIZE + (l->m[0].tos_count * OSPF_ROUTER_LSA_TOS_SIZE)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 435 | |
Joakim Tjernlund | bd54037 | 2009-07-27 12:42:31 +0200 | [diff] [blame] | 436 | if (l->m[0].type != lsa_type) |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 437 | continue; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 438 | |
| 439 | if (IPV4_ADDR_SAME (&l->link_id, &w->id)) |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 440 | return l; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 441 | } |
| 442 | |
| 443 | return NULL; |
| 444 | } |
| 445 | |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 446 | static void |
| 447 | ospf_spf_flush_parents (struct vertex *w) |
| 448 | { |
| 449 | struct vertex_parent *vp; |
| 450 | struct listnode *ln, *nn; |
| 451 | |
| 452 | /* delete the existing nexthops */ |
| 453 | for (ALL_LIST_ELEMENTS (w->parents, ln, nn, vp)) |
| 454 | { |
| 455 | list_delete_node (w->parents, ln); |
| 456 | vertex_parent_free (vp); |
| 457 | } |
| 458 | } |
| 459 | |
Paul Jakma | bc20c1a | 2007-01-24 14:51:51 +0000 | [diff] [blame] | 460 | /* |
| 461 | * Consider supplied next-hop for inclusion to the supplied list of |
| 462 | * equal-cost next-hops, adjust list as neccessary. |
| 463 | */ |
| 464 | static void |
| 465 | ospf_spf_add_parent (struct vertex *v, struct vertex *w, |
| 466 | struct vertex_nexthop *newhop, |
Paul Jakma | bd34fb3 | 2007-02-26 17:14:48 +0000 | [diff] [blame] | 467 | unsigned int distance) |
Paul Jakma | bc20c1a | 2007-01-24 14:51:51 +0000 | [diff] [blame] | 468 | { |
David Lamparter | 7b92589 | 2012-07-23 18:17:57 +0200 | [diff] [blame] | 469 | struct vertex_parent *vp, *wp; |
| 470 | struct listnode *node; |
Paul Jakma | bc20c1a | 2007-01-24 14:51:51 +0000 | [diff] [blame] | 471 | |
Paul Jakma | 08d3d5b | 2007-05-07 16:38:35 +0000 | [diff] [blame] | 472 | /* we must have a newhop, and a distance */ |
Paul Jakma | bd34fb3 | 2007-02-26 17:14:48 +0000 | [diff] [blame] | 473 | assert (v && w && newhop); |
Paul Jakma | 08d3d5b | 2007-05-07 16:38:35 +0000 | [diff] [blame] | 474 | assert (distance); |
Paul Jakma | bc20c1a | 2007-01-24 14:51:51 +0000 | [diff] [blame] | 475 | |
Paul Jakma | 08d3d5b | 2007-05-07 16:38:35 +0000 | [diff] [blame] | 476 | /* IFF w has already been assigned a distance, then we shouldn't get here |
| 477 | * unless callers have determined V(l)->W is shortest / equal-shortest |
| 478 | * path (0 is a special case distance (no distance yet assigned)). |
Paul Jakma | bc20c1a | 2007-01-24 14:51:51 +0000 | [diff] [blame] | 479 | */ |
Paul Jakma | 08d3d5b | 2007-05-07 16:38:35 +0000 | [diff] [blame] | 480 | if (w->distance) |
| 481 | assert (distance <= w->distance); |
| 482 | else |
| 483 | w->distance = distance; |
Paul Jakma | bc20c1a | 2007-01-24 14:51:51 +0000 | [diff] [blame] | 484 | |
Paul Jakma | b75ae99 | 2007-03-23 11:17:28 +0000 | [diff] [blame] | 485 | if (IS_DEBUG_OSPF_EVENT) |
| 486 | { |
| 487 | char buf[2][INET_ADDRSTRLEN]; |
| 488 | zlog_debug ("%s: Adding %s as parent of %s", |
| 489 | __func__, |
| 490 | inet_ntop(AF_INET, &v->lsa->id, buf[0], sizeof(buf[0])), |
| 491 | inet_ntop(AF_INET, &w->lsa->id, buf[1], sizeof(buf[1]))); |
| 492 | } |
| 493 | |
Paul Jakma | bc20c1a | 2007-01-24 14:51:51 +0000 | [diff] [blame] | 494 | /* Adding parent for a new, better path: flush existing parents from W. */ |
Paul Jakma | bd34fb3 | 2007-02-26 17:14:48 +0000 | [diff] [blame] | 495 | if (distance < w->distance) |
Paul Jakma | bc20c1a | 2007-01-24 14:51:51 +0000 | [diff] [blame] | 496 | { |
Paul Jakma | b75ae99 | 2007-03-23 11:17:28 +0000 | [diff] [blame] | 497 | if (IS_DEBUG_OSPF_EVENT) |
| 498 | zlog_debug ("%s: distance %d better than %d, flushing existing parents", |
| 499 | __func__, distance, w->distance); |
Paul Jakma | bc20c1a | 2007-01-24 14:51:51 +0000 | [diff] [blame] | 500 | ospf_spf_flush_parents (w); |
Paul Jakma | bd34fb3 | 2007-02-26 17:14:48 +0000 | [diff] [blame] | 501 | w->distance = distance; |
Paul Jakma | bc20c1a | 2007-01-24 14:51:51 +0000 | [diff] [blame] | 502 | } |
| 503 | |
David Lamparter | 7b92589 | 2012-07-23 18:17:57 +0200 | [diff] [blame] | 504 | /* new parent is <= existing parents, add it to parent list (if nexthop |
| 505 | * not on parent list) |
| 506 | */ |
| 507 | for (ALL_LIST_ELEMENTS_RO(w->parents, node, wp)) |
| 508 | { |
| 509 | if (memcmp(newhop, wp->nexthop, sizeof(*newhop)) == 0) |
| 510 | { |
| 511 | if (IS_DEBUG_OSPF_EVENT) |
| 512 | zlog_debug ("%s: ... nexthop already on parent list, skipping add", __func__); |
| 513 | return; |
| 514 | } |
| 515 | } |
| 516 | |
Paul Jakma | bc20c1a | 2007-01-24 14:51:51 +0000 | [diff] [blame] | 517 | vp = vertex_parent_new (v, ospf_lsa_has_link (w->lsa, v->lsa), newhop); |
| 518 | listnode_add (w->parents, vp); |
| 519 | |
| 520 | return; |
| 521 | } |
| 522 | |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 523 | /* 16.1.1. Calculate nexthop from root through V (parent) to |
Paul Jakma | bd34fb3 | 2007-02-26 17:14:48 +0000 | [diff] [blame] | 524 | * vertex W (destination), with given distance from root->W. |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 525 | * |
| 526 | * The link must be supplied if V is the root vertex. In all other cases |
| 527 | * it may be NULL. |
Paul Jakma | bd34fb3 | 2007-02-26 17:14:48 +0000 | [diff] [blame] | 528 | * |
| 529 | * Note that this function may fail, hence the state of the destination |
| 530 | * vertex, W, should /not/ be modified in a dependent manner until |
| 531 | * this function returns. This function will update the W vertex with the |
| 532 | * provided distance as appropriate. |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 533 | */ |
Paul Jakma | bc20c1a | 2007-01-24 14:51:51 +0000 | [diff] [blame] | 534 | static unsigned int |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 535 | ospf_nexthop_calculation (struct ospf_area *area, struct vertex *v, |
Paul Jakma | bd34fb3 | 2007-02-26 17:14:48 +0000 | [diff] [blame] | 536 | struct vertex *w, struct router_lsa_link *l, |
Joakim Tjernlund | c81ee5c | 2012-07-07 17:06:11 +0200 | [diff] [blame] | 537 | unsigned int distance, int lsa_pos) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 538 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 539 | struct listnode *node, *nnode; |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 540 | struct vertex_nexthop *nh; |
| 541 | struct vertex_parent *vp; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 542 | struct ospf_interface *oi = NULL; |
Paul Jakma | bc20c1a | 2007-01-24 14:51:51 +0000 | [diff] [blame] | 543 | unsigned int added = 0; |
Joakim Tjernlund | c81ee5c | 2012-07-07 17:06:11 +0200 | [diff] [blame] | 544 | char buf1[BUFSIZ]; |
| 545 | char buf2[BUFSIZ]; |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 546 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 547 | if (IS_DEBUG_OSPF_EVENT) |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 548 | { |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 549 | zlog_debug ("ospf_nexthop_calculation(): Start"); |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 550 | ospf_vertex_dump("V (parent):", v, 1, 1); |
| 551 | ospf_vertex_dump("W (dest) :", w, 1, 1); |
Paul Jakma | bd34fb3 | 2007-02-26 17:14:48 +0000 | [diff] [blame] | 552 | zlog_debug ("V->W distance: %d", distance); |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 553 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 554 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 555 | if (v == area->spf) |
Paul Jakma | 9c27ef9 | 2006-05-04 07:32:57 +0000 | [diff] [blame] | 556 | { |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 557 | /* 16.1.1 para 4. In the first case, the parent vertex (V) is the |
| 558 | root (the calculating router itself). This means that the |
| 559 | destination is either a directly connected network or directly |
| 560 | connected router. The outgoing interface in this case is simply |
| 561 | the OSPF interface connecting to the destination network/router. |
| 562 | */ |
| 563 | |
Joakim Tjernlund | c81ee5c | 2012-07-07 17:06:11 +0200 | [diff] [blame] | 564 | /* we *must* be supplied with the link data */ |
| 565 | assert (l != NULL); |
| 566 | oi = ospf_if_lookup_by_lsa_pos (area, lsa_pos); |
| 567 | if (!oi) |
| 568 | { |
| 569 | zlog_debug("%s: OI not found in LSA: lsa_pos:%d link_id:%s link_data:%s", |
| 570 | __func__, lsa_pos, |
| 571 | inet_ntop (AF_INET, &l->link_id, buf1, BUFSIZ), |
| 572 | inet_ntop (AF_INET, &l->link_data, buf2, BUFSIZ)); |
| 573 | return 0; |
| 574 | } |
| 575 | |
| 576 | if (IS_DEBUG_OSPF_EVENT) |
| 577 | { |
| 578 | zlog_debug("%s: considering link:%s " |
| 579 | "type:%d link_id:%s link_data:%s", |
| 580 | __func__, oi->ifp->name, l->m[0].type, |
| 581 | inet_ntop (AF_INET, &l->link_id, buf1, BUFSIZ), |
| 582 | inet_ntop (AF_INET, &l->link_data, buf2, BUFSIZ)); |
| 583 | } |
| 584 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 585 | if (w->type == OSPF_VERTEX_ROUTER) |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 586 | { |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 587 | /* l is a link from v to w |
| 588 | * l2 will be link from w to v |
| 589 | */ |
| 590 | struct router_lsa_link *l2 = NULL; |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 591 | |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 592 | if (l->m[0].type == LSA_LINK_TYPE_POINTOPOINT) |
| 593 | { |
Joakim Tjernlund | c81ee5c | 2012-07-07 17:06:11 +0200 | [diff] [blame] | 594 | struct in_addr nexthop; |
| 595 | |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 596 | /* If the destination is a router which connects to |
| 597 | the calculating router via a Point-to-MultiPoint |
| 598 | network, the destination's next hop IP address(es) |
| 599 | can be determined by examining the destination's |
| 600 | router-LSA: each link pointing back to the |
| 601 | calculating router and having a Link Data field |
| 602 | belonging to the Point-to-MultiPoint network |
| 603 | provides an IP address of the next hop router. |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 604 | |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 605 | At this point l is a link from V to W, and V is the |
Joakim Tjernlund | c81ee5c | 2012-07-07 17:06:11 +0200 | [diff] [blame] | 606 | root ("us"). If it is a point-to-multipoint interface, |
| 607 | then look through the links in the opposite direction (W to V). |
| 608 | If any of them have an address that lands within the |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 609 | subnet declared by the PtMP link, then that link |
Joakim Tjernlund | c81ee5c | 2012-07-07 17:06:11 +0200 | [diff] [blame] | 610 | is a constituent of the PtMP link, and its address is |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 611 | a nexthop address for V. |
| 612 | */ |
Joakim Tjernlund | c81ee5c | 2012-07-07 17:06:11 +0200 | [diff] [blame] | 613 | if (oi->type == OSPF_IFTYPE_POINTOPOINT) |
| 614 | { |
Christian Franke | f2b53da | 2013-03-20 15:28:46 +0000 | [diff] [blame] | 615 | /* Having nexthop = 0 is tempting, but NOT acceptable. |
| 616 | It breaks AS-External routes with a forwarding address, |
| 617 | since ospf_ase_complete_direct_routes() will mistakenly |
| 618 | assume we've reached the last hop and should place the |
| 619 | forwarding address as nexthop. |
| 620 | Also, users may configure multi-access links in p2p mode, |
| 621 | so we need the IP to ARP the nexthop. |
| 622 | */ |
| 623 | struct ospf_neighbor *nbr_w; |
| 624 | |
| 625 | nbr_w = ospf_nbr_lookup_by_routerid (oi->nbrs, &l->link_id); |
| 626 | if (nbr_w != NULL) |
| 627 | { |
| 628 | added = 1; |
| 629 | nexthop = nbr_w->src; |
| 630 | } |
Joakim Tjernlund | c81ee5c | 2012-07-07 17:06:11 +0200 | [diff] [blame] | 631 | } |
| 632 | else if (oi->type == OSPF_IFTYPE_POINTOMULTIPOINT) |
| 633 | { |
| 634 | struct prefix_ipv4 la; |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 635 | |
Joakim Tjernlund | c81ee5c | 2012-07-07 17:06:11 +0200 | [diff] [blame] | 636 | la.family = AF_INET; |
| 637 | la.prefixlen = oi->address->prefixlen; |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 638 | |
Joakim Tjernlund | c81ee5c | 2012-07-07 17:06:11 +0200 | [diff] [blame] | 639 | /* V links to W on PtMP interface |
| 640 | - find the interface address on W */ |
| 641 | while ((l2 = ospf_get_next_link (w, v, l2))) |
| 642 | { |
| 643 | la.prefix = l2->link_data; |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 644 | |
Joakim Tjernlund | c81ee5c | 2012-07-07 17:06:11 +0200 | [diff] [blame] | 645 | if (prefix_cmp ((struct prefix *) &la, |
| 646 | oi->address) != 0) |
| 647 | continue; |
| 648 | /* link_data is on our PtMP network */ |
| 649 | added = 1; |
| 650 | nexthop = l2->link_data; |
| 651 | break; |
| 652 | } |
| 653 | } |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 654 | |
Joakim Tjernlund | c81ee5c | 2012-07-07 17:06:11 +0200 | [diff] [blame] | 655 | if (added) |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 656 | { |
| 657 | /* found all necessary info to build nexthop */ |
| 658 | nh = vertex_nexthop_new (); |
| 659 | nh->oi = oi; |
Joakim Tjernlund | c81ee5c | 2012-07-07 17:06:11 +0200 | [diff] [blame] | 660 | nh->router = nexthop; |
Paul Jakma | bd34fb3 | 2007-02-26 17:14:48 +0000 | [diff] [blame] | 661 | ospf_spf_add_parent (v, w, nh, distance); |
Paul Jakma | bc20c1a | 2007-01-24 14:51:51 +0000 | [diff] [blame] | 662 | return 1; |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 663 | } |
| 664 | else |
Joakim Tjernlund | c81ee5c | 2012-07-07 17:06:11 +0200 | [diff] [blame] | 665 | zlog_info("%s: could not determine nexthop for link %s", |
| 666 | __func__, oi->ifp->name); |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 667 | } /* end point-to-point link from V to W */ |
Paul Jakma | 9c27ef9 | 2006-05-04 07:32:57 +0000 | [diff] [blame] | 668 | else if (l->m[0].type == LSA_LINK_TYPE_VIRTUALLINK) |
| 669 | { |
| 670 | struct ospf_vl_data *vl_data; |
| 671 | |
| 672 | /* VLink implementation limitations: |
| 673 | * a) vl_data can only reference one nexthop, so no ECMP |
| 674 | * to backbone through VLinks. Though transit-area |
| 675 | * summaries may be considered, and those can be ECMP. |
| 676 | * b) We can only use /one/ VLink, even if multiple ones |
| 677 | * exist this router through multiple transit-areas. |
| 678 | */ |
| 679 | vl_data = ospf_vl_lookup (area->ospf, NULL, l->link_id); |
| 680 | |
| 681 | if (vl_data |
| 682 | && CHECK_FLAG (vl_data->flags, OSPF_VL_FLAG_APPROVED)) |
| 683 | { |
| 684 | nh = vertex_nexthop_new (); |
| 685 | nh->oi = vl_data->nexthop.oi; |
| 686 | nh->router = vl_data->nexthop.router; |
Paul Jakma | bd34fb3 | 2007-02-26 17:14:48 +0000 | [diff] [blame] | 687 | ospf_spf_add_parent (v, w, nh, distance); |
Paul Jakma | bc20c1a | 2007-01-24 14:51:51 +0000 | [diff] [blame] | 688 | return 1; |
Paul Jakma | 9c27ef9 | 2006-05-04 07:32:57 +0000 | [diff] [blame] | 689 | } |
| 690 | else |
Paul Jakma | bc20c1a | 2007-01-24 14:51:51 +0000 | [diff] [blame] | 691 | zlog_info("ospf_nexthop_calculation(): " |
| 692 | "vl_data for VL link not found"); |
Paul Jakma | 9c27ef9 | 2006-05-04 07:32:57 +0000 | [diff] [blame] | 693 | } /* end virtual-link from V to W */ |
Paul Jakma | bc20c1a | 2007-01-24 14:51:51 +0000 | [diff] [blame] | 694 | return 0; |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 695 | } /* end W is a Router vertex */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 696 | else |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 697 | { |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 698 | assert(w->type == OSPF_VERTEX_NETWORK); |
Joakim Tjernlund | c81ee5c | 2012-07-07 17:06:11 +0200 | [diff] [blame] | 699 | |
| 700 | nh = vertex_nexthop_new (); |
| 701 | nh->oi = oi; |
| 702 | nh->router.s_addr = 0; /* Nexthop not required */ |
| 703 | ospf_spf_add_parent (v, w, nh, distance); |
| 704 | return 1; |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 705 | } |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 706 | } /* end V is the root */ |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 707 | /* Check if W's parent is a network connected to root. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 708 | else if (v->type == OSPF_VERTEX_NETWORK) |
| 709 | { |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 710 | /* See if any of V's parents are the root. */ |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 711 | for (ALL_LIST_ELEMENTS (v->parents, node, nnode, vp)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 712 | { |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 713 | if (vp->parent == area->spf) /* connects to root? */ |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 714 | { |
| 715 | /* 16.1.1 para 5. ...the parent vertex is a network that |
| 716 | * directly connects the calculating router to the destination |
| 717 | * router. The list of next hops is then determined by |
| 718 | * examining the destination's router-LSA... |
| 719 | */ |
| 720 | |
| 721 | assert(w->type == OSPF_VERTEX_ROUTER); |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 722 | while ((l = ospf_get_next_link (w, v, l))) |
| 723 | { |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 724 | /* ...For each link in the router-LSA that points back to the |
| 725 | * parent network, the link's Link Data field provides the IP |
| 726 | * address of a next hop router. The outgoing interface to |
| 727 | * use can then be derived from the next hop IP address (or |
| 728 | * it can be inherited from the parent network). |
| 729 | */ |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 730 | nh = vertex_nexthop_new (); |
| 731 | nh->oi = vp->nexthop->oi; |
| 732 | nh->router = l->link_data; |
Paul Jakma | bc20c1a | 2007-01-24 14:51:51 +0000 | [diff] [blame] | 733 | added = 1; |
Paul Jakma | bd34fb3 | 2007-02-26 17:14:48 +0000 | [diff] [blame] | 734 | ospf_spf_add_parent (v, w, nh, distance); |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 735 | } |
Paul Jakma | 945ea29 | 2012-08-06 12:17:12 +0100 | [diff] [blame] | 736 | /* Note lack of return is deliberate. See next comment. */ |
| 737 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 738 | } |
Paul Jakma | 945ea29 | 2012-08-06 12:17:12 +0100 | [diff] [blame] | 739 | /* NB: This code is non-trivial. |
| 740 | * |
| 741 | * E.g. it is not enough to know that V connects to the root. It is |
| 742 | * also important that the while above, looping through all links from |
| 743 | * W->V found at least one link, so that we know there is |
| 744 | * bi-directional connectivity between V and W (which need not be the |
| 745 | * case, e.g. when OSPF has not yet converged fully). Otherwise, if |
| 746 | * we /always/ return here, without having checked that root->V->-W |
| 747 | * actually resulted in a valid nexthop being created, then we we will |
| 748 | * prevent SPF from finding/using higher cost paths. |
| 749 | * |
| 750 | * It is important, if root->V->W has not been added, that we continue |
| 751 | * through to the intervening-router nexthop code below. So as to |
| 752 | * ensure other paths to V may be used. This avoids unnecessary |
| 753 | * blackholes while OSPF is convergening. |
| 754 | * |
| 755 | * I.e. we may have arrived at this function, examining V -> W, via |
| 756 | * workable paths other than root -> V, and it's important to avoid |
| 757 | * getting "confused" by non-working root->V->W path - it's important |
| 758 | * to *not* lose the working non-root paths, just because of a |
| 759 | * non-viable root->V->W. |
| 760 | * |
| 761 | * See also bug #330 (required reading!), and: |
| 762 | * |
| 763 | * http://blogs.oracle.com/paulj/entry/the_difference_a_line_makes |
| 764 | */ |
| 765 | if (added) |
| 766 | return added; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 767 | } |
| 768 | |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 769 | /* 16.1.1 para 4. If there is at least one intervening router in the |
| 770 | * current shortest path between the destination and the root, the |
| 771 | * destination simply inherits the set of next hops from the |
| 772 | * parent. |
| 773 | */ |
Paul Jakma | b75ae99 | 2007-03-23 11:17:28 +0000 | [diff] [blame] | 774 | if (IS_DEBUG_OSPF_EVENT) |
| 775 | zlog_debug ("%s: Intervening routers, adding parent(s)", __func__); |
| 776 | |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 777 | for (ALL_LIST_ELEMENTS (v->parents, node, nnode, vp)) |
Paul Jakma | bc20c1a | 2007-01-24 14:51:51 +0000 | [diff] [blame] | 778 | { |
| 779 | added = 1; |
Paul Jakma | bd34fb3 | 2007-02-26 17:14:48 +0000 | [diff] [blame] | 780 | ospf_spf_add_parent (v, w, vp->nexthop, distance); |
Paul Jakma | bc20c1a | 2007-01-24 14:51:51 +0000 | [diff] [blame] | 781 | } |
Paul Jakma | 9c27ef9 | 2006-05-04 07:32:57 +0000 | [diff] [blame] | 782 | |
Paul Jakma | bc20c1a | 2007-01-24 14:51:51 +0000 | [diff] [blame] | 783 | return added; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 784 | } |
| 785 | |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 786 | /* RFC2328 Section 16.1 (2). |
| 787 | * v is on the SPF tree. Examine the links in v's LSA. Update the list |
| 788 | * of candidates with any vertices not already on the list. If a lower-cost |
| 789 | * path is found to a vertex already on the candidate list, store the new cost. |
| 790 | */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 791 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 792 | ospf_spf_next (struct vertex *v, struct ospf_area *area, |
hasso | 462f20d | 2005-02-23 11:29:02 +0000 | [diff] [blame] | 793 | struct pqueue * candidate) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 794 | { |
| 795 | struct ospf_lsa *w_lsa = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 796 | u_char *p; |
| 797 | u_char *lim; |
| 798 | struct router_lsa_link *l = NULL; |
| 799 | struct in_addr *r; |
Joakim Tjernlund | c81ee5c | 2012-07-07 17:06:11 +0200 | [diff] [blame] | 800 | int type = 0, lsa_pos=-1, lsa_pos_next=0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 801 | |
| 802 | /* If this is a router-LSA, and bit V of the router-LSA (see Section |
| 803 | A.4.2:RFC2328) is set, set Area A's TransitCapability to TRUE. */ |
| 804 | if (v->type == OSPF_VERTEX_ROUTER) |
| 805 | { |
| 806 | if (IS_ROUTER_LSA_VIRTUAL ((struct router_lsa *) v->lsa)) |
| 807 | area->transit = OSPF_TRANSIT_TRUE; |
| 808 | } |
Paul Jakma | b75ae99 | 2007-03-23 11:17:28 +0000 | [diff] [blame] | 809 | |
| 810 | if (IS_DEBUG_OSPF_EVENT) |
| 811 | zlog_debug ("%s: Next vertex of %s vertex %s", |
| 812 | __func__, |
| 813 | v->type == OSPF_VERTEX_ROUTER ? "Router" : "Network", |
| 814 | inet_ntoa(v->lsa->id)); |
| 815 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 816 | p = ((u_char *) v->lsa) + OSPF_LSA_HEADER_SIZE + 4; |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 817 | lim = ((u_char *) v->lsa) + ntohs (v->lsa->length); |
| 818 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 819 | while (p < lim) |
| 820 | { |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 821 | struct vertex *w; |
| 822 | unsigned int distance; |
paul | d355bfa | 2004-04-08 07:43:45 +0000 | [diff] [blame] | 823 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 824 | /* In case of V is Router-LSA. */ |
| 825 | if (v->lsa->type == OSPF_ROUTER_LSA) |
| 826 | { |
| 827 | l = (struct router_lsa_link *) p; |
| 828 | |
Joakim Tjernlund | c81ee5c | 2012-07-07 17:06:11 +0200 | [diff] [blame] | 829 | lsa_pos = lsa_pos_next; /* LSA link position */ |
| 830 | lsa_pos_next++; |
Denis Ovsienko | 05b7709 | 2011-08-23 11:36:27 +0400 | [diff] [blame] | 831 | p += (OSPF_ROUTER_LSA_LINK_SIZE + |
| 832 | (l->m[0].tos_count * OSPF_ROUTER_LSA_TOS_SIZE)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 833 | |
| 834 | /* (a) If this is a link to a stub network, examine the next |
| 835 | link in V's LSA. Links to stub networks will be |
| 836 | considered in the second stage of the shortest path |
| 837 | calculation. */ |
| 838 | if ((type = l->m[0].type) == LSA_LINK_TYPE_STUB) |
| 839 | continue; |
Paul Jakma | 08d3d5b | 2007-05-07 16:38:35 +0000 | [diff] [blame] | 840 | |
| 841 | /* Infinite distance links shouldn't be followed, except |
| 842 | * for local links (a stub-routed router still wants to |
| 843 | * calculate tree, so must follow its own links). |
| 844 | */ |
| 845 | if ((v != area->spf) && l->m[0].metric >= OSPF_OUTPUT_COST_INFINITE) |
| 846 | continue; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 847 | |
| 848 | /* (b) Otherwise, W is a transit vertex (router or transit |
| 849 | network). Look up the vertex W's LSA (router-LSA or |
| 850 | network-LSA) in Area A's link state database. */ |
| 851 | switch (type) |
| 852 | { |
| 853 | case LSA_LINK_TYPE_POINTOPOINT: |
| 854 | case LSA_LINK_TYPE_VIRTUALLINK: |
| 855 | if (type == LSA_LINK_TYPE_VIRTUALLINK) |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 856 | { |
| 857 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 858 | zlog_debug ("looking up LSA through VL: %s", |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 859 | inet_ntoa (l->link_id)); |
| 860 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 861 | |
| 862 | w_lsa = ospf_lsa_lookup (area, OSPF_ROUTER_LSA, l->link_id, |
| 863 | l->link_id); |
| 864 | if (w_lsa) |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 865 | { |
| 866 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 867 | zlog_debug ("found Router LSA %s", inet_ntoa (l->link_id)); |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 868 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 869 | break; |
| 870 | case LSA_LINK_TYPE_TRANSIT: |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 871 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 872 | zlog_debug ("Looking up Network LSA, ID: %s", |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 873 | inet_ntoa (l->link_id)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 874 | w_lsa = ospf_lsa_lookup_by_id (area, OSPF_NETWORK_LSA, |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 875 | l->link_id); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 876 | if (w_lsa) |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 877 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 878 | zlog_debug ("found the LSA"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 879 | break; |
| 880 | default: |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 881 | zlog_warn ("Invalid LSA link type %d", type); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 882 | continue; |
| 883 | } |
| 884 | } |
| 885 | else |
| 886 | { |
| 887 | /* In case of V is Network-LSA. */ |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 888 | r = (struct in_addr *) p; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 889 | p += sizeof (struct in_addr); |
| 890 | |
| 891 | /* Lookup the vertex W's LSA. */ |
| 892 | w_lsa = ospf_lsa_lookup_by_id (area, OSPF_ROUTER_LSA, *r); |
Paul Jakma | b75ae99 | 2007-03-23 11:17:28 +0000 | [diff] [blame] | 893 | if (w_lsa) |
| 894 | { |
| 895 | if (IS_DEBUG_OSPF_EVENT) |
| 896 | zlog_debug ("found Router LSA %s", inet_ntoa (w_lsa->data->id)); |
| 897 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 898 | } |
| 899 | |
| 900 | /* (b cont.) If the LSA does not exist, or its LS age is equal |
| 901 | to MaxAge, or it does not have a link back to vertex V, |
| 902 | examine the next link in V's LSA.[23] */ |
| 903 | if (w_lsa == NULL) |
Paul Jakma | b75ae99 | 2007-03-23 11:17:28 +0000 | [diff] [blame] | 904 | { |
| 905 | if (IS_DEBUG_OSPF_EVENT) |
| 906 | zlog_debug ("No LSA found"); |
| 907 | continue; |
| 908 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 909 | |
| 910 | if (IS_LSA_MAXAGE (w_lsa)) |
Paul Jakma | b75ae99 | 2007-03-23 11:17:28 +0000 | [diff] [blame] | 911 | { |
| 912 | if (IS_DEBUG_OSPF_EVENT) |
| 913 | zlog_debug ("LSA is MaxAge"); |
| 914 | continue; |
| 915 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 916 | |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 917 | if (ospf_lsa_has_link (w_lsa->data, v->lsa) < 0 ) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 918 | { |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 919 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 920 | zlog_debug ("The LSA doesn't have a link back"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 921 | continue; |
| 922 | } |
| 923 | |
| 924 | /* (c) If vertex W is already on the shortest-path tree, examine |
| 925 | the next link in the LSA. */ |
hasso | 462f20d | 2005-02-23 11:29:02 +0000 | [diff] [blame] | 926 | if (w_lsa->stat == LSA_SPF_IN_SPFTREE) |
| 927 | { |
| 928 | if (IS_DEBUG_OSPF_EVENT) |
| 929 | zlog_debug ("The LSA is already in SPF"); |
| 930 | continue; |
| 931 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 932 | |
| 933 | /* (d) Calculate the link state cost D of the resulting path |
| 934 | from the root to vertex W. D is equal to the sum of the link |
| 935 | state cost of the (already calculated) shortest path to |
| 936 | vertex V and the advertised cost of the link between vertices |
| 937 | V and W. If D is: */ |
| 938 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 939 | /* calculate link cost D. */ |
| 940 | if (v->lsa->type == OSPF_ROUTER_LSA) |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 941 | distance = v->distance + ntohs (l->m[0].metric); |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 942 | else /* v is not a Router-LSA */ |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 943 | distance = v->distance; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 944 | |
| 945 | /* Is there already vertex W in candidate list? */ |
hasso | 462f20d | 2005-02-23 11:29:02 +0000 | [diff] [blame] | 946 | if (w_lsa->stat == LSA_SPF_NOT_EXPLORED) |
| 947 | { |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 948 | /* prepare vertex W. */ |
| 949 | w = ospf_vertex_new (w_lsa); |
| 950 | |
hasso | 462f20d | 2005-02-23 11:29:02 +0000 | [diff] [blame] | 951 | /* Calculate nexthop to W. */ |
Joakim Tjernlund | c81ee5c | 2012-07-07 17:06:11 +0200 | [diff] [blame] | 952 | if (ospf_nexthop_calculation (area, v, w, l, distance, lsa_pos)) |
Paul Jakma | bc20c1a | 2007-01-24 14:51:51 +0000 | [diff] [blame] | 953 | pqueue_enqueue (w, candidate); |
Paul Jakma | b75ae99 | 2007-03-23 11:17:28 +0000 | [diff] [blame] | 954 | else if (IS_DEBUG_OSPF_EVENT) |
| 955 | zlog_debug ("Nexthop Calc failed"); |
hasso | 462f20d | 2005-02-23 11:29:02 +0000 | [diff] [blame] | 956 | } |
| 957 | else if (w_lsa->stat >= 0) |
| 958 | { |
| 959 | /* Get the vertex from candidates. */ |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 960 | w = candidate->array[w_lsa->stat]; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 961 | |
hasso | 462f20d | 2005-02-23 11:29:02 +0000 | [diff] [blame] | 962 | /* if D is greater than. */ |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 963 | if (w->distance < distance) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 964 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 965 | continue; |
| 966 | } |
hasso | 462f20d | 2005-02-23 11:29:02 +0000 | [diff] [blame] | 967 | /* equal to. */ |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 968 | else if (w->distance == distance) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 969 | { |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 970 | /* Found an equal-cost path to W. |
| 971 | * Calculate nexthop of to W from V. */ |
Joakim Tjernlund | c81ee5c | 2012-07-07 17:06:11 +0200 | [diff] [blame] | 972 | ospf_nexthop_calculation (area, v, w, l, distance, lsa_pos); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 973 | } |
hasso | 462f20d | 2005-02-23 11:29:02 +0000 | [diff] [blame] | 974 | /* less than. */ |
| 975 | else |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 976 | { |
Paul Jakma | bc20c1a | 2007-01-24 14:51:51 +0000 | [diff] [blame] | 977 | /* Found a lower-cost path to W. |
| 978 | * nexthop_calculation is conditional, if it finds |
| 979 | * valid nexthop it will call spf_add_parents, which |
| 980 | * will flush the old parents |
| 981 | */ |
Joakim Tjernlund | c81ee5c | 2012-07-07 17:06:11 +0200 | [diff] [blame] | 982 | if (ospf_nexthop_calculation (area, v, w, l, distance, lsa_pos)) |
Paul Jakma | 7591d8b | 2007-08-06 18:52:45 +0000 | [diff] [blame] | 983 | /* Decrease the key of the node in the heap. |
| 984 | * trickle-sort it up towards root, just in case this |
| 985 | * node should now be the new root due the cost change. |
Paul Jakma | e95537f | 2007-08-07 16:22:05 +0000 | [diff] [blame] | 986 | * (next pqueu_{de,en}queue will fully re-heap the queue). |
Paul Jakma | 7591d8b | 2007-08-06 18:52:45 +0000 | [diff] [blame] | 987 | */ |
| 988 | trickle_up (w_lsa->stat, candidate); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 989 | } |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 990 | } /* end W is already on the candidate list */ |
| 991 | } /* end loop over the links in V's LSA */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 992 | } |
| 993 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 994 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 995 | ospf_spf_dump (struct vertex *v, int i) |
| 996 | { |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 997 | struct listnode *cnode; |
| 998 | struct listnode *nnode; |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 999 | struct vertex_parent *parent; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1000 | |
| 1001 | if (v->type == OSPF_VERTEX_ROUTER) |
| 1002 | { |
| 1003 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1004 | zlog_debug ("SPF Result: %d [R] %s", i, inet_ntoa (v->lsa->id)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1005 | } |
| 1006 | else |
| 1007 | { |
| 1008 | struct network_lsa *lsa = (struct network_lsa *) v->lsa; |
| 1009 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1010 | zlog_debug ("SPF Result: %d [N] %s/%d", i, inet_ntoa (v->lsa->id), |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 1011 | ip_masklen (lsa->mask)); |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 1012 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1013 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1014 | if (IS_DEBUG_OSPF_EVENT) |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 1015 | for (ALL_LIST_ELEMENTS_RO (v->parents, nnode, parent)) |
| 1016 | { |
| 1017 | zlog_debug (" nexthop %p %s %s", |
| 1018 | parent->nexthop, |
| 1019 | inet_ntoa (parent->nexthop->router), |
| 1020 | parent->nexthop->oi ? IF_NAME(parent->nexthop->oi) |
| 1021 | : "NULL"); |
| 1022 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1023 | |
| 1024 | i++; |
| 1025 | |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 1026 | for (ALL_LIST_ELEMENTS_RO (v->children, cnode, v)) |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1027 | ospf_spf_dump (v, i); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1028 | } |
| 1029 | |
| 1030 | /* Second stage of SPF calculation. */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 1031 | static void |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 1032 | ospf_spf_process_stubs (struct ospf_area *area, struct vertex *v, |
Paul Jakma | b3bc68e | 2008-09-04 13:52:07 +0100 | [diff] [blame] | 1033 | struct route_table *rt, |
| 1034 | int parent_is_root) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1035 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1036 | struct listnode *cnode, *cnnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1037 | struct vertex *child; |
| 1038 | |
| 1039 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1040 | zlog_debug ("ospf_process_stub():processing stubs for area %s", |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 1041 | inet_ntoa (area->area_id)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1042 | if (v->type == OSPF_VERTEX_ROUTER) |
| 1043 | { |
| 1044 | u_char *p; |
| 1045 | u_char *lim; |
| 1046 | struct router_lsa_link *l; |
| 1047 | struct router_lsa *rlsa; |
Joakim Tjernlund | 57c639f | 2012-07-07 17:06:12 +0200 | [diff] [blame] | 1048 | int lsa_pos = 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1049 | |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 1050 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1051 | zlog_debug ("ospf_process_stubs():processing router LSA, id: %s", |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 1052 | inet_ntoa (v->lsa->id)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1053 | rlsa = (struct router_lsa *) v->lsa; |
| 1054 | |
| 1055 | |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 1056 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1057 | zlog_debug ("ospf_process_stubs(): we have %d links to process", |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 1058 | ntohs (rlsa->links)); |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 1059 | p = ((u_char *) v->lsa) + OSPF_LSA_HEADER_SIZE + 4; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1060 | lim = ((u_char *) v->lsa) + ntohs (v->lsa->length); |
| 1061 | |
| 1062 | while (p < lim) |
| 1063 | { |
| 1064 | l = (struct router_lsa_link *) p; |
| 1065 | |
Denis Ovsienko | 05b7709 | 2011-08-23 11:36:27 +0400 | [diff] [blame] | 1066 | p += (OSPF_ROUTER_LSA_LINK_SIZE + |
| 1067 | (l->m[0].tos_count * OSPF_ROUTER_LSA_TOS_SIZE)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1068 | |
| 1069 | if (l->m[0].type == LSA_LINK_TYPE_STUB) |
Joakim Tjernlund | 57c639f | 2012-07-07 17:06:12 +0200 | [diff] [blame] | 1070 | ospf_intra_add_stub (rt, l, v, area, parent_is_root, lsa_pos); |
| 1071 | lsa_pos++; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1072 | } |
| 1073 | } |
| 1074 | |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 1075 | ospf_vertex_dump("ospf_process_stubs(): after examining links: ", v, 1, 1); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1076 | |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 1077 | for (ALL_LIST_ELEMENTS (v->children, cnode, cnnode, child)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1078 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1079 | if (CHECK_FLAG (child->flags, OSPF_VERTEX_PROCESSED)) |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 1080 | continue; |
Paul Jakma | b3bc68e | 2008-09-04 13:52:07 +0100 | [diff] [blame] | 1081 | |
| 1082 | /* the first level of routers connected to the root |
| 1083 | * should have 'parent_is_root' set, including those |
| 1084 | * connected via a network vertex. |
| 1085 | */ |
| 1086 | if (area->spf == v) |
| 1087 | parent_is_root = 1; |
| 1088 | else if (v->type == OSPF_VERTEX_ROUTER) |
| 1089 | parent_is_root = 0; |
| 1090 | |
| 1091 | ospf_spf_process_stubs (area, child, rt, parent_is_root); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1092 | |
| 1093 | SET_FLAG (child->flags, OSPF_VERTEX_PROCESSED); |
| 1094 | } |
| 1095 | } |
| 1096 | |
| 1097 | void |
| 1098 | ospf_rtrs_free (struct route_table *rtrs) |
| 1099 | { |
| 1100 | struct route_node *rn; |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 1101 | struct list *or_list; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1102 | struct ospf_route *or; |
| 1103 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1104 | |
| 1105 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1106 | zlog_debug ("Route: Router Routing Table free"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1107 | |
| 1108 | for (rn = route_top (rtrs); rn; rn = route_next (rn)) |
| 1109 | if ((or_list = rn->info) != NULL) |
| 1110 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1111 | for (ALL_LIST_ELEMENTS (or_list, node, nnode, or)) |
| 1112 | ospf_route_free (or); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1113 | |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 1114 | list_delete (or_list); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1115 | |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 1116 | /* Unlock the node. */ |
| 1117 | rn->info = NULL; |
| 1118 | route_unlock_node (rn); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1119 | } |
| 1120 | route_table_finish (rtrs); |
| 1121 | } |
| 1122 | |
Stephen Hemminger | 075e12f | 2011-12-06 23:54:17 +0400 | [diff] [blame] | 1123 | #if 0 |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 1124 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1125 | ospf_rtrs_print (struct route_table *rtrs) |
| 1126 | { |
| 1127 | struct route_node *rn; |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 1128 | struct list *or_list; |
| 1129 | struct listnode *ln; |
| 1130 | struct listnode *pnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1131 | struct ospf_route *or; |
| 1132 | struct ospf_path *path; |
| 1133 | char buf1[BUFSIZ]; |
| 1134 | char buf2[BUFSIZ]; |
| 1135 | |
| 1136 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1137 | zlog_debug ("ospf_rtrs_print() start"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1138 | |
| 1139 | for (rn = route_top (rtrs); rn; rn = route_next (rn)) |
| 1140 | if ((or_list = rn->info) != NULL) |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1141 | for (ALL_LIST_ELEMENTS_RO (or_list, ln, or)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1142 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1143 | switch (or->path_type) |
| 1144 | { |
| 1145 | case OSPF_PATH_INTRA_AREA: |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 1146 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1147 | zlog_debug ("%s [%d] area: %s", |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 1148 | inet_ntop (AF_INET, &or->id, buf1, BUFSIZ), |
| 1149 | or->cost, inet_ntop (AF_INET, &or->u.std.area_id, |
| 1150 | buf2, BUFSIZ)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1151 | break; |
| 1152 | case OSPF_PATH_INTER_AREA: |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 1153 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1154 | zlog_debug ("%s IA [%d] area: %s", |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 1155 | inet_ntop (AF_INET, &or->id, buf1, BUFSIZ), |
| 1156 | or->cost, inet_ntop (AF_INET, &or->u.std.area_id, |
| 1157 | buf2, BUFSIZ)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1158 | break; |
| 1159 | default: |
| 1160 | break; |
| 1161 | } |
| 1162 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1163 | for (ALL_LIST_ELEMENTS_RO (or->paths, pnode, path)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1164 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1165 | if (path->nexthop.s_addr == 0) |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 1166 | { |
| 1167 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1168 | zlog_debug (" directly attached to %s\r\n", |
Joakim Tjernlund | a8ba847 | 2009-07-27 12:42:34 +0200 | [diff] [blame] | 1169 | ifindex2ifname (path->ifindex)); |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 1170 | } |
| 1171 | else |
| 1172 | { |
| 1173 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1174 | zlog_debug (" via %s, %s\r\n", |
Joakim Tjernlund | a8ba847 | 2009-07-27 12:42:34 +0200 | [diff] [blame] | 1175 | inet_ntoa (path->nexthop), |
| 1176 | ifindex2ifname (path->ifindex)); |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 1177 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1178 | } |
| 1179 | } |
| 1180 | |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1181 | zlog_debug ("ospf_rtrs_print() end"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1182 | } |
Stephen Hemminger | 075e12f | 2011-12-06 23:54:17 +0400 | [diff] [blame] | 1183 | #endif |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1184 | |
| 1185 | /* Calculating the shortest-path tree for an area. */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 1186 | static void |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 1187 | ospf_spf_calculate (struct ospf_area *area, struct route_table *new_table, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1188 | struct route_table *new_rtrs) |
| 1189 | { |
hasso | 462f20d | 2005-02-23 11:29:02 +0000 | [diff] [blame] | 1190 | struct pqueue *candidate; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1191 | struct vertex *v; |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 1192 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1193 | if (IS_DEBUG_OSPF_EVENT) |
| 1194 | { |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1195 | zlog_debug ("ospf_spf_calculate: Start"); |
| 1196 | zlog_debug ("ospf_spf_calculate: running Dijkstra for area %s", |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 1197 | inet_ntoa (area->area_id)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1198 | } |
| 1199 | |
| 1200 | /* Check router-lsa-self. If self-router-lsa is not yet allocated, |
| 1201 | return this area's calculation. */ |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 1202 | if (!area->router_lsa_self) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1203 | { |
| 1204 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1205 | zlog_debug ("ospf_spf_calculate: " |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 1206 | "Skip area %s's calculation due to empty router_lsa_self", |
| 1207 | inet_ntoa (area->area_id)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1208 | return; |
| 1209 | } |
| 1210 | |
| 1211 | /* RFC2328 16.1. (1). */ |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 1212 | /* Initialize the algorithm's data structures. */ |
hasso | 462f20d | 2005-02-23 11:29:02 +0000 | [diff] [blame] | 1213 | |
| 1214 | /* This function scans all the LSA database and set the stat field to |
| 1215 | * LSA_SPF_NOT_EXPLORED. */ |
| 1216 | ospf_lsdb_clean_stat (area->lsdb); |
| 1217 | /* Create a new heap for the candidates. */ |
| 1218 | candidate = pqueue_create(); |
| 1219 | candidate->cmp = cmp; |
| 1220 | candidate->update = update_stat; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1221 | |
| 1222 | /* Initialize the shortest-path tree to only the root (which is the |
| 1223 | router doing the calculation). */ |
| 1224 | ospf_spf_init (area); |
| 1225 | v = area->spf; |
hasso | 462f20d | 2005-02-23 11:29:02 +0000 | [diff] [blame] | 1226 | /* Set LSA position to LSA_SPF_IN_SPFTREE. This vertex is the root of the |
| 1227 | * spanning tree. */ |
| 1228 | *(v->stat) = LSA_SPF_IN_SPFTREE; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1229 | |
| 1230 | /* Set Area A's TransitCapability to FALSE. */ |
| 1231 | area->transit = OSPF_TRANSIT_FALSE; |
| 1232 | area->shortcut_capability = 1; |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 1233 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1234 | for (;;) |
| 1235 | { |
| 1236 | /* RFC2328 16.1. (2). */ |
hasso | 462f20d | 2005-02-23 11:29:02 +0000 | [diff] [blame] | 1237 | ospf_spf_next (v, area, candidate); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1238 | |
| 1239 | /* RFC2328 16.1. (3). */ |
| 1240 | /* If at this step the candidate list is empty, the shortest- |
| 1241 | path tree (of transit vertices) has been completely built and |
| 1242 | this stage of the procedure terminates. */ |
hasso | 462f20d | 2005-02-23 11:29:02 +0000 | [diff] [blame] | 1243 | if (candidate->size == 0) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1244 | break; |
| 1245 | |
| 1246 | /* Otherwise, choose the vertex belonging to the candidate list |
| 1247 | that is closest to the root, and add it to the shortest-path |
| 1248 | tree (removing it from the candidate list in the |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 1249 | process). */ |
hasso | 462f20d | 2005-02-23 11:29:02 +0000 | [diff] [blame] | 1250 | /* Extract from the candidates the node with the lower key. */ |
| 1251 | v = (struct vertex *) pqueue_dequeue (candidate); |
| 1252 | /* Update stat field in vertex. */ |
| 1253 | *(v->stat) = LSA_SPF_IN_SPFTREE; |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 1254 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1255 | ospf_vertex_add_parent (v); |
| 1256 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1257 | /* RFC2328 16.1. (4). */ |
| 1258 | if (v->type == OSPF_VERTEX_ROUTER) |
| 1259 | ospf_intra_add_router (new_rtrs, v, area); |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 1260 | else |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1261 | ospf_intra_add_transit (new_table, v, area); |
| 1262 | |
| 1263 | /* RFC2328 16.1. (5). */ |
| 1264 | /* Iterate the algorithm by returning to Step 2. */ |
gdt | 630e480 | 2004-08-31 17:28:41 +0000 | [diff] [blame] | 1265 | |
| 1266 | } /* end loop until no more candidate vertices */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1267 | |
| 1268 | if (IS_DEBUG_OSPF_EVENT) |
| 1269 | { |
| 1270 | ospf_spf_dump (area->spf, 0); |
| 1271 | ospf_route_table_dump (new_table); |
| 1272 | } |
| 1273 | |
| 1274 | /* Second stage of SPF calculation procedure's */ |
Paul Jakma | b3bc68e | 2008-09-04 13:52:07 +0100 | [diff] [blame] | 1275 | ospf_spf_process_stubs (area, area->spf, new_table, 0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1276 | |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 1277 | /* Free candidate queue. */ |
hasso | 462f20d | 2005-02-23 11:29:02 +0000 | [diff] [blame] | 1278 | pqueue_delete (candidate); |
Dinesh G Dutt | 50f38b3 | 2014-09-30 12:53:28 -0700 | [diff] [blame^] | 1279 | |
paul | eb3da6d | 2005-10-18 04:20:33 +0000 | [diff] [blame] | 1280 | ospf_vertex_dump (__func__, area->spf, 0, 1); |
| 1281 | /* Free nexthop information, canonical versions of which are attached |
| 1282 | * the first level of router vertices attached to the root vertex, see |
| 1283 | * ospf_nexthop_calculation. |
| 1284 | */ |
| 1285 | ospf_canonical_nexthops_free (area->spf); |
Dinesh G Dutt | 50f38b3 | 2014-09-30 12:53:28 -0700 | [diff] [blame^] | 1286 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1287 | /* Increment SPF Calculation Counter. */ |
| 1288 | area->spf_calculation++; |
| 1289 | |
Paul Jakma | 2518efd | 2006-08-27 06:49:29 +0000 | [diff] [blame] | 1290 | quagga_gettime (QUAGGA_CLK_MONOTONIC, &area->ospf->ts_spf); |
Dinesh G Dutt | 50f38b3 | 2014-09-30 12:53:28 -0700 | [diff] [blame^] | 1291 | area->ts_spf = area->ospf->ts_spf; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1292 | |
| 1293 | if (IS_DEBUG_OSPF_EVENT) |
Paul Jakma | 9c27ef9 | 2006-05-04 07:32:57 +0000 | [diff] [blame] | 1294 | zlog_debug ("ospf_spf_calculate: Stop. %ld vertices", |
| 1295 | mtype_stats_alloc(MTYPE_OSPF_VERTEX)); |
Dinesh G Dutt | 50f38b3 | 2014-09-30 12:53:28 -0700 | [diff] [blame^] | 1296 | |
| 1297 | /* Free SPF vertices, but not the list. List has ospf_vertex_free |
| 1298 | * as deconstructor. |
| 1299 | */ |
| 1300 | list_delete_all_node (&vertex_list); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1301 | } |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 1302 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1303 | /* Timer for SPF calculation. */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 1304 | static int |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1305 | ospf_spf_calculate_timer (struct thread *thread) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1306 | { |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1307 | struct ospf *ospf = THREAD_ARG (thread); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1308 | struct route_table *new_table, *new_rtrs; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1309 | struct ospf_area *area; |
| 1310 | struct listnode *node, *nnode; |
Dinesh G Dutt | 50f38b3 | 2014-09-30 12:53:28 -0700 | [diff] [blame^] | 1311 | struct timeval start_time, stop_time, spf_start_time; |
| 1312 | int areas_processed = 0; |
| 1313 | unsigned long ia_time, prune_time, rt_time; |
| 1314 | unsigned long abr_time, total_spf_time, spf_time; |
| 1315 | char rbuf[32]; /* reason_buf */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1316 | |
| 1317 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1318 | zlog_debug ("SPF: Timer (SPF calculation expire)"); |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 1319 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1320 | ospf->t_spf_calc = NULL; |
| 1321 | |
Dinesh G Dutt | 50f38b3 | 2014-09-30 12:53:28 -0700 | [diff] [blame^] | 1322 | quagga_gettime (QUAGGA_CLK_MONOTONIC, &spf_start_time); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1323 | /* Allocate new table tree. */ |
| 1324 | new_table = route_table_init (); |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 1325 | new_rtrs = route_table_init (); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1326 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1327 | ospf_vl_unapprove (ospf); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1328 | |
| 1329 | /* Calculate SPF for each area. */ |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1330 | for (ALL_LIST_ELEMENTS (ospf->areas, node, nnode, area)) |
Paul Jakma | 9c27ef9 | 2006-05-04 07:32:57 +0000 | [diff] [blame] | 1331 | { |
| 1332 | /* Do backbone last, so as to first discover intra-area paths |
| 1333 | * for any back-bone virtual-links |
| 1334 | */ |
| 1335 | if (ospf->backbone && ospf->backbone == area) |
| 1336 | continue; |
Dinesh G Dutt | 50f38b3 | 2014-09-30 12:53:28 -0700 | [diff] [blame^] | 1337 | |
Paul Jakma | 9c27ef9 | 2006-05-04 07:32:57 +0000 | [diff] [blame] | 1338 | ospf_spf_calculate (area, new_table, new_rtrs); |
Dinesh G Dutt | 50f38b3 | 2014-09-30 12:53:28 -0700 | [diff] [blame^] | 1339 | areas_processed++; |
Paul Jakma | 9c27ef9 | 2006-05-04 07:32:57 +0000 | [diff] [blame] | 1340 | } |
Dinesh G Dutt | 50f38b3 | 2014-09-30 12:53:28 -0700 | [diff] [blame^] | 1341 | |
Paul Jakma | 9c27ef9 | 2006-05-04 07:32:57 +0000 | [diff] [blame] | 1342 | /* SPF for backbone, if required */ |
| 1343 | if (ospf->backbone) |
Dinesh G Dutt | 50f38b3 | 2014-09-30 12:53:28 -0700 | [diff] [blame^] | 1344 | { |
| 1345 | ospf_spf_calculate (ospf->backbone, new_table, new_rtrs); |
| 1346 | areas_processed++; |
| 1347 | } |
| 1348 | |
| 1349 | quagga_gettime (QUAGGA_CLK_MONOTONIC, &stop_time); |
| 1350 | spf_time = timeval_elapsed (stop_time, spf_start_time); |
| 1351 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1352 | ospf_vl_shut_unapproved (ospf); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1353 | |
Dinesh G Dutt | 50f38b3 | 2014-09-30 12:53:28 -0700 | [diff] [blame^] | 1354 | start_time = stop_time; /* saving a call */ |
| 1355 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1356 | ospf_ia_routing (ospf, new_table, new_rtrs); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1357 | |
Dinesh G Dutt | 50f38b3 | 2014-09-30 12:53:28 -0700 | [diff] [blame^] | 1358 | quagga_gettime (QUAGGA_CLK_MONOTONIC, &stop_time); |
| 1359 | ia_time = timeval_elapsed (stop_time, start_time); |
| 1360 | |
| 1361 | quagga_gettime (QUAGGA_CLK_MONOTONIC, &start_time); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1362 | ospf_prune_unreachable_networks (new_table); |
| 1363 | ospf_prune_unreachable_routers (new_rtrs); |
| 1364 | |
Dinesh G Dutt | 50f38b3 | 2014-09-30 12:53:28 -0700 | [diff] [blame^] | 1365 | quagga_gettime (QUAGGA_CLK_MONOTONIC, &stop_time); |
| 1366 | prune_time = timeval_elapsed (stop_time, start_time); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1367 | /* AS-external-LSA calculation should not be performed here. */ |
| 1368 | |
| 1369 | /* If new Router Route is installed, |
| 1370 | then schedule re-calculate External routes. */ |
| 1371 | if (1) |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1372 | ospf_ase_calculate_schedule (ospf); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1373 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1374 | ospf_ase_calculate_timer_add (ospf); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1375 | |
Dinesh G Dutt | 50f38b3 | 2014-09-30 12:53:28 -0700 | [diff] [blame^] | 1376 | quagga_gettime (QUAGGA_CLK_MONOTONIC, &start_time); |
| 1377 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1378 | /* Update routing table. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1379 | ospf_route_install (ospf, new_table); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1380 | |
Dinesh G Dutt | 50f38b3 | 2014-09-30 12:53:28 -0700 | [diff] [blame^] | 1381 | quagga_gettime (QUAGGA_CLK_MONOTONIC, &stop_time); |
| 1382 | rt_time = timeval_elapsed (stop_time, start_time); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1383 | /* Update ABR/ASBR routing table */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1384 | if (ospf->old_rtrs) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1385 | { |
| 1386 | /* old_rtrs's node holds linked list of ospf_route. --kunihiro. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1387 | /* ospf_route_delete (ospf->old_rtrs); */ |
| 1388 | ospf_rtrs_free (ospf->old_rtrs); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1389 | } |
| 1390 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1391 | ospf->old_rtrs = ospf->new_rtrs; |
| 1392 | ospf->new_rtrs = new_rtrs; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1393 | |
Dinesh G Dutt | 50f38b3 | 2014-09-30 12:53:28 -0700 | [diff] [blame^] | 1394 | quagga_gettime (QUAGGA_CLK_MONOTONIC, &start_time); |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 1395 | if (IS_OSPF_ABR (ospf)) |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1396 | ospf_abr_task (ospf); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1397 | |
Dinesh G Dutt | 50f38b3 | 2014-09-30 12:53:28 -0700 | [diff] [blame^] | 1398 | quagga_gettime (QUAGGA_CLK_MONOTONIC, &stop_time); |
| 1399 | abr_time = timeval_elapsed (stop_time, start_time); |
| 1400 | |
| 1401 | quagga_gettime (QUAGGA_CLK_MONOTONIC, &stop_time); |
| 1402 | total_spf_time = timeval_elapsed (stop_time, spf_start_time); |
| 1403 | ospf->ts_spf_duration.tv_sec = total_spf_time/1000000; |
| 1404 | ospf->ts_spf_duration.tv_usec = total_spf_time % 1000000; |
| 1405 | |
| 1406 | ospf_get_spf_reason_str (rbuf); |
| 1407 | |
| 1408 | if (IS_OSPF_ABR (ospf)) |
| 1409 | zlog_info ("SPF Processing Time(usecs): # Areas: %d, SPF Time: %ld, InterArea: %ld, Prune: %ld, RouteInstall: %ld, ABR: %ld, Total: %ld, Reason: %s\n", |
| 1410 | areas_processed, spf_time, ia_time, prune_time, rt_time, abr_time, total_spf_time, rbuf); |
| 1411 | else |
| 1412 | zlog_info ("SPF Processing Time(usecs): SPF Time: %ld, InterArea: %ld, Prune: %ld, RouteInstall: %ld, Total: %ld, Reason: %s\n", |
| 1413 | spf_time, ia_time, prune_time, rt_time, total_spf_time, rbuf); |
| 1414 | |
| 1415 | ospf_clear_spf_reason_flags (); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1416 | |
| 1417 | return 0; |
| 1418 | } |
| 1419 | |
| 1420 | /* Add schedule for SPF calculation. To avoid frequenst SPF calc, we |
| 1421 | set timer for SPF calc. */ |
| 1422 | void |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1423 | ospf_spf_calculate_schedule (struct ospf *ospf) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1424 | { |
paul | d24f6e2 | 2005-10-21 09:23:12 +0000 | [diff] [blame] | 1425 | unsigned long delay, elapsed, ht; |
| 1426 | struct timeval result; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1427 | |
| 1428 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1429 | zlog_debug ("SPF: calculation timer scheduled"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1430 | |
| 1431 | /* OSPF instance does not exist. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1432 | if (ospf == NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1433 | return; |
paul | d24f6e2 | 2005-10-21 09:23:12 +0000 | [diff] [blame] | 1434 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1435 | /* SPF calculation timer is already scheduled. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1436 | if (ospf->t_spf_calc) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1437 | { |
| 1438 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1439 | zlog_debug ("SPF: calculation timer is already scheduled: %p", |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 1440 | ospf->t_spf_calc); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1441 | return; |
| 1442 | } |
paul | d24f6e2 | 2005-10-21 09:23:12 +0000 | [diff] [blame] | 1443 | |
| 1444 | /* XXX Monotic timers: we only care about relative time here. */ |
Paul Jakma | 2518efd | 2006-08-27 06:49:29 +0000 | [diff] [blame] | 1445 | result = tv_sub (recent_relative_time (), ospf->ts_spf); |
paul | d24f6e2 | 2005-10-21 09:23:12 +0000 | [diff] [blame] | 1446 | |
| 1447 | elapsed = (result.tv_sec * 1000) + (result.tv_usec / 1000); |
| 1448 | ht = ospf->spf_holdtime * ospf->spf_hold_multiplier; |
| 1449 | |
| 1450 | if (ht > ospf->spf_max_holdtime) |
| 1451 | ht = ospf->spf_max_holdtime; |
| 1452 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1453 | /* Get SPF calculation delay time. */ |
paul | d24f6e2 | 2005-10-21 09:23:12 +0000 | [diff] [blame] | 1454 | if (elapsed < ht) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1455 | { |
paul | d24f6e2 | 2005-10-21 09:23:12 +0000 | [diff] [blame] | 1456 | /* Got an event within the hold time of last SPF. We need to |
| 1457 | * increase the hold_multiplier, if it's not already at/past |
| 1458 | * maximum value, and wasn't already increased.. |
| 1459 | */ |
| 1460 | if (ht < ospf->spf_max_holdtime) |
| 1461 | ospf->spf_hold_multiplier++; |
| 1462 | |
| 1463 | /* always honour the SPF initial delay */ |
| 1464 | if ( (ht - elapsed) < ospf->spf_delay) |
paul | 0c0f9cd | 2003-06-06 23:27:04 +0000 | [diff] [blame] | 1465 | delay = ospf->spf_delay; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1466 | else |
paul | d24f6e2 | 2005-10-21 09:23:12 +0000 | [diff] [blame] | 1467 | delay = ht - elapsed; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1468 | } |
| 1469 | else |
paul | d24f6e2 | 2005-10-21 09:23:12 +0000 | [diff] [blame] | 1470 | { |
| 1471 | /* Event is past required hold-time of last SPF */ |
| 1472 | delay = ospf->spf_delay; |
| 1473 | ospf->spf_hold_multiplier = 1; |
| 1474 | } |
| 1475 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1476 | if (IS_DEBUG_OSPF_EVENT) |
paul | d24f6e2 | 2005-10-21 09:23:12 +0000 | [diff] [blame] | 1477 | zlog_debug ("SPF: calculation timer delay = %ld", delay); |
| 1478 | |
Dinesh G Dutt | 50f38b3 | 2014-09-30 12:53:28 -0700 | [diff] [blame^] | 1479 | zlog_info ("SPF: Scheduled in %ld msec", delay); |
| 1480 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1481 | ospf->t_spf_calc = |
paul | d24f6e2 | 2005-10-21 09:23:12 +0000 | [diff] [blame] | 1482 | thread_add_timer_msec (master, ospf_spf_calculate_timer, ospf, delay); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1483 | } |