blob: e34dd2ee80a0e75735c35a7a60519981116559cf [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* OSPF SPF calculation.
2 Copyright (C) 1999, 2000 Kunihiro Ishiguro, Toshiaki Takada
3
4This file is part of GNU Zebra.
5
6GNU Zebra is free software; you can redistribute it and/or modify it
7under the terms of the GNU General Public License as published by the
8Free Software Foundation; either version 2, or (at your option) any
9later version.
10
11GNU Zebra is distributed in the hope that it will be useful, but
12WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Zebra; see the file COPYING. If not, write to the Free
18Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
1902111-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 () */
hasso462f20d2005-02-23 11:29:02 +000032#include "pqueue.h"
paul718e3742002-12-13 20:15:29 +000033
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
49#define DEBUG
50
hasso462f20d2005-02-23 11:29:02 +000051/* Heap related functions, for the managment of the candidates, to
52 * be used with pqueue. */
53static int
54cmp (void * node1 , void * node2)
55{
56 struct vertex * v1 = (struct vertex *) node1;
57 struct vertex * v2 = (struct vertex *) node2;
58 if (v1 != NULL && v2 != NULL )
59 return (v1->distance - v2->distance);
60 else
61 return 0;
62}
63
64static void
65update_stat (void * node , int position)
66{
67 struct vertex * v = (struct vertex *) node;
68 /* Set the status of the vertex, when its position changes. */
69 *(v->stat) = position;
70}
71/* End of the heap related functions. */
72
paul4dadc292005-05-06 21:37:42 +000073static struct vertex_nexthop *
paul718e3742002-12-13 20:15:29 +000074vertex_nexthop_new (struct vertex *parent)
75{
76 struct vertex_nexthop *new;
77
78 new = XCALLOC (MTYPE_OSPF_NEXTHOP, sizeof (struct vertex_nexthop));
79 new->parent = parent;
80
81 return new;
82}
83
paul4dadc292005-05-06 21:37:42 +000084static void
paul718e3742002-12-13 20:15:29 +000085vertex_nexthop_free (struct vertex_nexthop *nh)
86{
87 XFREE (MTYPE_OSPF_NEXTHOP, nh);
88}
89
paul4dadc292005-05-06 21:37:42 +000090static struct vertex_nexthop *
paul718e3742002-12-13 20:15:29 +000091vertex_nexthop_dup (struct vertex_nexthop *nh)
92{
93 struct vertex_nexthop *new;
94
95 new = vertex_nexthop_new (nh->parent);
96
97 new->oi = nh->oi;
98 new->router = nh->router;
99
100 return new;
101}
paul718e3742002-12-13 20:15:29 +0000102
paul0c0f9cd2003-06-06 23:27:04 +0000103
paul4dadc292005-05-06 21:37:42 +0000104static struct vertex *
paul718e3742002-12-13 20:15:29 +0000105ospf_vertex_new (struct ospf_lsa *lsa)
106{
107 struct vertex *new;
108
109 new = XMALLOC (MTYPE_OSPF_VERTEX, sizeof (struct vertex));
110 memset (new, 0, sizeof (struct vertex));
111
112 new->flags = 0;
hasso462f20d2005-02-23 11:29:02 +0000113 new->stat = &(lsa->stat);
paul718e3742002-12-13 20:15:29 +0000114 new->type = lsa->data->type;
115 new->id = lsa->data->id;
116 new->lsa = lsa->data;
117 new->distance = 0;
118 new->child = list_new ();
119 new->nexthop = list_new ();
pauld355bfa2004-04-08 07:43:45 +0000120 new->backlink = -1;
paul718e3742002-12-13 20:15:29 +0000121
122 return new;
123}
124
paul4dadc292005-05-06 21:37:42 +0000125static void
paul718e3742002-12-13 20:15:29 +0000126ospf_vertex_free (struct vertex *v)
127{
paul1eb8ef22005-04-07 07:30:20 +0000128 struct listnode *node, *nnode;
129 struct vertex_nexthop *nh;
paul718e3742002-12-13 20:15:29 +0000130
131 list_delete (v->child);
132
133 if (listcount (v->nexthop) > 0)
paul1eb8ef22005-04-07 07:30:20 +0000134 for (ALL_LIST_ELEMENTS (v->nexthop, node, nnode, nh))
135 vertex_nexthop_free (nh);
paul718e3742002-12-13 20:15:29 +0000136
137 list_delete (v->nexthop);
138
139 XFREE (MTYPE_OSPF_VERTEX, v);
140}
141
paul4dadc292005-05-06 21:37:42 +0000142static void
hassoeb1ce602004-10-08 08:17:22 +0000143ospf_vertex_dump(const char *msg, struct vertex *v,
gdt630e4802004-08-31 17:28:41 +0000144 int print_nexthops, int print_children)
145{
146 if ( ! IS_DEBUG_OSPF_EVENT)
147 return;
148
ajs2a42e282004-12-08 18:43:03 +0000149 zlog_debug("%s %s vertex %s distance %u backlink %d flags %u",
gdt630e4802004-08-31 17:28:41 +0000150 msg,
151 v->type == OSPF_VERTEX_ROUTER ? "Router" : "Network",
152 inet_ntoa(v->lsa->id),
153 v->distance,
154 v->backlink,
155 (unsigned int)v->flags);
156
157 if (print_nexthops)
158 {
paul1eb8ef22005-04-07 07:30:20 +0000159 struct listnode *node;
160 struct vertex_nexthop *nexthop;
161
162 for (ALL_LIST_ELEMENTS_RO (v->nexthop, node, nexthop))
gdt630e4802004-08-31 17:28:41 +0000163 {
164 char buf1[BUFSIZ];
165 char buf2[BUFSIZ];
gdt630e4802004-08-31 17:28:41 +0000166
gdt630e4802004-08-31 17:28:41 +0000167 if (nexthop)
168 {
ajs2a42e282004-12-08 18:43:03 +0000169 zlog_debug (" nexthop %s interface %s parent %s",
gdt630e4802004-08-31 17:28:41 +0000170 inet_ntop(AF_INET, &nexthop->router, buf1, BUFSIZ),
171 nexthop->oi ? IF_NAME(nexthop->oi) : "NULL",
172 nexthop->parent ? inet_ntop(AF_INET,
173 &nexthop->parent->id,
174 buf2, BUFSIZ)
175 : "NULL");
176 }
177 }
178 }
179
180 if (print_children)
181 {
hasso52dc7ee2004-09-23 19:18:23 +0000182 struct listnode *cnode;
paul1eb8ef22005-04-07 07:30:20 +0000183 struct vertex *cv;
184
185 for (ALL_LIST_ELEMENTS_RO (v->child, cnode, cv))
186 ospf_vertex_dump(" child:", cv, 0, 0);
gdt630e4802004-08-31 17:28:41 +0000187 }
188}
189
190
191/* Add a vertex to the list of children in each of its parents. */
paul4dadc292005-05-06 21:37:42 +0000192static void
paul718e3742002-12-13 20:15:29 +0000193ospf_vertex_add_parent (struct vertex *v)
194{
195 struct vertex_nexthop *nh;
hasso52dc7ee2004-09-23 19:18:23 +0000196 struct listnode *node;
paul718e3742002-12-13 20:15:29 +0000197
paul1eb8ef22005-04-07 07:30:20 +0000198 for (ALL_LIST_ELEMENTS_RO (v->nexthop, node, nh))
paul718e3742002-12-13 20:15:29 +0000199 {
paul718e3742002-12-13 20:15:29 +0000200 /* No need to add two links from the same parent. */
201 if (listnode_lookup (nh->parent->child, v) == NULL)
paul0c0f9cd2003-06-06 23:27:04 +0000202 listnode_add (nh->parent->child, v);
paul718e3742002-12-13 20:15:29 +0000203 }
204}
205
paul4dadc292005-05-06 21:37:42 +0000206static void
paul718e3742002-12-13 20:15:29 +0000207ospf_spf_init (struct ospf_area *area)
208{
209 struct vertex *v;
210
211 /* Create root node. */
212 v = ospf_vertex_new (area->router_lsa_self);
213
214 area->spf = v;
215
216 /* Reset ABR and ASBR router counts. */
217 area->abr_count = 0;
218 area->asbr_count = 0;
219}
220
pauld355bfa2004-04-08 07:43:45 +0000221/* return index of link back to V from W, or -1 if no link found */
paul4dadc292005-05-06 21:37:42 +0000222static int
paul718e3742002-12-13 20:15:29 +0000223ospf_lsa_has_link (struct lsa_header *w, struct lsa_header *v)
224{
hassoeb1ce602004-10-08 08:17:22 +0000225 unsigned int i, length;
paul718e3742002-12-13 20:15:29 +0000226 struct router_lsa *rl;
227 struct network_lsa *nl;
228
229 /* In case of W is Network LSA. */
230 if (w->type == OSPF_NETWORK_LSA)
231 {
232 if (v->type == OSPF_NETWORK_LSA)
pauld355bfa2004-04-08 07:43:45 +0000233 return -1;
paul718e3742002-12-13 20:15:29 +0000234
235 nl = (struct network_lsa *) w;
236 length = (ntohs (w->length) - OSPF_LSA_HEADER_SIZE - 4) / 4;
paul0c0f9cd2003-06-06 23:27:04 +0000237
paul718e3742002-12-13 20:15:29 +0000238 for (i = 0; i < length; i++)
239 if (IPV4_ADDR_SAME (&nl->routers[i], &v->id))
pauld355bfa2004-04-08 07:43:45 +0000240 return i;
241 return -1;
paul718e3742002-12-13 20:15:29 +0000242 }
243
244 /* In case of W is Router LSA. */
245 if (w->type == OSPF_ROUTER_LSA)
246 {
247 rl = (struct router_lsa *) w;
248
249 length = ntohs (w->length);
250
251 for (i = 0;
paul0c0f9cd2003-06-06 23:27:04 +0000252 i < ntohs (rl->links) && length >= sizeof (struct router_lsa);
253 i++, length -= 12)
paul718e3742002-12-13 20:15:29 +0000254 {
255 switch (rl->link[i].type)
256 {
257 case LSA_LINK_TYPE_POINTOPOINT:
258 case LSA_LINK_TYPE_VIRTUALLINK:
259 /* Router LSA ID. */
260 if (v->type == OSPF_ROUTER_LSA &&
261 IPV4_ADDR_SAME (&rl->link[i].link_id, &v->id))
262 {
pauld355bfa2004-04-08 07:43:45 +0000263 return i;
paul718e3742002-12-13 20:15:29 +0000264 }
265 break;
266 case LSA_LINK_TYPE_TRANSIT:
267 /* Network LSA ID. */
268 if (v->type == OSPF_NETWORK_LSA &&
269 IPV4_ADDR_SAME (&rl->link[i].link_id, &v->id))
270 {
pauld355bfa2004-04-08 07:43:45 +0000271 return i;
paul0c0f9cd2003-06-06 23:27:04 +0000272 }
paul718e3742002-12-13 20:15:29 +0000273 break;
274 case LSA_LINK_TYPE_STUB:
275 /* Not take into count? */
276 continue;
277 default:
278 break;
279 }
280 }
281 }
pauld355bfa2004-04-08 07:43:45 +0000282 return -1;
paul718e3742002-12-13 20:15:29 +0000283}
284
285/* Add the nexthop to the list, only if it is unique.
286 * If it's not unique, free the nexthop entry.
287 */
paul4dadc292005-05-06 21:37:42 +0000288static void
hasso52dc7ee2004-09-23 19:18:23 +0000289ospf_nexthop_add_unique (struct vertex_nexthop *new, struct list *nexthop)
paul718e3742002-12-13 20:15:29 +0000290{
291 struct vertex_nexthop *nh;
hasso52dc7ee2004-09-23 19:18:23 +0000292 struct listnode *node;
paul718e3742002-12-13 20:15:29 +0000293 int match;
294
295 match = 0;
paul718e3742002-12-13 20:15:29 +0000296
paul1eb8ef22005-04-07 07:30:20 +0000297 for (ALL_LIST_ELEMENTS_RO (nexthop, node, nh))
298 {
paul718e3742002-12-13 20:15:29 +0000299 /* Compare the two entries. */
300 /* XXX
301 * Comparing the parent preserves the shortest path tree
302 * structure even when the nexthops are identical.
303 */
304 if (nh->oi == new->oi &&
paul0c0f9cd2003-06-06 23:27:04 +0000305 IPV4_ADDR_SAME (&nh->router, &new->router) &&
306 nh->parent == new->parent)
307 {
308 match = 1;
309 break;
310 }
paul718e3742002-12-13 20:15:29 +0000311 }
312
313 if (!match)
314 listnode_add (nexthop, new);
315 else
316 vertex_nexthop_free (new);
317}
318
319/* Merge entries in list b into list a. */
paul4dadc292005-05-06 21:37:42 +0000320static void
hasso52dc7ee2004-09-23 19:18:23 +0000321ospf_nexthop_merge (struct list *a, struct list *b)
paul718e3742002-12-13 20:15:29 +0000322{
paul1eb8ef22005-04-07 07:30:20 +0000323 struct listnode *node, *nnode;
324 struct vertex_nexthop *nh;
paul718e3742002-12-13 20:15:29 +0000325
paul1eb8ef22005-04-07 07:30:20 +0000326 for (ALL_LIST_ELEMENTS (b, node, nnode, nh))
327 ospf_nexthop_add_unique (nh, a);
paul718e3742002-12-13 20:15:29 +0000328}
329
330#define ROUTER_LSA_MIN_SIZE 12
331#define ROUTER_LSA_TOS_SIZE 4
332
gdt630e4802004-08-31 17:28:41 +0000333/* Find the next link after prev_link from v to w. If prev_link is
334 * NULL, return the first link from v to w. Ignore stub and virtual links;
335 * these link types will never be returned.
336 */
paul4dadc292005-05-06 21:37:42 +0000337static struct router_lsa_link *
paul718e3742002-12-13 20:15:29 +0000338ospf_get_next_link (struct vertex *v, struct vertex *w,
paul0c0f9cd2003-06-06 23:27:04 +0000339 struct router_lsa_link *prev_link)
paul718e3742002-12-13 20:15:29 +0000340{
341 u_char *p;
342 u_char *lim;
343 struct router_lsa_link *l;
344
345 if (prev_link == NULL)
gdt630e4802004-08-31 17:28:41 +0000346 p = ((u_char *) v->lsa) + OSPF_LSA_HEADER_SIZE + 4;
paul718e3742002-12-13 20:15:29 +0000347 else
348 {
paul0c0f9cd2003-06-06 23:27:04 +0000349 p = (u_char *) prev_link;
paul718e3742002-12-13 20:15:29 +0000350 p += (ROUTER_LSA_MIN_SIZE +
351 (prev_link->m[0].tos_count * ROUTER_LSA_TOS_SIZE));
352 }
paul0c0f9cd2003-06-06 23:27:04 +0000353
paul718e3742002-12-13 20:15:29 +0000354 lim = ((u_char *) v->lsa) + ntohs (v->lsa->length);
355
356 while (p < lim)
357 {
358 l = (struct router_lsa_link *) p;
359
paul0c0f9cd2003-06-06 23:27:04 +0000360 p += (ROUTER_LSA_MIN_SIZE + (l->m[0].tos_count * ROUTER_LSA_TOS_SIZE));
paul718e3742002-12-13 20:15:29 +0000361
362 if (l->m[0].type == LSA_LINK_TYPE_STUB)
363 continue;
364
365 /* Defer NH calculation via VLs until summaries from
366 transit areas area confidered */
367
368 if (l->m[0].type == LSA_LINK_TYPE_VIRTUALLINK)
paul0c0f9cd2003-06-06 23:27:04 +0000369 continue;
paul718e3742002-12-13 20:15:29 +0000370
371 if (IPV4_ADDR_SAME (&l->link_id, &w->id))
paul0c0f9cd2003-06-06 23:27:04 +0000372 return l;
paul718e3742002-12-13 20:15:29 +0000373 }
374
375 return NULL;
376}
377
paul75ee0b82004-08-05 09:10:31 +0000378/*
379 * Consider supplied next-hop for inclusion to the supplied list of
380 * equal-cost next-hops, adjust list as neccessary.
381 *
382 * (Discussed on GNU Zebra list 27 May 2003, [zebra 19184])
383 *
384 * Note that below is a bit of a hack, and limits ECMP to paths that go to
385 * same nexthop. Where as paths via inequal output_cost interfaces could
386 * still quite easily be ECMP due to remote cost differences.
387 *
388 * TODO: It really should be done by way of recording currently valid
389 * backlinks and determining the appropriate nexthops from the list of
390 * backlinks, or even simpler, just flushing nexthop list if we find a lower
391 * cost path to a candidate vertex in SPF, maybe.
paulbf9392c2003-06-06 23:23:36 +0000392 */
paul4dadc292005-05-06 21:37:42 +0000393static void
paul0c0f9cd2003-06-06 23:27:04 +0000394ospf_spf_consider_nexthop (struct list *nexthops,
395 struct vertex_nexthop *newhop)
paulbf9392c2003-06-06 23:23:36 +0000396{
paulbf9392c2003-06-06 23:23:36 +0000397 struct vertex_nexthop *hop;
paul75ee0b82004-08-05 09:10:31 +0000398 struct listnode *ln, *nn;
paul0c0f9cd2003-06-06 23:27:04 +0000399
paul75ee0b82004-08-05 09:10:31 +0000400 /* nexthop list should contain only the set of nexthops that have the lowest
401 * equal cost
402 */
403 if (nexthops->head != NULL)
404 {
paul1eb8ef22005-04-07 07:30:20 +0000405 hop = listgetdata (nexthops->head);
paul75ee0b82004-08-05 09:10:31 +0000406
407 /* weed out hops with higher cost than the newhop */
408 if (hop->oi->output_cost > newhop->oi->output_cost)
409 {
410 /* delete the existing nexthops */
paul1eb8ef22005-04-07 07:30:20 +0000411 for (ALL_LIST_ELEMENTS (nexthops, ln, nn, hop))
paul75ee0b82004-08-05 09:10:31 +0000412 {
paul75ee0b82004-08-05 09:10:31 +0000413 listnode_delete (nexthops, hop);
414 vertex_nexthop_free (hop);
415 }
416 }
417 else if (hop->oi->output_cost < newhop->oi->output_cost)
paul0c0f9cd2003-06-06 23:27:04 +0000418 return;
paul75ee0b82004-08-05 09:10:31 +0000419 }
paul0c0f9cd2003-06-06 23:27:04 +0000420
paulbf9392c2003-06-06 23:23:36 +0000421 /* new hop is <= existing hops, add it */
paul0c0f9cd2003-06-06 23:27:04 +0000422 listnode_add (nexthops, newhop);
paulbf9392c2003-06-06 23:23:36 +0000423
424 return;
425}
426
gdt630e4802004-08-31 17:28:41 +0000427/* 16.1.1. Calculate nexthop from root through V (parent) to
428 * vertex W (destination).
429 */
paul4dadc292005-05-06 21:37:42 +0000430static void
paul718e3742002-12-13 20:15:29 +0000431ospf_nexthop_calculation (struct ospf_area *area,
432 struct vertex *v, struct vertex *w)
433{
paul1eb8ef22005-04-07 07:30:20 +0000434 struct listnode *node, *nnode;
paul718e3742002-12-13 20:15:29 +0000435 struct vertex_nexthop *nh, *x;
436 struct ospf_interface *oi = NULL;
437 struct router_lsa_link *l = NULL;
paul0c0f9cd2003-06-06 23:27:04 +0000438
439
paul718e3742002-12-13 20:15:29 +0000440 if (IS_DEBUG_OSPF_EVENT)
gdt630e4802004-08-31 17:28:41 +0000441 {
ajs2a42e282004-12-08 18:43:03 +0000442 zlog_debug ("ospf_nexthop_calculation(): Start");
gdt630e4802004-08-31 17:28:41 +0000443 ospf_vertex_dump("V (parent):", v, 1, 1);
444 ospf_vertex_dump("W (dest) :", w, 1, 1);
445 }
paul718e3742002-12-13 20:15:29 +0000446
paul718e3742002-12-13 20:15:29 +0000447 if (v == area->spf)
448 {
gdt630e4802004-08-31 17:28:41 +0000449 /* 16.1.1 para 4. In the first case, the parent vertex (V) is the
450 root (the calculating router itself). This means that the
451 destination is either a directly connected network or directly
452 connected router. The outgoing interface in this case is simply
453 the OSPF interface connecting to the destination network/router.
454 */
455
paul718e3742002-12-13 20:15:29 +0000456 if (w->type == OSPF_VERTEX_ROUTER)
paul0c0f9cd2003-06-06 23:27:04 +0000457 {
458 while ((l = ospf_get_next_link (v, w, l)))
459 {
gdt630e4802004-08-31 17:28:41 +0000460 /* l is a link from v to w
461 * l2 will be link from w to v
462 */
paul0c0f9cd2003-06-06 23:27:04 +0000463 struct router_lsa_link *l2 = NULL;
464
gdt630e4802004-08-31 17:28:41 +0000465 if (IS_DEBUG_OSPF_EVENT)
466 {
467 char buf1[BUFSIZ];
paul1eb8ef22005-04-07 07:30:20 +0000468 char buf2[BUFSIZ];
469
ajs2a42e282004-12-08 18:43:03 +0000470 zlog_debug("ospf_nexthop_calculation(): considering link "
gdt630e4802004-08-31 17:28:41 +0000471 "type %d link_id %s link_data %s",
472 l->m[0].type,
473 inet_ntop (AF_INET, &l->link_id, buf1, BUFSIZ),
paul1eb8ef22005-04-07 07:30:20 +0000474 inet_ntop (AF_INET, &l->link_data, buf2, BUFSIZ));
gdt630e4802004-08-31 17:28:41 +0000475 }
476
paul0c0f9cd2003-06-06 23:27:04 +0000477 if (l->m[0].type == LSA_LINK_TYPE_POINTOPOINT)
478 {
gdt630e4802004-08-31 17:28:41 +0000479 /* If the destination is a router which connects to
480 the calculating router via a Point-to-MultiPoint
481 network, the destination's next hop IP address(es)
482 can be determined by examining the destination's
483 router-LSA: each link pointing back to the
484 calculating router and having a Link Data field
485 belonging to the Point-to-MultiPoint network
486 provides an IP address of the next hop router.
487
488 At this point l is a link from V to W, and V is the
489 root ("us"). Find the local interface associated
490 with l (its address is in l->link_data). If it
491 is a point-to-multipoint interface, then look through
492 the links in the opposite direction (W to V). If
493 any of them have an address that lands within the
494 subnet declared by the PtMP link, then that link
495 is a constituent of the PtMP link, and its address is
496 a nexthop address for V.
497 */
paul68980082003-03-25 05:07:42 +0000498 oi = ospf_if_is_configured (area->ospf, &l->link_data);
paul7afa08d2002-12-13 20:59:45 +0000499 if (oi && oi->type == OSPF_IFTYPE_POINTOMULTIPOINT)
paul0c0f9cd2003-06-06 23:27:04 +0000500 {
501 struct prefix_ipv4 la;
gdt630e4802004-08-31 17:28:41 +0000502
503 la.family = AF_INET;
paul0c0f9cd2003-06-06 23:27:04 +0000504 la.prefixlen = oi->address->prefixlen;
gdt630e4802004-08-31 17:28:41 +0000505
506 /* V links to W on PtMP interface
507 - find the interface address on W */
paul0c0f9cd2003-06-06 23:27:04 +0000508 while ((l2 = ospf_get_next_link (w, v, l2)))
509 {
510 la.prefix = l2->link_data;
511
512 if (prefix_cmp ((struct prefix *) &la,
513 oi->address) == 0)
514 /* link_data is on our PtMP network */
515 break;
516 }
gdt630e4802004-08-31 17:28:41 +0000517 } /* end l is on point-to-multipoint link */
paul0c0f9cd2003-06-06 23:27:04 +0000518 else
519 {
gdt630e4802004-08-31 17:28:41 +0000520 /* l is a regular point-to-point link.
521 Look for a link from W to V.
522 */
paul0c0f9cd2003-06-06 23:27:04 +0000523 while ((l2 = ospf_get_next_link (w, v, l2)))
524 {
525 oi = ospf_if_is_configured (area->ospf,
526 &(l2->link_data));
527
528 if (oi == NULL)
529 continue;
530
531 if (!IPV4_ADDR_SAME (&oi->address->u.prefix4,
532 &l->link_data))
533 continue;
534
535 break;
536 }
537 }
538
539 if (oi && l2)
540 {
gdt630e4802004-08-31 17:28:41 +0000541 /* found all necessary info to build nexthop */
paul0c0f9cd2003-06-06 23:27:04 +0000542 nh = vertex_nexthop_new (v);
543 nh->oi = oi;
544 nh->router = l2->link_data;
545 ospf_spf_consider_nexthop (w->nexthop, nh);
546 }
gdt630e4802004-08-31 17:28:41 +0000547 else
548 {
549 zlog_info("ospf_nexthop_calculation(): "
550 "could not determine nexthop for link");
551 }
552 } /* end point-to-point link from V to W */
553 } /* end iterate over links in W */
554 } /* end W is a Router vertex */
paul718e3742002-12-13 20:15:29 +0000555 else
paul0c0f9cd2003-06-06 23:27:04 +0000556 {
gdt630e4802004-08-31 17:28:41 +0000557 assert(w->type == OSPF_VERTEX_NETWORK);
paul0c0f9cd2003-06-06 23:27:04 +0000558 while ((l = ospf_get_next_link (v, w, l)))
559 {
560 oi = ospf_if_is_configured (area->ospf, &(l->link_data));
561 if (oi)
562 {
563 nh = vertex_nexthop_new (v);
564 nh->oi = oi;
565 nh->router.s_addr = 0;
paul75ee0b82004-08-05 09:10:31 +0000566 ospf_spf_consider_nexthop (w->nexthop, nh);
paul0c0f9cd2003-06-06 23:27:04 +0000567 }
568 }
569 }
paul718e3742002-12-13 20:15:29 +0000570 return;
gdt630e4802004-08-31 17:28:41 +0000571 } /* end V is the root */
572
573 /* Check if W's parent is a network connected to root. */
paul718e3742002-12-13 20:15:29 +0000574 else if (v->type == OSPF_VERTEX_NETWORK)
575 {
gdt630e4802004-08-31 17:28:41 +0000576 /* See if any of V's parents are the root. */
paul1eb8ef22005-04-07 07:30:20 +0000577 for (ALL_LIST_ELEMENTS (v->nexthop, node, nnode, x))
paul718e3742002-12-13 20:15:29 +0000578 {
gdt630e4802004-08-31 17:28:41 +0000579 if (x->parent == area->spf) /* connects to root? */
580 {
581 /* 16.1.1 para 5. ...the parent vertex is a network that
582 * directly connects the calculating router to the destination
583 * router. The list of next hops is then determined by
584 * examining the destination's router-LSA...
585 */
586
587 assert(w->type == OSPF_VERTEX_ROUTER);
paul0c0f9cd2003-06-06 23:27:04 +0000588 while ((l = ospf_get_next_link (w, v, l)))
589 {
gdt630e4802004-08-31 17:28:41 +0000590 /* ...For each link in the router-LSA that points back to the
591 * parent network, the link's Link Data field provides the IP
592 * address of a next hop router. The outgoing interface to
593 * use can then be derived from the next hop IP address (or
594 * it can be inherited from the parent network).
595 */
paul0c0f9cd2003-06-06 23:27:04 +0000596 nh = vertex_nexthop_new (v);
597 nh->oi = x->oi;
598 nh->router = l->link_data;
paul75ee0b82004-08-05 09:10:31 +0000599 ospf_spf_consider_nexthop (w->nexthop, nh);
paul0c0f9cd2003-06-06 23:27:04 +0000600 }
601 return;
602 }
paul718e3742002-12-13 20:15:29 +0000603 }
604 }
605
gdt630e4802004-08-31 17:28:41 +0000606 /* 16.1.1 para 4. If there is at least one intervening router in the
607 * current shortest path between the destination and the root, the
608 * destination simply inherits the set of next hops from the
609 * parent.
610 */
paul1eb8ef22005-04-07 07:30:20 +0000611 for (ALL_LIST_ELEMENTS (v->nexthop, node, nnode, nh))
paul718e3742002-12-13 20:15:29 +0000612 {
paul718e3742002-12-13 20:15:29 +0000613 nh->parent = v;
614 ospf_nexthop_add_unique (nh, w->nexthop);
615 }
616}
617
gdt630e4802004-08-31 17:28:41 +0000618/* RFC2328 Section 16.1 (2).
619 * v is on the SPF tree. Examine the links in v's LSA. Update the list
620 * of candidates with any vertices not already on the list. If a lower-cost
621 * path is found to a vertex already on the candidate list, store the new cost.
622 */
paul4dadc292005-05-06 21:37:42 +0000623static void
paul718e3742002-12-13 20:15:29 +0000624ospf_spf_next (struct vertex *v, struct ospf_area *area,
hasso462f20d2005-02-23 11:29:02 +0000625 struct pqueue * candidate)
paul718e3742002-12-13 20:15:29 +0000626{
627 struct ospf_lsa *w_lsa = NULL;
628 struct vertex *w, *cw;
629 u_char *p;
630 u_char *lim;
631 struct router_lsa_link *l = NULL;
632 struct in_addr *r;
paul718e3742002-12-13 20:15:29 +0000633 int type = 0;
634
635 /* If this is a router-LSA, and bit V of the router-LSA (see Section
636 A.4.2:RFC2328) is set, set Area A's TransitCapability to TRUE. */
637 if (v->type == OSPF_VERTEX_ROUTER)
638 {
639 if (IS_ROUTER_LSA_VIRTUAL ((struct router_lsa *) v->lsa))
640 area->transit = OSPF_TRANSIT_TRUE;
641 }
642
643 p = ((u_char *) v->lsa) + OSPF_LSA_HEADER_SIZE + 4;
paul0c0f9cd2003-06-06 23:27:04 +0000644 lim = ((u_char *) v->lsa) + ntohs (v->lsa->length);
645
paul718e3742002-12-13 20:15:29 +0000646 while (p < lim)
647 {
pauld355bfa2004-04-08 07:43:45 +0000648 int link = -1; /* link index for w's back link */
649
paul718e3742002-12-13 20:15:29 +0000650 /* In case of V is Router-LSA. */
651 if (v->lsa->type == OSPF_ROUTER_LSA)
652 {
653 l = (struct router_lsa_link *) p;
654
paul0c0f9cd2003-06-06 23:27:04 +0000655 p += (ROUTER_LSA_MIN_SIZE +
paul718e3742002-12-13 20:15:29 +0000656 (l->m[0].tos_count * ROUTER_LSA_TOS_SIZE));
657
658 /* (a) If this is a link to a stub network, examine the next
659 link in V's LSA. Links to stub networks will be
660 considered in the second stage of the shortest path
661 calculation. */
662 if ((type = l->m[0].type) == LSA_LINK_TYPE_STUB)
663 continue;
664
665 /* (b) Otherwise, W is a transit vertex (router or transit
666 network). Look up the vertex W's LSA (router-LSA or
667 network-LSA) in Area A's link state database. */
668 switch (type)
669 {
670 case LSA_LINK_TYPE_POINTOPOINT:
671 case LSA_LINK_TYPE_VIRTUALLINK:
672 if (type == LSA_LINK_TYPE_VIRTUALLINK)
paul0c0f9cd2003-06-06 23:27:04 +0000673 {
674 if (IS_DEBUG_OSPF_EVENT)
ajs2a42e282004-12-08 18:43:03 +0000675 zlog_debug ("looking up LSA through VL: %s",
paul0c0f9cd2003-06-06 23:27:04 +0000676 inet_ntoa (l->link_id));
677 }
paul718e3742002-12-13 20:15:29 +0000678
679 w_lsa = ospf_lsa_lookup (area, OSPF_ROUTER_LSA, l->link_id,
680 l->link_id);
681 if (w_lsa)
paul0c0f9cd2003-06-06 23:27:04 +0000682 {
683 if (IS_DEBUG_OSPF_EVENT)
ajs2a42e282004-12-08 18:43:03 +0000684 zlog_debug ("found Router LSA %s", inet_ntoa (l->link_id));
paul0c0f9cd2003-06-06 23:27:04 +0000685 }
paul718e3742002-12-13 20:15:29 +0000686 break;
687 case LSA_LINK_TYPE_TRANSIT:
paul0c0f9cd2003-06-06 23:27:04 +0000688 if (IS_DEBUG_OSPF_EVENT)
ajs2a42e282004-12-08 18:43:03 +0000689 zlog_debug ("Looking up Network LSA, ID: %s",
paul0c0f9cd2003-06-06 23:27:04 +0000690 inet_ntoa (l->link_id));
paul718e3742002-12-13 20:15:29 +0000691 w_lsa = ospf_lsa_lookup_by_id (area, OSPF_NETWORK_LSA,
paul0c0f9cd2003-06-06 23:27:04 +0000692 l->link_id);
paul718e3742002-12-13 20:15:29 +0000693 if (w_lsa)
paul0c0f9cd2003-06-06 23:27:04 +0000694 if (IS_DEBUG_OSPF_EVENT)
ajs2a42e282004-12-08 18:43:03 +0000695 zlog_debug ("found the LSA");
paul718e3742002-12-13 20:15:29 +0000696 break;
697 default:
paul0c0f9cd2003-06-06 23:27:04 +0000698 zlog_warn ("Invalid LSA link type %d", type);
paul718e3742002-12-13 20:15:29 +0000699 continue;
700 }
701 }
702 else
703 {
704 /* In case of V is Network-LSA. */
paul0c0f9cd2003-06-06 23:27:04 +0000705 r = (struct in_addr *) p;
paul718e3742002-12-13 20:15:29 +0000706 p += sizeof (struct in_addr);
707
708 /* Lookup the vertex W's LSA. */
709 w_lsa = ospf_lsa_lookup_by_id (area, OSPF_ROUTER_LSA, *r);
710 }
711
712 /* (b cont.) If the LSA does not exist, or its LS age is equal
713 to MaxAge, or it does not have a link back to vertex V,
714 examine the next link in V's LSA.[23] */
715 if (w_lsa == NULL)
716 continue;
717
718 if (IS_LSA_MAXAGE (w_lsa))
719 continue;
720
pauld355bfa2004-04-08 07:43:45 +0000721 if ( (link = ospf_lsa_has_link (w_lsa->data, v->lsa)) < 0 )
paul718e3742002-12-13 20:15:29 +0000722 {
paul0c0f9cd2003-06-06 23:27:04 +0000723 if (IS_DEBUG_OSPF_EVENT)
ajs2a42e282004-12-08 18:43:03 +0000724 zlog_debug ("The LSA doesn't have a link back");
paul718e3742002-12-13 20:15:29 +0000725 continue;
726 }
727
728 /* (c) If vertex W is already on the shortest-path tree, examine
729 the next link in the LSA. */
hasso462f20d2005-02-23 11:29:02 +0000730 if (w_lsa->stat == LSA_SPF_IN_SPFTREE)
731 {
732 if (IS_DEBUG_OSPF_EVENT)
733 zlog_debug ("The LSA is already in SPF");
734 continue;
735 }
paul718e3742002-12-13 20:15:29 +0000736
737 /* (d) Calculate the link state cost D of the resulting path
738 from the root to vertex W. D is equal to the sum of the link
739 state cost of the (already calculated) shortest path to
740 vertex V and the advertised cost of the link between vertices
741 V and W. If D is: */
742
743 /* prepare vertex W. */
744 w = ospf_vertex_new (w_lsa);
745
pauld355bfa2004-04-08 07:43:45 +0000746 /* Save W's back link index number, for use by virtual links */
747 w->backlink = link;
748
paul718e3742002-12-13 20:15:29 +0000749 /* calculate link cost D. */
750 if (v->lsa->type == OSPF_ROUTER_LSA)
gdt630e4802004-08-31 17:28:41 +0000751 w->distance = v->distance + ntohs (l->m[0].metric);
752 else /* v is not a Router-LSA */
753 w->distance = v->distance;
paul718e3742002-12-13 20:15:29 +0000754
755 /* Is there already vertex W in candidate list? */
hasso462f20d2005-02-23 11:29:02 +0000756 if (w_lsa->stat == LSA_SPF_NOT_EXPLORED)
757 {
758 /* Calculate nexthop to W. */
759 ospf_nexthop_calculation (area, v, w);
760 pqueue_enqueue (w, candidate);
761 }
762 else if (w_lsa->stat >= 0)
763 {
764 /* Get the vertex from candidates. */
765 cw = (struct vertex *) candidate->array[w_lsa->stat];
paul718e3742002-12-13 20:15:29 +0000766
hasso462f20d2005-02-23 11:29:02 +0000767 /* if D is greater than. */
768 if (cw->distance < w->distance)
paul718e3742002-12-13 20:15:29 +0000769 {
770 ospf_vertex_free (w);
771 continue;
772 }
hasso462f20d2005-02-23 11:29:02 +0000773 /* equal to. */
774 else if (cw->distance == w->distance)
paul718e3742002-12-13 20:15:29 +0000775 {
gdt630e4802004-08-31 17:28:41 +0000776 /* Found an equal-cost path to W. Calculate nexthop to W. */
paul718e3742002-12-13 20:15:29 +0000777 ospf_nexthop_calculation (area, v, w);
778 ospf_nexthop_merge (cw->nexthop, w->nexthop);
779 list_delete_all_node (w->nexthop);
780 ospf_vertex_free (w);
781 }
hasso462f20d2005-02-23 11:29:02 +0000782 /* less than. */
783 else
paul718e3742002-12-13 20:15:29 +0000784 {
gdt630e4802004-08-31 17:28:41 +0000785 /* Found a lower-cost path to W. Calculate nexthop to W. */
paul718e3742002-12-13 20:15:29 +0000786 ospf_nexthop_calculation (area, v, w);
787
788 /* Remove old vertex from candidate list. */
789 ospf_vertex_free (cw);
hasso462f20d2005-02-23 11:29:02 +0000790 candidate->array[w_lsa->stat] = w;
791 /* Decrease the key of the node in the heap, re-sort the heap. */
792 trickle_down (w_lsa->stat, candidate);
paul718e3742002-12-13 20:15:29 +0000793 }
gdt630e4802004-08-31 17:28:41 +0000794 } /* end W is already on the candidate list */
795 } /* end loop over the links in V's LSA */
paul718e3742002-12-13 20:15:29 +0000796}
797
paul4dadc292005-05-06 21:37:42 +0000798static void
paul718e3742002-12-13 20:15:29 +0000799ospf_spf_route_free (struct route_table *table)
800{
801 struct route_node *rn;
802 struct vertex *v;
803
804 for (rn = route_top (table); rn; rn = route_next (rn))
805 {
806 if ((v = rn->info))
paul0c0f9cd2003-06-06 23:27:04 +0000807 {
808 ospf_vertex_free (v);
809 rn->info = NULL;
810 }
paul718e3742002-12-13 20:15:29 +0000811
812 route_unlock_node (rn);
813 }
814
815 route_table_finish (table);
816}
817
paul4dadc292005-05-06 21:37:42 +0000818static void
paul718e3742002-12-13 20:15:29 +0000819ospf_spf_dump (struct vertex *v, int i)
820{
hasso52dc7ee2004-09-23 19:18:23 +0000821 struct listnode *cnode;
822 struct listnode *nnode;
paul718e3742002-12-13 20:15:29 +0000823 struct vertex_nexthop *nexthop;
824
825 if (v->type == OSPF_VERTEX_ROUTER)
826 {
827 if (IS_DEBUG_OSPF_EVENT)
ajs2a42e282004-12-08 18:43:03 +0000828 zlog_debug ("SPF Result: %d [R] %s", i, inet_ntoa (v->lsa->id));
paul718e3742002-12-13 20:15:29 +0000829 }
830 else
831 {
832 struct network_lsa *lsa = (struct network_lsa *) v->lsa;
833 if (IS_DEBUG_OSPF_EVENT)
ajs2a42e282004-12-08 18:43:03 +0000834 zlog_debug ("SPF Result: %d [N] %s/%d", i, inet_ntoa (v->lsa->id),
paul0c0f9cd2003-06-06 23:27:04 +0000835 ip_masklen (lsa->mask));
gdt630e4802004-08-31 17:28:41 +0000836 }
paul718e3742002-12-13 20:15:29 +0000837
paul1eb8ef22005-04-07 07:30:20 +0000838 if (IS_DEBUG_OSPF_EVENT)
839 for (ALL_LIST_ELEMENTS_RO (v->nexthop, nnode, nexthop))
840 zlog_debug (" nexthop %s", inet_ntoa (nexthop->router));
paul718e3742002-12-13 20:15:29 +0000841
842 i++;
843
paul1eb8ef22005-04-07 07:30:20 +0000844 for (ALL_LIST_ELEMENTS_RO (v->child, cnode, v))
845 ospf_spf_dump (v, i);
paul718e3742002-12-13 20:15:29 +0000846}
847
848/* Second stage of SPF calculation. */
paul4dadc292005-05-06 21:37:42 +0000849static void
paul0c0f9cd2003-06-06 23:27:04 +0000850ospf_spf_process_stubs (struct ospf_area *area, struct vertex *v,
paul718e3742002-12-13 20:15:29 +0000851 struct route_table *rt)
852{
paul1eb8ef22005-04-07 07:30:20 +0000853 struct listnode *cnode, *cnnode;
paul718e3742002-12-13 20:15:29 +0000854 struct vertex *child;
855
856 if (IS_DEBUG_OSPF_EVENT)
ajs2a42e282004-12-08 18:43:03 +0000857 zlog_debug ("ospf_process_stub():processing stubs for area %s",
paul0c0f9cd2003-06-06 23:27:04 +0000858 inet_ntoa (area->area_id));
paul718e3742002-12-13 20:15:29 +0000859 if (v->type == OSPF_VERTEX_ROUTER)
860 {
861 u_char *p;
862 u_char *lim;
863 struct router_lsa_link *l;
864 struct router_lsa *rlsa;
865
paul0c0f9cd2003-06-06 23:27:04 +0000866 if (IS_DEBUG_OSPF_EVENT)
ajs2a42e282004-12-08 18:43:03 +0000867 zlog_debug ("ospf_process_stubs():processing router LSA, id: %s",
paul0c0f9cd2003-06-06 23:27:04 +0000868 inet_ntoa (v->lsa->id));
paul718e3742002-12-13 20:15:29 +0000869 rlsa = (struct router_lsa *) v->lsa;
870
871
paul0c0f9cd2003-06-06 23:27:04 +0000872 if (IS_DEBUG_OSPF_EVENT)
ajs2a42e282004-12-08 18:43:03 +0000873 zlog_debug ("ospf_process_stubs(): we have %d links to process",
paul0c0f9cd2003-06-06 23:27:04 +0000874 ntohs (rlsa->links));
gdt630e4802004-08-31 17:28:41 +0000875 p = ((u_char *) v->lsa) + OSPF_LSA_HEADER_SIZE + 4;
paul718e3742002-12-13 20:15:29 +0000876 lim = ((u_char *) v->lsa) + ntohs (v->lsa->length);
877
878 while (p < lim)
879 {
880 l = (struct router_lsa_link *) p;
881
882 p += (ROUTER_LSA_MIN_SIZE +
883 (l->m[0].tos_count * ROUTER_LSA_TOS_SIZE));
884
885 if (l->m[0].type == LSA_LINK_TYPE_STUB)
886 ospf_intra_add_stub (rt, l, v, area);
887 }
888 }
889
gdt630e4802004-08-31 17:28:41 +0000890 ospf_vertex_dump("ospf_process_stubs(): after examining links: ", v, 1, 1);
paul718e3742002-12-13 20:15:29 +0000891
paul1eb8ef22005-04-07 07:30:20 +0000892 for (ALL_LIST_ELEMENTS (v->child, cnode, cnnode, child))
paul718e3742002-12-13 20:15:29 +0000893 {
paul718e3742002-12-13 20:15:29 +0000894 if (CHECK_FLAG (child->flags, OSPF_VERTEX_PROCESSED))
paul0c0f9cd2003-06-06 23:27:04 +0000895 continue;
paul718e3742002-12-13 20:15:29 +0000896
897 ospf_spf_process_stubs (area, child, rt);
898
899 SET_FLAG (child->flags, OSPF_VERTEX_PROCESSED);
900 }
901}
902
903void
904ospf_rtrs_free (struct route_table *rtrs)
905{
906 struct route_node *rn;
hasso52dc7ee2004-09-23 19:18:23 +0000907 struct list *or_list;
paul1eb8ef22005-04-07 07:30:20 +0000908 struct ospf_route *or;
909 struct listnode *node, *nnode;
paul718e3742002-12-13 20:15:29 +0000910
911 if (IS_DEBUG_OSPF_EVENT)
ajs2a42e282004-12-08 18:43:03 +0000912 zlog_debug ("Route: Router Routing Table free");
paul718e3742002-12-13 20:15:29 +0000913
914 for (rn = route_top (rtrs); rn; rn = route_next (rn))
915 if ((or_list = rn->info) != NULL)
916 {
paul1eb8ef22005-04-07 07:30:20 +0000917 for (ALL_LIST_ELEMENTS (or_list, node, nnode, or))
918 ospf_route_free (or);
paul718e3742002-12-13 20:15:29 +0000919
paul0c0f9cd2003-06-06 23:27:04 +0000920 list_delete (or_list);
paul718e3742002-12-13 20:15:29 +0000921
paul0c0f9cd2003-06-06 23:27:04 +0000922 /* Unlock the node. */
923 rn->info = NULL;
924 route_unlock_node (rn);
paul718e3742002-12-13 20:15:29 +0000925 }
926 route_table_finish (rtrs);
927}
928
paul4dadc292005-05-06 21:37:42 +0000929static void
paul718e3742002-12-13 20:15:29 +0000930ospf_rtrs_print (struct route_table *rtrs)
931{
932 struct route_node *rn;
hasso52dc7ee2004-09-23 19:18:23 +0000933 struct list *or_list;
934 struct listnode *ln;
935 struct listnode *pnode;
paul718e3742002-12-13 20:15:29 +0000936 struct ospf_route *or;
937 struct ospf_path *path;
938 char buf1[BUFSIZ];
939 char buf2[BUFSIZ];
940
941 if (IS_DEBUG_OSPF_EVENT)
ajs2a42e282004-12-08 18:43:03 +0000942 zlog_debug ("ospf_rtrs_print() start");
paul718e3742002-12-13 20:15:29 +0000943
944 for (rn = route_top (rtrs); rn; rn = route_next (rn))
945 if ((or_list = rn->info) != NULL)
paul1eb8ef22005-04-07 07:30:20 +0000946 for (ALL_LIST_ELEMENTS_RO (or_list, ln, or))
paul718e3742002-12-13 20:15:29 +0000947 {
paul718e3742002-12-13 20:15:29 +0000948 switch (or->path_type)
949 {
950 case OSPF_PATH_INTRA_AREA:
paul0c0f9cd2003-06-06 23:27:04 +0000951 if (IS_DEBUG_OSPF_EVENT)
ajs2a42e282004-12-08 18:43:03 +0000952 zlog_debug ("%s [%d] area: %s",
paul0c0f9cd2003-06-06 23:27:04 +0000953 inet_ntop (AF_INET, &or->id, buf1, BUFSIZ),
954 or->cost, inet_ntop (AF_INET, &or->u.std.area_id,
955 buf2, BUFSIZ));
paul718e3742002-12-13 20:15:29 +0000956 break;
957 case OSPF_PATH_INTER_AREA:
paul0c0f9cd2003-06-06 23:27:04 +0000958 if (IS_DEBUG_OSPF_EVENT)
ajs2a42e282004-12-08 18:43:03 +0000959 zlog_debug ("%s IA [%d] area: %s",
paul0c0f9cd2003-06-06 23:27:04 +0000960 inet_ntop (AF_INET, &or->id, buf1, BUFSIZ),
961 or->cost, inet_ntop (AF_INET, &or->u.std.area_id,
962 buf2, BUFSIZ));
paul718e3742002-12-13 20:15:29 +0000963 break;
964 default:
965 break;
966 }
967
paul1eb8ef22005-04-07 07:30:20 +0000968 for (ALL_LIST_ELEMENTS_RO (or->paths, pnode, path))
paul718e3742002-12-13 20:15:29 +0000969 {
paul718e3742002-12-13 20:15:29 +0000970 if (path->nexthop.s_addr == 0)
paul0c0f9cd2003-06-06 23:27:04 +0000971 {
972 if (IS_DEBUG_OSPF_EVENT)
ajs2a42e282004-12-08 18:43:03 +0000973 zlog_debug (" directly attached to %s\r\n",
paul0c0f9cd2003-06-06 23:27:04 +0000974 IF_NAME (path->oi));
975 }
976 else
977 {
978 if (IS_DEBUG_OSPF_EVENT)
ajs2a42e282004-12-08 18:43:03 +0000979 zlog_debug (" via %s, %s\r\n",
paul0c0f9cd2003-06-06 23:27:04 +0000980 inet_ntoa (path->nexthop), IF_NAME (path->oi));
981 }
paul718e3742002-12-13 20:15:29 +0000982 }
983 }
984
ajs2a42e282004-12-08 18:43:03 +0000985 zlog_debug ("ospf_rtrs_print() end");
paul718e3742002-12-13 20:15:29 +0000986}
987
988/* Calculating the shortest-path tree for an area. */
paul4dadc292005-05-06 21:37:42 +0000989static void
paul0c0f9cd2003-06-06 23:27:04 +0000990ospf_spf_calculate (struct ospf_area *area, struct route_table *new_table,
paul718e3742002-12-13 20:15:29 +0000991 struct route_table *new_rtrs)
992{
hasso462f20d2005-02-23 11:29:02 +0000993 struct pqueue *candidate;
paul718e3742002-12-13 20:15:29 +0000994 struct vertex *v;
paul718e3742002-12-13 20:15:29 +0000995
996 if (IS_DEBUG_OSPF_EVENT)
997 {
ajs2a42e282004-12-08 18:43:03 +0000998 zlog_debug ("ospf_spf_calculate: Start");
999 zlog_debug ("ospf_spf_calculate: running Dijkstra for area %s",
paul0c0f9cd2003-06-06 23:27:04 +00001000 inet_ntoa (area->area_id));
paul718e3742002-12-13 20:15:29 +00001001 }
1002
1003 /* Check router-lsa-self. If self-router-lsa is not yet allocated,
1004 return this area's calculation. */
paul0c0f9cd2003-06-06 23:27:04 +00001005 if (!area->router_lsa_self)
paul718e3742002-12-13 20:15:29 +00001006 {
1007 if (IS_DEBUG_OSPF_EVENT)
ajs2a42e282004-12-08 18:43:03 +00001008 zlog_debug ("ospf_spf_calculate: "
paul0c0f9cd2003-06-06 23:27:04 +00001009 "Skip area %s's calculation due to empty router_lsa_self",
1010 inet_ntoa (area->area_id));
paul718e3742002-12-13 20:15:29 +00001011 return;
1012 }
1013
1014 /* RFC2328 16.1. (1). */
paul0c0f9cd2003-06-06 23:27:04 +00001015 /* Initialize the algorithm's data structures. */
hasso462f20d2005-02-23 11:29:02 +00001016
1017 /* This function scans all the LSA database and set the stat field to
1018 * LSA_SPF_NOT_EXPLORED. */
1019 ospf_lsdb_clean_stat (area->lsdb);
1020 /* Create a new heap for the candidates. */
1021 candidate = pqueue_create();
1022 candidate->cmp = cmp;
1023 candidate->update = update_stat;
paul718e3742002-12-13 20:15:29 +00001024
1025 /* Initialize the shortest-path tree to only the root (which is the
1026 router doing the calculation). */
1027 ospf_spf_init (area);
1028 v = area->spf;
hasso462f20d2005-02-23 11:29:02 +00001029 /* Set LSA position to LSA_SPF_IN_SPFTREE. This vertex is the root of the
1030 * spanning tree. */
1031 *(v->stat) = LSA_SPF_IN_SPFTREE;
paul718e3742002-12-13 20:15:29 +00001032
1033 /* Set Area A's TransitCapability to FALSE. */
1034 area->transit = OSPF_TRANSIT_FALSE;
1035 area->shortcut_capability = 1;
1036
1037 for (;;)
1038 {
1039 /* RFC2328 16.1. (2). */
hasso462f20d2005-02-23 11:29:02 +00001040 ospf_spf_next (v, area, candidate);
paul718e3742002-12-13 20:15:29 +00001041
1042 /* RFC2328 16.1. (3). */
1043 /* If at this step the candidate list is empty, the shortest-
1044 path tree (of transit vertices) has been completely built and
1045 this stage of the procedure terminates. */
hasso462f20d2005-02-23 11:29:02 +00001046 if (candidate->size == 0)
paul718e3742002-12-13 20:15:29 +00001047 break;
1048
1049 /* Otherwise, choose the vertex belonging to the candidate list
1050 that is closest to the root, and add it to the shortest-path
1051 tree (removing it from the candidate list in the
paul0c0f9cd2003-06-06 23:27:04 +00001052 process). */
hasso462f20d2005-02-23 11:29:02 +00001053 /* Extract from the candidates the node with the lower key. */
1054 v = (struct vertex *) pqueue_dequeue (candidate);
1055 /* Update stat field in vertex. */
1056 *(v->stat) = LSA_SPF_IN_SPFTREE;
paul718e3742002-12-13 20:15:29 +00001057 ospf_vertex_add_parent (v);
1058
paul718e3742002-12-13 20:15:29 +00001059 /* Note that when there is a choice of vertices closest to the
1060 root, network vertices must be chosen before router vertices
1061 in order to necessarily find all equal-cost paths. */
1062 /* We don't do this at this moment, we should add the treatment
1063 above codes. -- kunihiro. */
1064
1065 /* RFC2328 16.1. (4). */
1066 if (v->type == OSPF_VERTEX_ROUTER)
1067 ospf_intra_add_router (new_rtrs, v, area);
paul0c0f9cd2003-06-06 23:27:04 +00001068 else
paul718e3742002-12-13 20:15:29 +00001069 ospf_intra_add_transit (new_table, v, area);
1070
1071 /* RFC2328 16.1. (5). */
1072 /* Iterate the algorithm by returning to Step 2. */
gdt630e4802004-08-31 17:28:41 +00001073
1074 } /* end loop until no more candidate vertices */
paul718e3742002-12-13 20:15:29 +00001075
1076 if (IS_DEBUG_OSPF_EVENT)
1077 {
1078 ospf_spf_dump (area->spf, 0);
1079 ospf_route_table_dump (new_table);
1080 }
1081
1082 /* Second stage of SPF calculation procedure's */
1083 ospf_spf_process_stubs (area, area->spf, new_table);
1084
hasso462f20d2005-02-23 11:29:02 +00001085 /* Free candidates. */
1086 pqueue_delete (candidate);
paul718e3742002-12-13 20:15:29 +00001087
1088 /* Increment SPF Calculation Counter. */
1089 area->spf_calculation++;
1090
paul68980082003-03-25 05:07:42 +00001091 area->ospf->ts_spf = time (NULL);
paul718e3742002-12-13 20:15:29 +00001092
1093 if (IS_DEBUG_OSPF_EVENT)
ajs2a42e282004-12-08 18:43:03 +00001094 zlog_debug ("ospf_spf_calculate: Stop");
paul718e3742002-12-13 20:15:29 +00001095}
1096
1097/* Timer for SPF calculation. */
paul4dadc292005-05-06 21:37:42 +00001098static int
paul68980082003-03-25 05:07:42 +00001099ospf_spf_calculate_timer (struct thread *thread)
paul718e3742002-12-13 20:15:29 +00001100{
paul68980082003-03-25 05:07:42 +00001101 struct ospf *ospf = THREAD_ARG (thread);
paul718e3742002-12-13 20:15:29 +00001102 struct route_table *new_table, *new_rtrs;
paul1eb8ef22005-04-07 07:30:20 +00001103 struct ospf_area *area;
1104 struct listnode *node, *nnode;
paul718e3742002-12-13 20:15:29 +00001105
1106 if (IS_DEBUG_OSPF_EVENT)
ajs2a42e282004-12-08 18:43:03 +00001107 zlog_debug ("SPF: Timer (SPF calculation expire)");
paul0c0f9cd2003-06-06 23:27:04 +00001108
paul718e3742002-12-13 20:15:29 +00001109 ospf->t_spf_calc = NULL;
1110
1111 /* Allocate new table tree. */
1112 new_table = route_table_init ();
paul0c0f9cd2003-06-06 23:27:04 +00001113 new_rtrs = route_table_init ();
paul718e3742002-12-13 20:15:29 +00001114
paul68980082003-03-25 05:07:42 +00001115 ospf_vl_unapprove (ospf);
paul718e3742002-12-13 20:15:29 +00001116
1117 /* Calculate SPF for each area. */
paul1eb8ef22005-04-07 07:30:20 +00001118 for (ALL_LIST_ELEMENTS (ospf->areas, node, nnode, area))
1119 ospf_spf_calculate (area, new_table, new_rtrs);
paul718e3742002-12-13 20:15:29 +00001120
paul68980082003-03-25 05:07:42 +00001121 ospf_vl_shut_unapproved (ospf);
paul718e3742002-12-13 20:15:29 +00001122
paul68980082003-03-25 05:07:42 +00001123 ospf_ia_routing (ospf, new_table, new_rtrs);
paul718e3742002-12-13 20:15:29 +00001124
1125 ospf_prune_unreachable_networks (new_table);
1126 ospf_prune_unreachable_routers (new_rtrs);
1127
1128 /* AS-external-LSA calculation should not be performed here. */
1129
1130 /* If new Router Route is installed,
1131 then schedule re-calculate External routes. */
1132 if (1)
paul68980082003-03-25 05:07:42 +00001133 ospf_ase_calculate_schedule (ospf);
paul718e3742002-12-13 20:15:29 +00001134
paul68980082003-03-25 05:07:42 +00001135 ospf_ase_calculate_timer_add (ospf);
paul718e3742002-12-13 20:15:29 +00001136
1137 /* Update routing table. */
paul68980082003-03-25 05:07:42 +00001138 ospf_route_install (ospf, new_table);
paul718e3742002-12-13 20:15:29 +00001139
1140 /* Update ABR/ASBR routing table */
paul68980082003-03-25 05:07:42 +00001141 if (ospf->old_rtrs)
paul718e3742002-12-13 20:15:29 +00001142 {
1143 /* old_rtrs's node holds linked list of ospf_route. --kunihiro. */
paul68980082003-03-25 05:07:42 +00001144 /* ospf_route_delete (ospf->old_rtrs); */
1145 ospf_rtrs_free (ospf->old_rtrs);
paul718e3742002-12-13 20:15:29 +00001146 }
1147
paul68980082003-03-25 05:07:42 +00001148 ospf->old_rtrs = ospf->new_rtrs;
1149 ospf->new_rtrs = new_rtrs;
paul718e3742002-12-13 20:15:29 +00001150
paul0c0f9cd2003-06-06 23:27:04 +00001151 if (IS_OSPF_ABR (ospf))
paul68980082003-03-25 05:07:42 +00001152 ospf_abr_task (ospf);
paul718e3742002-12-13 20:15:29 +00001153
1154 if (IS_DEBUG_OSPF_EVENT)
ajs2a42e282004-12-08 18:43:03 +00001155 zlog_debug ("SPF: calculation complete");
paul718e3742002-12-13 20:15:29 +00001156
1157 return 0;
1158}
1159
1160/* Add schedule for SPF calculation. To avoid frequenst SPF calc, we
1161 set timer for SPF calc. */
1162void
paul68980082003-03-25 05:07:42 +00001163ospf_spf_calculate_schedule (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00001164{
1165 time_t ht, delay;
1166
1167 if (IS_DEBUG_OSPF_EVENT)
ajs2a42e282004-12-08 18:43:03 +00001168 zlog_debug ("SPF: calculation timer scheduled");
paul718e3742002-12-13 20:15:29 +00001169
1170 /* OSPF instance does not exist. */
paul68980082003-03-25 05:07:42 +00001171 if (ospf == NULL)
paul718e3742002-12-13 20:15:29 +00001172 return;
1173
1174 /* SPF calculation timer is already scheduled. */
paul68980082003-03-25 05:07:42 +00001175 if (ospf->t_spf_calc)
paul718e3742002-12-13 20:15:29 +00001176 {
1177 if (IS_DEBUG_OSPF_EVENT)
ajs2a42e282004-12-08 18:43:03 +00001178 zlog_debug ("SPF: calculation timer is already scheduled: %p",
paul0c0f9cd2003-06-06 23:27:04 +00001179 ospf->t_spf_calc);
paul718e3742002-12-13 20:15:29 +00001180 return;
1181 }
1182
paul68980082003-03-25 05:07:42 +00001183 ht = time (NULL) - ospf->ts_spf;
paul718e3742002-12-13 20:15:29 +00001184
1185 /* Get SPF calculation delay time. */
paul68980082003-03-25 05:07:42 +00001186 if (ht < ospf->spf_holdtime)
paul718e3742002-12-13 20:15:29 +00001187 {
paul68980082003-03-25 05:07:42 +00001188 if (ospf->spf_holdtime - ht < ospf->spf_delay)
paul0c0f9cd2003-06-06 23:27:04 +00001189 delay = ospf->spf_delay;
paul718e3742002-12-13 20:15:29 +00001190 else
paul0c0f9cd2003-06-06 23:27:04 +00001191 delay = ospf->spf_holdtime - ht;
paul718e3742002-12-13 20:15:29 +00001192 }
1193 else
paul68980082003-03-25 05:07:42 +00001194 delay = ospf->spf_delay;
paul718e3742002-12-13 20:15:29 +00001195
1196 if (IS_DEBUG_OSPF_EVENT)
ajs2a42e282004-12-08 18:43:03 +00001197 zlog_debug ("SPF: calculation timer delay = %ld", (long)delay);
paul68980082003-03-25 05:07:42 +00001198 ospf->t_spf_calc =
1199 thread_add_timer (master, ospf_spf_calculate_timer, ospf, delay);
paul718e3742002-12-13 20:15:29 +00001200}