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