blob: 31cbaaef24e8c96566e5af830f090051c91f8d12 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/*
2 * OSPF Link State Advertisement
3 * Copyright (C) 1999, 2000 Toshiaki Takada
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with GNU Zebra; see the file COPYING. If not, write to the Free
19 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 * 02111-1307, USA.
21 */
22
23#include <zebra.h>
24
25#include "linklist.h"
26#include "prefix.h"
27#include "if.h"
28#include "table.h"
29#include "memory.h"
30#include "stream.h"
31#include "log.h"
32#include "thread.h"
33#include "hash.h"
34#include "sockunion.h" /* for inet_aton() */
Jingjing Duan6a270cd2008-08-13 19:09:10 +010035#include "checksum.h"
paul718e3742002-12-13 20:15:29 +000036
37#include "ospfd/ospfd.h"
38#include "ospfd/ospf_interface.h"
39#include "ospfd/ospf_ism.h"
40#include "ospfd/ospf_asbr.h"
41#include "ospfd/ospf_lsa.h"
42#include "ospfd/ospf_lsdb.h"
43#include "ospfd/ospf_neighbor.h"
44#include "ospfd/ospf_nsm.h"
45#include "ospfd/ospf_flood.h"
46#include "ospfd/ospf_packet.h"
47#include "ospfd/ospf_spf.h"
48#include "ospfd/ospf_dump.h"
49#include "ospfd/ospf_route.h"
50#include "ospfd/ospf_ase.h"
51#include "ospfd/ospf_zebra.h"
52
David Lamparter6b0655a2014-06-04 06:53:35 +020053
paul718e3742002-12-13 20:15:29 +000054u_int32_t
55get_metric (u_char *metric)
56{
57 u_int32_t m;
58 m = metric[0];
59 m = (m << 8) + metric[1];
60 m = (m << 8) + metric[2];
61 return m;
62}
63
David Lamparter6b0655a2014-06-04 06:53:35 +020064
paul718e3742002-12-13 20:15:29 +000065struct timeval
66tv_adjust (struct timeval a)
67{
68 while (a.tv_usec >= 1000000)
69 {
70 a.tv_usec -= 1000000;
71 a.tv_sec++;
72 }
73
74 while (a.tv_usec < 0)
75 {
76 a.tv_usec += 1000000;
77 a.tv_sec--;
78 }
79
80 return a;
81}
82
83int
84tv_ceil (struct timeval a)
85{
86 a = tv_adjust (a);
87
88 return (a.tv_usec ? a.tv_sec + 1 : a.tv_sec);
89}
90
91int
92tv_floor (struct timeval a)
93{
94 a = tv_adjust (a);
95
96 return a.tv_sec;
97}
98
99struct timeval
100int2tv (int a)
101{
102 struct timeval ret;
103
104 ret.tv_sec = a;
105 ret.tv_usec = 0;
106
107 return ret;
108}
109
110struct timeval
111tv_add (struct timeval a, struct timeval b)
112{
113 struct timeval ret;
114
115 ret.tv_sec = a.tv_sec + b.tv_sec;
116 ret.tv_usec = a.tv_usec + b.tv_usec;
117
118 return tv_adjust (ret);
119}
120
121struct timeval
122tv_sub (struct timeval a, struct timeval b)
123{
124 struct timeval ret;
125
126 ret.tv_sec = a.tv_sec - b.tv_sec;
127 ret.tv_usec = a.tv_usec - b.tv_usec;
128
129 return tv_adjust (ret);
130}
131
132int
133tv_cmp (struct timeval a, struct timeval b)
134{
135 return (a.tv_sec == b.tv_sec ?
136 a.tv_usec - b.tv_usec : a.tv_sec - b.tv_sec);
137}
138
139int
140ospf_lsa_refresh_delay (struct ospf_lsa *lsa)
141{
142 struct timeval delta, now;
143 int delay = 0;
144
Paul Jakma2518efd2006-08-27 06:49:29 +0000145 quagga_gettime (QUAGGA_CLK_MONOTONIC, &now);
paul718e3742002-12-13 20:15:29 +0000146 delta = tv_sub (now, lsa->tv_orig);
147
148 if (tv_cmp (delta, int2tv (OSPF_MIN_LS_INTERVAL)) < 0)
149 {
150 delay = tv_ceil (tv_sub (int2tv (OSPF_MIN_LS_INTERVAL), delta));
151
152 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
ajse588f212004-12-08 18:12:06 +0000153 zlog_debug ("LSA[Type%d:%s]: Refresh timer delay %d seconds",
paul718e3742002-12-13 20:15:29 +0000154 lsa->data->type, inet_ntoa (lsa->data->id), delay);
155
156 assert (delay > 0);
157 }
158
159 return delay;
160}
161
David Lamparter6b0655a2014-06-04 06:53:35 +0200162
paul718e3742002-12-13 20:15:29 +0000163int
164get_age (struct ospf_lsa *lsa)
165{
166 int age;
paul718e3742002-12-13 20:15:29 +0000167
Paul Jakma2518efd2006-08-27 06:49:29 +0000168 age = ntohs (lsa->data->ls_age)
169 + tv_floor (tv_sub (recent_relative_time (), lsa->tv_recv));
paul718e3742002-12-13 20:15:29 +0000170
171 return age;
172}
173
David Lamparter6b0655a2014-06-04 06:53:35 +0200174
paul718e3742002-12-13 20:15:29 +0000175/* Fletcher Checksum -- Refer to RFC1008. */
paul718e3742002-12-13 20:15:29 +0000176
Jingjing Duan6a270cd2008-08-13 19:09:10 +0100177/* All the offsets are zero-based. The offsets in the RFC1008 are
178 one-based. */
paul718e3742002-12-13 20:15:29 +0000179u_int16_t
180ospf_lsa_checksum (struct lsa_header *lsa)
181{
Jingjing Duan6a270cd2008-08-13 19:09:10 +0100182 u_char *buffer = (u_char *) &lsa->options;
183 int options_offset = buffer - (u_char *) &lsa->ls_age; /* should be 2 */
paul718e3742002-12-13 20:15:29 +0000184
Jingjing Duan6a270cd2008-08-13 19:09:10 +0100185 /* Skip the AGE field */
186 u_int16_t len = ntohs(lsa->length) - options_offset;
paul718e3742002-12-13 20:15:29 +0000187
Jingjing Duan6a270cd2008-08-13 19:09:10 +0100188 /* Checksum offset starts from "options" field, not the beginning of the
189 lsa_header struct. The offset is 14, rather than 16. */
190 int checksum_offset = (u_char *) &lsa->checksum - buffer;
paul718e3742002-12-13 20:15:29 +0000191
Jingjing Duan6a270cd2008-08-13 19:09:10 +0100192 return fletcher_checksum(buffer, len, checksum_offset);
paul718e3742002-12-13 20:15:29 +0000193}
194
JR Riversd8a4e422012-09-13 17:17:36 +0000195int
196ospf_lsa_checksum_valid (struct lsa_header *lsa)
197{
198 u_char *buffer = (u_char *) &lsa->options;
199 int options_offset = buffer - (u_char *) &lsa->ls_age; /* should be 2 */
200
201 /* Skip the AGE field */
202 u_int16_t len = ntohs(lsa->length) - options_offset;
203
204 return(fletcher_checksum(buffer, len, FLETCHER_CHECKSUM_VALIDATE) == 0);
205}
206
paul718e3742002-12-13 20:15:29 +0000207
David Lamparter6b0655a2014-06-04 06:53:35 +0200208
paul718e3742002-12-13 20:15:29 +0000209/* Create OSPF LSA. */
210struct ospf_lsa *
211ospf_lsa_new ()
212{
213 struct ospf_lsa *new;
214
215 new = XCALLOC (MTYPE_OSPF_LSA, sizeof (struct ospf_lsa));
paul718e3742002-12-13 20:15:29 +0000216
217 new->flags = 0;
218 new->lock = 1;
219 new->retransmit_counter = 0;
Paul Jakma2518efd2006-08-27 06:49:29 +0000220 new->tv_recv = recent_relative_time ();
paul718e3742002-12-13 20:15:29 +0000221 new->tv_orig = new->tv_recv;
222 new->refresh_list = -1;
223
224 return new;
225}
226
227/* Duplicate OSPF LSA. */
228struct ospf_lsa *
229ospf_lsa_dup (struct ospf_lsa *lsa)
230{
231 struct ospf_lsa *new;
232
233 if (lsa == NULL)
234 return NULL;
235
236 new = XCALLOC (MTYPE_OSPF_LSA, sizeof (struct ospf_lsa));
237
238 memcpy (new, lsa, sizeof (struct ospf_lsa));
239 UNSET_FLAG (new->flags, OSPF_LSA_DISCARD);
240 new->lock = 1;
241 new->retransmit_counter = 0;
242 new->data = ospf_lsa_data_dup (lsa->data);
243
paulf2c80652002-12-13 21:44:27 +0000244 /* kevinm: Clear the refresh_list, otherwise there are going
245 to be problems when we try to remove the LSA from the
246 queue (which it's not a member of.)
247 XXX: Should we add the LSA to the refresh_list queue? */
248 new->refresh_list = -1;
249
250 if (IS_DEBUG_OSPF (lsa, LSA))
ajse588f212004-12-08 18:12:06 +0000251 zlog_debug ("LSA: duplicated %p (new: %p)", lsa, new);
paulf2c80652002-12-13 21:44:27 +0000252
paul718e3742002-12-13 20:15:29 +0000253 return new;
254}
255
256/* Free OSPF LSA. */
257void
258ospf_lsa_free (struct ospf_lsa *lsa)
259{
260 assert (lsa->lock == 0);
261
262 if (IS_DEBUG_OSPF (lsa, LSA))
ajse588f212004-12-08 18:12:06 +0000263 zlog_debug ("LSA: freed %p", lsa);
paul718e3742002-12-13 20:15:29 +0000264
265 /* Delete LSA data. */
266 if (lsa->data != NULL)
267 ospf_lsa_data_free (lsa->data);
268
269 assert (lsa->refresh_list < 0);
270
271 memset (lsa, 0, sizeof (struct ospf_lsa));
272 XFREE (MTYPE_OSPF_LSA, lsa);
273}
274
275/* Lock LSA. */
276struct ospf_lsa *
277ospf_lsa_lock (struct ospf_lsa *lsa)
278{
279 lsa->lock++;
280 return lsa;
281}
282
283/* Unlock LSA. */
284void
Paul Jakma1fe6ed32006-07-26 09:37:26 +0000285ospf_lsa_unlock (struct ospf_lsa **lsa)
paul718e3742002-12-13 20:15:29 +0000286{
287 /* This is sanity check. */
Paul Jakma1fe6ed32006-07-26 09:37:26 +0000288 if (!lsa || !*lsa)
paul718e3742002-12-13 20:15:29 +0000289 return;
290
Paul Jakma1fe6ed32006-07-26 09:37:26 +0000291 (*lsa)->lock--;
paul718e3742002-12-13 20:15:29 +0000292
Paul Jakma1fe6ed32006-07-26 09:37:26 +0000293 assert ((*lsa)->lock >= 0);
paul718e3742002-12-13 20:15:29 +0000294
Paul Jakma1fe6ed32006-07-26 09:37:26 +0000295 if ((*lsa)->lock == 0)
paul718e3742002-12-13 20:15:29 +0000296 {
Paul Jakma1fe6ed32006-07-26 09:37:26 +0000297 assert (CHECK_FLAG ((*lsa)->flags, OSPF_LSA_DISCARD));
298 ospf_lsa_free (*lsa);
299 *lsa = NULL;
paul718e3742002-12-13 20:15:29 +0000300 }
301}
302
303/* Check discard flag. */
304void
305ospf_lsa_discard (struct ospf_lsa *lsa)
306{
307 if (!CHECK_FLAG (lsa->flags, OSPF_LSA_DISCARD))
308 {
309 SET_FLAG (lsa->flags, OSPF_LSA_DISCARD);
Paul Jakma1fe6ed32006-07-26 09:37:26 +0000310 ospf_lsa_unlock (&lsa);
paul718e3742002-12-13 20:15:29 +0000311 }
312}
313
314/* Create LSA data. */
315struct lsa_header *
316ospf_lsa_data_new (size_t size)
317{
Stephen Hemminger393deb92008-08-18 14:13:29 -0700318 return XCALLOC (MTYPE_OSPF_LSA_DATA, size);
paul718e3742002-12-13 20:15:29 +0000319}
320
321/* Duplicate LSA data. */
322struct lsa_header *
323ospf_lsa_data_dup (struct lsa_header *lsah)
324{
325 struct lsa_header *new;
326
327 new = ospf_lsa_data_new (ntohs (lsah->length));
328 memcpy (new, lsah, ntohs (lsah->length));
329
330 return new;
331}
332
333/* Free LSA data. */
334void
335ospf_lsa_data_free (struct lsa_header *lsah)
336{
337 if (IS_DEBUG_OSPF (lsa, LSA))
ajse588f212004-12-08 18:12:06 +0000338 zlog_debug ("LSA[Type%d:%s]: data freed %p",
paul718e3742002-12-13 20:15:29 +0000339 lsah->type, inet_ntoa (lsah->id), lsah);
340
341 XFREE (MTYPE_OSPF_LSA_DATA, lsah);
342}
343
David Lamparter6b0655a2014-06-04 06:53:35 +0200344
paul718e3742002-12-13 20:15:29 +0000345/* LSA general functions. */
346
347const char *
348dump_lsa_key (struct ospf_lsa *lsa)
349{
350 static char buf[] = {
hasso52dc7ee2004-09-23 19:18:23 +0000351 "Type255,id(255.255.255.255),ar(255.255.255.255)"
paul718e3742002-12-13 20:15:29 +0000352 };
353 struct lsa_header *lsah;
354
355 if (lsa != NULL && (lsah = lsa->data) != NULL)
356 {
357 char id[INET_ADDRSTRLEN], ar[INET_ADDRSTRLEN];
358 strcpy (id, inet_ntoa (lsah->id));
359 strcpy (ar, inet_ntoa (lsah->adv_router));
360
361 sprintf (buf, "Type%d,id(%s),ar(%s)", lsah->type, id, ar);
362 }
363 else
364 strcpy (buf, "NULL");
365
366 return buf;
367}
368
369u_int32_t
370lsa_seqnum_increment (struct ospf_lsa *lsa)
371{
372 u_int32_t seqnum;
373
374 seqnum = ntohl (lsa->data->ls_seqnum) + 1;
375
376 return htonl (seqnum);
377}
378
379void
380lsa_header_set (struct stream *s, u_char options,
paul68980082003-03-25 05:07:42 +0000381 u_char type, struct in_addr id, struct in_addr router_id)
paul718e3742002-12-13 20:15:29 +0000382{
383 struct lsa_header *lsah;
384
385 lsah = (struct lsa_header *) STREAM_DATA (s);
386
Paul Jakma02d942c2010-01-24 23:36:20 +0000387 lsah->ls_age = htons (OSPF_LSA_INITIAL_AGE);
paul718e3742002-12-13 20:15:29 +0000388 lsah->options = options;
389 lsah->type = type;
390 lsah->id = id;
paul68980082003-03-25 05:07:42 +0000391 lsah->adv_router = router_id;
paul718e3742002-12-13 20:15:29 +0000392 lsah->ls_seqnum = htonl (OSPF_INITIAL_SEQUENCE_NUMBER);
393
paul9985f832005-02-09 15:51:56 +0000394 stream_forward_endp (s, OSPF_LSA_HEADER_SIZE);
paul718e3742002-12-13 20:15:29 +0000395}
David Lamparter6b0655a2014-06-04 06:53:35 +0200396
paul68980082003-03-25 05:07:42 +0000397
paul718e3742002-12-13 20:15:29 +0000398/* router-LSA related functions. */
399/* Get router-LSA flags. */
paul4dadc292005-05-06 21:37:42 +0000400static u_char
paul718e3742002-12-13 20:15:29 +0000401router_lsa_flags (struct ospf_area *area)
402{
403 u_char flags;
404
paul68980082003-03-25 05:07:42 +0000405 flags = area->ospf->flags;
paul718e3742002-12-13 20:15:29 +0000406
407 /* Set virtual link flag. */
408 if (ospf_full_virtual_nbrs (area))
409 SET_FLAG (flags, ROUTER_LSA_VIRTUAL);
410 else
411 /* Just sanity check */
412 UNSET_FLAG (flags, ROUTER_LSA_VIRTUAL);
413
414 /* Set Shortcut ABR behabiour flag. */
415 UNSET_FLAG (flags, ROUTER_LSA_SHORTCUT);
paul68980082003-03-25 05:07:42 +0000416 if (area->ospf->abr_type == OSPF_ABR_SHORTCUT)
paul718e3742002-12-13 20:15:29 +0000417 if (!OSPF_IS_AREA_BACKBONE (area))
418 if ((area->shortcut_configured == OSPF_SHORTCUT_DEFAULT &&
paul68980082003-03-25 05:07:42 +0000419 area->ospf->backbone == NULL) ||
paul718e3742002-12-13 20:15:29 +0000420 area->shortcut_configured == OSPF_SHORTCUT_ENABLE)
421 SET_FLAG (flags, ROUTER_LSA_SHORTCUT);
422
423 /* ASBR can't exit in stub area. */
Greg Troxelfc787e82007-08-06 15:50:20 +0000424 if (area->external_routing == OSPF_AREA_STUB)
paul942b6c12003-06-22 08:22:18 +0000425 UNSET_FLAG (flags, ROUTER_LSA_EXTERNAL);
426 /* If ASBR set External flag */
427 else if (IS_OSPF_ASBR (area->ospf))
428 SET_FLAG (flags, ROUTER_LSA_EXTERNAL);
429
430 /* Set ABR dependent flags */
431 if (IS_OSPF_ABR (area->ospf))
432 {
433 SET_FLAG (flags, ROUTER_LSA_BORDER);
paul942b6c12003-06-22 08:22:18 +0000434 /* If Area is NSSA and we are both ABR and unconditional translator,
pauld4a53d52003-07-12 21:30:57 +0000435 * set Nt bit to inform other routers.
paul942b6c12003-06-22 08:22:18 +0000436 */
pauld4a53d52003-07-12 21:30:57 +0000437 if ( (area->external_routing == OSPF_AREA_NSSA)
438 && (area->NSSATranslatorRole == OSPF_NSSA_ROLE_ALWAYS))
439 SET_FLAG (flags, ROUTER_LSA_NT);
paul942b6c12003-06-22 08:22:18 +0000440 }
paul718e3742002-12-13 20:15:29 +0000441 return flags;
442}
443
444/* Lookup neighbor other than myself.
445 And check neighbor count,
446 Point-to-Point link must have only 1 neighbor. */
447struct ospf_neighbor *
paul68980082003-03-25 05:07:42 +0000448ospf_nbr_lookup_ptop (struct ospf_interface *oi)
paul718e3742002-12-13 20:15:29 +0000449{
paul718e3742002-12-13 20:15:29 +0000450 struct ospf_neighbor *nbr = NULL;
paul68980082003-03-25 05:07:42 +0000451 struct route_node *rn;
paul718e3742002-12-13 20:15:29 +0000452
453 /* Search neighbor, there must be one of two nbrs. */
paul68980082003-03-25 05:07:42 +0000454 for (rn = route_top (oi->nbrs); rn; rn = route_next (rn))
455 if ((nbr = rn->info))
456 if (!IPV4_ADDR_SAME (&nbr->router_id, &oi->ospf->router_id))
paul718e3742002-12-13 20:15:29 +0000457 if (nbr->state == NSM_Full)
paul68980082003-03-25 05:07:42 +0000458 {
459 route_unlock_node (rn);
460 break;
461 }
paul718e3742002-12-13 20:15:29 +0000462
463 /* PtoP link must have only 1 neighbor. */
paul68980082003-03-25 05:07:42 +0000464 if (ospf_nbr_count (oi, 0) > 1)
paul718e3742002-12-13 20:15:29 +0000465 zlog_warn ("Point-to-Point link has more than 1 neighobrs.");
466
467 return nbr;
468}
469
paul88d6cf32005-10-29 12:50:09 +0000470/* Determine cost of link, taking RFC3137 stub-router support into
471 * consideration
472 */
473static u_int16_t
474ospf_link_cost (struct ospf_interface *oi)
475{
476 /* RFC3137 stub router support */
477 if (!CHECK_FLAG (oi->area->stub_router_state, OSPF_AREA_IS_STUB_ROUTED))
478 return oi->output_cost;
479 else
480 return OSPF_OUTPUT_COST_INFINITE;
481}
482
paul718e3742002-12-13 20:15:29 +0000483/* Set a link information. */
paul779adb02006-01-18 15:07:38 +0000484static char
paul718e3742002-12-13 20:15:29 +0000485link_info_set (struct stream *s, struct in_addr id,
486 struct in_addr data, u_char type, u_char tos, u_int16_t cost)
487{
paul779adb02006-01-18 15:07:38 +0000488 /* LSA stream is initially allocated to OSPF_MAX_LSA_SIZE, suits
489 * vast majority of cases. Some rare routers with lots of links need more.
490 * we try accomodate those here.
491 */
492 if (STREAM_WRITEABLE(s) < OSPF_ROUTER_LSA_LINK_SIZE)
493 {
494 size_t ret = OSPF_MAX_LSA_SIZE;
495
496 /* Can we enlarge the stream still? */
497 if (STREAM_SIZE(s) == OSPF_MAX_LSA_SIZE)
498 {
499 /* we futz the size here for simplicity, really we need to account
500 * for just:
501 * IP Header - (sizeof (struct ip))
502 * OSPF Header - OSPF_HEADER_SIZE
503 * LSA Header - OSPF_LSA_HEADER_SIZE
504 * MD5 auth data, if MD5 is configured - OSPF_AUTH_MD5_SIZE.
505 *
506 * Simpler just to subtract OSPF_MAX_LSA_SIZE though.
507 */
508 ret = stream_resize (s, OSPF_MAX_PACKET_SIZE - OSPF_MAX_LSA_SIZE);
509 }
510
511 if (ret == OSPF_MAX_LSA_SIZE)
512 {
Paul Jakma53725102009-08-03 16:34:16 +0100513 zlog_warn ("%s: Out of space in LSA stream, left %zd, size %zd",
paul779adb02006-01-18 15:07:38 +0000514 __func__, STREAM_REMAIN (s), STREAM_SIZE (s));
515 return 0;
516 }
517 }
518
paul718e3742002-12-13 20:15:29 +0000519 /* TOS based routing is not supported. */
520 stream_put_ipv4 (s, id.s_addr); /* Link ID. */
521 stream_put_ipv4 (s, data.s_addr); /* Link Data. */
522 stream_putc (s, type); /* Link Type. */
523 stream_putc (s, tos); /* TOS = 0. */
524 stream_putw (s, cost); /* Link Cost. */
paul779adb02006-01-18 15:07:38 +0000525
526 return 1;
paul718e3742002-12-13 20:15:29 +0000527}
528
Andrew J. Schorre4529632006-12-12 19:18:21 +0000529/* Describe Point-to-Point link (Section 12.4.1.1). */
paul4dadc292005-05-06 21:37:42 +0000530static int
paul718e3742002-12-13 20:15:29 +0000531lsa_link_ptop_set (struct stream *s, struct ospf_interface *oi)
532{
533 int links = 0;
534 struct ospf_neighbor *nbr;
535 struct in_addr id, mask;
paul88d6cf32005-10-29 12:50:09 +0000536 u_int16_t cost = ospf_link_cost (oi);
paul718e3742002-12-13 20:15:29 +0000537
538 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
ajse588f212004-12-08 18:12:06 +0000539 zlog_debug ("LSA[Type1]: Set link Point-to-Point");
paul718e3742002-12-13 20:15:29 +0000540
paul68980082003-03-25 05:07:42 +0000541 if ((nbr = ospf_nbr_lookup_ptop (oi)))
paul718e3742002-12-13 20:15:29 +0000542 if (nbr->state == NSM_Full)
543 {
544 /* For unnumbered point-to-point networks, the Link Data field
545 should specify the interface's MIB-II ifIndex value. */
paul779adb02006-01-18 15:07:38 +0000546 links += link_info_set (s, nbr->router_id, oi->address->u.prefix4,
547 LSA_LINK_TYPE_POINTOPOINT, 0, cost);
paul718e3742002-12-13 20:15:29 +0000548 }
549
Andrew J. Schorre4529632006-12-12 19:18:21 +0000550 /* Regardless of the state of the neighboring router, we must
551 add a Type 3 link (stub network).
552 N.B. Options 1 & 2 share basically the same logic. */
553 masklen2ip (oi->address->prefixlen, &mask);
554 id.s_addr = CONNECTED_PREFIX(oi->connected)->u.prefix4.s_addr & mask.s_addr;
555 links += link_info_set (s, id, mask, LSA_LINK_TYPE_STUB, 0,
556 oi->output_cost);
paul718e3742002-12-13 20:15:29 +0000557 return links;
558}
559
560/* Describe Broadcast Link. */
paul4dadc292005-05-06 21:37:42 +0000561static int
paul718e3742002-12-13 20:15:29 +0000562lsa_link_broadcast_set (struct stream *s, struct ospf_interface *oi)
563{
564 struct ospf_neighbor *dr;
565 struct in_addr id, mask;
paul88d6cf32005-10-29 12:50:09 +0000566 u_int16_t cost = ospf_link_cost (oi);
567
paul718e3742002-12-13 20:15:29 +0000568 /* Describe Type 3 Link. */
569 if (oi->state == ISM_Waiting)
570 {
Christian Frankecbf435c2014-04-28 11:42:20 +0000571 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
572 zlog_debug ("LSA[Type1]: Interface %s is in state Waiting. "
573 "Adding stub interface", oi->ifp->name);
paul718e3742002-12-13 20:15:29 +0000574 masklen2ip (oi->address->prefixlen, &mask);
575 id.s_addr = oi->address->u.prefix4.s_addr & mask.s_addr;
paul779adb02006-01-18 15:07:38 +0000576 return link_info_set (s, id, mask, LSA_LINK_TYPE_STUB, 0,
577 oi->output_cost);
paul718e3742002-12-13 20:15:29 +0000578 }
579
580 dr = ospf_nbr_lookup_by_addr (oi->nbrs, &DR (oi));
581 /* Describe Type 2 link. */
582 if (dr && (dr->state == NSM_Full ||
583 IPV4_ADDR_SAME (&oi->address->u.prefix4, &DR (oi))) &&
paul68980082003-03-25 05:07:42 +0000584 ospf_nbr_count (oi, NSM_Full) > 0)
paul718e3742002-12-13 20:15:29 +0000585 {
Christian Frankecbf435c2014-04-28 11:42:20 +0000586 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
587 zlog_debug ("LSA[Type1]: Interface %s has a DR. "
588 "Adding transit interface", oi->ifp->name);
paul779adb02006-01-18 15:07:38 +0000589 return link_info_set (s, DR (oi), oi->address->u.prefix4,
590 LSA_LINK_TYPE_TRANSIT, 0, cost);
paul718e3742002-12-13 20:15:29 +0000591 }
592 /* Describe type 3 link. */
593 else
594 {
Christian Frankecbf435c2014-04-28 11:42:20 +0000595 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
596 zlog_debug ("LSA[Type1]: Interface %s has no DR. "
597 "Adding stub interface", oi->ifp->name);
paul718e3742002-12-13 20:15:29 +0000598 masklen2ip (oi->address->prefixlen, &mask);
599 id.s_addr = oi->address->u.prefix4.s_addr & mask.s_addr;
paul779adb02006-01-18 15:07:38 +0000600 return link_info_set (s, id, mask, LSA_LINK_TYPE_STUB, 0,
601 oi->output_cost);
paul718e3742002-12-13 20:15:29 +0000602 }
paul718e3742002-12-13 20:15:29 +0000603}
604
paul4dadc292005-05-06 21:37:42 +0000605static int
paul718e3742002-12-13 20:15:29 +0000606lsa_link_loopback_set (struct stream *s, struct ospf_interface *oi)
607{
608 struct in_addr id, mask;
paul88d6cf32005-10-29 12:50:09 +0000609
paul718e3742002-12-13 20:15:29 +0000610 /* Describe Type 3 Link. */
611 if (oi->state != ISM_Loopback)
612 return 0;
613
614 mask.s_addr = 0xffffffff;
615 id.s_addr = oi->address->u.prefix4.s_addr;
paul779adb02006-01-18 15:07:38 +0000616 return link_info_set (s, id, mask, LSA_LINK_TYPE_STUB, 0, oi->output_cost);
paul718e3742002-12-13 20:15:29 +0000617}
618
619/* Describe Virtual Link. */
paul4dadc292005-05-06 21:37:42 +0000620static int
paul718e3742002-12-13 20:15:29 +0000621lsa_link_virtuallink_set (struct stream *s, struct ospf_interface *oi)
622{
623 struct ospf_neighbor *nbr;
paul88d6cf32005-10-29 12:50:09 +0000624 u_int16_t cost = ospf_link_cost (oi);
paul718e3742002-12-13 20:15:29 +0000625
paul718e3742002-12-13 20:15:29 +0000626 if (oi->state == ISM_PointToPoint)
paul68980082003-03-25 05:07:42 +0000627 if ((nbr = ospf_nbr_lookup_ptop (oi)))
paul718e3742002-12-13 20:15:29 +0000628 if (nbr->state == NSM_Full)
629 {
paul779adb02006-01-18 15:07:38 +0000630 return link_info_set (s, nbr->router_id, oi->address->u.prefix4,
631 LSA_LINK_TYPE_VIRTUALLINK, 0, cost);
paul718e3742002-12-13 20:15:29 +0000632 }
633
634 return 0;
635}
636
637#define lsa_link_nbma_set(S,O) lsa_link_broadcast_set (S, O)
638
paul7afa08d2002-12-13 20:59:45 +0000639/* this function add for support point-to-multipoint ,see rfc2328
64012.4.1.4.*/
641/* from "edward rrr" <edward_rrr@hotmail.com>
642 http://marc.theaimsgroup.com/?l=zebra&m=100739222210507&w=2 */
paul4dadc292005-05-06 21:37:42 +0000643static int
paul68980082003-03-25 05:07:42 +0000644lsa_link_ptomp_set (struct stream *s, struct ospf_interface *oi)
paul7afa08d2002-12-13 20:59:45 +0000645{
646 int links = 0;
647 struct route_node *rn;
648 struct ospf_neighbor *nbr = NULL;
649 struct in_addr id, mask;
paul88d6cf32005-10-29 12:50:09 +0000650 u_int16_t cost = ospf_link_cost (oi);
paul7afa08d2002-12-13 20:59:45 +0000651
652 mask.s_addr = 0xffffffff;
653 id.s_addr = oi->address->u.prefix4.s_addr;
paul779adb02006-01-18 15:07:38 +0000654 links += link_info_set (s, id, mask, LSA_LINK_TYPE_STUB, 0, 0);
paul7afa08d2002-12-13 20:59:45 +0000655
paul1cc8f762003-04-05 19:34:32 +0000656 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
ajse588f212004-12-08 18:12:06 +0000657 zlog_debug ("PointToMultipoint: running ptomultip_set");
paul7afa08d2002-12-13 20:59:45 +0000658
659 /* Search neighbor, */
660 for (rn = route_top (oi->nbrs); rn; rn = route_next (rn))
661 if ((nbr = rn->info) != NULL)
662 /* Ignore myself. */
paul68980082003-03-25 05:07:42 +0000663 if (!IPV4_ADDR_SAME (&nbr->router_id, &oi->ospf->router_id))
paul7afa08d2002-12-13 20:59:45 +0000664 if (nbr->state == NSM_Full)
665
666 {
paul779adb02006-01-18 15:07:38 +0000667 links += link_info_set (s, nbr->router_id, oi->address->u.prefix4,
668 LSA_LINK_TYPE_POINTOPOINT, 0, cost);
paul1cc8f762003-04-05 19:34:32 +0000669 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
ajse588f212004-12-08 18:12:06 +0000670 zlog_debug ("PointToMultipoint: set link to %s",
paul1cc8f762003-04-05 19:34:32 +0000671 inet_ntoa(oi->address->u.prefix4));
paul7afa08d2002-12-13 20:59:45 +0000672 }
673
674 return links;
paul7afa08d2002-12-13 20:59:45 +0000675}
676
paul718e3742002-12-13 20:15:29 +0000677/* Set router-LSA link information. */
paul4dadc292005-05-06 21:37:42 +0000678static int
paul718e3742002-12-13 20:15:29 +0000679router_lsa_link_set (struct stream *s, struct ospf_area *area)
680{
hasso52dc7ee2004-09-23 19:18:23 +0000681 struct listnode *node;
paul1eb8ef22005-04-07 07:30:20 +0000682 struct ospf_interface *oi;
paul718e3742002-12-13 20:15:29 +0000683 int links = 0;
684
paul1eb8ef22005-04-07 07:30:20 +0000685 for (ALL_LIST_ELEMENTS_RO (area->oiflist, node, oi))
paul718e3742002-12-13 20:15:29 +0000686 {
paul718e3742002-12-13 20:15:29 +0000687 struct interface *ifp = oi->ifp;
688
689 /* Check interface is up, OSPF is enable. */
paul2e3b2e42002-12-13 21:03:13 +0000690 if (if_is_operative (ifp))
paul718e3742002-12-13 20:15:29 +0000691 {
692 if (oi->state != ISM_Down)
693 {
Joakim Tjernlundc81ee5c2012-07-07 17:06:11 +0200694 oi->lsa_pos_beg = links;
paul718e3742002-12-13 20:15:29 +0000695 /* Describe each link. */
696 switch (oi->type)
697 {
698 case OSPF_IFTYPE_POINTOPOINT:
699 links += lsa_link_ptop_set (s, oi);
700 break;
701 case OSPF_IFTYPE_BROADCAST:
702 links += lsa_link_broadcast_set (s, oi);
703 break;
704 case OSPF_IFTYPE_NBMA:
705 links += lsa_link_nbma_set (s, oi);
706 break;
707 case OSPF_IFTYPE_POINTOMULTIPOINT:
paul68980082003-03-25 05:07:42 +0000708 links += lsa_link_ptomp_set (s, oi);
paul718e3742002-12-13 20:15:29 +0000709 break;
710 case OSPF_IFTYPE_VIRTUALLINK:
711 links += lsa_link_virtuallink_set (s, oi);
712 break;
713 case OSPF_IFTYPE_LOOPBACK:
714 links += lsa_link_loopback_set (s, oi);
715 }
Joakim Tjernlundc81ee5c2012-07-07 17:06:11 +0200716 oi->lsa_pos_end = links;
paul718e3742002-12-13 20:15:29 +0000717 }
718 }
719 }
720
721 return links;
722}
723
724/* Set router-LSA body. */
paul4dadc292005-05-06 21:37:42 +0000725static void
paul718e3742002-12-13 20:15:29 +0000726ospf_router_lsa_body_set (struct stream *s, struct ospf_area *area)
727{
728 unsigned long putp;
729 u_int16_t cnt;
730
731 /* Set flags. */
732 stream_putc (s, router_lsa_flags (area));
733
734 /* Set Zero fields. */
735 stream_putc (s, 0);
736
737 /* Keep pointer to # links. */
paul9985f832005-02-09 15:51:56 +0000738 putp = stream_get_endp(s);
paul718e3742002-12-13 20:15:29 +0000739
740 /* Forward word */
741 stream_putw(s, 0);
742
743 /* Set all link information. */
744 cnt = router_lsa_link_set (s, area);
745
746 /* Set # of links here. */
747 stream_putw_at (s, putp, cnt);
748}
David Lamparter6b0655a2014-06-04 06:53:35 +0200749
paul88d6cf32005-10-29 12:50:09 +0000750static int
751ospf_stub_router_timer (struct thread *t)
752{
753 struct ospf_area *area = THREAD_ARG (t);
754
755 area->t_stub_router = NULL;
756
757 SET_FLAG (area->stub_router_state, OSPF_AREA_WAS_START_STUB_ROUTED);
758
759 /* clear stub route state and generate router-lsa refresh, don't
760 * clobber an administratively set stub-router state though.
761 */
762 if (CHECK_FLAG (area->stub_router_state, OSPF_AREA_ADMIN_STUB_ROUTED))
763 return 0;
764
765 UNSET_FLAG (area->stub_router_state, OSPF_AREA_IS_STUB_ROUTED);
766
Paul Jakmac363d382010-01-24 22:42:13 +0000767 ospf_router_lsa_update_area (area);
paul88d6cf32005-10-29 12:50:09 +0000768
769 return 0;
770}
paul718e3742002-12-13 20:15:29 +0000771
Paul Jakmaf63f06d2011-04-08 12:44:43 +0100772static void
paul88d6cf32005-10-29 12:50:09 +0000773ospf_stub_router_check (struct ospf_area *area)
774{
775 /* area must either be administratively configured to be stub
776 * or startup-time stub-router must be configured and we must in a pre-stub
777 * state.
778 */
779 if (CHECK_FLAG (area->stub_router_state, OSPF_AREA_ADMIN_STUB_ROUTED))
780 {
781 SET_FLAG (area->stub_router_state, OSPF_AREA_IS_STUB_ROUTED);
782 return;
783 }
784
785 /* not admin-stubbed, check whether startup stubbing is configured and
786 * whether it's not been done yet
787 */
788 if (CHECK_FLAG (area->stub_router_state, OSPF_AREA_WAS_START_STUB_ROUTED))
789 return;
790
791 if (area->ospf->stub_router_startup_time == OSPF_STUB_ROUTER_UNCONFIGURED)
792 {
793 /* stub-router is hence done forever for this area, even if someone
794 * tries configure it (take effect next restart).
795 */
796 SET_FLAG (area->stub_router_state, OSPF_AREA_WAS_START_STUB_ROUTED);
797 return;
798 }
799
800 /* startup stub-router configured and not yet done */
801 SET_FLAG (area->stub_router_state, OSPF_AREA_IS_STUB_ROUTED);
802
803 OSPF_AREA_TIMER_ON (area->t_stub_router, ospf_stub_router_timer,
804 area->ospf->stub_router_startup_time);
805}
David Lamparter6b0655a2014-06-04 06:53:35 +0200806
paul718e3742002-12-13 20:15:29 +0000807/* Create new router-LSA. */
paul4dadc292005-05-06 21:37:42 +0000808static struct ospf_lsa *
paul718e3742002-12-13 20:15:29 +0000809ospf_router_lsa_new (struct ospf_area *area)
810{
paul68980082003-03-25 05:07:42 +0000811 struct ospf *ospf = area->ospf;
paul718e3742002-12-13 20:15:29 +0000812 struct stream *s;
813 struct lsa_header *lsah;
814 struct ospf_lsa *new;
815 int length;
816
817 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
ajse588f212004-12-08 18:12:06 +0000818 zlog_debug ("LSA[Type1]: Create router-LSA instance");
paul718e3742002-12-13 20:15:29 +0000819
paul88d6cf32005-10-29 12:50:09 +0000820 /* check whether stub-router is desired, and if this is the first
821 * router LSA.
822 */
823 ospf_stub_router_check (area);
824
paul718e3742002-12-13 20:15:29 +0000825 /* Create a stream for LSA. */
826 s = stream_new (OSPF_MAX_LSA_SIZE);
paul718e3742002-12-13 20:15:29 +0000827 /* Set LSA common header fields. */
pauld4a53d52003-07-12 21:30:57 +0000828 lsa_header_set (s, LSA_OPTIONS_GET (area) | LSA_OPTIONS_NSSA_GET (area),
pauld4a53d52003-07-12 21:30:57 +0000829 OSPF_ROUTER_LSA, ospf->router_id, ospf->router_id);
paul718e3742002-12-13 20:15:29 +0000830
831 /* Set router-LSA body fields. */
832 ospf_router_lsa_body_set (s, area);
833
834 /* Set length. */
835 length = stream_get_endp (s);
paul779adb02006-01-18 15:07:38 +0000836 lsah = (struct lsa_header *) STREAM_DATA (s);
paul718e3742002-12-13 20:15:29 +0000837 lsah->length = htons (length);
838
839 /* Now, create OSPF LSA instance. */
paulc24d6022005-11-20 14:54:12 +0000840 if ( (new = ospf_lsa_new ()) == NULL)
841 {
842 zlog_err ("%s: Unable to create new lsa", __func__);
843 return NULL;
844 }
845
paul718e3742002-12-13 20:15:29 +0000846 new->area = area;
Joakim Tjernlundf6543132008-11-04 13:37:29 +0000847 SET_FLAG (new->flags, OSPF_LSA_SELF | OSPF_LSA_SELF_CHECKED);
paul718e3742002-12-13 20:15:29 +0000848
849 /* Copy LSA data to store, discard stream. */
850 new->data = ospf_lsa_data_new (length);
851 memcpy (new->data, lsah, length);
852 stream_free (s);
853
854 return new;
855}
856
857/* Originate Router-LSA. */
paul88d6cf32005-10-29 12:50:09 +0000858static struct ospf_lsa *
paul718e3742002-12-13 20:15:29 +0000859ospf_router_lsa_originate (struct ospf_area *area)
860{
861 struct ospf_lsa *new;
paul88d6cf32005-10-29 12:50:09 +0000862
paul718e3742002-12-13 20:15:29 +0000863 /* Create new router-LSA instance. */
paulc24d6022005-11-20 14:54:12 +0000864 if ( (new = ospf_router_lsa_new (area)) == NULL)
865 {
866 zlog_err ("%s: ospf_router_lsa_new returned NULL", __func__);
867 return NULL;
868 }
paul718e3742002-12-13 20:15:29 +0000869
870 /* Sanity check. */
871 if (new->data->adv_router.s_addr == 0)
872 {
873 if (IS_DEBUG_OSPF_EVENT)
ajse588f212004-12-08 18:12:06 +0000874 zlog_debug ("LSA[Type1]: AdvRouter is 0, discard");
paul718e3742002-12-13 20:15:29 +0000875 ospf_lsa_discard (new);
876 return NULL;
877 }
878
879 /* Install LSA to LSDB. */
paul68980082003-03-25 05:07:42 +0000880 new = ospf_lsa_install (area->ospf, NULL, new);
paul718e3742002-12-13 20:15:29 +0000881
882 /* Update LSA origination count. */
paul68980082003-03-25 05:07:42 +0000883 area->ospf->lsa_originate_count++;
paul718e3742002-12-13 20:15:29 +0000884
885 /* Flooding new LSA through area. */
886 ospf_flood_through_area (area, NULL, new);
887
888 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
889 {
ajse588f212004-12-08 18:12:06 +0000890 zlog_debug ("LSA[Type%d:%s]: Originate router-LSA %p",
paul718e3742002-12-13 20:15:29 +0000891 new->data->type, inet_ntoa (new->data->id), new);
892 ospf_lsa_header_dump (new->data);
893 }
894
895 return new;
896}
897
898/* Refresh router-LSA. */
paul4dadc292005-05-06 21:37:42 +0000899static struct ospf_lsa *
paul718e3742002-12-13 20:15:29 +0000900ospf_router_lsa_refresh (struct ospf_lsa *lsa)
901{
902 struct ospf_area *area = lsa->area;
903 struct ospf_lsa *new;
904
905 /* Sanity check. */
906 assert (lsa->data);
907
908 /* Delete LSA from neighbor retransmit-list. */
paul68980082003-03-25 05:07:42 +0000909 ospf_ls_retransmit_delete_nbr_area (area, lsa);
paul718e3742002-12-13 20:15:29 +0000910
Paul Jakmac363d382010-01-24 22:42:13 +0000911 /* Unregister LSA from refresh-list */
912 ospf_refresher_unregister_lsa (area->ospf, lsa);
913
paul718e3742002-12-13 20:15:29 +0000914 /* Create new router-LSA instance. */
paulc24d6022005-11-20 14:54:12 +0000915 if ( (new = ospf_router_lsa_new (area)) == NULL)
916 {
917 zlog_err ("%s: ospf_router_lsa_new returned NULL", __func__);
918 return NULL;
919 }
920
paul718e3742002-12-13 20:15:29 +0000921 new->data->ls_seqnum = lsa_seqnum_increment (lsa);
922
paul68980082003-03-25 05:07:42 +0000923 ospf_lsa_install (area->ospf, NULL, new);
paul718e3742002-12-13 20:15:29 +0000924
925 /* Flood LSA through area. */
926 ospf_flood_through_area (area, NULL, new);
927
928 /* Debug logging. */
929 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
930 {
ajse588f212004-12-08 18:12:06 +0000931 zlog_debug ("LSA[Type%d:%s]: router-LSA refresh",
paul718e3742002-12-13 20:15:29 +0000932 new->data->type, inet_ntoa (new->data->id));
933 ospf_lsa_header_dump (new->data);
934 }
935
936 return NULL;
937}
938
Paul Jakmac363d382010-01-24 22:42:13 +0000939int
940ospf_router_lsa_update_area (struct ospf_area *area)
paul718e3742002-12-13 20:15:29 +0000941{
paul718e3742002-12-13 20:15:29 +0000942 if (IS_DEBUG_OSPF_EVENT)
Paul Jakmac363d382010-01-24 22:42:13 +0000943 zlog_debug ("[router-LSA]: (router-LSA area update)");
paul718e3742002-12-13 20:15:29 +0000944
945 /* Now refresh router-LSA. */
946 if (area->router_lsa_self)
Paul Jakmac363d382010-01-24 22:42:13 +0000947 ospf_lsa_refresh (area->ospf, area->router_lsa_self);
paul718e3742002-12-13 20:15:29 +0000948 /* Newly originate router-LSA. */
949 else
950 ospf_router_lsa_originate (area);
951
952 return 0;
953}
954
paul718e3742002-12-13 20:15:29 +0000955int
Paul Jakmac363d382010-01-24 22:42:13 +0000956ospf_router_lsa_update (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +0000957{
paul1eb8ef22005-04-07 07:30:20 +0000958 struct listnode *node, *nnode;
959 struct ospf_area *area;
paul718e3742002-12-13 20:15:29 +0000960
961 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
ajse588f212004-12-08 18:12:06 +0000962 zlog_debug ("Timer[router-LSA Update]: (timer expire)");
paul718e3742002-12-13 20:15:29 +0000963
paul1eb8ef22005-04-07 07:30:20 +0000964 for (ALL_LIST_ELEMENTS (ospf->areas, node, nnode, area))
paul718e3742002-12-13 20:15:29 +0000965 {
paul718e3742002-12-13 20:15:29 +0000966 struct ospf_lsa *lsa = area->router_lsa_self;
967 struct router_lsa *rl;
hassoeb1ce602004-10-08 08:17:22 +0000968 const char *area_str;
paul718e3742002-12-13 20:15:29 +0000969
970 /* Keep Area ID string. */
971 area_str = AREA_NAME (area);
972
973 /* If LSA not exist in this Area, originate new. */
974 if (lsa == NULL)
975 {
976 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
ajse588f212004-12-08 18:12:06 +0000977 zlog_debug("LSA[Type1]: Create router-LSA for Area %s", area_str);
paul718e3742002-12-13 20:15:29 +0000978
979 ospf_router_lsa_originate (area);
980 }
981 /* If router-ID is changed, Link ID must change.
982 First flush old LSA, then originate new. */
paul68980082003-03-25 05:07:42 +0000983 else if (!IPV4_ADDR_SAME (&lsa->data->id, &ospf->router_id))
paul718e3742002-12-13 20:15:29 +0000984 {
985 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
ajse588f212004-12-08 18:12:06 +0000986 zlog_debug("LSA[Type%d:%s]: Refresh router-LSA for Area %s",
paul718e3742002-12-13 20:15:29 +0000987 lsa->data->type, inet_ntoa (lsa->data->id), area_str);
Paul Jakmadfbd5172010-04-14 10:32:12 +0100988 ospf_refresher_unregister_lsa (ospf, lsa);
paul718e3742002-12-13 20:15:29 +0000989 ospf_lsa_flush_area (lsa, area);
Paul Jakma1fe6ed32006-07-26 09:37:26 +0000990 ospf_lsa_unlock (&area->router_lsa_self);
paul718e3742002-12-13 20:15:29 +0000991 area->router_lsa_self = NULL;
992
993 /* Refresh router-LSA, (not install) and flood through area. */
Paul Jakmac363d382010-01-24 22:42:13 +0000994 ospf_router_lsa_update_area (area);
paul718e3742002-12-13 20:15:29 +0000995 }
996 else
997 {
998 rl = (struct router_lsa *) lsa->data;
999 /* Refresh router-LSA, (not install) and flood through area. */
paul68980082003-03-25 05:07:42 +00001000 if (rl->flags != ospf->flags)
Paul Jakmac363d382010-01-24 22:42:13 +00001001 ospf_router_lsa_update_area (area);
paul718e3742002-12-13 20:15:29 +00001002 }
1003 }
1004
1005 return 0;
1006}
1007
David Lamparter6b0655a2014-06-04 06:53:35 +02001008
paul718e3742002-12-13 20:15:29 +00001009/* network-LSA related functions. */
1010/* Originate Network-LSA. */
paul4dadc292005-05-06 21:37:42 +00001011static void
paul718e3742002-12-13 20:15:29 +00001012ospf_network_lsa_body_set (struct stream *s, struct ospf_interface *oi)
1013{
1014 struct in_addr mask;
1015 struct route_node *rn;
1016 struct ospf_neighbor *nbr;
1017
1018 masklen2ip (oi->address->prefixlen, &mask);
1019 stream_put_ipv4 (s, mask.s_addr);
1020
1021 /* The network-LSA lists those routers that are fully adjacent to
1022 the Designated Router; each fully adjacent router is identified by
1023 its OSPF Router ID. The Designated Router includes itself in this
1024 list. RFC2328, Section 12.4.2 */
1025
1026 for (rn = route_top (oi->nbrs); rn; rn = route_next (rn))
1027 if ((nbr = rn->info) != NULL)
1028 if (nbr->state == NSM_Full || nbr == oi->nbr_self)
1029 stream_put_ipv4 (s, nbr->router_id.s_addr);
1030}
1031
paul4dadc292005-05-06 21:37:42 +00001032static struct ospf_lsa *
paul718e3742002-12-13 20:15:29 +00001033ospf_network_lsa_new (struct ospf_interface *oi)
1034{
1035 struct stream *s;
1036 struct ospf_lsa *new;
1037 struct lsa_header *lsah;
Paul Jakma7eb5b472009-10-13 16:13:13 +01001038 struct ospf_if_params *oip;
paul718e3742002-12-13 20:15:29 +00001039 int length;
1040
1041 /* If there are no neighbours on this network (the net is stub),
1042 the router does not originate network-LSA (see RFC 12.4.2) */
1043 if (oi->full_nbrs == 0)
1044 return NULL;
1045
1046 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
ajse588f212004-12-08 18:12:06 +00001047 zlog_debug ("LSA[Type2]: Create network-LSA instance");
paul718e3742002-12-13 20:15:29 +00001048
1049 /* Create new stream for LSA. */
1050 s = stream_new (OSPF_MAX_LSA_SIZE);
1051 lsah = (struct lsa_header *) STREAM_DATA (s);
1052
1053 lsa_header_set (s, (OPTIONS (oi) | LSA_OPTIONS_GET (oi->area)),
paul68980082003-03-25 05:07:42 +00001054 OSPF_NETWORK_LSA, DR (oi), oi->ospf->router_id);
paul718e3742002-12-13 20:15:29 +00001055
1056 /* Set network-LSA body fields. */
1057 ospf_network_lsa_body_set (s, oi);
1058
1059 /* Set length. */
1060 length = stream_get_endp (s);
1061 lsah->length = htons (length);
1062
1063 /* Create OSPF LSA instance. */
paulc24d6022005-11-20 14:54:12 +00001064 if ( (new = ospf_lsa_new ()) == NULL)
1065 {
1066 zlog_err ("%s: ospf_lsa_new returned NULL", __func__);
1067 return NULL;
1068 }
1069
paul718e3742002-12-13 20:15:29 +00001070 new->area = oi->area;
Joakim Tjernlundf6543132008-11-04 13:37:29 +00001071 SET_FLAG (new->flags, OSPF_LSA_SELF | OSPF_LSA_SELF_CHECKED);
paul718e3742002-12-13 20:15:29 +00001072
1073 /* Copy LSA to store. */
1074 new->data = ospf_lsa_data_new (length);
1075 memcpy (new->data, lsah, length);
1076 stream_free (s);
Paul Jakma7eb5b472009-10-13 16:13:13 +01001077
1078 /* Remember prior network LSA sequence numbers, even if we stop
1079 * originating one for this oi, to try avoid re-originating LSAs with a
1080 * prior sequence number, and thus speed up adjency forming & convergence.
1081 */
1082 if ((oip = ospf_lookup_if_params (oi->ifp, oi->address->u.prefix4)))
1083 {
1084 new->data->ls_seqnum = oip->network_lsa_seqnum;
1085 new->data->ls_seqnum = lsa_seqnum_increment (new);
1086 }
1087 else
1088 {
1089 oip = ospf_get_if_params (oi->ifp, oi->address->u.prefix4);
1090 ospf_if_update_params (oi->ifp, oi->address->u.prefix4);
1091 }
1092 oip->network_lsa_seqnum = new->data->ls_seqnum;
1093
paul718e3742002-12-13 20:15:29 +00001094 return new;
1095}
1096
1097/* Originate network-LSA. */
Paul Jakmac363d382010-01-24 22:42:13 +00001098void
1099ospf_network_lsa_update (struct ospf_interface *oi)
paul718e3742002-12-13 20:15:29 +00001100{
1101 struct ospf_lsa *new;
Paul Jakmac363d382010-01-24 22:42:13 +00001102
1103 if (oi->network_lsa_self != NULL)
1104 {
1105 ospf_lsa_refresh (oi->ospf, oi->network_lsa_self);
1106 return;
1107 }
1108
paul718e3742002-12-13 20:15:29 +00001109 /* Create new network-LSA instance. */
1110 new = ospf_network_lsa_new (oi);
1111 if (new == NULL)
Paul Jakmac363d382010-01-24 22:42:13 +00001112 return;
paul718e3742002-12-13 20:15:29 +00001113
1114 /* Install LSA to LSDB. */
paul68980082003-03-25 05:07:42 +00001115 new = ospf_lsa_install (oi->ospf, oi, new);
paul718e3742002-12-13 20:15:29 +00001116
1117 /* Update LSA origination count. */
paul68980082003-03-25 05:07:42 +00001118 oi->ospf->lsa_originate_count++;
paul718e3742002-12-13 20:15:29 +00001119
1120 /* Flooding new LSA through area. */
1121 ospf_flood_through_area (oi->area, NULL, new);
1122
1123 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
1124 {
ajse588f212004-12-08 18:12:06 +00001125 zlog_debug ("LSA[Type%d:%s]: Originate network-LSA %p",
paul718e3742002-12-13 20:15:29 +00001126 new->data->type, inet_ntoa (new->data->id), new);
1127 ospf_lsa_header_dump (new->data);
1128 }
1129
Paul Jakmac363d382010-01-24 22:42:13 +00001130 return;
paul718e3742002-12-13 20:15:29 +00001131}
1132
Paul Jakmac363d382010-01-24 22:42:13 +00001133static struct ospf_lsa *
1134ospf_network_lsa_refresh (struct ospf_lsa *lsa)
paul718e3742002-12-13 20:15:29 +00001135{
1136 struct ospf_area *area = lsa->area;
Paul Jakmac363d382010-01-24 22:42:13 +00001137 struct ospf_lsa *new, *new2;
Paul Jakma7eb5b472009-10-13 16:13:13 +01001138 struct ospf_if_params *oip;
Paul Jakma4dd87df2010-04-15 08:11:51 +01001139 struct ospf_interface *oi;
Paul Jakmac363d382010-01-24 22:42:13 +00001140
paul718e3742002-12-13 20:15:29 +00001141 assert (lsa->data);
Paul Jakma4dd87df2010-04-15 08:11:51 +01001142
1143 /* Retrieve the oi for the network LSA */
1144 oi = ospf_if_lookup_by_local_addr (area->ospf, NULL, lsa->data->id);
1145 if (oi == NULL)
1146 {
1147 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
1148 {
1149 zlog_debug ("LSA[Type%d:%s]: network-LSA refresh: "
1150 "no oi found, ick, ignoring.",
1151 lsa->data->type, inet_ntoa (lsa->data->id));
1152 ospf_lsa_header_dump (lsa->data);
1153 }
1154 return NULL;
1155 }
paul718e3742002-12-13 20:15:29 +00001156 /* Delete LSA from neighbor retransmit-list. */
paul68980082003-03-25 05:07:42 +00001157 ospf_ls_retransmit_delete_nbr_area (area, lsa);
paul718e3742002-12-13 20:15:29 +00001158
Paul Jakmac363d382010-01-24 22:42:13 +00001159 /* Unregister LSA from refresh-list */
1160 ospf_refresher_unregister_lsa (area->ospf, lsa);
1161
paul718e3742002-12-13 20:15:29 +00001162 /* Create new network-LSA instance. */
1163 new = ospf_network_lsa_new (oi);
1164 if (new == NULL)
Paul Jakmac363d382010-01-24 22:42:13 +00001165 return NULL;
Paul Jakma7eb5b472009-10-13 16:13:13 +01001166
1167 oip = ospf_lookup_if_params (oi->ifp, oi->address->u.prefix4);
1168 assert (oip != NULL);
1169 oip->network_lsa_seqnum = new->data->ls_seqnum = lsa_seqnum_increment (lsa);
paul718e3742002-12-13 20:15:29 +00001170
Paul Jakmac363d382010-01-24 22:42:13 +00001171 new2 = ospf_lsa_install (area->ospf, oi, new);
1172
1173 assert (new2 == new);
1174
paul718e3742002-12-13 20:15:29 +00001175 /* Flood LSA through aera. */
1176 ospf_flood_through_area (area, NULL, new);
1177
1178 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
1179 {
ajse588f212004-12-08 18:12:06 +00001180 zlog_debug ("LSA[Type%d:%s]: network-LSA refresh",
paul718e3742002-12-13 20:15:29 +00001181 new->data->type, inet_ntoa (new->data->id));
1182 ospf_lsa_header_dump (new->data);
1183 }
1184
Paul Jakmac363d382010-01-24 22:42:13 +00001185 return new;
paul718e3742002-12-13 20:15:29 +00001186}
David Lamparter6b0655a2014-06-04 06:53:35 +02001187
paul4dadc292005-05-06 21:37:42 +00001188static void
paul718e3742002-12-13 20:15:29 +00001189stream_put_ospf_metric (struct stream *s, u_int32_t metric_value)
1190{
1191 u_int32_t metric;
1192 char *mp;
1193
1194 /* Put 0 metric. TOS metric is not supported. */
1195 metric = htonl (metric_value);
1196 mp = (char *) &metric;
1197 mp++;
1198 stream_put (s, mp, 3);
1199}
1200
1201/* summary-LSA related functions. */
paul4dadc292005-05-06 21:37:42 +00001202static void
paul718e3742002-12-13 20:15:29 +00001203ospf_summary_lsa_body_set (struct stream *s, struct prefix *p,
1204 u_int32_t metric)
1205{
1206 struct in_addr mask;
1207
1208 masklen2ip (p->prefixlen, &mask);
1209
1210 /* Put Network Mask. */
1211 stream_put_ipv4 (s, mask.s_addr);
1212
1213 /* Set # TOS. */
1214 stream_putc (s, (u_char) 0);
1215
1216 /* Set metric. */
1217 stream_put_ospf_metric (s, metric);
1218}
1219
paul4dadc292005-05-06 21:37:42 +00001220static struct ospf_lsa *
paul718e3742002-12-13 20:15:29 +00001221ospf_summary_lsa_new (struct ospf_area *area, struct prefix *p,
1222 u_int32_t metric, struct in_addr id)
1223{
1224 struct stream *s;
1225 struct ospf_lsa *new;
1226 struct lsa_header *lsah;
1227 int length;
1228
paulc24d6022005-11-20 14:54:12 +00001229 if (id.s_addr == 0xffffffff)
1230 {
1231 /* Maybe Link State ID not available. */
1232 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
1233 zlog_debug ("LSA[Type%d]: Link ID not available, can't originate",
1234 OSPF_SUMMARY_LSA);
1235 return NULL;
1236 }
1237
paul718e3742002-12-13 20:15:29 +00001238 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
ajse588f212004-12-08 18:12:06 +00001239 zlog_debug ("LSA[Type3]: Create summary-LSA instance");
paul718e3742002-12-13 20:15:29 +00001240
1241 /* Create new stream for LSA. */
1242 s = stream_new (OSPF_MAX_LSA_SIZE);
1243 lsah = (struct lsa_header *) STREAM_DATA (s);
1244
paul68980082003-03-25 05:07:42 +00001245 lsa_header_set (s, LSA_OPTIONS_GET (area), OSPF_SUMMARY_LSA,
1246 id, area->ospf->router_id);
paul718e3742002-12-13 20:15:29 +00001247
1248 /* Set summary-LSA body fields. */
1249 ospf_summary_lsa_body_set (s, p, metric);
1250
1251 /* Set length. */
1252 length = stream_get_endp (s);
1253 lsah->length = htons (length);
1254
1255 /* Create OSPF LSA instance. */
1256 new = ospf_lsa_new ();
1257 new->area = area;
Joakim Tjernlundf6543132008-11-04 13:37:29 +00001258 SET_FLAG (new->flags, OSPF_LSA_SELF | OSPF_LSA_SELF_CHECKED);
paul718e3742002-12-13 20:15:29 +00001259
1260 /* Copy LSA to store. */
1261 new->data = ospf_lsa_data_new (length);
1262 memcpy (new->data, lsah, length);
1263 stream_free (s);
1264
1265 return new;
1266}
1267
1268/* Originate Summary-LSA. */
1269struct ospf_lsa *
1270ospf_summary_lsa_originate (struct prefix_ipv4 *p, u_int32_t metric,
1271 struct ospf_area *area)
1272{
1273 struct ospf_lsa *new;
1274 struct in_addr id;
1275
paul68980082003-03-25 05:07:42 +00001276 id = ospf_lsa_unique_id (area->ospf, area->lsdb, OSPF_SUMMARY_LSA, p);
paul718e3742002-12-13 20:15:29 +00001277
paulc24d6022005-11-20 14:54:12 +00001278 if (id.s_addr == 0xffffffff)
1279 {
1280 /* Maybe Link State ID not available. */
1281 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
1282 zlog_debug ("LSA[Type%d]: Link ID not available, can't originate",
1283 OSPF_SUMMARY_LSA);
1284 return NULL;
1285 }
1286
paul718e3742002-12-13 20:15:29 +00001287 /* Create new summary-LSA instance. */
paulc24d6022005-11-20 14:54:12 +00001288 if ( !(new = ospf_summary_lsa_new (area, (struct prefix *) p, metric, id)))
1289 return NULL;
paul718e3742002-12-13 20:15:29 +00001290
1291 /* Instlal LSA to LSDB. */
paul68980082003-03-25 05:07:42 +00001292 new = ospf_lsa_install (area->ospf, NULL, new);
paul718e3742002-12-13 20:15:29 +00001293
1294 /* Update LSA origination count. */
paul68980082003-03-25 05:07:42 +00001295 area->ospf->lsa_originate_count++;
paul718e3742002-12-13 20:15:29 +00001296
1297 /* Flooding new LSA through area. */
1298 ospf_flood_through_area (area, NULL, new);
1299
1300 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
1301 {
ajse588f212004-12-08 18:12:06 +00001302 zlog_debug ("LSA[Type%d:%s]: Originate summary-LSA %p",
paul718e3742002-12-13 20:15:29 +00001303 new->data->type, inet_ntoa (new->data->id), new);
1304 ospf_lsa_header_dump (new->data);
1305 }
1306
1307 return new;
1308}
1309
Paul Jakmac363d382010-01-24 22:42:13 +00001310static struct ospf_lsa*
paul68980082003-03-25 05:07:42 +00001311ospf_summary_lsa_refresh (struct ospf *ospf, struct ospf_lsa *lsa)
paul718e3742002-12-13 20:15:29 +00001312{
1313 struct ospf_lsa *new;
1314 struct summary_lsa *sl;
1315 struct prefix p;
1316
1317 /* Sanity check. */
1318 assert (lsa->data);
1319
1320 sl = (struct summary_lsa *)lsa->data;
1321 p.prefixlen = ip_masklen (sl->mask);
1322 new = ospf_summary_lsa_new (lsa->area, &p, GET_METRIC (sl->metric),
1323 sl->header.id);
paulc24d6022005-11-20 14:54:12 +00001324
1325 if (!new)
1326 return NULL;
1327
paul718e3742002-12-13 20:15:29 +00001328 new->data->ls_seqnum = lsa_seqnum_increment (lsa);
paul718e3742002-12-13 20:15:29 +00001329
paul68980082003-03-25 05:07:42 +00001330 ospf_lsa_install (ospf, NULL, new);
paul718e3742002-12-13 20:15:29 +00001331
1332 /* Flood LSA through AS. */
1333 ospf_flood_through_area (new->area, NULL, new);
1334
1335 /* Debug logging. */
1336 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
1337 {
ajse588f212004-12-08 18:12:06 +00001338 zlog_debug ("LSA[Type%d:%s]: summary-LSA refresh",
paul718e3742002-12-13 20:15:29 +00001339 new->data->type, inet_ntoa (new->data->id));
1340 ospf_lsa_header_dump (new->data);
1341 }
1342
1343 return new;
1344}
1345
David Lamparter6b0655a2014-06-04 06:53:35 +02001346
paul718e3742002-12-13 20:15:29 +00001347/* summary-ASBR-LSA related functions. */
paul4dadc292005-05-06 21:37:42 +00001348static void
paul718e3742002-12-13 20:15:29 +00001349ospf_summary_asbr_lsa_body_set (struct stream *s, struct prefix *p,
1350 u_int32_t metric)
1351{
paul718e3742002-12-13 20:15:29 +00001352 /* Put Network Mask. */
Leonard Tracy2345a222012-12-04 11:02:35 -08001353 stream_put_ipv4 (s, (u_int32_t) 0);
paul718e3742002-12-13 20:15:29 +00001354
1355 /* Set # TOS. */
1356 stream_putc (s, (u_char) 0);
1357
1358 /* Set metric. */
1359 stream_put_ospf_metric (s, metric);
1360}
1361
paul4dadc292005-05-06 21:37:42 +00001362static struct ospf_lsa *
paul718e3742002-12-13 20:15:29 +00001363ospf_summary_asbr_lsa_new (struct ospf_area *area, struct prefix *p,
1364 u_int32_t metric, struct in_addr id)
1365{
1366 struct stream *s;
1367 struct ospf_lsa *new;
1368 struct lsa_header *lsah;
1369 int length;
1370
paulc24d6022005-11-20 14:54:12 +00001371 if (id.s_addr == 0xffffffff)
1372 {
1373 /* Maybe Link State ID not available. */
1374 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
1375 zlog_debug ("LSA[Type%d]: Link ID not available, can't originate",
1376 OSPF_ASBR_SUMMARY_LSA);
1377 return NULL;
1378 }
1379
paul718e3742002-12-13 20:15:29 +00001380 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
ajse588f212004-12-08 18:12:06 +00001381 zlog_debug ("LSA[Type3]: Create summary-LSA instance");
paul718e3742002-12-13 20:15:29 +00001382
1383 /* Create new stream for LSA. */
1384 s = stream_new (OSPF_MAX_LSA_SIZE);
1385 lsah = (struct lsa_header *) STREAM_DATA (s);
1386
paul68980082003-03-25 05:07:42 +00001387 lsa_header_set (s, LSA_OPTIONS_GET (area), OSPF_ASBR_SUMMARY_LSA,
1388 id, area->ospf->router_id);
paul718e3742002-12-13 20:15:29 +00001389
1390 /* Set summary-LSA body fields. */
1391 ospf_summary_asbr_lsa_body_set (s, p, metric);
1392
1393 /* Set length. */
1394 length = stream_get_endp (s);
1395 lsah->length = htons (length);
1396
1397 /* Create OSPF LSA instance. */
1398 new = ospf_lsa_new ();
1399 new->area = area;
Joakim Tjernlundf6543132008-11-04 13:37:29 +00001400 SET_FLAG (new->flags, OSPF_LSA_SELF | OSPF_LSA_SELF_CHECKED);
paul718e3742002-12-13 20:15:29 +00001401
1402 /* Copy LSA to store. */
1403 new->data = ospf_lsa_data_new (length);
1404 memcpy (new->data, lsah, length);
1405 stream_free (s);
1406
1407 return new;
1408}
1409
1410/* Originate summary-ASBR-LSA. */
1411struct ospf_lsa *
1412ospf_summary_asbr_lsa_originate (struct prefix_ipv4 *p, u_int32_t metric,
1413 struct ospf_area *area)
1414{
1415 struct ospf_lsa *new;
1416 struct in_addr id;
1417
paul68980082003-03-25 05:07:42 +00001418 id = ospf_lsa_unique_id (area->ospf, area->lsdb, OSPF_ASBR_SUMMARY_LSA, p);
paul718e3742002-12-13 20:15:29 +00001419
paulc24d6022005-11-20 14:54:12 +00001420 if (id.s_addr == 0xffffffff)
1421 {
1422 /* Maybe Link State ID not available. */
1423 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
1424 zlog_debug ("LSA[Type%d]: Link ID not available, can't originate",
1425 OSPF_ASBR_SUMMARY_LSA);
1426 return NULL;
1427 }
1428
paul718e3742002-12-13 20:15:29 +00001429 /* Create new summary-LSA instance. */
1430 new = ospf_summary_asbr_lsa_new (area, (struct prefix *) p, metric, id);
paulc24d6022005-11-20 14:54:12 +00001431 if (!new)
1432 return NULL;
paul718e3742002-12-13 20:15:29 +00001433
1434 /* Install LSA to LSDB. */
paul68980082003-03-25 05:07:42 +00001435 new = ospf_lsa_install (area->ospf, NULL, new);
paul718e3742002-12-13 20:15:29 +00001436
1437 /* Update LSA origination count. */
paul68980082003-03-25 05:07:42 +00001438 area->ospf->lsa_originate_count++;
paul718e3742002-12-13 20:15:29 +00001439
1440 /* Flooding new LSA through area. */
1441 ospf_flood_through_area (area, NULL, new);
1442
1443 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
1444 {
ajse588f212004-12-08 18:12:06 +00001445 zlog_debug ("LSA[Type%d:%s]: Originate summary-ASBR-LSA %p",
paul718e3742002-12-13 20:15:29 +00001446 new->data->type, inet_ntoa (new->data->id), new);
1447 ospf_lsa_header_dump (new->data);
1448 }
1449
1450 return new;
1451}
1452
Paul Jakmac363d382010-01-24 22:42:13 +00001453static struct ospf_lsa*
paul68980082003-03-25 05:07:42 +00001454ospf_summary_asbr_lsa_refresh (struct ospf *ospf, struct ospf_lsa *lsa)
paul718e3742002-12-13 20:15:29 +00001455{
1456 struct ospf_lsa *new;
1457 struct summary_lsa *sl;
1458 struct prefix p;
1459
1460 /* Sanity check. */
1461 assert (lsa->data);
1462
1463 sl = (struct summary_lsa *)lsa->data;
1464 p.prefixlen = ip_masklen (sl->mask);
1465 new = ospf_summary_asbr_lsa_new (lsa->area, &p, GET_METRIC (sl->metric),
1466 sl->header.id);
paulc24d6022005-11-20 14:54:12 +00001467 if (!new)
1468 return NULL;
paul718e3742002-12-13 20:15:29 +00001469
1470 new->data->ls_seqnum = lsa_seqnum_increment (lsa);
paul718e3742002-12-13 20:15:29 +00001471
paul68980082003-03-25 05:07:42 +00001472 ospf_lsa_install (ospf, NULL, new);
paul718e3742002-12-13 20:15:29 +00001473
1474 /* Flood LSA through area. */
1475 ospf_flood_through_area (new->area, NULL, new);
1476
1477 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
1478 {
ajse588f212004-12-08 18:12:06 +00001479 zlog_debug ("LSA[Type%d:%s]: summary-ASBR-LSA refresh",
paul718e3742002-12-13 20:15:29 +00001480 new->data->type, inet_ntoa (new->data->id));
1481 ospf_lsa_header_dump (new->data);
1482 }
1483
1484 return new;
1485}
1486
1487/* AS-external-LSA related functions. */
1488
1489/* Get nexthop for AS-external-LSAs. Return nexthop if its interface
1490 is connected, else 0*/
paul4dadc292005-05-06 21:37:42 +00001491static struct in_addr
paul68980082003-03-25 05:07:42 +00001492ospf_external_lsa_nexthop_get (struct ospf *ospf, struct in_addr nexthop)
paul718e3742002-12-13 20:15:29 +00001493{
1494 struct in_addr fwd;
1495 struct prefix nh;
paul1eb8ef22005-04-07 07:30:20 +00001496 struct listnode *node;
1497 struct ospf_interface *oi;
paul718e3742002-12-13 20:15:29 +00001498
1499 fwd.s_addr = 0;
1500
1501 if (!nexthop.s_addr)
1502 return fwd;
1503
1504 /* Check whether nexthop is covered by OSPF network. */
1505 nh.family = AF_INET;
1506 nh.u.prefix4 = nexthop;
1507 nh.prefixlen = IPV4_MAX_BITLEN;
Paul Jakma4ca15d42009-08-03 15:16:41 +01001508
1509 /* XXX/SCALE: If there were a lot of oi's on an ifp, then it'd be
1510 * better to make use of the per-ifp table of ois.
1511 */
paul1eb8ef22005-04-07 07:30:20 +00001512 for (ALL_LIST_ELEMENTS_RO (ospf->oiflist, node, oi))
1513 if (if_is_operative (oi->ifp))
1514 if (oi->address->family == AF_INET)
1515 if (prefix_match (oi->address, &nh))
1516 return nexthop;
paul718e3742002-12-13 20:15:29 +00001517
1518 return fwd;
1519}
1520
paul718e3742002-12-13 20:15:29 +00001521/* NSSA-external-LSA related functions. */
1522
1523/* Get 1st IP connection for Forward Addr */
paul4dadc292005-05-06 21:37:42 +00001524
paul718e3742002-12-13 20:15:29 +00001525struct in_addr
1526ospf_get_ip_from_ifp (struct ospf_interface *oi)
1527{
1528 struct in_addr fwd;
1529
1530 fwd.s_addr = 0;
1531
paul2e3b2e42002-12-13 21:03:13 +00001532 if (if_is_operative (oi->ifp))
paul718e3742002-12-13 20:15:29 +00001533 return oi->address->u.prefix4;
1534
1535 return fwd;
1536}
1537
1538/* Get 1st IP connection for Forward Addr */
1539struct in_addr
paulf2c80652002-12-13 21:44:27 +00001540ospf_get_nssa_ip (struct ospf_area *area)
paul718e3742002-12-13 20:15:29 +00001541{
1542 struct in_addr fwd;
paulf2c80652002-12-13 21:44:27 +00001543 struct in_addr best_default;
paul1eb8ef22005-04-07 07:30:20 +00001544 struct listnode *node;
1545 struct ospf_interface *oi;
paul718e3742002-12-13 20:15:29 +00001546
1547 fwd.s_addr = 0;
paulf2c80652002-12-13 21:44:27 +00001548 best_default.s_addr = 0;
paul718e3742002-12-13 20:15:29 +00001549
paul1eb8ef22005-04-07 07:30:20 +00001550 for (ALL_LIST_ELEMENTS_RO (area->ospf->oiflist, node, oi))
paul718e3742002-12-13 20:15:29 +00001551 {
paul2e3b2e42002-12-13 21:03:13 +00001552 if (if_is_operative (oi->ifp))
paul718e3742002-12-13 20:15:29 +00001553 if (oi->area->external_routing == OSPF_AREA_NSSA)
paul68980082003-03-25 05:07:42 +00001554 if (oi->address && oi->address->family == AF_INET)
1555 {
1556 if (best_default.s_addr == 0)
1557 best_default = oi->address->u.prefix4;
1558 if (oi->area == area)
1559 return oi->address->u.prefix4;
paulf2c80652002-12-13 21:44:27 +00001560 }
paul718e3742002-12-13 20:15:29 +00001561 }
paulf2c80652002-12-13 21:44:27 +00001562 if (best_default.s_addr != 0)
1563 return best_default;
paul718e3742002-12-13 20:15:29 +00001564
paul68980082003-03-25 05:07:42 +00001565 if (best_default.s_addr != 0)
1566 return best_default;
1567
paul718e3742002-12-13 20:15:29 +00001568 return fwd;
1569}
hassobeebba72004-06-20 21:00:27 +00001570
paul718e3742002-12-13 20:15:29 +00001571#define DEFAULT_DEFAULT_METRIC 20
1572#define DEFAULT_DEFAULT_ORIGINATE_METRIC 10
1573#define DEFAULT_DEFAULT_ALWAYS_METRIC 1
1574
1575#define DEFAULT_METRIC_TYPE EXTERNAL_METRIC_TYPE_2
1576
1577int
paul68980082003-03-25 05:07:42 +00001578metric_type (struct ospf *ospf, u_char src)
paul718e3742002-12-13 20:15:29 +00001579{
paul68980082003-03-25 05:07:42 +00001580 return (ospf->dmetric[src].type < 0 ?
1581 DEFAULT_METRIC_TYPE : ospf->dmetric[src].type);
paul718e3742002-12-13 20:15:29 +00001582}
1583
1584int
paul68980082003-03-25 05:07:42 +00001585metric_value (struct ospf *ospf, u_char src)
paul718e3742002-12-13 20:15:29 +00001586{
paul68980082003-03-25 05:07:42 +00001587 if (ospf->dmetric[src].value < 0)
paul718e3742002-12-13 20:15:29 +00001588 {
1589 if (src == DEFAULT_ROUTE)
1590 {
paul68980082003-03-25 05:07:42 +00001591 if (ospf->default_originate == DEFAULT_ORIGINATE_ZEBRA)
paul718e3742002-12-13 20:15:29 +00001592 return DEFAULT_DEFAULT_ORIGINATE_METRIC;
1593 else
1594 return DEFAULT_DEFAULT_ALWAYS_METRIC;
1595 }
paul68980082003-03-25 05:07:42 +00001596 else if (ospf->default_metric < 0)
paul718e3742002-12-13 20:15:29 +00001597 return DEFAULT_DEFAULT_METRIC;
1598 else
paul68980082003-03-25 05:07:42 +00001599 return ospf->default_metric;
paul718e3742002-12-13 20:15:29 +00001600 }
1601
paul68980082003-03-25 05:07:42 +00001602 return ospf->dmetric[src].value;
paul718e3742002-12-13 20:15:29 +00001603}
1604
1605/* Set AS-external-LSA body. */
paul4dadc292005-05-06 21:37:42 +00001606static void
paul68980082003-03-25 05:07:42 +00001607ospf_external_lsa_body_set (struct stream *s, struct external_info *ei,
1608 struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00001609{
1610 struct prefix_ipv4 *p = &ei->p;
1611 struct in_addr mask, fwd_addr;
1612 u_int32_t mvalue;
1613 int mtype;
1614 int type;
1615
1616 /* Put Network Mask. */
1617 masklen2ip (p->prefixlen, &mask);
1618 stream_put_ipv4 (s, mask.s_addr);
1619
1620 /* If prefix is default, specify DEFAULT_ROUTE. */
1621 type = is_prefix_default (&ei->p) ? DEFAULT_ROUTE : ei->type;
1622
1623 mtype = (ROUTEMAP_METRIC_TYPE (ei) != -1) ?
paul68980082003-03-25 05:07:42 +00001624 ROUTEMAP_METRIC_TYPE (ei) : metric_type (ospf, type);
paul718e3742002-12-13 20:15:29 +00001625
1626 mvalue = (ROUTEMAP_METRIC (ei) != -1) ?
paul68980082003-03-25 05:07:42 +00001627 ROUTEMAP_METRIC (ei) : metric_value (ospf, type);
paul718e3742002-12-13 20:15:29 +00001628
1629 /* Put type of external metric. */
1630 stream_putc (s, (mtype == EXTERNAL_METRIC_TYPE_2 ? 0x80 : 0));
1631
1632 /* Put 0 metric. TOS metric is not supported. */
1633 stream_put_ospf_metric (s, mvalue);
1634
1635 /* Get forwarding address to nexthop if on the Connection List, else 0. */
paul68980082003-03-25 05:07:42 +00001636 fwd_addr = ospf_external_lsa_nexthop_get (ospf, ei->nexthop);
paul718e3742002-12-13 20:15:29 +00001637
1638 /* Put forwarding address. */
1639 stream_put_ipv4 (s, fwd_addr.s_addr);
1640
1641 /* Put route tag -- This value should be introduced from configuration. */
1642 stream_putl (s, 0);
1643}
1644
1645/* Create new external-LSA. */
paul4dadc292005-05-06 21:37:42 +00001646static struct ospf_lsa *
paul68980082003-03-25 05:07:42 +00001647ospf_external_lsa_new (struct ospf *ospf,
1648 struct external_info *ei, struct in_addr *old_id)
paul718e3742002-12-13 20:15:29 +00001649{
1650 struct stream *s;
1651 struct lsa_header *lsah;
1652 struct ospf_lsa *new;
1653 struct in_addr id;
1654 int length;
1655
1656 if (ei == NULL)
1657 {
1658 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
Denis Ovsienkoad8d4802011-12-02 20:02:40 +04001659 zlog_debug ("LSA[Type5]: External info is NULL, can't originate");
paul718e3742002-12-13 20:15:29 +00001660 return NULL;
1661 }
1662
1663 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
ajse588f212004-12-08 18:12:06 +00001664 zlog_debug ("LSA[Type5]: Originate AS-external-LSA instance");
paul718e3742002-12-13 20:15:29 +00001665
1666 /* If old Link State ID is specified, refresh LSA with same ID. */
1667 if (old_id)
1668 id = *old_id;
1669 /* Get Link State with unique ID. */
1670 else
1671 {
paul68980082003-03-25 05:07:42 +00001672 id = ospf_lsa_unique_id (ospf, ospf->lsdb, OSPF_AS_EXTERNAL_LSA, &ei->p);
paul718e3742002-12-13 20:15:29 +00001673 if (id.s_addr == 0xffffffff)
1674 {
1675 /* Maybe Link State ID not available. */
1676 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
ajse588f212004-12-08 18:12:06 +00001677 zlog_debug ("LSA[Type5]: Link ID not available, can't originate");
paul718e3742002-12-13 20:15:29 +00001678 return NULL;
1679 }
1680 }
1681
1682 /* Create new stream for LSA. */
1683 s = stream_new (OSPF_MAX_LSA_SIZE);
1684 lsah = (struct lsa_header *) STREAM_DATA (s);
1685
1686 /* Set LSA common header fields. */
paul68980082003-03-25 05:07:42 +00001687 lsa_header_set (s, OSPF_OPTION_E, OSPF_AS_EXTERNAL_LSA,
1688 id, ospf->router_id);
paul718e3742002-12-13 20:15:29 +00001689
1690 /* Set AS-external-LSA body fields. */
paul68980082003-03-25 05:07:42 +00001691 ospf_external_lsa_body_set (s, ei, ospf);
paul718e3742002-12-13 20:15:29 +00001692
1693 /* Set length. */
1694 length = stream_get_endp (s);
1695 lsah->length = htons (length);
1696
1697 /* Now, create OSPF LSA instance. */
1698 new = ospf_lsa_new ();
1699 new->area = NULL;
Joakim Tjernlundf6543132008-11-04 13:37:29 +00001700 SET_FLAG (new->flags, OSPF_LSA_SELF | OSPF_LSA_APPROVED | OSPF_LSA_SELF_CHECKED);
paul718e3742002-12-13 20:15:29 +00001701
1702 /* Copy LSA data to store, discard stream. */
1703 new->data = ospf_lsa_data_new (length);
1704 memcpy (new->data, lsah, length);
1705 stream_free (s);
1706
1707 return new;
1708}
1709
paul718e3742002-12-13 20:15:29 +00001710/* As Type-7 */
paul4dadc292005-05-06 21:37:42 +00001711static void
paul68980082003-03-25 05:07:42 +00001712ospf_install_flood_nssa (struct ospf *ospf,
1713 struct ospf_lsa *lsa, struct external_info *ei)
paul718e3742002-12-13 20:15:29 +00001714{
pauld4a53d52003-07-12 21:30:57 +00001715 struct ospf_lsa *new;
paul68980082003-03-25 05:07:42 +00001716 struct as_external_lsa *extlsa;
paul1eb8ef22005-04-07 07:30:20 +00001717 struct ospf_area *area;
1718 struct listnode *node, *nnode;
paul718e3742002-12-13 20:15:29 +00001719
pauld4a53d52003-07-12 21:30:57 +00001720 /* LSA may be a Type-5 originated via translation of a Type-7 LSA
1721 * which originated from an NSSA area. In which case it should not be
1722 * flooded back to NSSA areas.
1723 */
1724 if (CHECK_FLAG (lsa->flags, OSPF_LSA_LOCAL_XLT))
1725 return;
1726
paul718e3742002-12-13 20:15:29 +00001727 /* NSSA Originate or Refresh (If anyNSSA)
1728
1729 LSA is self-originated. And just installed as Type-5.
1730 Additionally, install as Type-7 LSDB for every attached NSSA.
1731
1732 P-Bit controls which ABR performs translation to outside world; If
1733 we are an ABR....do not set the P-bit, because we send the Type-5,
1734 not as the ABR Translator, but as the ASBR owner within the AS!
1735
1736 If we are NOT ABR, Flood through NSSA as Type-7 w/P-bit set. The
1737 elected ABR Translator will see the P-bit, Translate, and re-flood.
1738
1739 Later, ABR_TASK and P-bit will scan Type-7 LSDB and translate to
1740 Type-5's to non-NSSA Areas. (it will also attempt a re-install) */
1741
paul1eb8ef22005-04-07 07:30:20 +00001742 for (ALL_LIST_ELEMENTS (ospf->areas, node, nnode, area))
paul68980082003-03-25 05:07:42 +00001743 {
hasso0c14ad82003-07-03 08:36:02 +00001744 /* Don't install Type-7 LSA's into nonNSSA area */
1745 if (area->external_routing != OSPF_AREA_NSSA)
1746 continue;
paul718e3742002-12-13 20:15:29 +00001747
paul68980082003-03-25 05:07:42 +00001748 /* make lsa duplicate, lock=1 */
pauld4a53d52003-07-12 21:30:57 +00001749 new = ospf_lsa_dup (lsa);
1750 new->area = area;
1751 new->data->type = OSPF_AS_NSSA_LSA;
paul718e3742002-12-13 20:15:29 +00001752
paul68980082003-03-25 05:07:42 +00001753 /* set P-bit if not ABR */
paul020709f2003-04-04 02:44:16 +00001754 if (! IS_OSPF_ABR (ospf))
paul68980082003-03-25 05:07:42 +00001755 {
pauld4a53d52003-07-12 21:30:57 +00001756 SET_FLAG(new->data->options, OSPF_OPTION_NP);
paul68980082003-03-25 05:07:42 +00001757
1758 /* set non-zero FWD ADDR
1759
1760 draft-ietf-ospf-nssa-update-09.txt
1761
1762 if the network between the NSSA AS boundary router and the
1763 adjacent AS is advertised into OSPF as an internal OSPF route,
1764 the forwarding address should be the next op address as is cu
1765 currently done with type-5 LSAs. If the intervening network is
1766 not adversited into OSPF as an internal OSPF route and the
1767 type-7 LSA's P-bit is set a forwarding address should be
1768 selected from one of the router's active OSPF inteface addresses
1769 which belong to the NSSA. If no such addresses exist, then
1770 no type-7 LSA's with the P-bit set should originate from this
1771 router. */
1772
pauld4a53d52003-07-12 21:30:57 +00001773 /* kevinm: not updating lsa anymore, just new */
1774 extlsa = (struct as_external_lsa *)(new->data);
paul68980082003-03-25 05:07:42 +00001775
1776 if (extlsa->e[0].fwd_addr.s_addr == 0)
1777 extlsa->e[0].fwd_addr = ospf_get_nssa_ip(area); /* this NSSA area in ifp */
paul718e3742002-12-13 20:15:29 +00001778
pauld7480322003-05-16 17:31:51 +00001779 if (extlsa->e[0].fwd_addr.s_addr == 0)
1780 {
1781 if (IS_DEBUG_OSPF_NSSA)
ajse588f212004-12-08 18:12:06 +00001782 zlog_debug ("LSA[Type-7]: Could not build FWD-ADDR");
Paul Jakma1fe6ed32006-07-26 09:37:26 +00001783 ospf_lsa_discard (new);
pauld7480322003-05-16 17:31:51 +00001784 return;
1785 }
paulf2c80652002-12-13 21:44:27 +00001786 }
paul718e3742002-12-13 20:15:29 +00001787
paul68980082003-03-25 05:07:42 +00001788 /* install also as Type-7 */
pauld4a53d52003-07-12 21:30:57 +00001789 ospf_lsa_install (ospf, NULL, new); /* Remove Old, Lock New = 2 */
paul68980082003-03-25 05:07:42 +00001790
1791 /* will send each copy, lock=2+n */
pauld4a53d52003-07-12 21:30:57 +00001792 ospf_flood_through_as (ospf, NULL, new); /* all attached NSSA's, no AS/STUBs */
paul68980082003-03-25 05:07:42 +00001793 }
paul718e3742002-12-13 20:15:29 +00001794}
pauld4a53d52003-07-12 21:30:57 +00001795
paul4dadc292005-05-06 21:37:42 +00001796static struct ospf_lsa *
pauld4a53d52003-07-12 21:30:57 +00001797ospf_lsa_translated_nssa_new (struct ospf *ospf,
1798 struct ospf_lsa *type7)
1799{
1800
1801 struct ospf_lsa *new;
1802 struct as_external_lsa *ext, *extnew;
1803 struct external_info ei;
1804
1805 ext = (struct as_external_lsa *)(type7->data);
1806
1807 /* need external_info struct, fill in bare minimum */
1808 ei.p.family = AF_INET;
1809 ei.p.prefix = type7->data->id;
1810 ei.p.prefixlen = ip_masklen (ext->mask);
1811 ei.type = ZEBRA_ROUTE_OSPF;
1812 ei.nexthop = ext->header.adv_router;
1813 ei.route_map_set.metric = -1;
1814 ei.route_map_set.metric_type = -1;
1815 ei.tag = 0;
1816
1817 if ( (new = ospf_external_lsa_new (ospf, &ei, &type7->data->id)) == NULL)
1818 {
1819 if (IS_DEBUG_OSPF_NSSA)
ajse588f212004-12-08 18:12:06 +00001820 zlog_debug ("ospf_nssa_translate_originate(): Could not originate "
pauld4a53d52003-07-12 21:30:57 +00001821 "Translated Type-5 for %s",
1822 inet_ntoa (ei.p.prefix));
1823 return NULL;
1824 }
1825
1826 extnew = (struct as_external_lsa *)(new->data);
1827
1828 /* copy over Type-7 data to new */
1829 extnew->e[0].tos = ext->e[0].tos;
1830 extnew->e[0].route_tag = ext->e[0].route_tag;
1831 extnew->e[0].fwd_addr.s_addr = ext->e[0].fwd_addr.s_addr;
1832 new->data->ls_seqnum = type7->data->ls_seqnum;
1833
1834 /* add translated flag, checksum and lock new lsa */
1835 SET_FLAG (new->flags, OSPF_LSA_LOCAL_XLT); /* Translated from 7 */
pauld4a53d52003-07-12 21:30:57 +00001836 new = ospf_lsa_lock (new);
1837
1838 return new;
1839}
1840
pauld4a53d52003-07-12 21:30:57 +00001841/* Originate Translated Type-5 for supplied Type-7 NSSA LSA */
1842struct ospf_lsa *
1843ospf_translated_nssa_originate (struct ospf *ospf, struct ospf_lsa *type7)
1844{
1845 struct ospf_lsa *new;
1846 struct as_external_lsa *extnew;
1847
1848 /* we cant use ospf_external_lsa_originate() as we need to set
1849 * the OSPF_LSA_LOCAL_XLT flag, must originate by hand
1850 */
1851
1852 if ( (new = ospf_lsa_translated_nssa_new (ospf, type7)) == NULL)
1853 {
1854 if (IS_DEBUG_OSPF_NSSA)
ajse588f212004-12-08 18:12:06 +00001855 zlog_debug ("ospf_translated_nssa_originate(): Could not translate "
pauld4a53d52003-07-12 21:30:57 +00001856 "Type-7, Id %s, to Type-5",
1857 inet_ntoa (type7->data->id));
1858 return NULL;
1859 }
1860
1861 extnew = (struct as_external_lsa *)new;
1862
1863 if (IS_DEBUG_OSPF_NSSA)
1864 {
ajse588f212004-12-08 18:12:06 +00001865 zlog_debug ("ospf_translated_nssa_originate(): "
pauld4a53d52003-07-12 21:30:57 +00001866 "translated Type 7, installed:");
1867 ospf_lsa_header_dump (new->data);
ajse588f212004-12-08 18:12:06 +00001868 zlog_debug (" Network mask: %d",ip_masklen (extnew->mask));
1869 zlog_debug (" Forward addr: %s", inet_ntoa (extnew->e[0].fwd_addr));
pauld4a53d52003-07-12 21:30:57 +00001870 }
1871
1872 if ( (new = ospf_lsa_install (ospf, NULL, new)) == NULL)
1873 {
Hasso Tepper8c9ed272012-10-11 11:15:18 +00001874 if (IS_DEBUG_OSPF_NSSA)
ajse588f212004-12-08 18:12:06 +00001875 zlog_debug ("ospf_lsa_translated_nssa_originate(): "
pauld4a53d52003-07-12 21:30:57 +00001876 "Could not install LSA "
1877 "id %s", inet_ntoa (type7->data->id));
1878 return NULL;
1879 }
1880
1881 ospf->lsa_originate_count++;
1882 ospf_flood_through_as (ospf, NULL, new);
1883
1884 return new;
1885}
1886
1887/* Refresh Translated from NSSA AS-external-LSA. */
1888struct ospf_lsa *
1889ospf_translated_nssa_refresh (struct ospf *ospf, struct ospf_lsa *type7,
1890 struct ospf_lsa *type5)
1891{
1892 struct ospf_lsa *new = NULL;
1893
1894 /* Sanity checks. */
1895 assert (type7 || type5);
Paul Jakmaae128052006-05-12 23:15:30 +00001896 if (!(type7 || type5))
Paul Jakmae54e6e52006-05-12 23:11:14 +00001897 return NULL;
pauld4a53d52003-07-12 21:30:57 +00001898 if (type7)
1899 assert (type7->data);
1900 if (type5)
1901 assert (type5->data);
1902 assert (ospf->anyNSSA);
1903
1904 /* get required data according to what has been given */
1905 if (type7 && type5 == NULL)
1906 {
1907 /* find the translated Type-5 for this Type-7 */
1908 struct as_external_lsa *ext = (struct as_external_lsa *)(type7->data);
1909 struct prefix_ipv4 p =
1910 {
1911 .prefix = type7->data->id,
1912 .prefixlen = ip_masklen (ext->mask),
1913 .family = AF_INET,
1914 };
1915
1916 type5 = ospf_external_info_find_lsa (ospf, &p);
1917 }
1918 else if (type5 && type7 == NULL)
1919 {
1920 /* find the type-7 from which supplied type-5 was translated,
1921 * ie find first type-7 with same LSA Id.
1922 */
paul1eb8ef22005-04-07 07:30:20 +00001923 struct listnode *ln, *lnn;
pauld4a53d52003-07-12 21:30:57 +00001924 struct route_node *rn;
1925 struct ospf_lsa *lsa;
1926 struct ospf_area *area;
1927
paul1eb8ef22005-04-07 07:30:20 +00001928 for (ALL_LIST_ELEMENTS (ospf->areas, ln, lnn, area))
pauld4a53d52003-07-12 21:30:57 +00001929 {
1930 if (area->external_routing != OSPF_AREA_NSSA
1931 && !type7)
1932 continue;
1933
1934 LSDB_LOOP (NSSA_LSDB(area), rn, lsa)
1935 {
1936 if (lsa->data->id.s_addr == type5->data->id.s_addr)
1937 {
1938 type7 = lsa;
1939 break;
1940 }
1941 }
1942 }
1943 }
1944
1945 /* do we have type7? */
1946 if (!type7)
1947 {
1948 if (IS_DEBUG_OSPF_NSSA)
ajse588f212004-12-08 18:12:06 +00001949 zlog_debug ("ospf_translated_nssa_refresh(): no Type-7 found for "
pauld4a53d52003-07-12 21:30:57 +00001950 "Type-5 LSA Id %s",
Paul Jakmae54e6e52006-05-12 23:11:14 +00001951 inet_ntoa (type5->data->id));
pauld4a53d52003-07-12 21:30:57 +00001952 return NULL;
1953 }
1954
1955 /* do we have valid translated type5? */
1956 if (type5 == NULL || !CHECK_FLAG (type5->flags, OSPF_LSA_LOCAL_XLT) )
1957 {
1958 if (IS_DEBUG_OSPF_NSSA)
ajse588f212004-12-08 18:12:06 +00001959 zlog_debug ("ospf_translated_nssa_refresh(): No translated Type-5 "
pauld4a53d52003-07-12 21:30:57 +00001960 "found for Type-7 with Id %s",
1961 inet_ntoa (type7->data->id));
1962 return NULL;
1963 }
1964
1965 /* Delete LSA from neighbor retransmit-list. */
1966 ospf_ls_retransmit_delete_nbr_as (ospf, type5);
1967
1968 /* create new translated LSA */
1969 if ( (new = ospf_lsa_translated_nssa_new (ospf, type7)) == NULL)
1970 {
1971 if (IS_DEBUG_OSPF_NSSA)
ajse588f212004-12-08 18:12:06 +00001972 zlog_debug ("ospf_translated_nssa_refresh(): Could not translate "
pauld4a53d52003-07-12 21:30:57 +00001973 "Type-7 for %s to Type-5",
1974 inet_ntoa (type7->data->id));
1975 return NULL;
1976 }
1977
1978 if ( !(new = ospf_lsa_install (ospf, NULL, new)) )
1979 {
1980 if (IS_DEBUG_OSPF_NSSA)
ajse588f212004-12-08 18:12:06 +00001981 zlog_debug ("ospf_translated_nssa_refresh(): Could not install "
pauld4a53d52003-07-12 21:30:57 +00001982 "translated LSA, Id %s",
Paul Jakma5db95bc2006-07-04 13:52:29 +00001983 inet_ntoa (type7->data->id));
pauld4a53d52003-07-12 21:30:57 +00001984 return NULL;
1985 }
1986
1987 /* Flood LSA through area. */
1988 ospf_flood_through_as (ospf, NULL, new);
1989
1990 return new;
1991}
paul718e3742002-12-13 20:15:29 +00001992
1993int
1994is_prefix_default (struct prefix_ipv4 *p)
1995{
1996 struct prefix_ipv4 q;
1997
1998 q.family = AF_INET;
1999 q.prefix.s_addr = 0;
2000 q.prefixlen = 0;
2001
2002 return prefix_same ((struct prefix *) p, (struct prefix *) &q);
2003}
2004
2005/* Originate an AS-external-LSA, install and flood. */
2006struct ospf_lsa *
paul68980082003-03-25 05:07:42 +00002007ospf_external_lsa_originate (struct ospf *ospf, struct external_info *ei)
paul718e3742002-12-13 20:15:29 +00002008{
2009 struct ospf_lsa *new;
2010
2011 /* Added for NSSA project....
2012
2013 External LSAs are originated in ASBRs as usual, but for NSSA systems.
2014 there is the global Type-5 LSDB and a Type-7 LSDB installed for
2015 every area. The Type-7's are flooded to every IR and every ABR; We
2016 install the Type-5 LSDB so that the normal "refresh" code operates
2017 as usual, and flag them as not used during ASE calculations. The
2018 Type-7 LSDB is used for calculations. Each Type-7 has a Forwarding
2019 Address of non-zero.
2020
2021 If an ABR is the elected NSSA translator, following SPF and during
2022 the ABR task it will translate all the scanned Type-7's, with P-bit
2023 ON and not-self generated, and translate to Type-5's throughout the
2024 non-NSSA/STUB AS.
2025
2026 A difference in operation depends whether this ASBR is an ABR
2027 or not. If not an ABR, the P-bit is ON, to indicate that any
2028 elected NSSA-ABR can perform its translation.
2029
2030 If an ABR, the P-bit is OFF; No ABR will perform translation and
2031 this ASBR will flood the Type-5 LSA as usual.
2032
2033 For the case where this ASBR is not an ABR, the ASE calculations
2034 are based on the Type-5 LSDB; The Type-7 LSDB exists just to
2035 demonstrate to the user that there are LSA's that belong to any
2036 attached NSSA.
2037
2038 Finally, it just so happens that when the ABR is translating every
2039 Type-7 into Type-5, it installs it into the Type-5 LSDB as an
2040 approved Type-5 (translated from Type-7); at the end of translation
2041 if any Translated Type-5's remain unapproved, then they must be
2042 flushed from the AS.
2043
2044 */
2045
2046 /* Check the AS-external-LSA should be originated. */
paul68980082003-03-25 05:07:42 +00002047 if (!ospf_redistribute_check (ospf, ei, NULL))
paul718e3742002-12-13 20:15:29 +00002048 return NULL;
2049
2050 /* Create new AS-external-LSA instance. */
paul68980082003-03-25 05:07:42 +00002051 if ((new = ospf_external_lsa_new (ospf, ei, NULL)) == NULL)
paul718e3742002-12-13 20:15:29 +00002052 {
2053 if (IS_DEBUG_OSPF_EVENT)
ajse588f212004-12-08 18:12:06 +00002054 zlog_debug ("LSA[Type5:%s]: Could not originate AS-external-LSA",
paul718e3742002-12-13 20:15:29 +00002055 inet_ntoa (ei->p.prefix));
2056 return NULL;
2057 }
2058
2059 /* Install newly created LSA into Type-5 LSDB, lock = 1. */
paul68980082003-03-25 05:07:42 +00002060 ospf_lsa_install (ospf, NULL, new);
paul718e3742002-12-13 20:15:29 +00002061
2062 /* Update LSA origination count. */
paul68980082003-03-25 05:07:42 +00002063 ospf->lsa_originate_count++;
paul718e3742002-12-13 20:15:29 +00002064
2065 /* Flooding new LSA. only to AS (non-NSSA/STUB) */
paul68980082003-03-25 05:07:42 +00002066 ospf_flood_through_as (ospf, NULL, new);
paul718e3742002-12-13 20:15:29 +00002067
paul718e3742002-12-13 20:15:29 +00002068 /* If there is any attached NSSA, do special handling */
pauld4a53d52003-07-12 21:30:57 +00002069 if (ospf->anyNSSA &&
2070 /* stay away from translated LSAs! */
2071 !(CHECK_FLAG (new->flags, OSPF_LSA_LOCAL_XLT)))
paul68980082003-03-25 05:07:42 +00002072 ospf_install_flood_nssa (ospf, new, ei); /* Install/Flood Type-7 to all NSSAs */
paul718e3742002-12-13 20:15:29 +00002073
2074 /* Debug logging. */
2075 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
2076 {
ajse588f212004-12-08 18:12:06 +00002077 zlog_debug ("LSA[Type%d:%s]: Originate AS-external-LSA %p",
paul718e3742002-12-13 20:15:29 +00002078 new->data->type, inet_ntoa (new->data->id), new);
2079 ospf_lsa_header_dump (new->data);
2080 }
2081
2082 return new;
2083}
2084
2085/* Originate AS-external-LSA from external info with initial flag. */
2086int
paul68980082003-03-25 05:07:42 +00002087ospf_external_lsa_originate_timer (struct thread *thread)
paul718e3742002-12-13 20:15:29 +00002088{
paul68980082003-03-25 05:07:42 +00002089 struct ospf *ospf = THREAD_ARG (thread);
paul718e3742002-12-13 20:15:29 +00002090 struct route_node *rn;
2091 struct external_info *ei;
2092 struct route_table *rt;
paul68980082003-03-25 05:07:42 +00002093 int type = THREAD_VAL (thread);
paul718e3742002-12-13 20:15:29 +00002094
paul68980082003-03-25 05:07:42 +00002095 ospf->t_external_lsa = NULL;
paul718e3742002-12-13 20:15:29 +00002096
2097 /* Originate As-external-LSA from all type of distribute source. */
2098 if ((rt = EXTERNAL_INFO (type)))
2099 for (rn = route_top (rt); rn; rn = route_next (rn))
2100 if ((ei = rn->info) != NULL)
2101 if (!is_prefix_default ((struct prefix_ipv4 *)&ei->p))
paul68980082003-03-25 05:07:42 +00002102 if (!ospf_external_lsa_originate (ospf, ei))
paul718e3742002-12-13 20:15:29 +00002103 zlog_warn ("LSA: AS-external-LSA was not originated.");
2104
2105 return 0;
2106}
2107
paul4dadc292005-05-06 21:37:42 +00002108static struct external_info *
paul020709f2003-04-04 02:44:16 +00002109ospf_default_external_info (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00002110{
2111 int type;
2112 struct route_node *rn;
2113 struct prefix_ipv4 p;
2114
2115 p.family = AF_INET;
2116 p.prefix.s_addr = 0;
2117 p.prefixlen = 0;
2118
2119 /* First, lookup redistributed default route. */
2120 for (type = 0; type <= ZEBRA_ROUTE_MAX; type++)
2121 if (EXTERNAL_INFO (type) && type != ZEBRA_ROUTE_OSPF)
2122 {
2123 rn = route_node_lookup (EXTERNAL_INFO (type), (struct prefix *) &p);
2124 if (rn != NULL)
2125 {
2126 route_unlock_node (rn);
2127 assert (rn->info);
paul68980082003-03-25 05:07:42 +00002128 if (ospf_redistribute_check (ospf, rn->info, NULL))
paul718e3742002-12-13 20:15:29 +00002129 return rn->info;
2130 }
2131 }
2132
2133 return NULL;
2134}
2135
2136int
paul68980082003-03-25 05:07:42 +00002137ospf_default_originate_timer (struct thread *thread)
paul718e3742002-12-13 20:15:29 +00002138{
paul718e3742002-12-13 20:15:29 +00002139 struct prefix_ipv4 p;
2140 struct in_addr nexthop;
2141 struct external_info *ei;
paul020709f2003-04-04 02:44:16 +00002142 struct ospf *ospf;
paul718e3742002-12-13 20:15:29 +00002143
Paul Jakma4021b602006-05-12 22:55:41 +00002144 ospf = THREAD_ARG (thread);
paul718e3742002-12-13 20:15:29 +00002145
2146 p.family = AF_INET;
2147 p.prefix.s_addr = 0;
2148 p.prefixlen = 0;
2149
Paul Jakma4021b602006-05-12 22:55:41 +00002150 if (ospf->default_originate == DEFAULT_ORIGINATE_ALWAYS)
paul718e3742002-12-13 20:15:29 +00002151 {
2152 /* If there is no default route via redistribute,
2153 then originate AS-external-LSA with nexthop 0 (self). */
2154 nexthop.s_addr = 0;
2155 ospf_external_info_add (DEFAULT_ROUTE, p, 0, nexthop);
2156 }
2157
paul020709f2003-04-04 02:44:16 +00002158 if ((ei = ospf_default_external_info (ospf)))
paul68980082003-03-25 05:07:42 +00002159 ospf_external_lsa_originate (ospf, ei);
paul718e3742002-12-13 20:15:29 +00002160
2161 return 0;
2162}
2163
paul645878f2003-04-13 21:42:11 +00002164/* Flush any NSSA LSAs for given prefix */
2165void
2166ospf_nssa_lsa_flush (struct ospf *ospf, struct prefix_ipv4 *p)
2167{
paul1eb8ef22005-04-07 07:30:20 +00002168 struct listnode *node, *nnode;
paul645878f2003-04-13 21:42:11 +00002169 struct ospf_lsa *lsa;
2170 struct ospf_area *area;
2171
paul1eb8ef22005-04-07 07:30:20 +00002172 for (ALL_LIST_ELEMENTS (ospf->areas, node, nnode, area))
paul645878f2003-04-13 21:42:11 +00002173 {
paul1eb8ef22005-04-07 07:30:20 +00002174 if (area->external_routing == OSPF_AREA_NSSA)
pauld7480322003-05-16 17:31:51 +00002175 {
2176 if (!(lsa = ospf_lsa_lookup (area, OSPF_AS_NSSA_LSA, p->prefix,
2177 ospf->router_id)))
2178 {
2179 if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
ajse588f212004-12-08 18:12:06 +00002180 zlog_debug ("LSA: There is no such AS-NSSA-LSA %s/%d in LSDB",
pauld7480322003-05-16 17:31:51 +00002181 inet_ntoa (p->prefix), p->prefixlen);
2182 continue;
2183 }
2184 ospf_ls_retransmit_delete_nbr_area (area, lsa);
2185 if (!IS_LSA_MAXAGE (lsa))
2186 {
2187 ospf_refresher_unregister_lsa (ospf, lsa);
2188 ospf_lsa_flush_area (lsa, area);
2189 }
2190 }
paul645878f2003-04-13 21:42:11 +00002191 }
2192}
paul645878f2003-04-13 21:42:11 +00002193
paul718e3742002-12-13 20:15:29 +00002194/* Flush an AS-external-LSA from LSDB and routing domain. */
2195void
paul68980082003-03-25 05:07:42 +00002196ospf_external_lsa_flush (struct ospf *ospf,
2197 u_char type, struct prefix_ipv4 *p,
ajs5339cfd2005-09-19 13:28:05 +00002198 unsigned int ifindex /*, struct in_addr nexthop */)
paul718e3742002-12-13 20:15:29 +00002199{
2200 struct ospf_lsa *lsa;
2201
2202 if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
ajse588f212004-12-08 18:12:06 +00002203 zlog_debug ("LSA: Flushing AS-external-LSA %s/%d",
paul718e3742002-12-13 20:15:29 +00002204 inet_ntoa (p->prefix), p->prefixlen);
2205
2206 /* First lookup LSA from LSDB. */
paul68980082003-03-25 05:07:42 +00002207 if (!(lsa = ospf_external_info_find_lsa (ospf, p)))
paul718e3742002-12-13 20:15:29 +00002208 {
2209 if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
ajse588f212004-12-08 18:12:06 +00002210 zlog_debug ("LSA: There is no such AS-external-LSA %s/%d in LSDB",
paul718e3742002-12-13 20:15:29 +00002211 inet_ntoa (p->prefix), p->prefixlen);
2212 return;
2213 }
hassobeebba72004-06-20 21:00:27 +00002214
pauld4a53d52003-07-12 21:30:57 +00002215 /* If LSA is selforiginated, not a translated LSA, and there is
2216 * NSSA area, flush Type-7 LSA's at first.
2217 */
2218 if (IS_LSA_SELF(lsa) && (ospf->anyNSSA)
2219 && !(CHECK_FLAG (lsa->flags, OSPF_LSA_LOCAL_XLT)))
pauld7480322003-05-16 17:31:51 +00002220 ospf_nssa_lsa_flush (ospf, p);
paul718e3742002-12-13 20:15:29 +00002221
2222 /* Sweep LSA from Link State Retransmit List. */
paul68980082003-03-25 05:07:42 +00002223 ospf_ls_retransmit_delete_nbr_as (ospf, lsa);
paul718e3742002-12-13 20:15:29 +00002224
2225 /* There must be no self-originated LSA in rtrs_external. */
2226#if 0
2227 /* Remove External route from Zebra. */
2228 ospf_zebra_delete ((struct prefix_ipv4 *) p, &nexthop);
2229#endif
2230
2231 if (!IS_LSA_MAXAGE (lsa))
2232 {
2233 /* Unregister LSA from Refresh queue. */
paul68980082003-03-25 05:07:42 +00002234 ospf_refresher_unregister_lsa (ospf, lsa);
paul718e3742002-12-13 20:15:29 +00002235
2236 /* Flush AS-external-LSA through AS. */
paul68980082003-03-25 05:07:42 +00002237 ospf_lsa_flush_as (ospf, lsa);
paul718e3742002-12-13 20:15:29 +00002238 }
2239
2240 if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
ajse588f212004-12-08 18:12:06 +00002241 zlog_debug ("ospf_external_lsa_flush(): stop");
paul718e3742002-12-13 20:15:29 +00002242}
2243
2244void
paul68980082003-03-25 05:07:42 +00002245ospf_external_lsa_refresh_default (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00002246{
2247 struct prefix_ipv4 p;
2248 struct external_info *ei;
2249 struct ospf_lsa *lsa;
2250
2251 p.family = AF_INET;
2252 p.prefixlen = 0;
2253 p.prefix.s_addr = 0;
2254
paul020709f2003-04-04 02:44:16 +00002255 ei = ospf_default_external_info (ospf);
paul68980082003-03-25 05:07:42 +00002256 lsa = ospf_external_info_find_lsa (ospf, &p);
paul718e3742002-12-13 20:15:29 +00002257
2258 if (ei)
2259 {
2260 if (lsa)
2261 {
2262 if (IS_DEBUG_OSPF_EVENT)
ajse588f212004-12-08 18:12:06 +00002263 zlog_debug ("LSA[Type5:0.0.0.0]: Refresh AS-external-LSA %p", lsa);
paul68980082003-03-25 05:07:42 +00002264 ospf_external_lsa_refresh (ospf, lsa, ei, LSA_REFRESH_FORCE);
paul718e3742002-12-13 20:15:29 +00002265 }
2266 else
2267 {
2268 if (IS_DEBUG_OSPF_EVENT)
ajse588f212004-12-08 18:12:06 +00002269 zlog_debug ("LSA[Type5:0.0.0.0]: Originate AS-external-LSA");
paul68980082003-03-25 05:07:42 +00002270 ospf_external_lsa_originate (ospf, ei);
paul718e3742002-12-13 20:15:29 +00002271 }
2272 }
2273 else
2274 {
2275 if (lsa)
2276 {
2277 if (IS_DEBUG_OSPF_EVENT)
ajse588f212004-12-08 18:12:06 +00002278 zlog_debug ("LSA[Type5:0.0.0.0]: Flush AS-external-LSA");
Paul Jakmadfbd5172010-04-14 10:32:12 +01002279 ospf_refresher_unregister_lsa (ospf, lsa);
paul68980082003-03-25 05:07:42 +00002280 ospf_lsa_flush_as (ospf, lsa);
paul718e3742002-12-13 20:15:29 +00002281 }
2282 }
2283}
2284
2285void
paul68980082003-03-25 05:07:42 +00002286ospf_external_lsa_refresh_type (struct ospf *ospf, u_char type, int force)
paul718e3742002-12-13 20:15:29 +00002287{
2288 struct route_node *rn;
2289 struct external_info *ei;
2290
2291 if (type != DEFAULT_ROUTE)
2292 if (EXTERNAL_INFO(type))
2293 /* Refresh each redistributed AS-external-LSAs. */
2294 for (rn = route_top (EXTERNAL_INFO (type)); rn; rn = route_next (rn))
2295 if ((ei = rn->info))
2296 if (!is_prefix_default (&ei->p))
2297 {
2298 struct ospf_lsa *lsa;
2299
paul68980082003-03-25 05:07:42 +00002300 if ((lsa = ospf_external_info_find_lsa (ospf, &ei->p)))
2301 ospf_external_lsa_refresh (ospf, lsa, ei, force);
paul718e3742002-12-13 20:15:29 +00002302 else
paul68980082003-03-25 05:07:42 +00002303 ospf_external_lsa_originate (ospf, ei);
paul718e3742002-12-13 20:15:29 +00002304 }
2305}
2306
2307/* Refresh AS-external-LSA. */
Paul Jakmac363d382010-01-24 22:42:13 +00002308struct ospf_lsa *
paul68980082003-03-25 05:07:42 +00002309ospf_external_lsa_refresh (struct ospf *ospf, struct ospf_lsa *lsa,
paul718e3742002-12-13 20:15:29 +00002310 struct external_info *ei, int force)
2311{
2312 struct ospf_lsa *new;
2313 int changed;
2314
2315 /* Check the AS-external-LSA should be originated. */
paul68980082003-03-25 05:07:42 +00002316 if (!ospf_redistribute_check (ospf, ei, &changed))
paul718e3742002-12-13 20:15:29 +00002317 {
pauld4a53d52003-07-12 21:30:57 +00002318 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
ajse588f212004-12-08 18:12:06 +00002319 zlog_debug ("LSA[Type%d:%s]: Could not be refreshed, "
pauld4a53d52003-07-12 21:30:57 +00002320 "redist check fail",
2321 lsa->data->type, inet_ntoa (lsa->data->id));
paul68980082003-03-25 05:07:42 +00002322 ospf_external_lsa_flush (ospf, ei->type, &ei->p,
ajs5339cfd2005-09-19 13:28:05 +00002323 ei->ifindex /*, ei->nexthop */);
Paul Jakmac363d382010-01-24 22:42:13 +00002324 return NULL;
paul718e3742002-12-13 20:15:29 +00002325 }
2326
2327 if (!changed && !force)
pauld4a53d52003-07-12 21:30:57 +00002328 {
2329 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
ajse588f212004-12-08 18:12:06 +00002330 zlog_debug ("LSA[Type%d:%s]: Not refreshed, not changed/forced",
pauld4a53d52003-07-12 21:30:57 +00002331 lsa->data->type, inet_ntoa (lsa->data->id));
Paul Jakmac363d382010-01-24 22:42:13 +00002332 return NULL;
pauld4a53d52003-07-12 21:30:57 +00002333 }
paul718e3742002-12-13 20:15:29 +00002334
2335 /* Delete LSA from neighbor retransmit-list. */
paul68980082003-03-25 05:07:42 +00002336 ospf_ls_retransmit_delete_nbr_as (ospf, lsa);
paul718e3742002-12-13 20:15:29 +00002337
2338 /* Unregister AS-external-LSA from refresh-list. */
paul68980082003-03-25 05:07:42 +00002339 ospf_refresher_unregister_lsa (ospf, lsa);
paul718e3742002-12-13 20:15:29 +00002340
paul68980082003-03-25 05:07:42 +00002341 new = ospf_external_lsa_new (ospf, ei, &lsa->data->id);
paul718e3742002-12-13 20:15:29 +00002342
2343 if (new == NULL)
2344 {
2345 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
ajse588f212004-12-08 18:12:06 +00002346 zlog_debug ("LSA[Type%d:%s]: Could not be refreshed", lsa->data->type,
paul718e3742002-12-13 20:15:29 +00002347 inet_ntoa (lsa->data->id));
Paul Jakmac363d382010-01-24 22:42:13 +00002348 return NULL;
paul718e3742002-12-13 20:15:29 +00002349 }
2350
2351 new->data->ls_seqnum = lsa_seqnum_increment (lsa);
2352
paul68980082003-03-25 05:07:42 +00002353 ospf_lsa_install (ospf, NULL, new); /* As type-5. */
paul718e3742002-12-13 20:15:29 +00002354
2355 /* Flood LSA through AS. */
paul68980082003-03-25 05:07:42 +00002356 ospf_flood_through_as (ospf, NULL, new);
paul718e3742002-12-13 20:15:29 +00002357
paul718e3742002-12-13 20:15:29 +00002358 /* If any attached NSSA, install as Type-7, flood to all NSSA Areas */
pauld4a53d52003-07-12 21:30:57 +00002359 if (ospf->anyNSSA && !(CHECK_FLAG (new->flags, OSPF_LSA_LOCAL_XLT)))
paul68980082003-03-25 05:07:42 +00002360 ospf_install_flood_nssa (ospf, new, ei); /* Install/Flood per new rules */
paul718e3742002-12-13 20:15:29 +00002361
pauld4a53d52003-07-12 21:30:57 +00002362 /* Register self-originated LSA to refresh queue.
2363 * Translated LSAs should not be registered, but refreshed upon
2364 * refresh of the Type-7
2365 */
2366 if ( !CHECK_FLAG (new->flags, OSPF_LSA_LOCAL_XLT) )
2367 ospf_refresher_register_lsa (ospf, new);
paul718e3742002-12-13 20:15:29 +00002368
2369 /* Debug logging. */
2370 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
2371 {
ajse588f212004-12-08 18:12:06 +00002372 zlog_debug ("LSA[Type%d:%s]: AS-external-LSA refresh",
pauld4a53d52003-07-12 21:30:57 +00002373 new->data->type, inet_ntoa (new->data->id));
paul718e3742002-12-13 20:15:29 +00002374 ospf_lsa_header_dump (new->data);
2375 }
2376
Paul Jakmac363d382010-01-24 22:42:13 +00002377 return new;
paul718e3742002-12-13 20:15:29 +00002378}
2379
David Lamparter6b0655a2014-06-04 06:53:35 +02002380
paul718e3742002-12-13 20:15:29 +00002381/* LSA installation functions. */
2382
2383/* Install router-LSA to an area. */
paul4dadc292005-05-06 21:37:42 +00002384static struct ospf_lsa *
Paul Jakmac363d382010-01-24 22:42:13 +00002385ospf_router_lsa_install (struct ospf *ospf, struct ospf_lsa *new,
2386 int rt_recalc)
paul718e3742002-12-13 20:15:29 +00002387{
2388 struct ospf_area *area = new->area;
2389
2390 /* RFC 2328 Section 13.2 Router-LSAs and network-LSAs
2391 The entire routing table must be recalculated, starting with
2392 the shortest path calculations for each area (not just the
2393 area whose link-state database has changed).
2394 */
paul718e3742002-12-13 20:15:29 +00002395
Joakim Tjernlund5996e0d2009-07-27 12:42:35 +02002396 if (IS_LSA_SELF (new))
paul718e3742002-12-13 20:15:29 +00002397 {
Joakim Tjernlund5996e0d2009-07-27 12:42:35 +02002398
2399 /* Only install LSA if it is originated/refreshed by us.
2400 * If LSA was received by flooding, the RECEIVED flag is set so do
2401 * not link the LSA */
2402 if (CHECK_FLAG (new->flags, OSPF_LSA_RECEIVED))
2403 return new; /* ignore stale LSA */
2404
paul718e3742002-12-13 20:15:29 +00002405 /* Set self-originated router-LSA. */
Paul Jakma1fe6ed32006-07-26 09:37:26 +00002406 ospf_lsa_unlock (&area->router_lsa_self);
paul718e3742002-12-13 20:15:29 +00002407 area->router_lsa_self = ospf_lsa_lock (new);
2408
Paul Jakmac363d382010-01-24 22:42:13 +00002409 ospf_refresher_register_lsa (ospf, new);
paul718e3742002-12-13 20:15:29 +00002410 }
Joakim Tjernlund5996e0d2009-07-27 12:42:35 +02002411 if (rt_recalc)
Dinesh G Dutt50f38b32014-09-30 12:53:28 -07002412 {
2413 ospf_flag_spf_reason (SPF_FLAG_ROUTER_LSA_INSTALL);
2414 ospf_spf_calculate_schedule (ospf);
2415 }
paul718e3742002-12-13 20:15:29 +00002416 return new;
2417}
2418
2419#define OSPF_INTERFACE_TIMER_ON(T,F,V) \
2420 if (!(T)) \
2421 (T) = thread_add_timer (master, (F), oi, (V))
2422
2423/* Install network-LSA to an area. */
paul4dadc292005-05-06 21:37:42 +00002424static struct ospf_lsa *
paul68980082003-03-25 05:07:42 +00002425ospf_network_lsa_install (struct ospf *ospf,
2426 struct ospf_interface *oi,
paul718e3742002-12-13 20:15:29 +00002427 struct ospf_lsa *new,
2428 int rt_recalc)
2429{
2430
2431 /* RFC 2328 Section 13.2 Router-LSAs and network-LSAs
2432 The entire routing table must be recalculated, starting with
2433 the shortest path calculations for each area (not just the
2434 area whose link-state database has changed).
2435 */
Joakim Tjernlund5996e0d2009-07-27 12:42:35 +02002436 if (IS_LSA_SELF (new))
paul718e3742002-12-13 20:15:29 +00002437 {
Joakim Tjernlund5996e0d2009-07-27 12:42:35 +02002438 /* We supposed that when LSA is originated by us, we pass the int
2439 for which it was originated. If LSA was received by flooding,
2440 the RECEIVED flag is set, so we do not link the LSA to the int. */
2441 if (CHECK_FLAG (new->flags, OSPF_LSA_RECEIVED))
2442 return new; /* ignore stale LSA */
2443
Paul Jakma1fe6ed32006-07-26 09:37:26 +00002444 ospf_lsa_unlock (&oi->network_lsa_self);
paul718e3742002-12-13 20:15:29 +00002445 oi->network_lsa_self = ospf_lsa_lock (new);
Paul Jakmac363d382010-01-24 22:42:13 +00002446 ospf_refresher_register_lsa (ospf, new);
paul718e3742002-12-13 20:15:29 +00002447 }
Joakim Tjernlund5996e0d2009-07-27 12:42:35 +02002448 if (rt_recalc)
Dinesh G Dutt50f38b32014-09-30 12:53:28 -07002449 {
2450 ospf_flag_spf_reason (SPF_FLAG_NETWORK_LSA_INSTALL);
2451 ospf_spf_calculate_schedule (ospf);
2452 }
paul718e3742002-12-13 20:15:29 +00002453
2454 return new;
2455}
2456
2457/* Install summary-LSA to an area. */
paul4dadc292005-05-06 21:37:42 +00002458static struct ospf_lsa *
paul68980082003-03-25 05:07:42 +00002459ospf_summary_lsa_install (struct ospf *ospf, struct ospf_lsa *new,
2460 int rt_recalc)
paul718e3742002-12-13 20:15:29 +00002461{
paul718e3742002-12-13 20:15:29 +00002462 if (rt_recalc && !IS_LSA_SELF (new))
2463 {
2464 /* RFC 2328 Section 13.2 Summary-LSAs
2465 The best route to the destination described by the summary-
2466 LSA must be recalculated (see Section 16.5). If this
2467 destination is an AS boundary router, it may also be
2468 necessary to re-examine all the AS-external-LSAs.
2469 */
2470
2471#if 0
2472 /* This doesn't exist yet... */
2473 ospf_summary_incremental_update(new); */
2474#else /* #if 0 */
Dinesh G Dutt50f38b32014-09-30 12:53:28 -07002475 ospf_flag_spf_reason (SPF_FLAG_SUMMARY_LSA_INSTALL);
paul68980082003-03-25 05:07:42 +00002476 ospf_spf_calculate_schedule (ospf);
paul718e3742002-12-13 20:15:29 +00002477#endif /* #if 0 */
2478
paul718e3742002-12-13 20:15:29 +00002479 }
2480
2481 if (IS_LSA_SELF (new))
paul68980082003-03-25 05:07:42 +00002482 ospf_refresher_register_lsa (ospf, new);
paul718e3742002-12-13 20:15:29 +00002483
2484 return new;
2485}
2486
2487/* Install ASBR-summary-LSA to an area. */
paul4dadc292005-05-06 21:37:42 +00002488static struct ospf_lsa *
paul68980082003-03-25 05:07:42 +00002489ospf_summary_asbr_lsa_install (struct ospf *ospf, struct ospf_lsa *new,
2490 int rt_recalc)
paul718e3742002-12-13 20:15:29 +00002491{
2492 if (rt_recalc && !IS_LSA_SELF (new))
2493 {
2494 /* RFC 2328 Section 13.2 Summary-LSAs
2495 The best route to the destination described by the summary-
2496 LSA must be recalculated (see Section 16.5). If this
2497 destination is an AS boundary router, it may also be
2498 necessary to re-examine all the AS-external-LSAs.
2499 */
2500#if 0
2501 /* These don't exist yet... */
2502 ospf_summary_incremental_update(new);
2503 /* Isn't this done by the above call?
2504 - RFC 2328 Section 16.5 implies it should be */
2505 /* ospf_ase_calculate_schedule(); */
2506#else /* #if 0 */
Dinesh G Dutt50f38b32014-09-30 12:53:28 -07002507 ospf_flag_spf_reason (SPF_FLAG_ASBR_SUMMARY_LSA_INSTALL);
paul68980082003-03-25 05:07:42 +00002508 ospf_spf_calculate_schedule (ospf);
paul718e3742002-12-13 20:15:29 +00002509#endif /* #if 0 */
2510 }
2511
2512 /* register LSA to refresh-list. */
2513 if (IS_LSA_SELF (new))
paul68980082003-03-25 05:07:42 +00002514 ospf_refresher_register_lsa (ospf, new);
paul718e3742002-12-13 20:15:29 +00002515
2516 return new;
2517}
2518
2519/* Install AS-external-LSA. */
paul4dadc292005-05-06 21:37:42 +00002520static struct ospf_lsa *
paul68980082003-03-25 05:07:42 +00002521ospf_external_lsa_install (struct ospf *ospf, struct ospf_lsa *new,
2522 int rt_recalc)
paul718e3742002-12-13 20:15:29 +00002523{
paul68980082003-03-25 05:07:42 +00002524 ospf_ase_register_external_lsa (new, ospf);
paul718e3742002-12-13 20:15:29 +00002525 /* If LSA is not self-originated, calculate an external route. */
2526 if (rt_recalc)
2527 {
2528 /* RFC 2328 Section 13.2 AS-external-LSAs
2529 The best route to the destination described by the AS-
2530 external-LSA must be recalculated (see Section 16.6).
2531 */
2532
2533 if (!IS_LSA_SELF (new))
pauld4a53d52003-07-12 21:30:57 +00002534 ospf_ase_incremental_update (ospf, new);
paul718e3742002-12-13 20:15:29 +00002535 }
2536
pauld4a53d52003-07-12 21:30:57 +00002537 if (new->data->type == OSPF_AS_NSSA_LSA)
2538 {
2539 /* There is no point to register selforiginate Type-7 LSA for
2540 * refreshing. We rely on refreshing Type-5 LSA's
2541 */
2542 if (IS_LSA_SELF (new))
2543 return new;
2544 else
2545 {
2546 /* Try refresh type-5 translated LSA for this LSA, if one exists.
2547 * New translations will be taken care of by the abr_task.
2548 */
2549 ospf_translated_nssa_refresh (ospf, new, NULL);
2550 }
2551 }
pauld7480322003-05-16 17:31:51 +00002552
pauld4a53d52003-07-12 21:30:57 +00002553 /* Register self-originated LSA to refresh queue.
paul8fc0f642003-07-13 01:36:06 +00002554 * Leave Translated LSAs alone if NSSA is enabled
pauld4a53d52003-07-12 21:30:57 +00002555 */
hassobeebba72004-06-20 21:00:27 +00002556 if (IS_LSA_SELF (new) && !CHECK_FLAG (new->flags, OSPF_LSA_LOCAL_XLT ) )
paul68980082003-03-25 05:07:42 +00002557 ospf_refresher_register_lsa (ospf, new);
paul718e3742002-12-13 20:15:29 +00002558
2559 return new;
2560}
2561
2562void
paul68980082003-03-25 05:07:42 +00002563ospf_discard_from_db (struct ospf *ospf,
2564 struct ospf_lsdb *lsdb, struct ospf_lsa *lsa)
paul718e3742002-12-13 20:15:29 +00002565{
2566 struct ospf_lsa *old;
2567
Paul Jakmaac904de2006-06-15 12:04:57 +00002568 if (!lsdb)
2569 {
2570 zlog_warn ("%s: Called with NULL lsdb!", __func__);
2571 if (!lsa)
2572 zlog_warn ("%s: and NULL LSA!", __func__);
2573 else
2574 zlog_warn ("LSA[Type%d:%s]: not associated with LSDB!",
2575 lsa->data->type, inet_ntoa (lsa->data->id));
2576 return;
2577 }
2578
paul718e3742002-12-13 20:15:29 +00002579 old = ospf_lsdb_lookup (lsdb, lsa);
2580
2581 if (!old)
2582 return;
2583
2584 if (old->refresh_list >= 0)
paul68980082003-03-25 05:07:42 +00002585 ospf_refresher_unregister_lsa (ospf, old);
paul718e3742002-12-13 20:15:29 +00002586
2587 switch (old->data->type)
2588 {
2589 case OSPF_AS_EXTERNAL_LSA:
paul69310a62005-05-11 18:09:59 +00002590 ospf_ase_unregister_external_lsa (old, ospf);
2591 ospf_ls_retransmit_delete_nbr_as (ospf, old);
2592 break;
paul718e3742002-12-13 20:15:29 +00002593#ifdef HAVE_OPAQUE_LSA
2594 case OSPF_OPAQUE_AS_LSA:
paul68980082003-03-25 05:07:42 +00002595 ospf_ls_retransmit_delete_nbr_as (ospf, old);
paul718e3742002-12-13 20:15:29 +00002596 break;
paul69310a62005-05-11 18:09:59 +00002597#endif /* HAVE_OPAQUE_LSA */
pauld7480322003-05-16 17:31:51 +00002598 case OSPF_AS_NSSA_LSA:
2599 ospf_ls_retransmit_delete_nbr_area (old->area, old);
2600 ospf_ase_unregister_external_lsa (old, ospf);
hassobeebba72004-06-20 21:00:27 +00002601 break;
paul718e3742002-12-13 20:15:29 +00002602 default:
paul68980082003-03-25 05:07:42 +00002603 ospf_ls_retransmit_delete_nbr_area (old->area, old);
paul718e3742002-12-13 20:15:29 +00002604 break;
2605 }
2606
paul68980082003-03-25 05:07:42 +00002607 ospf_lsa_maxage_delete (ospf, old);
paul718e3742002-12-13 20:15:29 +00002608 ospf_lsa_discard (old);
2609}
2610
paul718e3742002-12-13 20:15:29 +00002611struct ospf_lsa *
paul68980082003-03-25 05:07:42 +00002612ospf_lsa_install (struct ospf *ospf, struct ospf_interface *oi,
2613 struct ospf_lsa *lsa)
paul718e3742002-12-13 20:15:29 +00002614{
2615 struct ospf_lsa *new = NULL;
2616 struct ospf_lsa *old = NULL;
2617 struct ospf_lsdb *lsdb = NULL;
2618 int rt_recalc;
2619
2620 /* Set LSDB. */
2621 switch (lsa->data->type)
2622 {
paulf2c80652002-12-13 21:44:27 +00002623 /* kevinm */
2624 case OSPF_AS_NSSA_LSA:
2625 if (lsa->area)
2626 lsdb = lsa->area->lsdb;
2627 else
paul68980082003-03-25 05:07:42 +00002628 lsdb = ospf->lsdb;
paulf2c80652002-12-13 21:44:27 +00002629 break;
paul718e3742002-12-13 20:15:29 +00002630 case OSPF_AS_EXTERNAL_LSA:
2631#ifdef HAVE_OPAQUE_LSA
2632 case OSPF_OPAQUE_AS_LSA:
2633#endif /* HAVE_OPAQUE_LSA */
paul68980082003-03-25 05:07:42 +00002634 lsdb = ospf->lsdb;
paul718e3742002-12-13 20:15:29 +00002635 break;
2636 default:
2637 lsdb = lsa->area->lsdb;
2638 break;
2639 }
2640
paul718e3742002-12-13 20:15:29 +00002641 assert (lsdb);
2642
2643 /* RFC 2328 13.2. Installing LSAs in the database
2644
2645 Installing a new LSA in the database, either as the result of
2646 flooding or a newly self-originated LSA, may cause the OSPF
2647 routing table structure to be recalculated. The contents of the
2648 new LSA should be compared to the old instance, if present. If
2649 there is no difference, there is no need to recalculate the
2650 routing table. When comparing an LSA to its previous instance,
2651 the following are all considered to be differences in contents:
2652
2653 o The LSA's Options field has changed.
2654
2655 o One of the LSA instances has LS age set to MaxAge, and
2656 the other does not.
2657
2658 o The length field in the LSA header has changed.
2659
2660 o The body of the LSA (i.e., anything outside the 20-byte
2661 LSA header) has changed. Note that this excludes changes
2662 in LS Sequence Number and LS Checksum.
2663
2664 */
2665 /* Look up old LSA and determine if any SPF calculation or incremental
2666 update is needed */
2667 old = ospf_lsdb_lookup (lsdb, lsa);
2668
2669 /* Do comparision and record if recalc needed. */
2670 rt_recalc = 0;
2671 if ( old == NULL || ospf_lsa_different(old, lsa))
2672 rt_recalc = 1;
2673
paul7ddf1d62003-10-13 09:06:46 +00002674 /*
2675 Sequence number check (Section 14.1 of rfc 2328)
2676 "Premature aging is used when it is time for a self-originated
2677 LSA's sequence number field to wrap. At this point, the current
2678 LSA instance (having LS sequence number MaxSequenceNumber) must
2679 be prematurely aged and flushed from the routing domain before a
2680 new instance with sequence number equal to InitialSequenceNumber
2681 can be originated. "
2682 */
2683
Paul Jakmac2b478d2006-03-30 14:16:11 +00002684 if (ntohl(lsa->data->ls_seqnum) - 1 == OSPF_MAX_SEQUENCE_NUMBER)
paul7ddf1d62003-10-13 09:06:46 +00002685 {
2686 if (ospf_lsa_is_self_originated(ospf, lsa))
2687 {
paul0c2be262004-05-31 14:16:54 +00002688 lsa->data->ls_seqnum = htonl(OSPF_MAX_SEQUENCE_NUMBER);
2689
2690 if (!IS_LSA_MAXAGE(lsa))
paul7ddf1d62003-10-13 09:06:46 +00002691 lsa->flags |= OSPF_LSA_PREMATURE_AGE;
2692 lsa->data->ls_age = htons (OSPF_LSA_MAXAGE);
2693
2694 if (IS_DEBUG_OSPF (lsa, LSA_REFRESH))
2695 {
ajse588f212004-12-08 18:12:06 +00002696 zlog_debug ("ospf_lsa_install() Premature Aging "
Paul Jakmac363d382010-01-24 22:42:13 +00002697 "lsa 0x%p, seqnum 0x%x",
2698 lsa, ntohl(lsa->data->ls_seqnum));
paul7ddf1d62003-10-13 09:06:46 +00002699 ospf_lsa_header_dump (lsa->data);
2700 }
2701 }
2702 else
2703 {
2704 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
2705 {
ajse588f212004-12-08 18:12:06 +00002706 zlog_debug ("ospf_lsa_install() got an lsa with seq 0x80000000 "
paul7ddf1d62003-10-13 09:06:46 +00002707 "that was not self originated. Ignoring\n");
2708 ospf_lsa_header_dump (lsa->data);
2709 }
2710 return old;
2711 }
2712 }
2713
paul718e3742002-12-13 20:15:29 +00002714 /* discard old LSA from LSDB */
2715 if (old != NULL)
paul68980082003-03-25 05:07:42 +00002716 ospf_discard_from_db (ospf, lsdb, lsa);
paul718e3742002-12-13 20:15:29 +00002717
paul718e3742002-12-13 20:15:29 +00002718 /* Calculate Checksum if self-originated?. */
2719 if (IS_LSA_SELF (lsa))
2720 ospf_lsa_checksum (lsa->data);
2721
hassofe71a972004-12-22 16:16:02 +00002722 /* Insert LSA to LSDB. */
2723 ospf_lsdb_add (lsdb, lsa);
2724 lsa->lsdb = lsdb;
2725
paul718e3742002-12-13 20:15:29 +00002726 /* Do LSA specific installation process. */
2727 switch (lsa->data->type)
2728 {
2729 case OSPF_ROUTER_LSA:
paul68980082003-03-25 05:07:42 +00002730 new = ospf_router_lsa_install (ospf, lsa, rt_recalc);
paul718e3742002-12-13 20:15:29 +00002731 break;
2732 case OSPF_NETWORK_LSA:
2733 assert (oi);
paul68980082003-03-25 05:07:42 +00002734 new = ospf_network_lsa_install (ospf, oi, lsa, rt_recalc);
paul718e3742002-12-13 20:15:29 +00002735 break;
2736 case OSPF_SUMMARY_LSA:
paul68980082003-03-25 05:07:42 +00002737 new = ospf_summary_lsa_install (ospf, lsa, rt_recalc);
paul718e3742002-12-13 20:15:29 +00002738 break;
2739 case OSPF_ASBR_SUMMARY_LSA:
paul68980082003-03-25 05:07:42 +00002740 new = ospf_summary_asbr_lsa_install (ospf, lsa, rt_recalc);
paul718e3742002-12-13 20:15:29 +00002741 break;
2742 case OSPF_AS_EXTERNAL_LSA:
paul68980082003-03-25 05:07:42 +00002743 new = ospf_external_lsa_install (ospf, lsa, rt_recalc);
paul718e3742002-12-13 20:15:29 +00002744 break;
2745#ifdef HAVE_OPAQUE_LSA
2746 case OSPF_OPAQUE_LINK_LSA:
paul09e4efd2003-01-18 00:12:02 +00002747 if (IS_LSA_SELF (lsa))
paul68980082003-03-25 05:07:42 +00002748 lsa->oi = oi; /* Specify outgoing ospf-interface for this LSA. */
paul09e4efd2003-01-18 00:12:02 +00002749 else
Andrew Certain0798cee2012-12-04 13:43:42 -08002750 {
2751 /* Incoming "oi" for this LSA has set at LSUpd reception. */
2752 }
paul09e4efd2003-01-18 00:12:02 +00002753 /* Fallthrough */
paul718e3742002-12-13 20:15:29 +00002754 case OSPF_OPAQUE_AREA_LSA:
2755 case OSPF_OPAQUE_AS_LSA:
2756 new = ospf_opaque_lsa_install (lsa, rt_recalc);
2757 break;
2758#endif /* HAVE_OPAQUE_LSA */
pauld4a53d52003-07-12 21:30:57 +00002759 case OSPF_AS_NSSA_LSA:
paul68980082003-03-25 05:07:42 +00002760 new = ospf_external_lsa_install (ospf, lsa, rt_recalc);
pauld4a53d52003-07-12 21:30:57 +00002761 default: /* type-6,8,9....nothing special */
paul718e3742002-12-13 20:15:29 +00002762 break;
2763 }
2764
2765 if (new == NULL)
2766 return new; /* Installation failed, cannot proceed further -- endo. */
2767
2768 /* Debug logs. */
2769 if (IS_DEBUG_OSPF (lsa, LSA_INSTALL))
2770 {
2771 char area_str[INET_ADDRSTRLEN];
2772
2773 switch (lsa->data->type)
2774 {
2775 case OSPF_AS_EXTERNAL_LSA:
2776#ifdef HAVE_OPAQUE_LSA
2777 case OSPF_OPAQUE_AS_LSA:
2778#endif /* HAVE_OPAQUE_LSA */
hassobeebba72004-06-20 21:00:27 +00002779 case OSPF_AS_NSSA_LSA:
ajse588f212004-12-08 18:12:06 +00002780 zlog_debug ("LSA[%s]: Install %s",
paul718e3742002-12-13 20:15:29 +00002781 dump_lsa_key (new),
2782 LOOKUP (ospf_lsa_type_msg, new->data->type));
2783 break;
2784 default:
2785 strcpy (area_str, inet_ntoa (new->area->area_id));
ajse588f212004-12-08 18:12:06 +00002786 zlog_debug ("LSA[%s]: Install %s to Area %s",
paul718e3742002-12-13 20:15:29 +00002787 dump_lsa_key (new),
2788 LOOKUP (ospf_lsa_type_msg, new->data->type), area_str);
2789 break;
2790 }
2791 }
2792
paul7ddf1d62003-10-13 09:06:46 +00002793 /*
2794 If received LSA' ls_age is MaxAge, or lsa is being prematurely aged
2795 (it's getting flushed out of the area), set LSA on MaxAge LSA list.
2796 */
Dinesh G Dutte0630cb2013-01-07 10:12:52 -08002797 if (IS_LSA_MAXAGE (new))
paul718e3742002-12-13 20:15:29 +00002798 {
paul7ddf1d62003-10-13 09:06:46 +00002799 if (IS_DEBUG_OSPF (lsa, LSA_INSTALL))
ajse588f212004-12-08 18:12:06 +00002800 zlog_debug ("LSA[Type%d:%s]: Install LSA 0x%p, MaxAge",
paul0c2be262004-05-31 14:16:54 +00002801 new->data->type,
2802 inet_ntoa (new->data->id),
2803 lsa);
Dinesh G Dutte0630cb2013-01-07 10:12:52 -08002804 ospf_lsa_maxage (ospf, lsa);
paul718e3742002-12-13 20:15:29 +00002805 }
2806
2807 return new;
2808}
2809
David Lamparter6b0655a2014-06-04 06:53:35 +02002810
Christian Franke4c14b7f2013-02-20 10:00:54 +00002811int
paul68980082003-03-25 05:07:42 +00002812ospf_check_nbr_status (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00002813{
paul1eb8ef22005-04-07 07:30:20 +00002814 struct listnode *node, *nnode;
2815 struct ospf_interface *oi;
2816
2817 for (ALL_LIST_ELEMENTS (ospf->oiflist, node, nnode, oi))
paul718e3742002-12-13 20:15:29 +00002818 {
paul718e3742002-12-13 20:15:29 +00002819 struct route_node *rn;
2820 struct ospf_neighbor *nbr;
2821
2822 if (ospf_if_is_enable (oi))
2823 for (rn = route_top (oi->nbrs); rn; rn = route_next (rn))
2824 if ((nbr = rn->info) != NULL)
2825 if (nbr->state == NSM_Exchange || nbr->state == NSM_Loading)
2826 {
2827 route_unlock_node (rn);
2828 return 0;
2829 }
2830 }
2831
2832 return 1;
2833}
2834
David Lamparter6b0655a2014-06-04 06:53:35 +02002835
paul718e3742002-12-13 20:15:29 +00002836
paul4dadc292005-05-06 21:37:42 +00002837static int
paul718e3742002-12-13 20:15:29 +00002838ospf_maxage_lsa_remover (struct thread *thread)
2839{
paul68980082003-03-25 05:07:42 +00002840 struct ospf *ospf = THREAD_ARG (thread);
paul1eb8ef22005-04-07 07:30:20 +00002841 struct ospf_lsa *lsa;
Dinesh Dutt91e6a0e2012-12-04 10:46:37 -08002842 struct route_node *rn;
paul718e3742002-12-13 20:15:29 +00002843 int reschedule = 0;
2844
paul68980082003-03-25 05:07:42 +00002845 ospf->t_maxage = NULL;
paul718e3742002-12-13 20:15:29 +00002846
2847 if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
ajse588f212004-12-08 18:12:06 +00002848 zlog_debug ("LSA[MaxAge]: remover Start");
paul718e3742002-12-13 20:15:29 +00002849
paul68980082003-03-25 05:07:42 +00002850 reschedule = !ospf_check_nbr_status (ospf);
paul718e3742002-12-13 20:15:29 +00002851
2852 if (!reschedule)
Dinesh Dutt91e6a0e2012-12-04 10:46:37 -08002853 for (rn = route_top(ospf->maxage_lsa); rn; rn = route_next(rn))
paul718e3742002-12-13 20:15:29 +00002854 {
Dinesh Dutt91e6a0e2012-12-04 10:46:37 -08002855 if ((lsa = rn->info) == NULL)
2856 {
2857 continue;
2858 }
2859
Christian Franke4de8bf02013-02-20 10:00:52 +00002860 /* There is at least one neighbor from which we still await an ack
2861 * for that LSA, so we are not allowed to remove it from our lsdb yet
2862 * as per RFC 2328 section 14 para 4 a) */
paul718e3742002-12-13 20:15:29 +00002863 if (lsa->retransmit_counter > 0)
2864 {
2865 reschedule = 1;
2866 continue;
2867 }
Paul Jakma94b6bfd2010-01-09 14:11:02 +00002868
2869 /* TODO: maybe convert this function to a work-queue */
2870 if (thread_should_yield (thread))
Christian Franke4de8bf02013-02-20 10:00:52 +00002871 {
2872 OSPF_TIMER_ON (ospf->t_maxage, ospf_maxage_lsa_remover, 0);
Christian Frankee387dfd2014-04-28 08:04:58 +00002873 route_unlock_node(rn); /* route_top/route_next */
Christian Franke4de8bf02013-02-20 10:00:52 +00002874 return 0;
2875 }
Paul Jakma94b6bfd2010-01-09 14:11:02 +00002876
paul718e3742002-12-13 20:15:29 +00002877 /* Remove LSA from the LSDB */
Denis Ovsienkoce3cdcf2011-10-24 18:17:09 +04002878 if (IS_LSA_SELF (lsa))
paul718e3742002-12-13 20:15:29 +00002879 if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
Denis Ovsienkoad8d4802011-12-02 20:02:40 +04002880 zlog_debug ("LSA[Type%d:%s]: LSA 0x%lx is self-originated: ",
paul7ddf1d62003-10-13 09:06:46 +00002881 lsa->data->type, inet_ntoa (lsa->data->id), (u_long)lsa);
paul718e3742002-12-13 20:15:29 +00002882
2883 if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
ajse588f212004-12-08 18:12:06 +00002884 zlog_debug ("LSA[Type%d:%s]: MaxAge LSA removed from list",
paul718e3742002-12-13 20:15:29 +00002885 lsa->data->type, inet_ntoa (lsa->data->id));
2886
Paul Jakmac363d382010-01-24 22:42:13 +00002887 if (CHECK_FLAG (lsa->flags, OSPF_LSA_PREMATURE_AGE))
paul7ddf1d62003-10-13 09:06:46 +00002888 {
2889 if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
Paul Jakmac363d382010-01-24 22:42:13 +00002890 zlog_debug ("originating new lsa for lsa 0x%p\n", lsa);
2891 ospf_lsa_refresh (ospf, lsa);
paul7ddf1d62003-10-13 09:06:46 +00002892 }
2893
paul718e3742002-12-13 20:15:29 +00002894 /* Remove from lsdb. */
Paul Jakmaac904de2006-06-15 12:04:57 +00002895 if (lsa->lsdb)
2896 {
2897 ospf_discard_from_db (ospf, lsa->lsdb, lsa);
2898 ospf_lsdb_delete (lsa->lsdb, lsa);
2899 }
2900 else
2901 zlog_warn ("%s: LSA[Type%d:%s]: No associated LSDB!", __func__,
2902 lsa->data->type, inet_ntoa (lsa->data->id));
paul718e3742002-12-13 20:15:29 +00002903 }
2904
2905 /* A MaxAge LSA must be removed immediately from the router's link
2906 state database as soon as both a) it is no longer contained on any
2907 neighbor Link state retransmission lists and b) none of the router's
2908 neighbors are in states Exchange or Loading. */
2909 if (reschedule)
Paul Jakma02d942c2010-01-24 23:36:20 +00002910 OSPF_TIMER_ON (ospf->t_maxage, ospf_maxage_lsa_remover,
2911 ospf->maxage_delay);
paul718e3742002-12-13 20:15:29 +00002912
2913 return 0;
2914}
2915
paul718e3742002-12-13 20:15:29 +00002916void
paul68980082003-03-25 05:07:42 +00002917ospf_lsa_maxage_delete (struct ospf *ospf, struct ospf_lsa *lsa)
paul718e3742002-12-13 20:15:29 +00002918{
Dinesh Dutt91e6a0e2012-12-04 10:46:37 -08002919 struct route_node *rn;
Pradosh Mohapatrab4b359a2014-04-28 10:58:06 +00002920 struct prefix_ptr lsa_prefix;
paul718e3742002-12-13 20:15:29 +00002921
Pradosh Mohapatrab4b359a2014-04-28 10:58:06 +00002922 lsa_prefix.family = 0;
2923 lsa_prefix.prefixlen = sizeof(lsa_prefix.prefix) * CHAR_BIT;
2924 lsa_prefix.prefix = (uintptr_t) lsa;
Dinesh Dutt91e6a0e2012-12-04 10:46:37 -08002925
2926 if ((rn = route_node_lookup(ospf->maxage_lsa,
2927 (struct prefix *)&lsa_prefix)))
paul718e3742002-12-13 20:15:29 +00002928 {
Dinesh Dutt91e6a0e2012-12-04 10:46:37 -08002929 if (rn->info == lsa)
2930 {
2931 UNSET_FLAG(lsa->flags, OSPF_LSA_IN_MAXAGE);
2932 ospf_lsa_unlock (&lsa); /* maxage_lsa */
2933 rn->info = NULL;
Christian Franke8afee5c2014-04-28 08:04:59 +00002934 route_unlock_node (rn); /* unlock node because lsa is deleted */
Dinesh Dutt91e6a0e2012-12-04 10:46:37 -08002935 }
Christian Franke8afee5c2014-04-28 08:04:59 +00002936 route_unlock_node (rn); /* route_node_lookup */
paul718e3742002-12-13 20:15:29 +00002937 }
2938}
2939
Paul Jakma02d942c2010-01-24 23:36:20 +00002940/* Add LSA onto the MaxAge list, and schedule for removal.
2941 * This does *not* lead to the LSA being flooded, that must be taken
2942 * care of elsewhere, see, e.g., ospf_lsa_flush* (which are callers of this
2943 * function).
2944 */
paul718e3742002-12-13 20:15:29 +00002945void
paul68980082003-03-25 05:07:42 +00002946ospf_lsa_maxage (struct ospf *ospf, struct ospf_lsa *lsa)
paul718e3742002-12-13 20:15:29 +00002947{
Pradosh Mohapatrab4b359a2014-04-28 10:58:06 +00002948 struct prefix_ptr lsa_prefix;
Dinesh Dutt91e6a0e2012-12-04 10:46:37 -08002949 struct route_node *rn;
2950
paul718e3742002-12-13 20:15:29 +00002951 /* When we saw a MaxAge LSA flooded to us, we put it on the list
2952 and schedule the MaxAge LSA remover. */
Stephen Hemminger3106a032009-08-06 12:58:05 -07002953 if (CHECK_FLAG(lsa->flags, OSPF_LSA_IN_MAXAGE))
paul718e3742002-12-13 20:15:29 +00002954 {
2955 if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
ajse588f212004-12-08 18:12:06 +00002956 zlog_debug ("LSA[Type%d:%s]: %p already exists on MaxAge LSA list",
paul718e3742002-12-13 20:15:29 +00002957 lsa->data->type, inet_ntoa (lsa->data->id), lsa);
2958 return;
2959 }
2960
Pradosh Mohapatrab4b359a2014-04-28 10:58:06 +00002961 lsa_prefix.family = 0;
2962 lsa_prefix.prefixlen = sizeof(lsa_prefix.prefix) * CHAR_BIT;
2963 lsa_prefix.prefix = (uintptr_t) lsa;
2964
Dinesh Dutt91e6a0e2012-12-04 10:46:37 -08002965 if ((rn = route_node_get (ospf->maxage_lsa,
2966 (struct prefix *)&lsa_prefix)) != NULL)
2967 {
2968 if (rn->info != NULL)
2969 {
Pradosh Mohapatrab4b359a2014-04-28 10:58:06 +00002970 if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
2971 zlog_debug ("LSA[%s]: found LSA (%p) in table for LSA %p %d",
2972 dump_lsa_key (lsa), rn->info, lsa, lsa_prefix.prefixlen);
Dinesh Dutt91e6a0e2012-12-04 10:46:37 -08002973 route_unlock_node (rn);
2974 }
2975 else
2976 {
2977 rn->info = ospf_lsa_lock(lsa);
2978 SET_FLAG(lsa->flags, OSPF_LSA_IN_MAXAGE);
2979 }
2980 }
2981 else
2982 {
2983 zlog_err("Unable to allocate memory for maxage lsa\n");
2984 assert(0);
2985 }
paul718e3742002-12-13 20:15:29 +00002986
2987 if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
ajse588f212004-12-08 18:12:06 +00002988 zlog_debug ("LSA[%s]: MaxAge LSA remover scheduled.", dump_lsa_key (lsa));
paul718e3742002-12-13 20:15:29 +00002989
Paul Jakma02d942c2010-01-24 23:36:20 +00002990 OSPF_TIMER_ON (ospf->t_maxage, ospf_maxage_lsa_remover,
2991 ospf->maxage_delay);
paul718e3742002-12-13 20:15:29 +00002992}
2993
paul4dadc292005-05-06 21:37:42 +00002994static int
paul68980082003-03-25 05:07:42 +00002995ospf_lsa_maxage_walker_remover (struct ospf *ospf, struct ospf_lsa *lsa)
paul718e3742002-12-13 20:15:29 +00002996{
paul718e3742002-12-13 20:15:29 +00002997 /* Stay away from any Local Translated Type-7 LSAs */
2998 if (CHECK_FLAG (lsa->flags, OSPF_LSA_LOCAL_XLT))
2999 return 0;
paul718e3742002-12-13 20:15:29 +00003000
3001 if (IS_LSA_MAXAGE (lsa))
3002 /* Self-originated LSAs should NOT time-out instead,
3003 they're flushed and submitted to the max_age list explicitly. */
paul68980082003-03-25 05:07:42 +00003004 if (!ospf_lsa_is_self_originated (ospf, lsa))
paul718e3742002-12-13 20:15:29 +00003005 {
3006 if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
ajse588f212004-12-08 18:12:06 +00003007 zlog_debug("LSA[%s]: is MaxAge", dump_lsa_key (lsa));
paul718e3742002-12-13 20:15:29 +00003008
3009 switch (lsa->data->type)
3010 {
paul718e3742002-12-13 20:15:29 +00003011#ifdef HAVE_OPAQUE_LSA
paul37163d62003-02-03 18:40:56 +00003012 case OSPF_OPAQUE_LINK_LSA:
3013 case OSPF_OPAQUE_AREA_LSA:
paul718e3742002-12-13 20:15:29 +00003014 case OSPF_OPAQUE_AS_LSA:
paul09e4efd2003-01-18 00:12:02 +00003015 /*
3016 * As a general rule, whenever network topology has changed
3017 * (due to an LSA removal in this case), routing recalculation
3018 * should be triggered. However, this is not true for opaque
3019 * LSAs. Even if an opaque LSA instance is going to be removed
3020 * from the routing domain, it does not mean a change in network
3021 * topology, and thus, routing recalculation is not needed here.
3022 */
3023 break;
paul718e3742002-12-13 20:15:29 +00003024#endif /* HAVE_OPAQUE_LSA */
paul09e4efd2003-01-18 00:12:02 +00003025 case OSPF_AS_EXTERNAL_LSA:
hassobeebba72004-06-20 21:00:27 +00003026 case OSPF_AS_NSSA_LSA:
paul68980082003-03-25 05:07:42 +00003027 ospf_ase_incremental_update (ospf, lsa);
3028 break;
paul718e3742002-12-13 20:15:29 +00003029 default:
Dinesh G Dutt50f38b32014-09-30 12:53:28 -07003030 ospf_flag_spf_reason (SPF_FLAG_MAXAGE);
paul68980082003-03-25 05:07:42 +00003031 ospf_spf_calculate_schedule (ospf);
3032 break;
paul718e3742002-12-13 20:15:29 +00003033 }
paul68980082003-03-25 05:07:42 +00003034 ospf_lsa_maxage (ospf, lsa);
paul718e3742002-12-13 20:15:29 +00003035 }
3036
Paul Jakmac363d382010-01-24 22:42:13 +00003037 if (IS_LSA_MAXAGE (lsa) && !ospf_lsa_is_self_originated (ospf, lsa))
3038 if (LS_AGE (lsa) > OSPF_LSA_MAXAGE + 30)
3039 printf ("Eek! Shouldn't happen!\n");
3040
paul718e3742002-12-13 20:15:29 +00003041 return 0;
3042}
3043
3044/* Periodical check of MaxAge LSA. */
3045int
paul68980082003-03-25 05:07:42 +00003046ospf_lsa_maxage_walker (struct thread *thread)
paul718e3742002-12-13 20:15:29 +00003047{
paul68980082003-03-25 05:07:42 +00003048 struct ospf *ospf = THREAD_ARG (thread);
3049 struct route_node *rn;
3050 struct ospf_lsa *lsa;
paul1eb8ef22005-04-07 07:30:20 +00003051 struct ospf_area *area;
3052 struct listnode *node, *nnode;
paul718e3742002-12-13 20:15:29 +00003053
paul68980082003-03-25 05:07:42 +00003054 ospf->t_maxage_walker = NULL;
paul718e3742002-12-13 20:15:29 +00003055
paul1eb8ef22005-04-07 07:30:20 +00003056 for (ALL_LIST_ELEMENTS (ospf->areas, node, nnode, area))
paul718e3742002-12-13 20:15:29 +00003057 {
paul68980082003-03-25 05:07:42 +00003058 LSDB_LOOP (ROUTER_LSDB (area), rn, lsa)
3059 ospf_lsa_maxage_walker_remover (ospf, lsa);
3060 LSDB_LOOP (NETWORK_LSDB (area), rn, lsa)
3061 ospf_lsa_maxage_walker_remover (ospf, lsa);
3062 LSDB_LOOP (SUMMARY_LSDB (area), rn, lsa)
3063 ospf_lsa_maxage_walker_remover (ospf, lsa);
3064 LSDB_LOOP (ASBR_SUMMARY_LSDB (area), rn, lsa)
3065 ospf_lsa_maxage_walker_remover (ospf, lsa);
paul718e3742002-12-13 20:15:29 +00003066#ifdef HAVE_OPAQUE_LSA
paul68980082003-03-25 05:07:42 +00003067 LSDB_LOOP (OPAQUE_AREA_LSDB (area), rn, lsa)
3068 ospf_lsa_maxage_walker_remover (ospf, lsa);
3069 LSDB_LOOP (OPAQUE_LINK_LSDB (area), rn, lsa)
3070 ospf_lsa_maxage_walker_remover (ospf, lsa);
paul718e3742002-12-13 20:15:29 +00003071#endif /* HAVE_OPAQUE_LSA */
paul4fb949e2003-05-10 20:06:51 +00003072 LSDB_LOOP (NSSA_LSDB (area), rn, lsa)
3073 ospf_lsa_maxage_walker_remover (ospf, lsa);
paul718e3742002-12-13 20:15:29 +00003074 }
3075
paul4fb949e2003-05-10 20:06:51 +00003076 /* for AS-external-LSAs. */
paul68980082003-03-25 05:07:42 +00003077 if (ospf->lsdb)
3078 {
3079 LSDB_LOOP (EXTERNAL_LSDB (ospf), rn, lsa)
3080 ospf_lsa_maxage_walker_remover (ospf, lsa);
paul718e3742002-12-13 20:15:29 +00003081#ifdef HAVE_OPAQUE_LSA
paul68980082003-03-25 05:07:42 +00003082 LSDB_LOOP (OPAQUE_AS_LSDB (ospf), rn, lsa)
3083 ospf_lsa_maxage_walker_remover (ospf, lsa);
paul718e3742002-12-13 20:15:29 +00003084#endif /* HAVE_OPAQUE_LSA */
paul68980082003-03-25 05:07:42 +00003085 }
paul718e3742002-12-13 20:15:29 +00003086
paul68980082003-03-25 05:07:42 +00003087 OSPF_TIMER_ON (ospf->t_maxage_walker, ospf_lsa_maxage_walker,
3088 OSPF_LSA_MAXAGE_CHECK_INTERVAL);
paul718e3742002-12-13 20:15:29 +00003089 return 0;
3090}
3091
paul68980082003-03-25 05:07:42 +00003092struct ospf_lsa *
3093ospf_lsa_lookup_by_prefix (struct ospf_lsdb *lsdb, u_char type,
3094 struct prefix_ipv4 *p, struct in_addr router_id)
paul718e3742002-12-13 20:15:29 +00003095{
paul68980082003-03-25 05:07:42 +00003096 struct ospf_lsa *lsa;
3097 struct in_addr mask, id;
3098 struct lsa_header_mask
3099 {
3100 struct lsa_header header;
3101 struct in_addr mask;
3102 } *hmask;
paul718e3742002-12-13 20:15:29 +00003103
paul68980082003-03-25 05:07:42 +00003104 lsa = ospf_lsdb_lookup_by_id (lsdb, type, p->prefix, router_id);
3105 if (lsa == NULL)
3106 return NULL;
paul718e3742002-12-13 20:15:29 +00003107
paul68980082003-03-25 05:07:42 +00003108 masklen2ip (p->prefixlen, &mask);
paul718e3742002-12-13 20:15:29 +00003109
paul68980082003-03-25 05:07:42 +00003110 hmask = (struct lsa_header_mask *) lsa->data;
paul718e3742002-12-13 20:15:29 +00003111
paul68980082003-03-25 05:07:42 +00003112 if (mask.s_addr != hmask->mask.s_addr)
3113 {
3114 id.s_addr = p->prefix.s_addr | (~mask.s_addr);
3115 lsa = ospf_lsdb_lookup_by_id (lsdb, type, id, router_id);
3116 if (!lsa)
3117 return NULL;
3118 }
paul718e3742002-12-13 20:15:29 +00003119
paul68980082003-03-25 05:07:42 +00003120 return lsa;
paul718e3742002-12-13 20:15:29 +00003121}
3122
3123struct ospf_lsa *
3124ospf_lsa_lookup (struct ospf_area *area, u_int32_t type,
3125 struct in_addr id, struct in_addr adv_router)
3126{
paule05fba42003-04-13 20:20:53 +00003127 struct ospf *ospf = ospf_lookup();
3128 assert(ospf);
3129
paul718e3742002-12-13 20:15:29 +00003130 switch (type)
3131 {
3132 case OSPF_ROUTER_LSA:
3133 case OSPF_NETWORK_LSA:
3134 case OSPF_SUMMARY_LSA:
3135 case OSPF_ASBR_SUMMARY_LSA:
paul718e3742002-12-13 20:15:29 +00003136 case OSPF_AS_NSSA_LSA:
paul718e3742002-12-13 20:15:29 +00003137#ifdef HAVE_OPAQUE_LSA
3138 case OSPF_OPAQUE_LINK_LSA:
3139 case OSPF_OPAQUE_AREA_LSA:
3140#endif /* HAVE_OPAQUE_LSA */
3141 return ospf_lsdb_lookup_by_id (area->lsdb, type, id, adv_router);
paul718e3742002-12-13 20:15:29 +00003142 case OSPF_AS_EXTERNAL_LSA:
3143#ifdef HAVE_OPAQUE_LSA
3144 case OSPF_OPAQUE_AS_LSA:
3145#endif /* HAVE_OPAQUE_LSA */
paule05fba42003-04-13 20:20:53 +00003146 return ospf_lsdb_lookup_by_id (ospf->lsdb, type, id, adv_router);
paul718e3742002-12-13 20:15:29 +00003147 default:
3148 break;
3149 }
3150
3151 return NULL;
3152}
3153
3154struct ospf_lsa *
3155ospf_lsa_lookup_by_id (struct ospf_area *area, u_int32_t type,
3156 struct in_addr id)
3157{
3158 struct ospf_lsa *lsa;
3159 struct route_node *rn;
3160
3161 switch (type)
3162 {
3163 case OSPF_ROUTER_LSA:
3164 return ospf_lsdb_lookup_by_id (area->lsdb, type, id, id);
paul718e3742002-12-13 20:15:29 +00003165 case OSPF_NETWORK_LSA:
3166 for (rn = route_top (NETWORK_LSDB (area)); rn; rn = route_next (rn))
3167 if ((lsa = rn->info))
3168 if (IPV4_ADDR_SAME (&lsa->data->id, &id))
3169 {
3170 route_unlock_node (rn);
3171 return lsa;
3172 }
3173 break;
3174 case OSPF_SUMMARY_LSA:
3175 case OSPF_ASBR_SUMMARY_LSA:
3176 /* Currently not used. */
3177 assert (1);
3178 return ospf_lsdb_lookup_by_id (area->lsdb, type, id, id);
paul718e3742002-12-13 20:15:29 +00003179 case OSPF_AS_EXTERNAL_LSA:
pauld4a53d52003-07-12 21:30:57 +00003180 case OSPF_AS_NSSA_LSA:
paul718e3742002-12-13 20:15:29 +00003181#ifdef HAVE_OPAQUE_LSA
3182 case OSPF_OPAQUE_LINK_LSA:
3183 case OSPF_OPAQUE_AREA_LSA:
3184 case OSPF_OPAQUE_AS_LSA:
3185 /* Currently not used. */
3186 break;
3187#endif /* HAVE_OPAQUE_LSA */
3188 default:
3189 break;
3190 }
3191
3192 return NULL;
3193}
3194
3195struct ospf_lsa *
3196ospf_lsa_lookup_by_header (struct ospf_area *area, struct lsa_header *lsah)
3197{
3198 struct ospf_lsa *match;
3199
3200#ifdef HAVE_OPAQUE_LSA
3201 /*
3202 * Strictly speaking, the LSA-ID field for Opaque-LSAs (type-9/10/11)
3203 * is redefined to have two subfields; opaque-type and opaque-id.
3204 * However, it is harmless to treat the two sub fields together, as if
3205 * they two were forming a unique LSA-ID.
3206 */
3207#endif /* HAVE_OPAQUE_LSA */
3208
3209 match = ospf_lsa_lookup (area, lsah->type, lsah->id, lsah->adv_router);
3210
3211 if (match == NULL)
3212 if (IS_DEBUG_OSPF (lsa, LSA) == OSPF_DEBUG_LSA)
ajse588f212004-12-08 18:12:06 +00003213 zlog_debug ("LSA[Type%d:%s]: Lookup by header, NO MATCH",
paul718e3742002-12-13 20:15:29 +00003214 lsah->type, inet_ntoa (lsah->id));
3215
3216 return match;
3217}
3218
3219/* return +n, l1 is more recent.
3220 return -n, l2 is more recent.
3221 return 0, l1 and l2 is identical. */
3222int
3223ospf_lsa_more_recent (struct ospf_lsa *l1, struct ospf_lsa *l2)
3224{
3225 int r;
3226 int x, y;
3227
3228 if (l1 == NULL && l2 == NULL)
3229 return 0;
3230 if (l1 == NULL)
3231 return -1;
3232 if (l2 == NULL)
3233 return 1;
3234
3235 /* compare LS sequence number. */
3236 x = (int) ntohl (l1->data->ls_seqnum);
3237 y = (int) ntohl (l2->data->ls_seqnum);
3238 if (x > y)
3239 return 1;
3240 if (x < y)
3241 return -1;
3242
3243 /* compare LS checksum. */
3244 r = ntohs (l1->data->checksum) - ntohs (l2->data->checksum);
3245 if (r)
3246 return r;
3247
3248 /* compare LS age. */
3249 if (IS_LSA_MAXAGE (l1) && !IS_LSA_MAXAGE (l2))
3250 return 1;
3251 else if (!IS_LSA_MAXAGE (l1) && IS_LSA_MAXAGE (l2))
3252 return -1;
3253
3254 /* compare LS age with MaxAgeDiff. */
3255 if (LS_AGE (l1) - LS_AGE (l2) > OSPF_LSA_MAXAGE_DIFF)
3256 return -1;
3257 else if (LS_AGE (l2) - LS_AGE (l1) > OSPF_LSA_MAXAGE_DIFF)
3258 return 1;
3259
3260 /* LSAs are identical. */
3261 return 0;
3262}
3263
3264/* If two LSAs are different, return 1, otherwise return 0. */
3265int
3266ospf_lsa_different (struct ospf_lsa *l1, struct ospf_lsa *l2)
3267{
3268 char *p1, *p2;
3269 assert (l1);
3270 assert (l2);
3271 assert (l1->data);
3272 assert (l2->data);
3273
3274 if (l1->data->options != l2->data->options)
3275 return 1;
3276
3277 if (IS_LSA_MAXAGE (l1) && !IS_LSA_MAXAGE (l2))
3278 return 1;
3279
3280 if (IS_LSA_MAXAGE (l2) && !IS_LSA_MAXAGE (l1))
3281 return 1;
3282
3283 if (l1->data->length != l2->data->length)
3284 return 1;
3285
3286 if (l1->data->length == 0)
3287 return 1;
3288
Joakim Tjernlund5996e0d2009-07-27 12:42:35 +02003289 if (CHECK_FLAG ((l1->flags ^ l2->flags), OSPF_LSA_RECEIVED))
3290 return 1; /* May be a stale LSA in the LSBD */
3291
pauld1825832003-04-03 01:27:01 +00003292 assert ( ntohs(l1->data->length) > OSPF_LSA_HEADER_SIZE);
paul718e3742002-12-13 20:15:29 +00003293
3294 p1 = (char *) l1->data;
3295 p2 = (char *) l2->data;
3296
3297 if (memcmp (p1 + OSPF_LSA_HEADER_SIZE, p2 + OSPF_LSA_HEADER_SIZE,
3298 ntohs( l1->data->length ) - OSPF_LSA_HEADER_SIZE) != 0)
3299 return 1;
3300
3301 return 0;
3302}
3303
3304#ifdef ORIGINAL_CODING
3305void
3306ospf_lsa_flush_self_originated (struct ospf_neighbor *nbr,
3307 struct ospf_lsa *self,
3308 struct ospf_lsa *new)
3309{
3310 u_int32_t seqnum;
3311
3312 /* Adjust LS Sequence Number. */
3313 seqnum = ntohl (new->data->ls_seqnum) + 1;
3314 self->data->ls_seqnum = htonl (seqnum);
3315
3316 /* Recalculate LSA checksum. */
3317 ospf_lsa_checksum (self->data);
3318
3319 /* Reflooding LSA. */
3320 /* RFC2328 Section 13.3
3321 On non-broadcast networks, separate Link State Update
3322 packets must be sent, as unicasts, to each adjacent neighbor
3323 (i.e., those in state Exchange or greater). The destination
3324 IP addresses for these packets are the neighbors' IP
3325 addresses. */
3326 if (nbr->oi->type == OSPF_IFTYPE_NBMA)
3327 {
3328 struct route_node *rn;
3329 struct ospf_neighbor *onbr;
3330
3331 for (rn = route_top (nbr->oi->nbrs); rn; rn = route_next (rn))
3332 if ((onbr = rn->info) != NULL)
3333 if (onbr != nbr->oi->nbr_self && onbr->status >= NSM_Exchange)
3334 ospf_ls_upd_send_lsa (onbr, self, OSPF_SEND_PACKET_DIRECT);
3335 }
3336 else
3337 ospf_ls_upd_send_lsa (nbr, self, OSPF_SEND_PACKET_INDIRECT);
3338
3339 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
ajse588f212004-12-08 18:12:06 +00003340 zlog_debug ("LSA[Type%d:%s]: Flush self-originated LSA",
paul718e3742002-12-13 20:15:29 +00003341 self->data->type, inet_ntoa (self->data->id));
3342}
3343#else /* ORIGINAL_CODING */
3344static int
paul68980082003-03-25 05:07:42 +00003345ospf_lsa_flush_schedule (struct ospf *ospf, struct ospf_lsa *lsa)
paul718e3742002-12-13 20:15:29 +00003346{
3347 if (lsa == NULL || !IS_LSA_SELF (lsa))
3348 return 0;
3349
3350 if (IS_DEBUG_OSPF_EVENT)
ajse588f212004-12-08 18:12:06 +00003351 zlog_debug ("LSA[Type%d:%s]: Schedule self-originated LSA to FLUSH", lsa->data->type, inet_ntoa (lsa->data->id));
paul718e3742002-12-13 20:15:29 +00003352
3353 /* Force given lsa's age to MaxAge. */
3354 lsa->data->ls_age = htons (OSPF_LSA_MAXAGE);
3355
3356 switch (lsa->data->type)
3357 {
3358#ifdef HAVE_OPAQUE_LSA
Paul Jakma02d942c2010-01-24 23:36:20 +00003359 /* Opaque wants to be notified of flushes */
paul718e3742002-12-13 20:15:29 +00003360 case OSPF_OPAQUE_LINK_LSA:
3361 case OSPF_OPAQUE_AREA_LSA:
3362 case OSPF_OPAQUE_AS_LSA:
3363 ospf_opaque_lsa_refresh (lsa);
3364 break;
3365#endif /* HAVE_OPAQUE_LSA */
3366 default:
Paul Jakmadfbd5172010-04-14 10:32:12 +01003367 ospf_refresher_unregister_lsa (ospf, lsa);
Paul Jakma02d942c2010-01-24 23:36:20 +00003368 ospf_lsa_flush (ospf, lsa);
paul718e3742002-12-13 20:15:29 +00003369 break;
3370 }
3371
3372 return 0;
3373}
3374
3375void
paul68980082003-03-25 05:07:42 +00003376ospf_flush_self_originated_lsas_now (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00003377{
paul1eb8ef22005-04-07 07:30:20 +00003378 struct listnode *node, *nnode;
3379 struct listnode *node2, *nnode2;
paul718e3742002-12-13 20:15:29 +00003380 struct ospf_area *area;
3381 struct ospf_interface *oi;
3382 struct ospf_lsa *lsa;
paul68980082003-03-25 05:07:42 +00003383 struct route_node *rn;
paul718e3742002-12-13 20:15:29 +00003384 int need_to_flush_ase = 0;
3385
paul1eb8ef22005-04-07 07:30:20 +00003386 for (ALL_LIST_ELEMENTS (ospf->areas, node, nnode, area))
paul718e3742002-12-13 20:15:29 +00003387 {
paul718e3742002-12-13 20:15:29 +00003388 if ((lsa = area->router_lsa_self) != NULL)
3389 {
3390 if (IS_DEBUG_OSPF_EVENT)
Paul Jakmadfbd5172010-04-14 10:32:12 +01003391 zlog_debug ("LSA[Type%d:%s]: Schedule self-originated LSA to FLUSH",
3392 lsa->data->type, inet_ntoa (lsa->data->id));
3393
3394 ospf_refresher_unregister_lsa (ospf, lsa);
paul718e3742002-12-13 20:15:29 +00003395 ospf_lsa_flush_area (lsa, area);
Paul Jakma1fe6ed32006-07-26 09:37:26 +00003396 ospf_lsa_unlock (&area->router_lsa_self);
paul718e3742002-12-13 20:15:29 +00003397 area->router_lsa_self = NULL;
paul718e3742002-12-13 20:15:29 +00003398 }
3399
paul1eb8ef22005-04-07 07:30:20 +00003400 for (ALL_LIST_ELEMENTS (area->oiflist, node2, nnode2, oi))
paul718e3742002-12-13 20:15:29 +00003401 {
paul718e3742002-12-13 20:15:29 +00003402 if ((lsa = oi->network_lsa_self) != NULL
paul1eb8ef22005-04-07 07:30:20 +00003403 && oi->state == ISM_DR
3404 && oi->full_nbrs > 0)
paul718e3742002-12-13 20:15:29 +00003405 {
3406 if (IS_DEBUG_OSPF_EVENT)
Paul Jakmadfbd5172010-04-14 10:32:12 +01003407 zlog_debug ("LSA[Type%d:%s]: Schedule self-originated LSA to FLUSH",
3408 lsa->data->type, inet_ntoa (lsa->data->id));
3409
3410 ospf_refresher_unregister_lsa (ospf, oi->network_lsa_self);
paul718e3742002-12-13 20:15:29 +00003411 ospf_lsa_flush_area (oi->network_lsa_self, area);
Paul Jakma1fe6ed32006-07-26 09:37:26 +00003412 ospf_lsa_unlock (&oi->network_lsa_self);
paul718e3742002-12-13 20:15:29 +00003413 oi->network_lsa_self = NULL;
paul718e3742002-12-13 20:15:29 +00003414 }
3415
3416 if (oi->type != OSPF_IFTYPE_VIRTUALLINK
3417 && area->external_routing == OSPF_AREA_DEFAULT)
3418 need_to_flush_ase = 1;
3419 }
3420
paul68980082003-03-25 05:07:42 +00003421 LSDB_LOOP (SUMMARY_LSDB (area), rn, lsa)
3422 ospf_lsa_flush_schedule (ospf, lsa);
3423 LSDB_LOOP (ASBR_SUMMARY_LSDB (area), rn, lsa)
3424 ospf_lsa_flush_schedule (ospf, lsa);
paul718e3742002-12-13 20:15:29 +00003425#ifdef HAVE_OPAQUE_LSA
paul68980082003-03-25 05:07:42 +00003426 LSDB_LOOP (OPAQUE_LINK_LSDB (area), rn, lsa)
3427 ospf_lsa_flush_schedule (ospf, lsa);
3428 LSDB_LOOP (OPAQUE_AREA_LSDB (area), rn, lsa)
3429 ospf_lsa_flush_schedule (ospf, lsa);
paul718e3742002-12-13 20:15:29 +00003430#endif /* HAVE_OPAQUE_LSA */
3431 }
3432
3433 if (need_to_flush_ase)
3434 {
paul68980082003-03-25 05:07:42 +00003435 LSDB_LOOP (EXTERNAL_LSDB (ospf), rn, lsa)
3436 ospf_lsa_flush_schedule (ospf, lsa);
paul718e3742002-12-13 20:15:29 +00003437#ifdef HAVE_OPAQUE_LSA
paul68980082003-03-25 05:07:42 +00003438 LSDB_LOOP (OPAQUE_AS_LSDB (ospf), rn, lsa)
3439 ospf_lsa_flush_schedule (ospf, lsa);
paul718e3742002-12-13 20:15:29 +00003440#endif /* HAVE_OPAQUE_LSA */
3441 }
3442
3443 /*
3444 * Make sure that the MaxAge LSA remover is executed immediately,
3445 * without conflicting to other threads.
3446 */
paul68980082003-03-25 05:07:42 +00003447 if (ospf->t_maxage != NULL)
paul718e3742002-12-13 20:15:29 +00003448 {
paul68980082003-03-25 05:07:42 +00003449 OSPF_TIMER_OFF (ospf->t_maxage);
3450 thread_execute (master, ospf_maxage_lsa_remover, ospf, 0);
paul718e3742002-12-13 20:15:29 +00003451 }
3452
3453 return;
3454}
3455#endif /* ORIGINAL_CODING */
3456
3457/* If there is self-originated LSA, then return 1, otherwise return 0. */
3458/* An interface-independent version of ospf_lsa_is_self_originated */
3459int
paul68980082003-03-25 05:07:42 +00003460ospf_lsa_is_self_originated (struct ospf *ospf, struct ospf_lsa *lsa)
paul718e3742002-12-13 20:15:29 +00003461{
hasso52dc7ee2004-09-23 19:18:23 +00003462 struct listnode *node;
paul1eb8ef22005-04-07 07:30:20 +00003463 struct ospf_interface *oi;
paul718e3742002-12-13 20:15:29 +00003464
3465 /* This LSA is already checked. */
3466 if (CHECK_FLAG (lsa->flags, OSPF_LSA_SELF_CHECKED))
Denis Ovsienkoce3cdcf2011-10-24 18:17:09 +04003467 return IS_LSA_SELF (lsa);
paul718e3742002-12-13 20:15:29 +00003468
3469 /* Make sure LSA is self-checked. */
3470 SET_FLAG (lsa->flags, OSPF_LSA_SELF_CHECKED);
3471
3472 /* AdvRouter and Router ID is the same. */
paul68980082003-03-25 05:07:42 +00003473 if (IPV4_ADDR_SAME (&lsa->data->adv_router, &ospf->router_id))
paul718e3742002-12-13 20:15:29 +00003474 SET_FLAG (lsa->flags, OSPF_LSA_SELF);
3475
3476 /* LSA is router-LSA. */
3477 else if (lsa->data->type == OSPF_ROUTER_LSA &&
paul68980082003-03-25 05:07:42 +00003478 IPV4_ADDR_SAME (&lsa->data->id, &ospf->router_id))
paul718e3742002-12-13 20:15:29 +00003479 SET_FLAG (lsa->flags, OSPF_LSA_SELF);
3480
3481 /* LSA is network-LSA. Compare Link ID with all interfaces. */
3482 else if (lsa->data->type == OSPF_NETWORK_LSA)
paul1eb8ef22005-04-07 07:30:20 +00003483 for (ALL_LIST_ELEMENTS_RO (ospf->oiflist, node, oi))
paul718e3742002-12-13 20:15:29 +00003484 {
paul718e3742002-12-13 20:15:29 +00003485 /* Ignore virtual link. */
3486 if (oi->type != OSPF_IFTYPE_VIRTUALLINK)
3487 if (oi->address->family == AF_INET)
3488 if (IPV4_ADDR_SAME (&lsa->data->id, &oi->address->u.prefix4))
3489 {
3490 /* to make it easier later */
3491 SET_FLAG (lsa->flags, OSPF_LSA_SELF);
Denis Ovsienkoce3cdcf2011-10-24 18:17:09 +04003492 return IS_LSA_SELF (lsa);
paul718e3742002-12-13 20:15:29 +00003493 }
3494 }
3495
Denis Ovsienkoce3cdcf2011-10-24 18:17:09 +04003496 return IS_LSA_SELF (lsa);
paul718e3742002-12-13 20:15:29 +00003497}
3498
3499/* Get unique Link State ID. */
3500struct in_addr
paul68980082003-03-25 05:07:42 +00003501ospf_lsa_unique_id (struct ospf *ospf,
3502 struct ospf_lsdb *lsdb, u_char type, struct prefix_ipv4 *p)
paul718e3742002-12-13 20:15:29 +00003503{
3504 struct ospf_lsa *lsa;
3505 struct in_addr mask, id;
3506
3507 id = p->prefix;
3508
3509 /* Check existence of LSA instance. */
paul68980082003-03-25 05:07:42 +00003510 lsa = ospf_lsdb_lookup_by_id (lsdb, type, id, ospf->router_id);
paul718e3742002-12-13 20:15:29 +00003511 if (lsa)
3512 {
3513 struct as_external_lsa *al = (struct as_external_lsa *) lsa->data;
3514 if (ip_masklen (al->mask) == p->prefixlen)
3515 {
3516 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
ajse588f212004-12-08 18:12:06 +00003517 zlog_debug ("ospf_lsa_unique_id(): "
paul718e3742002-12-13 20:15:29 +00003518 "Can't get Link State ID for %s/%d",
3519 inet_ntoa (p->prefix), p->prefixlen);
3520 /* id.s_addr = 0; */
3521 id.s_addr = 0xffffffff;
3522 return id;
3523 }
3524 /* Masklen differs, then apply wildcard mask to Link State ID. */
3525 else
3526 {
3527 masklen2ip (p->prefixlen, &mask);
3528
3529 id.s_addr = p->prefix.s_addr | (~mask.s_addr);
paul68980082003-03-25 05:07:42 +00003530 lsa = ospf_lsdb_lookup_by_id (ospf->lsdb, type,
3531 id, ospf->router_id);
paul718e3742002-12-13 20:15:29 +00003532 if (lsa)
3533 {
3534 if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
ajse588f212004-12-08 18:12:06 +00003535 zlog_debug ("ospf_lsa_unique_id(): "
paul718e3742002-12-13 20:15:29 +00003536 "Can't get Link State ID for %s/%d",
3537 inet_ntoa (p->prefix), p->prefixlen);
3538 /* id.s_addr = 0; */
3539 id.s_addr = 0xffffffff;
3540 return id;
3541 }
3542 }
3543 }
3544
3545 return id;
3546}
3547
David Lamparter6b0655a2014-06-04 06:53:35 +02003548
Paul Jakma70461d72006-05-12 22:57:57 +00003549#define LSA_ACTION_FLOOD_AREA 1
3550#define LSA_ACTION_FLUSH_AREA 2
paul718e3742002-12-13 20:15:29 +00003551
3552struct lsa_action
3553{
3554 u_char action;
3555 struct ospf_area *area;
paul718e3742002-12-13 20:15:29 +00003556 struct ospf_lsa *lsa;
3557};
3558
paul4dadc292005-05-06 21:37:42 +00003559static int
paul718e3742002-12-13 20:15:29 +00003560ospf_lsa_action (struct thread *t)
3561{
3562 struct lsa_action *data;
3563
3564 data = THREAD_ARG (t);
3565
3566 if (IS_DEBUG_OSPF (lsa, LSA) == OSPF_DEBUG_LSA)
ajse588f212004-12-08 18:12:06 +00003567 zlog_debug ("LSA[Action]: Performing scheduled LSA action: %d",
paul718e3742002-12-13 20:15:29 +00003568 data->action);
3569
3570 switch (data->action)
3571 {
paul718e3742002-12-13 20:15:29 +00003572 case LSA_ACTION_FLOOD_AREA:
3573 ospf_flood_through_area (data->area, NULL, data->lsa);
3574 break;
paul718e3742002-12-13 20:15:29 +00003575 case LSA_ACTION_FLUSH_AREA:
3576 ospf_lsa_flush_area (data->lsa, data->area);
3577 break;
paul718e3742002-12-13 20:15:29 +00003578 }
3579
Paul Jakma1fe6ed32006-07-26 09:37:26 +00003580 ospf_lsa_unlock (&data->lsa); /* Message */
paul718e3742002-12-13 20:15:29 +00003581 XFREE (MTYPE_OSPF_MESSAGE, data);
3582 return 0;
3583}
3584
3585void
3586ospf_schedule_lsa_flood_area (struct ospf_area *area, struct ospf_lsa *lsa)
3587{
3588 struct lsa_action *data;
3589
Stephen Hemminger393deb92008-08-18 14:13:29 -07003590 data = XCALLOC (MTYPE_OSPF_MESSAGE, sizeof (struct lsa_action));
paul718e3742002-12-13 20:15:29 +00003591 data->action = LSA_ACTION_FLOOD_AREA;
3592 data->area = area;
Paul Jakma1fe6ed32006-07-26 09:37:26 +00003593 data->lsa = ospf_lsa_lock (lsa); /* Message / Flood area */
paul718e3742002-12-13 20:15:29 +00003594
3595 thread_add_event (master, ospf_lsa_action, data, 0);
3596}
3597
3598void
3599ospf_schedule_lsa_flush_area (struct ospf_area *area, struct ospf_lsa *lsa)
3600{
3601 struct lsa_action *data;
3602
Stephen Hemminger393deb92008-08-18 14:13:29 -07003603 data = XCALLOC (MTYPE_OSPF_MESSAGE, sizeof (struct lsa_action));
paul718e3742002-12-13 20:15:29 +00003604 data->action = LSA_ACTION_FLUSH_AREA;
3605 data->area = area;
Paul Jakma1fe6ed32006-07-26 09:37:26 +00003606 data->lsa = ospf_lsa_lock (lsa); /* Message / Flush area */
paul718e3742002-12-13 20:15:29 +00003607
3608 thread_add_event (master, ospf_lsa_action, data, 0);
3609}
3610
David Lamparter6b0655a2014-06-04 06:53:35 +02003611
paul718e3742002-12-13 20:15:29 +00003612/* LSA Refreshment functions. */
Paul Jakmac363d382010-01-24 22:42:13 +00003613struct ospf_lsa *
paul68980082003-03-25 05:07:42 +00003614ospf_lsa_refresh (struct ospf *ospf, struct ospf_lsa *lsa)
paul718e3742002-12-13 20:15:29 +00003615{
3616 struct external_info *ei;
Paul Jakmac363d382010-01-24 22:42:13 +00003617 struct ospf_lsa *new = NULL;
paul718e3742002-12-13 20:15:29 +00003618 assert (CHECK_FLAG (lsa->flags, OSPF_LSA_SELF));
Denis Ovsienkoce3cdcf2011-10-24 18:17:09 +04003619 assert (IS_LSA_SELF (lsa));
Paul Jakma66349742010-04-13 22:33:54 +01003620 assert (lsa->lock > 0);
paul718e3742002-12-13 20:15:29 +00003621
3622 switch (lsa->data->type)
3623 {
3624 /* Router and Network LSAs are processed differently. */
3625 case OSPF_ROUTER_LSA:
Paul Jakmac363d382010-01-24 22:42:13 +00003626 new = ospf_router_lsa_refresh (lsa);
3627 break;
paul718e3742002-12-13 20:15:29 +00003628 case OSPF_NETWORK_LSA:
Paul Jakmac363d382010-01-24 22:42:13 +00003629 new = ospf_network_lsa_refresh (lsa);
paul718e3742002-12-13 20:15:29 +00003630 break;
3631 case OSPF_SUMMARY_LSA:
Paul Jakmac363d382010-01-24 22:42:13 +00003632 new = ospf_summary_lsa_refresh (ospf, lsa);
paul718e3742002-12-13 20:15:29 +00003633 break;
3634 case OSPF_ASBR_SUMMARY_LSA:
Paul Jakmac363d382010-01-24 22:42:13 +00003635 new = ospf_summary_asbr_lsa_refresh (ospf, lsa);
paul718e3742002-12-13 20:15:29 +00003636 break;
3637 case OSPF_AS_EXTERNAL_LSA:
pauld4a53d52003-07-12 21:30:57 +00003638 /* Translated from NSSA Type-5s are refreshed when
3639 * from refresh of Type-7 - do not refresh these directly.
3640 */
3641 if (CHECK_FLAG (lsa->flags, OSPF_LSA_LOCAL_XLT))
3642 break;
paul718e3742002-12-13 20:15:29 +00003643 ei = ospf_external_info_check (lsa);
3644 if (ei)
Paul Jakmac363d382010-01-24 22:42:13 +00003645 new = ospf_external_lsa_refresh (ospf, lsa, ei, LSA_REFRESH_FORCE);
paul718e3742002-12-13 20:15:29 +00003646 else
pauld4a53d52003-07-12 21:30:57 +00003647 ospf_lsa_flush_as (ospf, lsa);
paul718e3742002-12-13 20:15:29 +00003648 break;
3649#ifdef HAVE_OPAQUE_LSA
3650 case OSPF_OPAQUE_LINK_LSA:
3651 case OSPF_OPAQUE_AREA_LSA:
3652 case OSPF_OPAQUE_AS_LSA:
Paul Jakmac363d382010-01-24 22:42:13 +00003653 new = ospf_opaque_lsa_refresh (lsa);
paul718e3742002-12-13 20:15:29 +00003654 break;
pauld7480322003-05-16 17:31:51 +00003655#endif /* HAVE_OPAQUE_LSA */
paul718e3742002-12-13 20:15:29 +00003656 default:
3657 break;
paul718e3742002-12-13 20:15:29 +00003658 }
Paul Jakmac363d382010-01-24 22:42:13 +00003659 return new;
paul718e3742002-12-13 20:15:29 +00003660}
3661
3662void
paul68980082003-03-25 05:07:42 +00003663ospf_refresher_register_lsa (struct ospf *ospf, struct ospf_lsa *lsa)
paul718e3742002-12-13 20:15:29 +00003664{
3665 u_int16_t index, current_index;
3666
Paul Jakma66349742010-04-13 22:33:54 +01003667 assert (lsa->lock > 0);
Denis Ovsienkoce3cdcf2011-10-24 18:17:09 +04003668 assert (IS_LSA_SELF (lsa));
paul718e3742002-12-13 20:15:29 +00003669
3670 if (lsa->refresh_list < 0)
3671 {
3672 int delay;
3673
3674 if (LS_AGE (lsa) == 0 &&
3675 ntohl (lsa->data->ls_seqnum) == OSPF_INITIAL_SEQUENCE_NUMBER)
3676 /* Randomize first update by OSPF_LS_REFRESH_SHIFT factor */
3677 delay = OSPF_LS_REFRESH_SHIFT + (random () % OSPF_LS_REFRESH_TIME);
3678 else
3679 /* Randomize another updates by +-OSPF_LS_REFRESH_JITTER factor */
3680 delay = OSPF_LS_REFRESH_TIME - LS_AGE (lsa) - OSPF_LS_REFRESH_JITTER
3681 + (random () % (2*OSPF_LS_REFRESH_JITTER));
3682
3683 if (delay < 0)
3684 delay = 0;
3685
Paul Jakmac363d382010-01-24 22:42:13 +00003686 current_index = ospf->lsa_refresh_queue.index + (quagga_time (NULL)
3687 - ospf->lsa_refresher_started)/OSPF_LSA_REFRESHER_GRANULARITY;
paul718e3742002-12-13 20:15:29 +00003688
3689 index = (current_index + delay/OSPF_LSA_REFRESHER_GRANULARITY)
Paul Jakmac363d382010-01-24 22:42:13 +00003690 % (OSPF_LSA_REFRESHER_SLOTS);
paul718e3742002-12-13 20:15:29 +00003691
3692 if (IS_DEBUG_OSPF (lsa, LSA_REFRESH))
ajse588f212004-12-08 18:12:06 +00003693 zlog_debug ("LSA[Refresh]: lsa %s with age %d added to index %d",
pauld4a53d52003-07-12 21:30:57 +00003694 inet_ntoa (lsa->data->id), LS_AGE (lsa), index);
paul68980082003-03-25 05:07:42 +00003695 if (!ospf->lsa_refresh_queue.qs[index])
3696 ospf->lsa_refresh_queue.qs[index] = list_new ();
Paul Jakma1fe6ed32006-07-26 09:37:26 +00003697 listnode_add (ospf->lsa_refresh_queue.qs[index],
3698 ospf_lsa_lock (lsa)); /* lsa_refresh_queue */
paul718e3742002-12-13 20:15:29 +00003699 lsa->refresh_list = index;
paulf2c80652002-12-13 21:44:27 +00003700 if (IS_DEBUG_OSPF (lsa, LSA_REFRESH))
ajse588f212004-12-08 18:12:06 +00003701 zlog_debug ("LSA[Refresh:%s]: ospf_refresher_register_lsa(): "
pauld4a53d52003-07-12 21:30:57 +00003702 "setting refresh_list on lsa %p (slod %d)",
3703 inet_ntoa (lsa->data->id), lsa, index);
paul718e3742002-12-13 20:15:29 +00003704 }
3705}
3706
3707void
paul68980082003-03-25 05:07:42 +00003708ospf_refresher_unregister_lsa (struct ospf *ospf, struct ospf_lsa *lsa)
paul718e3742002-12-13 20:15:29 +00003709{
Paul Jakma66349742010-04-13 22:33:54 +01003710 assert (lsa->lock > 0);
Denis Ovsienkoce3cdcf2011-10-24 18:17:09 +04003711 assert (IS_LSA_SELF (lsa));
paul718e3742002-12-13 20:15:29 +00003712 if (lsa->refresh_list >= 0)
3713 {
hasso52dc7ee2004-09-23 19:18:23 +00003714 struct list *refresh_list = ospf->lsa_refresh_queue.qs[lsa->refresh_list];
paul718e3742002-12-13 20:15:29 +00003715 listnode_delete (refresh_list, lsa);
3716 if (!listcount (refresh_list))
3717 {
3718 list_free (refresh_list);
paul68980082003-03-25 05:07:42 +00003719 ospf->lsa_refresh_queue.qs[lsa->refresh_list] = NULL;
paul718e3742002-12-13 20:15:29 +00003720 }
Paul Jakma1fe6ed32006-07-26 09:37:26 +00003721 ospf_lsa_unlock (&lsa); /* lsa_refresh_queue */
paul718e3742002-12-13 20:15:29 +00003722 lsa->refresh_list = -1;
3723 }
3724}
3725
3726int
3727ospf_lsa_refresh_walker (struct thread *t)
3728{
hasso52dc7ee2004-09-23 19:18:23 +00003729 struct list *refresh_list;
paul1eb8ef22005-04-07 07:30:20 +00003730 struct listnode *node, *nnode;
paul68980082003-03-25 05:07:42 +00003731 struct ospf *ospf = THREAD_ARG (t);
paul1eb8ef22005-04-07 07:30:20 +00003732 struct ospf_lsa *lsa;
paul718e3742002-12-13 20:15:29 +00003733 int i;
hasso52dc7ee2004-09-23 19:18:23 +00003734 struct list *lsa_to_refresh = list_new ();
paul718e3742002-12-13 20:15:29 +00003735
3736 if (IS_DEBUG_OSPF (lsa, LSA_REFRESH))
ajse588f212004-12-08 18:12:06 +00003737 zlog_debug ("LSA[Refresh]:ospf_lsa_refresh_walker(): start");
paul718e3742002-12-13 20:15:29 +00003738
3739
paul68980082003-03-25 05:07:42 +00003740 i = ospf->lsa_refresh_queue.index;
paul718e3742002-12-13 20:15:29 +00003741
ajs9dbc7972005-03-13 19:27:22 +00003742 /* Note: if clock has jumped backwards, then time change could be negative,
3743 so we are careful to cast the expression to unsigned before taking
3744 modulus. */
paul68980082003-03-25 05:07:42 +00003745 ospf->lsa_refresh_queue.index =
ajs9dbc7972005-03-13 19:27:22 +00003746 ((unsigned long)(ospf->lsa_refresh_queue.index +
Paul Jakmac363d382010-01-24 22:42:13 +00003747 (quagga_time (NULL) - ospf->lsa_refresher_started)
3748 / OSPF_LSA_REFRESHER_GRANULARITY))
3749 % OSPF_LSA_REFRESHER_SLOTS;
paul718e3742002-12-13 20:15:29 +00003750
3751 if (IS_DEBUG_OSPF (lsa, LSA_REFRESH))
ajse588f212004-12-08 18:12:06 +00003752 zlog_debug ("LSA[Refresh]: ospf_lsa_refresh_walker(): next index %d",
paul68980082003-03-25 05:07:42 +00003753 ospf->lsa_refresh_queue.index);
paul718e3742002-12-13 20:15:29 +00003754
paul68980082003-03-25 05:07:42 +00003755 for (;i != ospf->lsa_refresh_queue.index;
paul718e3742002-12-13 20:15:29 +00003756 i = (i + 1) % OSPF_LSA_REFRESHER_SLOTS)
3757 {
3758 if (IS_DEBUG_OSPF (lsa, LSA_REFRESH))
ajse588f212004-12-08 18:12:06 +00003759 zlog_debug ("LSA[Refresh]: ospf_lsa_refresh_walker(): "
pauld4a53d52003-07-12 21:30:57 +00003760 "refresh index %d", i);
paul718e3742002-12-13 20:15:29 +00003761
paul68980082003-03-25 05:07:42 +00003762 refresh_list = ospf->lsa_refresh_queue.qs [i];
paul718e3742002-12-13 20:15:29 +00003763
Paul Jakma66349742010-04-13 22:33:54 +01003764 assert (i >= 0);
3765
paul68980082003-03-25 05:07:42 +00003766 ospf->lsa_refresh_queue.qs [i] = NULL;
3767
paul718e3742002-12-13 20:15:29 +00003768 if (refresh_list)
3769 {
paul1eb8ef22005-04-07 07:30:20 +00003770 for (ALL_LIST_ELEMENTS (refresh_list, node, nnode, lsa))
paul718e3742002-12-13 20:15:29 +00003771 {
paul718e3742002-12-13 20:15:29 +00003772 if (IS_DEBUG_OSPF (lsa, LSA_REFRESH))
ajse588f212004-12-08 18:12:06 +00003773 zlog_debug ("LSA[Refresh:%s]: ospf_lsa_refresh_walker(): "
pauld4a53d52003-07-12 21:30:57 +00003774 "refresh lsa %p (slot %d)",
3775 inet_ntoa (lsa->data->id), lsa, i);
paul718e3742002-12-13 20:15:29 +00003776
Paul Jakma66349742010-04-13 22:33:54 +01003777 assert (lsa->lock > 0);
paul718e3742002-12-13 20:15:29 +00003778 list_delete_node (refresh_list, node);
paul718e3742002-12-13 20:15:29 +00003779 lsa->refresh_list = -1;
3780 listnode_add (lsa_to_refresh, lsa);
paul718e3742002-12-13 20:15:29 +00003781 }
3782 list_free (refresh_list);
3783 }
3784 }
3785
paul68980082003-03-25 05:07:42 +00003786 ospf->t_lsa_refresher = thread_add_timer (master, ospf_lsa_refresh_walker,
3787 ospf, ospf->lsa_refresh_interval);
Paul Jakma2518efd2006-08-27 06:49:29 +00003788 ospf->lsa_refresher_started = quagga_time (NULL);
paul718e3742002-12-13 20:15:29 +00003789
paul1eb8ef22005-04-07 07:30:20 +00003790 for (ALL_LIST_ELEMENTS (lsa_to_refresh, node, nnode, lsa))
Paul Jakma66349742010-04-13 22:33:54 +01003791 {
3792 ospf_lsa_refresh (ospf, lsa);
3793 assert (lsa->lock > 0);
3794 ospf_lsa_unlock (&lsa); /* lsa_refresh_queue & temp for lsa_to_refresh*/
3795 }
paul718e3742002-12-13 20:15:29 +00003796
3797 list_delete (lsa_to_refresh);
3798
3799 if (IS_DEBUG_OSPF (lsa, LSA_REFRESH))
ajse588f212004-12-08 18:12:06 +00003800 zlog_debug ("LSA[Refresh]: ospf_lsa_refresh_walker(): end");
paul718e3742002-12-13 20:15:29 +00003801
3802 return 0;
3803}
3804