blob: f4a42a606270ed298c138b2b7c3b254c62e9743b [file] [log] [blame]
jardineb5d44e2003-12-23 08:09:43 +00001/*
2 * IS-IS Rout(e)ing protocol - isis_lsp.c
3 * LSP processing
4 *
5 * Copyright (C) 2001,2002 Sampo Saaristo
6 * Tampere University of Technology
7 * Institute of Communications Engineering
8 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public Licenseas published by the Free
11 * Software Foundation; either version 2 of the License, or (at your option)
12 * any later version.
13 *
14 * This program is distributed in the hope that it will be useful,but WITHOUT
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * more details.
18
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 */
paul15935e92005-05-03 09:27:23 +000023
jardineb5d44e2003-12-23 08:09:43 +000024#include <stdlib.h>
25#include <stdio.h>
26#include <zebra.h>
jardineb5d44e2003-12-23 08:09:43 +000027
28#include "linklist.h"
29#include "thread.h"
30#include "vty.h"
31#include "stream.h"
32#include "memory.h"
33#include "log.h"
34#include "prefix.h"
35#include "command.h"
36#include "hash.h"
37#include "if.h"
38
39#include "isisd/dict.h"
40#include "isisd/isis_constants.h"
41#include "isisd/isis_common.h"
42#include "isisd/isis_circuit.h"
43#include "isisd/isisd.h"
44#include "isisd/isis_tlv.h"
45#include "isisd/isis_lsp.h"
46#include "isisd/isis_pdu.h"
47#include "isisd/isis_dynhn.h"
48#include "isisd/isis_misc.h"
49#include "isisd/isis_flags.h"
50#include "isisd/iso_checksum.h"
51#include "isisd/isis_csm.h"
52#include "isisd/isis_adjacency.h"
53#include "isisd/isis_spf.h"
54
55#ifdef TOPOLOGY_GENERATE
56#include "spgrid.h"
57#endif
58
hassof390d2c2004-09-10 20:48:21 +000059#define LSP_MEMORY_PREASSIGN
jardineb5d44e2003-12-23 08:09:43 +000060
61extern struct isis *isis;
62extern struct thread_master *master;
hasso18a6dce2004-10-03 18:18:34 +000063extern struct in_addr router_id_zebra;
jardineb5d44e2003-12-23 08:09:43 +000064
hasso73d1aea2004-09-24 10:45:28 +000065/* staticly assigned vars for printing purposes */
66char lsp_bits_string[200]; /* FIXME: enough ? */
67
hassof390d2c2004-09-10 20:48:21 +000068int
69lsp_id_cmp (u_char * id1, u_char * id2)
70{
jardineb5d44e2003-12-23 08:09:43 +000071 return memcmp (id1, id2, ISIS_SYS_ID_LEN + 2);
72}
73
74dict_t *
hassof390d2c2004-09-10 20:48:21 +000075lsp_db_init (void)
jardineb5d44e2003-12-23 08:09:43 +000076{
77 dict_t *dict;
hassof390d2c2004-09-10 20:48:21 +000078
79 dict = dict_create (DICTCOUNT_T_MAX, (dict_comp_t) lsp_id_cmp);
80
jardineb5d44e2003-12-23 08:09:43 +000081 return dict;
82}
83
84struct isis_lsp *
hassof390d2c2004-09-10 20:48:21 +000085lsp_search (u_char * id, dict_t * lspdb)
jardineb5d44e2003-12-23 08:09:43 +000086{
87 dnode_t *node;
88
hassof390d2c2004-09-10 20:48:21 +000089#ifdef EXTREME_DEBUG
jardineb5d44e2003-12-23 08:09:43 +000090 dnode_t *dn;
91
hasso529d65b2004-12-24 00:14:50 +000092 zlog_debug ("searching db");
hassof390d2c2004-09-10 20:48:21 +000093 for (dn = dict_first (lspdb); dn; dn = dict_next (lspdb, dn))
94 {
hasso529d65b2004-12-24 00:14:50 +000095 zlog_debug ("%s\t%pX", rawlspid_print ((char *) dnode_getkey (dn)),
96 dnode_get (dn));
hassof390d2c2004-09-10 20:48:21 +000097 }
jardineb5d44e2003-12-23 08:09:43 +000098#endif /* EXTREME DEBUG */
99
100 node = dict_lookup (lspdb, id);
hassof390d2c2004-09-10 20:48:21 +0000101
jardineb5d44e2003-12-23 08:09:43 +0000102 if (node)
hassof390d2c2004-09-10 20:48:21 +0000103 return (struct isis_lsp *) dnode_get (node);
jardineb5d44e2003-12-23 08:09:43 +0000104
105 return NULL;
106}
107
hasso92365882005-01-18 13:53:33 +0000108static void
jardineb5d44e2003-12-23 08:09:43 +0000109lsp_clear_data (struct isis_lsp *lsp)
110{
111 if (!lsp)
112 return;
hassof390d2c2004-09-10 20:48:21 +0000113
114 if (lsp->own_lsp)
115 {
116 if (lsp->tlv_data.nlpids)
117 XFREE (MTYPE_ISIS_TLV, lsp->tlv_data.nlpids);
118 if (lsp->tlv_data.hostname)
119 XFREE (MTYPE_ISIS_TLV, lsp->tlv_data.hostname);
120 }
jardineb5d44e2003-12-23 08:09:43 +0000121 if (lsp->tlv_data.is_neighs)
122 list_delete (lsp->tlv_data.is_neighs);
hassoaa4376e2005-09-26 17:39:48 +0000123 if (lsp->tlv_data.te_is_neighs)
124 list_delete (lsp->tlv_data.te_is_neighs);
jardineb5d44e2003-12-23 08:09:43 +0000125 if (lsp->tlv_data.area_addrs)
126 list_delete (lsp->tlv_data.area_addrs);
127 if (lsp->tlv_data.es_neighs)
128 list_delete (lsp->tlv_data.es_neighs);
129 if (lsp->tlv_data.ipv4_addrs)
130 list_delete (lsp->tlv_data.ipv4_addrs);
131 if (lsp->tlv_data.ipv4_int_reachs)
132 list_delete (lsp->tlv_data.ipv4_int_reachs);
133 if (lsp->tlv_data.ipv4_ext_reachs)
134 list_delete (lsp->tlv_data.ipv4_ext_reachs);
hassoaa4376e2005-09-26 17:39:48 +0000135 if (lsp->tlv_data.te_ipv4_reachs)
136 list_delete (lsp->tlv_data.te_ipv4_reachs);
jardineb5d44e2003-12-23 08:09:43 +0000137#ifdef HAVE_IPV6
138 if (lsp->tlv_data.ipv6_addrs)
139 list_delete (lsp->tlv_data.ipv6_addrs);
140 if (lsp->tlv_data.ipv6_reachs)
141 list_delete (lsp->tlv_data.ipv6_reachs);
142#endif /* HAVE_IPV6 */
143
144 memset (&lsp->tlv_data, 0, sizeof (struct tlvs));
145
146 return;
147}
148
hasso92365882005-01-18 13:53:33 +0000149static void
jardineb5d44e2003-12-23 08:09:43 +0000150lsp_destroy (struct isis_lsp *lsp)
151{
152 if (!lsp)
153 return;
hassof390d2c2004-09-10 20:48:21 +0000154
jardineb5d44e2003-12-23 08:09:43 +0000155 lsp_clear_data (lsp);
hassof390d2c2004-09-10 20:48:21 +0000156
157 if (LSP_FRAGMENT (lsp->lsp_header->lsp_id) == 0 && lsp->lspu.frags)
158 {
jardineb5d44e2003-12-23 08:09:43 +0000159 list_delete (lsp->lspu.frags);
hassof390d2c2004-09-10 20:48:21 +0000160 }
161
jardineb5d44e2003-12-23 08:09:43 +0000162 if (lsp->pdu)
163 stream_free (lsp->pdu);
164 XFREE (MTYPE_ISIS_LSP, lsp);
165}
166
hassof390d2c2004-09-10 20:48:21 +0000167void
168lsp_db_destroy (dict_t * lspdb)
jardineb5d44e2003-12-23 08:09:43 +0000169{
170 dnode_t *dnode, *next;
171 struct isis_lsp *lsp;
hassof390d2c2004-09-10 20:48:21 +0000172
jardineb5d44e2003-12-23 08:09:43 +0000173 dnode = dict_first (lspdb);
hassof390d2c2004-09-10 20:48:21 +0000174 while (dnode)
175 {
176 next = dict_next (lspdb, dnode);
177 lsp = dnode_get (dnode);
178 lsp_destroy (lsp);
179 dict_delete_free (lspdb, dnode);
180 dnode = next;
181 }
182
jardineb5d44e2003-12-23 08:09:43 +0000183 dict_free (lspdb);
hassof390d2c2004-09-10 20:48:21 +0000184
jardineb5d44e2003-12-23 08:09:43 +0000185 return;
186}
187
188/*
189 * Remove all the frags belonging to the given lsp
190 */
hasso92365882005-01-18 13:53:33 +0000191static void
hassof390d2c2004-09-10 20:48:21 +0000192lsp_remove_frags (struct list *frags, dict_t * lspdb)
jardineb5d44e2003-12-23 08:09:43 +0000193{
194 dnode_t *dnode;
paul1eb8ef22005-04-07 07:30:20 +0000195 struct listnode *lnode, *lnnode;
jardineb5d44e2003-12-23 08:09:43 +0000196 struct isis_lsp *lsp;
197
paul1eb8ef22005-04-07 07:30:20 +0000198 for (ALL_LIST_ELEMENTS (frags, lnode, lnnode, lsp))
hassof390d2c2004-09-10 20:48:21 +0000199 {
hassof390d2c2004-09-10 20:48:21 +0000200 dnode = dict_lookup (lspdb, lsp->lsp_header->lsp_id);
201 lsp_destroy (lsp);
202 dnode_destroy (dict_delete (lspdb, dnode));
203 }
204
jardineb5d44e2003-12-23 08:09:43 +0000205 list_delete_all_node (frags);
hassof390d2c2004-09-10 20:48:21 +0000206
jardineb5d44e2003-12-23 08:09:43 +0000207 return;
208}
209
210void
hassof390d2c2004-09-10 20:48:21 +0000211lsp_search_and_destroy (u_char * id, dict_t * lspdb)
jardineb5d44e2003-12-23 08:09:43 +0000212{
213 dnode_t *node;
214 struct isis_lsp *lsp;
215
216 node = dict_lookup (lspdb, id);
hassof390d2c2004-09-10 20:48:21 +0000217 if (node)
218 {
219 node = dict_delete (lspdb, node);
220 lsp = dnode_get (node);
221 /*
222 * If this is a zero lsp, remove all the frags now
223 */
224 if (LSP_FRAGMENT (lsp->lsp_header->lsp_id) == 0)
225 {
226 if (lsp->lspu.frags)
227 lsp_remove_frags (lsp->lspu.frags, lspdb);
228 }
229 else
230 {
231 /*
232 * else just remove this frag, from the zero lsps' frag list
233 */
234 if (lsp->lspu.zero_lsp && lsp->lspu.zero_lsp->lspu.frags)
235 listnode_delete (lsp->lspu.zero_lsp->lspu.frags, lsp);
236 }
237 lsp_destroy (lsp);
238 dnode_destroy (node);
jardineb5d44e2003-12-23 08:09:43 +0000239 }
jardineb5d44e2003-12-23 08:09:43 +0000240}
241
242/*
243 * Compares a LSP to given values
244 * Params are given in net order
245 */
hassof390d2c2004-09-10 20:48:21 +0000246int
247lsp_compare (char *areatag, struct isis_lsp *lsp, u_int32_t seq_num,
jardineb5d44e2003-12-23 08:09:43 +0000248 u_int16_t checksum, u_int16_t rem_lifetime)
249{
hassof390d2c2004-09-10 20:48:21 +0000250 /* no point in double ntohl on seqnum */
251 if (lsp->lsp_header->seq_num == seq_num &&
jardineb5d44e2003-12-23 08:09:43 +0000252 lsp->lsp_header->checksum == checksum &&
253 /*comparing with 0, no need to do ntohl */
254 ((lsp->lsp_header->rem_lifetime == 0 && rem_lifetime == 0) ||
hassof390d2c2004-09-10 20:48:21 +0000255 (lsp->lsp_header->rem_lifetime != 0 && rem_lifetime != 0)))
256 {
257 if (isis->debugs & DEBUG_SNP_PACKETS)
258 {
hasso529d65b2004-12-24 00:14:50 +0000259 zlog_debug ("ISIS-Snp (%s): LSP %s seq 0x%08x, cksum 0x%04x,"
260 " lifetime %us",
261 areatag,
262 rawlspid_print (lsp->lsp_header->lsp_id),
263 ntohl (lsp->lsp_header->seq_num),
264 ntohs (lsp->lsp_header->checksum),
265 ntohs (lsp->lsp_header->rem_lifetime));
266 zlog_debug ("ISIS-Snp (%s): is equal to ours seq 0x%08x,"
267 " cksum 0x%04x, lifetime %us",
268 areatag,
269 ntohl (seq_num), ntohs (checksum), ntohs (rem_lifetime));
hassof390d2c2004-09-10 20:48:21 +0000270 }
271 return LSP_EQUAL;
jardineb5d44e2003-12-23 08:09:43 +0000272 }
jardineb5d44e2003-12-23 08:09:43 +0000273
hassof390d2c2004-09-10 20:48:21 +0000274 if (ntohl (seq_num) >= ntohl (lsp->lsp_header->seq_num))
275 {
276 if (isis->debugs & DEBUG_SNP_PACKETS)
277 {
hasso529d65b2004-12-24 00:14:50 +0000278 zlog_debug ("ISIS-Snp (%s): LSP %s seq 0x%08x, cksum 0x%04x,"
279 " lifetime %us",
280 areatag,
281 rawlspid_print (lsp->lsp_header->lsp_id),
282 ntohl (seq_num), ntohs (checksum), ntohs (rem_lifetime));
283 zlog_debug ("ISIS-Snp (%s): is newer than ours seq 0x%08x, "
284 "cksum 0x%04x, lifetime %us",
285 areatag,
286 ntohl (lsp->lsp_header->seq_num),
287 ntohs (lsp->lsp_header->checksum),
288 ntohs (lsp->lsp_header->rem_lifetime));
hassof390d2c2004-09-10 20:48:21 +0000289 }
290 return LSP_NEWER;
jardineb5d44e2003-12-23 08:09:43 +0000291 }
hassof390d2c2004-09-10 20:48:21 +0000292 if (isis->debugs & DEBUG_SNP_PACKETS)
293 {
hasso529d65b2004-12-24 00:14:50 +0000294 zlog_debug
hassof390d2c2004-09-10 20:48:21 +0000295 ("ISIS-Snp (%s): LSP %s seq 0x%08x, cksum 0x%04x, lifetime %us",
296 areatag, rawlspid_print (lsp->lsp_header->lsp_id), ntohl (seq_num),
297 ntohs (checksum), ntohs (rem_lifetime));
hasso529d65b2004-12-24 00:14:50 +0000298 zlog_debug ("ISIS-Snp (%s): is older than ours seq 0x%08x,"
299 " cksum 0x%04x, lifetime %us", areatag,
300 ntohl (lsp->lsp_header->seq_num),
301 ntohs (lsp->lsp_header->checksum),
302 ntohs (lsp->lsp_header->rem_lifetime));
hassof390d2c2004-09-10 20:48:21 +0000303 }
jardineb5d44e2003-12-23 08:09:43 +0000304
305 return LSP_OLDER;
306}
307
hassof390d2c2004-09-10 20:48:21 +0000308void
jardineb5d44e2003-12-23 08:09:43 +0000309lsp_inc_seqnum (struct isis_lsp *lsp, u_int32_t seq_num)
310{
311 u_int32_t newseq;
hassof390d2c2004-09-10 20:48:21 +0000312
jardineb5d44e2003-12-23 08:09:43 +0000313 if (seq_num == 0 || ntohl (lsp->lsp_header->seq_num) > seq_num)
314 newseq = ntohl (lsp->lsp_header->seq_num) + 1;
315 else
hassof390d2c2004-09-10 20:48:21 +0000316 newseq = seq_num++;
317
jardineb5d44e2003-12-23 08:09:43 +0000318 lsp->lsp_header->seq_num = htonl (newseq);
hassof390d2c2004-09-10 20:48:21 +0000319 iso_csum_create (STREAM_DATA (lsp->pdu) + 12,
320 ntohs (lsp->lsp_header->pdu_len) - 12, 12);
jardineb5d44e2003-12-23 08:09:43 +0000321
322 return;
323}
324
325/*
326 * Genetates checksum for LSP and its frags
327 */
hasso92365882005-01-18 13:53:33 +0000328static void
jardineb5d44e2003-12-23 08:09:43 +0000329lsp_seqnum_update (struct isis_lsp *lsp0)
330{
331 struct isis_lsp *lsp;
paul1eb8ef22005-04-07 07:30:20 +0000332 struct listnode *node, *nnode;
hassof390d2c2004-09-10 20:48:21 +0000333
jardineb5d44e2003-12-23 08:09:43 +0000334 lsp_inc_seqnum (lsp0, 0);
335
336 if (!lsp0->lspu.frags)
337 return;
338
paul1eb8ef22005-04-07 07:30:20 +0000339 for (ALL_LIST_ELEMENTS (lsp0->lspu.frags, node, nnode, lsp))
340 lsp_inc_seqnum (lsp, 0);
hassof390d2c2004-09-10 20:48:21 +0000341
jardineb5d44e2003-12-23 08:09:43 +0000342 return;
343}
344
hassof390d2c2004-09-10 20:48:21 +0000345int
jardineb5d44e2003-12-23 08:09:43 +0000346isis_lsp_authinfo_check (struct stream *stream, struct isis_area *area,
hassof390d2c2004-09-10 20:48:21 +0000347 int pdulen, struct isis_passwd *passwd)
jardineb5d44e2003-12-23 08:09:43 +0000348{
349 uint32_t expected = 0, found;
350 struct tlvs tlvs;
351 int retval = 0;
352
353 expected |= TLVFLAG_AUTH_INFO;
354 retval = parse_tlvs (area->area_tag, stream->data +
hassof390d2c2004-09-10 20:48:21 +0000355 ISIS_FIXED_HDR_LEN + ISIS_LSP_HDR_LEN,
356 pdulen - ISIS_FIXED_HDR_LEN
357 - ISIS_LSP_HDR_LEN, &expected, &found, &tlvs);
jardineb5d44e2003-12-23 08:09:43 +0000358 if (retval || !(found & TLVFLAG_AUTH_INFO))
hassof390d2c2004-09-10 20:48:21 +0000359 return 1; /* Auth fail (parsing failed or no auth-tlv) */
jardineb5d44e2003-12-23 08:09:43 +0000360
361 return authentication_check (passwd, &tlvs.auth_info);
362}
363
hasso92365882005-01-18 13:53:33 +0000364static void
hassof390d2c2004-09-10 20:48:21 +0000365lsp_update_data (struct isis_lsp *lsp, struct stream *stream,
366 struct isis_area *area)
jardineb5d44e2003-12-23 08:09:43 +0000367{
hassof390d2c2004-09-10 20:48:21 +0000368 uint32_t expected = 0, found;
jardineb5d44e2003-12-23 08:09:43 +0000369 int retval;
hassof390d2c2004-09-10 20:48:21 +0000370
jardineb5d44e2003-12-23 08:09:43 +0000371 /* copying only the relevant part of our stream */
paul15935e92005-05-03 09:27:23 +0000372 lsp->pdu = stream_dup (stream);
373
jardineb5d44e2003-12-23 08:09:43 +0000374 /* setting pointers to the correct place */
hassof390d2c2004-09-10 20:48:21 +0000375 lsp->isis_header = (struct isis_fixed_hdr *) (STREAM_DATA (lsp->pdu));
376 lsp->lsp_header = (struct isis_link_state_hdr *) (STREAM_DATA (lsp->pdu) +
377 ISIS_FIXED_HDR_LEN);
jardineb5d44e2003-12-23 08:09:43 +0000378 lsp->age_out = ZERO_AGE_LIFETIME;
hassof390d2c2004-09-10 20:48:21 +0000379 lsp->installed = time (NULL);
jardineb5d44e2003-12-23 08:09:43 +0000380 /*
381 * Get LSP data i.e. TLVs
382 */
383 expected |= TLVFLAG_AUTH_INFO;
384 expected |= TLVFLAG_AREA_ADDRS;
385 expected |= TLVFLAG_IS_NEIGHS;
hassof390d2c2004-09-10 20:48:21 +0000386 if ((lsp->lsp_header->lsp_bits & 3) == 3) /* a level 2 LSP */
jardineb5d44e2003-12-23 08:09:43 +0000387 expected |= TLVFLAG_PARTITION_DESIG_LEVEL2_IS;
388 expected |= TLVFLAG_NLPID;
389 if (area->dynhostname)
390 expected |= TLVFLAG_DYN_HOSTNAME;
hassof390d2c2004-09-10 20:48:21 +0000391 if (area->newmetric)
392 {
393 expected |= TLVFLAG_TE_IS_NEIGHS;
394 expected |= TLVFLAG_TE_IPV4_REACHABILITY;
395 expected |= TLVFLAG_TE_ROUTER_ID;
396 }
jardineb5d44e2003-12-23 08:09:43 +0000397 expected |= TLVFLAG_IPV4_ADDR;
398 expected |= TLVFLAG_IPV4_INT_REACHABILITY;
399 expected |= TLVFLAG_IPV4_EXT_REACHABILITY;
400#ifdef HAVE_IPV6
401 expected |= TLVFLAG_IPV6_ADDR;
402 expected |= TLVFLAG_IPV6_REACHABILITY;
403#endif /* HAVE_IPV6 */
404
405 retval = parse_tlvs (area->area_tag, lsp->pdu->data +
hassof390d2c2004-09-10 20:48:21 +0000406 ISIS_FIXED_HDR_LEN + ISIS_LSP_HDR_LEN,
407 ntohs (lsp->lsp_header->pdu_len) - ISIS_FIXED_HDR_LEN
408 - ISIS_LSP_HDR_LEN, &expected, &found, &lsp->tlv_data);
jardineb5d44e2003-12-23 08:09:43 +0000409
hassof390d2c2004-09-10 20:48:21 +0000410 if (found & TLVFLAG_DYN_HOSTNAME)
411 {
412 if (area->dynhostname)
413 isis_dynhn_insert (lsp->lsp_header->lsp_id, lsp->tlv_data.hostname,
414 (lsp->lsp_header->lsp_bits & LSPBIT_IST) ==
415 IS_LEVEL_1_AND_2 ? IS_LEVEL_2 :
416 (lsp->lsp_header->lsp_bits & LSPBIT_IST));
417 }
jardineb5d44e2003-12-23 08:09:43 +0000418
419}
420
421void
422lsp_update (struct isis_lsp *lsp, struct isis_link_state_hdr *lsp_hdr,
hassoa96d8d12005-09-16 14:44:23 +0000423 struct stream *stream, struct isis_area *area, int level)
jardineb5d44e2003-12-23 08:09:43 +0000424{
hasso4eda93a2005-09-18 17:51:02 +0000425 dnode_t *dnode = NULL;
hassoa96d8d12005-09-16 14:44:23 +0000426
427 /* Remove old LSP from LSP database. */
hasso4eda93a2005-09-18 17:51:02 +0000428 dnode = dict_lookup (area->lspdb[level - 1], lsp->lsp_header->lsp_id);
429 if (dnode)
430 dnode_destroy (dict_delete (area->lspdb[level - 1], dnode));
hassoa96d8d12005-09-16 14:44:23 +0000431
hassof390d2c2004-09-10 20:48:21 +0000432 /* free the old lsp data */
jardineb5d44e2003-12-23 08:09:43 +0000433 XFREE (MTYPE_STREAM_DATA, lsp->pdu);
434 lsp_clear_data (lsp);
435
436 /* rebuild the lsp data */
437 lsp_update_data (lsp, stream, area);
438
hassof390d2c2004-09-10 20:48:21 +0000439 /* set the new values for lsp header */
jardineb5d44e2003-12-23 08:09:43 +0000440 memcpy (lsp->lsp_header, lsp_hdr, ISIS_LSP_HDR_LEN);
hassoa96d8d12005-09-16 14:44:23 +0000441
hasso4eda93a2005-09-18 17:51:02 +0000442 if (dnode)
443 lsp_insert (lsp, area->lspdb[level - 1]);
jardineb5d44e2003-12-23 08:09:43 +0000444}
445
jardineb5d44e2003-12-23 08:09:43 +0000446/* creation of LSP directly from what we received */
447struct isis_lsp *
hassof390d2c2004-09-10 20:48:21 +0000448lsp_new_from_stream_ptr (struct stream *stream,
449 u_int16_t pdu_len, struct isis_lsp *lsp0,
450 struct isis_area *area)
jardineb5d44e2003-12-23 08:09:43 +0000451{
452 struct isis_lsp *lsp;
453
hassoaac372f2005-09-01 17:52:33 +0000454 lsp = XCALLOC (MTYPE_ISIS_LSP, sizeof (struct isis_lsp));
jardineb5d44e2003-12-23 08:09:43 +0000455 lsp_update_data (lsp, stream, area);
hassof390d2c2004-09-10 20:48:21 +0000456
457 if (lsp0 == NULL)
458 {
459 /*
460 * zero lsp -> create the list for fragments
461 */
462 lsp->lspu.frags = list_new ();
463 }
464 else
465 {
466 /*
467 * a fragment -> set the backpointer and add this to zero lsps frag list
468 */
469 lsp->lspu.zero_lsp = lsp0;
470 listnode_add (lsp0->lspu.frags, lsp);
471 }
472
jardineb5d44e2003-12-23 08:09:43 +0000473 return lsp;
474}
475
476struct isis_lsp *
hassof390d2c2004-09-10 20:48:21 +0000477lsp_new (u_char * lsp_id, u_int16_t rem_lifetime, u_int32_t seq_num,
478 u_int8_t lsp_bits, u_int16_t checksum, int level)
jardineb5d44e2003-12-23 08:09:43 +0000479{
480 struct isis_lsp *lsp;
481
hassoaac372f2005-09-01 17:52:33 +0000482 lsp = XCALLOC (MTYPE_ISIS_LSP, sizeof (struct isis_lsp));
hassof390d2c2004-09-10 20:48:21 +0000483 if (!lsp)
484 {
485 /* FIXME: set lspdbol bit */
486 zlog_warn ("lsp_new(): out of memory");
487 return NULL;
488 }
jardineb5d44e2003-12-23 08:09:43 +0000489#ifdef LSP_MEMORY_PREASSIGN
hassof390d2c2004-09-10 20:48:21 +0000490 lsp->pdu = stream_new (1514); /*Should be minimal mtu? yup... */
jardineb5d44e2003-12-23 08:09:43 +0000491#else
hassof390d2c2004-09-10 20:48:21 +0000492 /* We need to do realloc on TLVs additions */
493 lsp->pdu = malloc (ISIS_FIXED_HDR_LEN + ISIS_LSP_HDR_LEN);
jardineb5d44e2003-12-23 08:09:43 +0000494#endif /* LSP_MEMORY_PREASSIGN */
495 if (LSP_FRAGMENT (lsp_id) == 0)
496 lsp->lspu.frags = list_new ();
hassof390d2c2004-09-10 20:48:21 +0000497 lsp->isis_header = (struct isis_fixed_hdr *) (STREAM_DATA (lsp->pdu));
498 lsp->lsp_header = (struct isis_link_state_hdr *)
499 (STREAM_DATA (lsp->pdu) + ISIS_FIXED_HDR_LEN);
500
jardineb5d44e2003-12-23 08:09:43 +0000501 /* at first we fill the FIXED HEADER */
hassof390d2c2004-09-10 20:48:21 +0000502 (level == 1) ? fill_fixed_hdr (lsp->isis_header, L1_LINK_STATE) :
503 fill_fixed_hdr (lsp->isis_header, L2_LINK_STATE);
504
jardineb5d44e2003-12-23 08:09:43 +0000505 /* now for the LSP HEADER */
506 /* Minimal LSP PDU size */
hassof390d2c2004-09-10 20:48:21 +0000507 lsp->lsp_header->pdu_len = htons (ISIS_FIXED_HDR_LEN + ISIS_LSP_HDR_LEN);
jardineb5d44e2003-12-23 08:09:43 +0000508 memcpy (lsp->lsp_header->lsp_id, lsp_id, ISIS_SYS_ID_LEN + 2);
hassof390d2c2004-09-10 20:48:21 +0000509 lsp->lsp_header->checksum = checksum; /* Provided in network order */
jardineb5d44e2003-12-23 08:09:43 +0000510 lsp->lsp_header->seq_num = htonl (seq_num);
511 lsp->lsp_header->rem_lifetime = htons (rem_lifetime);
512 lsp->lsp_header->lsp_bits = lsp_bits;
513 lsp->level = level;
514 lsp->age_out = ZERO_AGE_LIFETIME;
515
paul9985f832005-02-09 15:51:56 +0000516 stream_forward_endp (lsp->pdu, ISIS_FIXED_HDR_LEN + ISIS_LSP_HDR_LEN);
jardineb5d44e2003-12-23 08:09:43 +0000517
hassoc89c05d2005-09-04 21:36:36 +0000518 if (isis->debugs & DEBUG_EVENTS)
519 zlog_debug ("New LSP with ID %s-%02x-%02x seqnum %08x",
520 sysid_print (lsp_id), LSP_PSEUDO_ID (lsp->lsp_header->lsp_id),
521 LSP_FRAGMENT (lsp->lsp_header->lsp_id),
522 ntohl (lsp->lsp_header->seq_num));
jardineb5d44e2003-12-23 08:09:43 +0000523
524 return lsp;
525}
526
527void
hassof390d2c2004-09-10 20:48:21 +0000528lsp_insert (struct isis_lsp *lsp, dict_t * lspdb)
jardineb5d44e2003-12-23 08:09:43 +0000529{
530 dict_alloc_insert (lspdb, lsp->lsp_header->lsp_id, lsp);
531}
532
533/*
534 * Build a list of LSPs with non-zero ht bounded by start and stop ids
535 */
hassof390d2c2004-09-10 20:48:21 +0000536void
537lsp_build_list_nonzero_ht (u_char * start_id, u_char * stop_id,
538 struct list *list, dict_t * lspdb)
jardineb5d44e2003-12-23 08:09:43 +0000539{
540 dnode_t *first, *last, *curr;
541
542 first = dict_lower_bound (lspdb, start_id);
543 if (!first)
544 return;
hassof390d2c2004-09-10 20:48:21 +0000545
jardineb5d44e2003-12-23 08:09:43 +0000546 last = dict_upper_bound (lspdb, stop_id);
hassof390d2c2004-09-10 20:48:21 +0000547
jardineb5d44e2003-12-23 08:09:43 +0000548 curr = first;
hassof390d2c2004-09-10 20:48:21 +0000549
550 if (((struct isis_lsp *) (curr->dict_data))->lsp_header->rem_lifetime)
jardineb5d44e2003-12-23 08:09:43 +0000551 listnode_add (list, first->dict_data);
552
hassof390d2c2004-09-10 20:48:21 +0000553 while (curr)
554 {
555 curr = dict_next (lspdb, curr);
556 if (curr &&
557 ((struct isis_lsp *) (curr->dict_data))->lsp_header->rem_lifetime)
558 listnode_add (list, curr->dict_data);
559 if (curr == last)
560 break;
561 }
562
jardineb5d44e2003-12-23 08:09:43 +0000563 return;
564}
565
566/*
567 * Build a list of all LSPs bounded by start and stop ids
568 */
hassof390d2c2004-09-10 20:48:21 +0000569void
570lsp_build_list (u_char * start_id, u_char * stop_id,
571 struct list *list, dict_t * lspdb)
jardineb5d44e2003-12-23 08:09:43 +0000572{
573 dnode_t *first, *last, *curr;
574
575 first = dict_lower_bound (lspdb, start_id);
576 if (!first)
577 return;
hassof390d2c2004-09-10 20:48:21 +0000578
jardineb5d44e2003-12-23 08:09:43 +0000579 last = dict_upper_bound (lspdb, stop_id);
hassof390d2c2004-09-10 20:48:21 +0000580
jardineb5d44e2003-12-23 08:09:43 +0000581 curr = first;
hassof390d2c2004-09-10 20:48:21 +0000582
jardineb5d44e2003-12-23 08:09:43 +0000583 listnode_add (list, first->dict_data);
584
hassof390d2c2004-09-10 20:48:21 +0000585 while (curr)
586 {
587 curr = dict_next (lspdb, curr);
588 if (curr)
589 listnode_add (list, curr->dict_data);
590 if (curr == last)
591 break;
592 }
593
jardineb5d44e2003-12-23 08:09:43 +0000594 return;
595}
596
597/*
598 * Build a list of LSPs with SSN flag set for the given circuit
599 */
600void
hassof390d2c2004-09-10 20:48:21 +0000601lsp_build_list_ssn (struct isis_circuit *circuit, struct list *list,
602 dict_t * lspdb)
jardineb5d44e2003-12-23 08:09:43 +0000603{
604 dnode_t *dnode, *next;
605 struct isis_lsp *lsp;
hassof390d2c2004-09-10 20:48:21 +0000606
jardineb5d44e2003-12-23 08:09:43 +0000607 dnode = dict_first (lspdb);
hassof390d2c2004-09-10 20:48:21 +0000608 while (dnode != NULL)
609 {
610 next = dict_next (lspdb, dnode);
611 lsp = dnode_get (dnode);
612 if (ISIS_CHECK_FLAG (lsp->SSNflags, circuit))
613 listnode_add (list, lsp);
614 dnode = next;
615 }
616
jardineb5d44e2003-12-23 08:09:43 +0000617 return;
618}
619
hasso92365882005-01-18 13:53:33 +0000620static void
jardineb5d44e2003-12-23 08:09:43 +0000621lsp_set_time (struct isis_lsp *lsp)
622{
623 assert (lsp);
hassof390d2c2004-09-10 20:48:21 +0000624
625 if (lsp->lsp_header->rem_lifetime == 0)
626 {
627 if (lsp->age_out != 0)
628 lsp->age_out--;
629 return;
630 }
jardineb5d44e2003-12-23 08:09:43 +0000631
632 /* If we are turning 0 */
633 /* ISO 10589 - 7.3.16.4 first paragraph */
634
hassof390d2c2004-09-10 20:48:21 +0000635 if (ntohs (lsp->lsp_header->rem_lifetime) == 1)
636 {
637 /* 7.3.16.4 a) set SRM flags on all */
638 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
639 /* 7.3.16.4 b) retain only the header FIXME */
640 /* 7.3.16.4 c) record the time to purge FIXME (other way to do it) */
641 }
jardineb5d44e2003-12-23 08:09:43 +0000642
hassof390d2c2004-09-10 20:48:21 +0000643 lsp->lsp_header->rem_lifetime =
jardineb5d44e2003-12-23 08:09:43 +0000644 htons (ntohs (lsp->lsp_header->rem_lifetime) - 1);
645}
646
hasso92365882005-01-18 13:53:33 +0000647static void
hassof390d2c2004-09-10 20:48:21 +0000648lspid_print (u_char * lsp_id, u_char * trg, char dynhost, char frag)
jardineb5d44e2003-12-23 08:09:43 +0000649{
650 struct isis_dynhn *dyn = NULL;
hassof390d2c2004-09-10 20:48:21 +0000651 u_char id[SYSID_STRLEN];
jardineb5d44e2003-12-23 08:09:43 +0000652
653 if (dynhost)
654 dyn = dynhn_find_by_id (lsp_id);
655 else
656 dyn = NULL;
657
658 if (dyn)
hassof7c43dc2004-09-26 16:24:14 +0000659 sprintf ((char *)id, "%.14s", dyn->name.name);
jardineb5d44e2003-12-23 08:09:43 +0000660 else if (!memcmp (isis->sysid, lsp_id, ISIS_SYS_ID_LEN) & dynhost)
hassof7c43dc2004-09-26 16:24:14 +0000661 sprintf ((char *)id, "%.14s", unix_hostname ());
jardineb5d44e2003-12-23 08:09:43 +0000662 else
hassof390d2c2004-09-10 20:48:21 +0000663 {
664 memcpy (id, sysid_print (lsp_id), 15);
665 }
666 if (frag)
hassof7c43dc2004-09-26 16:24:14 +0000667 sprintf ((char *)trg, "%s.%02x-%02x", id, LSP_PSEUDO_ID (lsp_id),
hassof390d2c2004-09-10 20:48:21 +0000668 LSP_FRAGMENT (lsp_id));
669 else
hassof7c43dc2004-09-26 16:24:14 +0000670 sprintf ((char *)trg, "%s.%02x", id, LSP_PSEUDO_ID (lsp_id));
jardineb5d44e2003-12-23 08:09:43 +0000671}
672
hassof390d2c2004-09-10 20:48:21 +0000673/* Convert the lsp attribute bits to attribute string */
hasso1cd80842004-10-07 20:07:40 +0000674const char *
hassof390d2c2004-09-10 20:48:21 +0000675lsp_bits2string (u_char * lsp_bits)
676{
677 char *pos = lsp_bits_string;
jardineb5d44e2003-12-23 08:09:43 +0000678
hassof390d2c2004-09-10 20:48:21 +0000679 if (!*lsp_bits)
jardineb5d44e2003-12-23 08:09:43 +0000680 return " none";
681
682 /* we only focus on the default metric */
683 pos += sprintf (pos, "%d/",
hassof390d2c2004-09-10 20:48:21 +0000684 ISIS_MASK_LSP_ATT_DEFAULT_BIT (*lsp_bits) ? 1 : 0);
jardineb5d44e2003-12-23 08:09:43 +0000685
686 pos += sprintf (pos, "%d/",
hassof390d2c2004-09-10 20:48:21 +0000687 ISIS_MASK_LSP_PARTITION_BIT (*lsp_bits) ? 1 : 0);
jardineb5d44e2003-12-23 08:09:43 +0000688
hassof390d2c2004-09-10 20:48:21 +0000689 pos += sprintf (pos, "%d", ISIS_MASK_LSP_OL_BIT (*lsp_bits) ? 1 : 0);
690
jardineb5d44e2003-12-23 08:09:43 +0000691 *(pos) = '\0';
jardineb5d44e2003-12-23 08:09:43 +0000692
hassof390d2c2004-09-10 20:48:21 +0000693 return lsp_bits_string;
jardineb5d44e2003-12-23 08:09:43 +0000694}
695
696/* this function prints the lsp on show isis database */
hasso92365882005-01-18 13:53:33 +0000697static void
hassof390d2c2004-09-10 20:48:21 +0000698lsp_print (dnode_t * node, struct vty *vty, char dynhost)
jardineb5d44e2003-12-23 08:09:43 +0000699{
hassof390d2c2004-09-10 20:48:21 +0000700 struct isis_lsp *lsp = dnode_get (node);
jardineb5d44e2003-12-23 08:09:43 +0000701 u_char LSPid[255];
702
703 lspid_print (lsp->lsp_header->lsp_id, LSPid, dynhost, 1);
hassof390d2c2004-09-10 20:48:21 +0000704 vty_out (vty, "%-21s%c ", LSPid, lsp->own_lsp ? '*' : ' ');
705 vty_out (vty, "0x%08x ", ntohl (lsp->lsp_header->seq_num));
706 vty_out (vty, "0x%04x ", ntohs (lsp->lsp_header->checksum));
jardineb5d44e2003-12-23 08:09:43 +0000707
hassof390d2c2004-09-10 20:48:21 +0000708 if (ntohs (lsp->lsp_header->rem_lifetime) == 0)
709 vty_out (vty, " (%2u)", lsp->age_out);
jardineb5d44e2003-12-23 08:09:43 +0000710 else
hassof390d2c2004-09-10 20:48:21 +0000711 vty_out (vty, "%5u", ntohs (lsp->lsp_header->rem_lifetime));
jardineb5d44e2003-12-23 08:09:43 +0000712
713 vty_out (vty, " %s%s",
hassof390d2c2004-09-10 20:48:21 +0000714 lsp_bits2string (&lsp->lsp_header->lsp_bits), VTY_NEWLINE);
jardineb5d44e2003-12-23 08:09:43 +0000715}
716
hasso92365882005-01-18 13:53:33 +0000717static void
hassof390d2c2004-09-10 20:48:21 +0000718lsp_print_detail (dnode_t * node, struct vty *vty, char dynhost)
jardineb5d44e2003-12-23 08:09:43 +0000719{
720 struct isis_lsp *lsp = dnode_get (node);
721 struct area_addr *area_addr;
hassof390d2c2004-09-10 20:48:21 +0000722 int i;
paul1eb8ef22005-04-07 07:30:20 +0000723 struct listnode *lnode, *lnnode;
jardineb5d44e2003-12-23 08:09:43 +0000724 struct is_neigh *is_neigh;
725 struct te_is_neigh *te_is_neigh;
726 struct ipv4_reachability *ipv4_reach;
727 struct in_addr *ipv4_addr;
728 struct te_ipv4_reachability *te_ipv4_reach;
729#ifdef HAVE_IPV6
730 struct ipv6_reachability *ipv6_reach;
731 struct in6_addr in6;
732#endif
733 u_char LSPid[255];
734 u_char hostname[255];
735 u_char buff[BUFSIZ];
jardineb5d44e2003-12-23 08:09:43 +0000736 u_char ipv4_reach_prefix[20];
737 u_char ipv4_reach_mask[20];
738 u_char ipv4_address[20];
739
740 lspid_print (lsp->lsp_header->lsp_id, LSPid, dynhost, 1);
hassof390d2c2004-09-10 20:48:21 +0000741 lsp_print (node, vty, dynhost);
jardineb5d44e2003-12-23 08:09:43 +0000742
743 /* for all area address */
hassof390d2c2004-09-10 20:48:21 +0000744 if (lsp->tlv_data.area_addrs)
paul1eb8ef22005-04-07 07:30:20 +0000745 for (ALL_LIST_ELEMENTS (lsp->tlv_data.area_addrs, lnode,
746 lnnode, area_addr))
hassof390d2c2004-09-10 20:48:21 +0000747 {
hasso1cd80842004-10-07 20:07:40 +0000748 vty_out (vty, " Area Address: %s%s",
hassof390d2c2004-09-10 20:48:21 +0000749 isonet_print (area_addr->area_addr, area_addr->addr_len),
750 VTY_NEWLINE);
751 }
paul1eb8ef22005-04-07 07:30:20 +0000752
jardineb5d44e2003-12-23 08:09:43 +0000753 /* for the nlpid tlv */
hassof390d2c2004-09-10 20:48:21 +0000754 if (lsp->tlv_data.nlpids)
755 {
756 for (i = 0; i < lsp->tlv_data.nlpids->count; i++)
757 {
758 switch (lsp->tlv_data.nlpids->nlpids[i])
759 {
760 case NLPID_IP:
761 case NLPID_IPV6:
hasso1cd80842004-10-07 20:07:40 +0000762 vty_out (vty, " NLPID: 0x%X%s",
hassof390d2c2004-09-10 20:48:21 +0000763 lsp->tlv_data.nlpids->nlpids[i], VTY_NEWLINE);
764 break;
765 default:
hasso1cd80842004-10-07 20:07:40 +0000766 vty_out (vty, " NLPID: %s%s", "unknown", VTY_NEWLINE);
hassof390d2c2004-09-10 20:48:21 +0000767 break;
768 }
769 }
770 }
jardineb5d44e2003-12-23 08:09:43 +0000771
772 /* for the hostname tlv */
hassof390d2c2004-09-10 20:48:21 +0000773 if (lsp->tlv_data.hostname)
774 {
775 bzero (hostname, sizeof (hostname));
776 memcpy (hostname, lsp->tlv_data.hostname->name,
777 lsp->tlv_data.hostname->namelen);
778 vty_out (vty, " Hostname: %s%s", hostname, VTY_NEWLINE);
jardineb5d44e2003-12-23 08:09:43 +0000779 }
hassof390d2c2004-09-10 20:48:21 +0000780
781 if (lsp->tlv_data.ipv4_addrs)
paul1eb8ef22005-04-07 07:30:20 +0000782 for (ALL_LIST_ELEMENTS (lsp->tlv_data.ipv4_addrs, lnode,
783 lnnode, ipv4_addr))
hassof390d2c2004-09-10 20:48:21 +0000784 {
785 memcpy (ipv4_address, inet_ntoa (*ipv4_addr), sizeof (ipv4_address));
786 vty_out (vty, " IP: %s%s", ipv4_address, VTY_NEWLINE);
787 }
hassof390d2c2004-09-10 20:48:21 +0000788
hasso1cd80842004-10-07 20:07:40 +0000789 /* TE router id */
790 if (lsp->tlv_data.router_id)
791 {
792 memcpy (ipv4_address, inet_ntoa (lsp->tlv_data.router_id->id),
793 sizeof (ipv4_address));
794 vty_out (vty, " Router ID: %s%s", ipv4_address, VTY_NEWLINE);
795 }
796
797 /* for the IS neighbor tlv */
798 if (lsp->tlv_data.is_neighs)
paul1eb8ef22005-04-07 07:30:20 +0000799 for (ALL_LIST_ELEMENTS (lsp->tlv_data.is_neighs, lnode, lnnode, is_neigh))
hasso1cd80842004-10-07 20:07:40 +0000800 {
801 lspid_print (is_neigh->neigh_id, LSPid, dynhost, 0);
hasso96e30382005-09-19 06:35:47 +0000802 vty_out (vty, " Metric: %-10d IS %s%s",
hasso1cd80842004-10-07 20:07:40 +0000803 is_neigh->metrics.metric_default, LSPid, VTY_NEWLINE);
804 }
hasso1cd80842004-10-07 20:07:40 +0000805
jardineb5d44e2003-12-23 08:09:43 +0000806 /* for the internal reachable tlv */
807 if (lsp->tlv_data.ipv4_int_reachs)
paul1eb8ef22005-04-07 07:30:20 +0000808 for (ALL_LIST_ELEMENTS (lsp->tlv_data.ipv4_int_reachs, lnode,
809 lnnode, ipv4_reach))
hassof390d2c2004-09-10 20:48:21 +0000810 {
811 memcpy (ipv4_reach_prefix, inet_ntoa (ipv4_reach->prefix),
812 sizeof (ipv4_reach_prefix));
813 memcpy (ipv4_reach_mask, inet_ntoa (ipv4_reach->mask),
814 sizeof (ipv4_reach_mask));
hasso96e30382005-09-19 06:35:47 +0000815 vty_out (vty, " Metric: %-10d IP-Internal %s %s%s",
hassof390d2c2004-09-10 20:48:21 +0000816 ipv4_reach->metrics.metric_default, ipv4_reach_prefix,
817 ipv4_reach_mask, VTY_NEWLINE);
818 }
hasso2097cd82003-12-23 11:51:08 +0000819
820 /* for the external reachable tlv */
821 if (lsp->tlv_data.ipv4_ext_reachs)
paul1eb8ef22005-04-07 07:30:20 +0000822 for (ALL_LIST_ELEMENTS (lsp->tlv_data.ipv4_ext_reachs, lnode,
823 lnnode, ipv4_reach))
hassof390d2c2004-09-10 20:48:21 +0000824 {
825 memcpy (ipv4_reach_prefix, inet_ntoa (ipv4_reach->prefix),
826 sizeof (ipv4_reach_prefix));
827 memcpy (ipv4_reach_mask, inet_ntoa (ipv4_reach->mask),
828 sizeof (ipv4_reach_mask));
hasso96e30382005-09-19 06:35:47 +0000829 vty_out (vty, " Metric: %-10d IP-External %s %s%s",
hassof390d2c2004-09-10 20:48:21 +0000830 ipv4_reach->metrics.metric_default, ipv4_reach_prefix,
831 ipv4_reach_mask, VTY_NEWLINE);
832 }
paul1eb8ef22005-04-07 07:30:20 +0000833
hasso2097cd82003-12-23 11:51:08 +0000834 /* IPv6 tlv */
835#ifdef HAVE_IPV6
836 if (lsp->tlv_data.ipv6_reachs)
paul1eb8ef22005-04-07 07:30:20 +0000837 for (ALL_LIST_ELEMENTS (lsp->tlv_data.ipv6_reachs, lnode,
838 lnnode, ipv6_reach))
hassof390d2c2004-09-10 20:48:21 +0000839 {
840 memset (&in6, 0, sizeof (in6));
841 memcpy (in6.s6_addr, ipv6_reach->prefix,
842 PSIZE (ipv6_reach->prefix_len));
hassof7c43dc2004-09-26 16:24:14 +0000843 inet_ntop (AF_INET6, &in6, (char *)buff, BUFSIZ);
hasso2097cd82003-12-23 11:51:08 +0000844 if ((ipv6_reach->control_info &&
hassof390d2c2004-09-10 20:48:21 +0000845 CTRL_INFO_DISTRIBUTION) == DISTRIBUTION_INTERNAL)
hasso96e30382005-09-19 06:35:47 +0000846 vty_out (vty, " Metric: %-10d IPv6-Internal %s/%d%s",
hassof390d2c2004-09-10 20:48:21 +0000847 ntohl (ipv6_reach->metric),
848 buff, ipv6_reach->prefix_len, VTY_NEWLINE);
hasso2097cd82003-12-23 11:51:08 +0000849 else
hasso96e30382005-09-19 06:35:47 +0000850 vty_out (vty, " Metric: %-10d IPv6-External %s/%d%s",
hassof390d2c2004-09-10 20:48:21 +0000851 ntohl (ipv6_reach->metric),
852 buff, ipv6_reach->prefix_len, VTY_NEWLINE);
hasso2097cd82003-12-23 11:51:08 +0000853 }
854#endif
paul1eb8ef22005-04-07 07:30:20 +0000855
hasso1cd80842004-10-07 20:07:40 +0000856 /* TE IS neighbor tlv */
jardineb5d44e2003-12-23 08:09:43 +0000857 if (lsp->tlv_data.te_is_neighs)
paul1eb8ef22005-04-07 07:30:20 +0000858 for (ALL_LIST_ELEMENTS (lsp->tlv_data.te_is_neighs, lnode,
859 lnnode, te_is_neigh))
hassof390d2c2004-09-10 20:48:21 +0000860 {
hasso96e30382005-09-19 06:35:47 +0000861 uint32_t metric;
862 memcpy (&metric, te_is_neigh->te_metric, 3);
hassof390d2c2004-09-10 20:48:21 +0000863 lspid_print (te_is_neigh->neigh_id, LSPid, dynhost, 0);
hasso96e30382005-09-19 06:35:47 +0000864 vty_out (vty, " Metric: %-10d IS-Extended %s%s",
865 ntohl (metric << 8), LSPid, VTY_NEWLINE);
hassof390d2c2004-09-10 20:48:21 +0000866 }
jardineb5d44e2003-12-23 08:09:43 +0000867
hasso1cd80842004-10-07 20:07:40 +0000868 /* TE IPv4 tlv */
jardineb5d44e2003-12-23 08:09:43 +0000869 if (lsp->tlv_data.te_ipv4_reachs)
paul1eb8ef22005-04-07 07:30:20 +0000870 for (ALL_LIST_ELEMENTS (lsp->tlv_data.te_ipv4_reachs, lnode,
871 lnnode, te_ipv4_reach))
hassof390d2c2004-09-10 20:48:21 +0000872 {
hasso1cd80842004-10-07 20:07:40 +0000873 /* FIXME: There should be better way to output this stuff. */
hasso96e30382005-09-19 06:35:47 +0000874 vty_out (vty, " Metric: %-10d IP-Extended %s/%d%s",
hasso1cd80842004-10-07 20:07:40 +0000875 ntohl (te_ipv4_reach->te_metric),
hassof390d2c2004-09-10 20:48:21 +0000876 inet_ntoa (newprefix2inaddr (&te_ipv4_reach->prefix_start,
877 te_ipv4_reach->control)),
hasso1cd80842004-10-07 20:07:40 +0000878 te_ipv4_reach->control & 0x3F, VTY_NEWLINE);
hassof390d2c2004-09-10 20:48:21 +0000879 }
jardineb5d44e2003-12-23 08:09:43 +0000880
hassof390d2c2004-09-10 20:48:21 +0000881 return;
jardineb5d44e2003-12-23 08:09:43 +0000882}
883
884/* print all the lsps info in the local lspdb */
hassof390d2c2004-09-10 20:48:21 +0000885int
886lsp_print_all (struct vty *vty, dict_t * lspdb, char detail, char dynhost)
jardineb5d44e2003-12-23 08:09:43 +0000887{
888
hassof390d2c2004-09-10 20:48:21 +0000889 dnode_t *node = dict_first (lspdb), *next;
jardineb5d44e2003-12-23 08:09:43 +0000890 int lsp_count = 0;
891
892 /* print the title, for both modes */
893 vty_out (vty, "LSP ID LSP Seq Num LSP Checksum "
hassof390d2c2004-09-10 20:48:21 +0000894 "LSP Holdtime ATT/P/OL%s", VTY_NEWLINE);
895
896 if (detail == ISIS_UI_LEVEL_BRIEF)
897 {
898 while (node != NULL)
899 {
900 /* I think it is unnecessary, so I comment it out */
901 /* dict_contains (lspdb, node); */
902 next = dict_next (lspdb, node);
903 lsp_print (node, vty, dynhost);
904 node = next;
905 lsp_count++;
906 }
jardineb5d44e2003-12-23 08:09:43 +0000907 }
hassof390d2c2004-09-10 20:48:21 +0000908 else if (detail == ISIS_UI_LEVEL_DETAIL)
909 {
910 while (node != NULL)
911 {
912 next = dict_next (lspdb, node);
913 lsp_print_detail (node, vty, dynhost);
914 node = next;
915 lsp_count++;
916 }
jardineb5d44e2003-12-23 08:09:43 +0000917 }
jardineb5d44e2003-12-23 08:09:43 +0000918
919 return lsp_count;
920}
921
jardineb5d44e2003-12-23 08:09:43 +0000922#define FRAG_THOLD(S,T) \
923((STREAM_SIZE(S)*T)/100)
924
925/* stream*, area->lsp_frag_threshold, increment */
926#define FRAG_NEEDED(S,T,I) \
927 (STREAM_SIZE(S)-STREAM_REMAIN(S)+(I) > FRAG_THOLD(S,T))
928
hassoaa4376e2005-09-26 17:39:48 +0000929/* FIXME: It shouldn't be necessary to pass tlvsize here, TLVs can have
930 * variable length (TE TLVs, sub TLVs). */
hasso92365882005-01-18 13:53:33 +0000931static void
jardineb5d44e2003-12-23 08:09:43 +0000932lsp_tlv_fit (struct isis_lsp *lsp, struct list **from, struct list **to,
hassof390d2c2004-09-10 20:48:21 +0000933 int tlvsize, int frag_thold,
934 int tlv_build_func (struct list *, struct stream *))
jardineb5d44e2003-12-23 08:09:43 +0000935{
936 int count, i;
hassof390d2c2004-09-10 20:48:21 +0000937
jardineb5d44e2003-12-23 08:09:43 +0000938 /* can we fit all ? */
hassof390d2c2004-09-10 20:48:21 +0000939 if (!FRAG_NEEDED (lsp->pdu, frag_thold, listcount (*from) * tlvsize + 2))
940 {
941 tlv_build_func (*from, lsp->pdu);
942 *to = *from;
943 *from = NULL;
jardineb5d44e2003-12-23 08:09:43 +0000944 }
hassof390d2c2004-09-10 20:48:21 +0000945 else if (!FRAG_NEEDED (lsp->pdu, frag_thold, tlvsize + 2))
946 {
947 /* fit all we can */
948 count = FRAG_THOLD (lsp->pdu, frag_thold) - 2 -
949 (STREAM_SIZE (lsp->pdu) - STREAM_REMAIN (lsp->pdu));
950 if (count)
951 count = count / tlvsize;
952 for (i = 0; i < count; i++)
953 {
paul1eb8ef22005-04-07 07:30:20 +0000954 listnode_add (*to, listgetdata (listhead (*from)));
955 listnode_delete (*from, listgetdata (listhead (*from)));
hassof390d2c2004-09-10 20:48:21 +0000956 }
957 tlv_build_func (*to, lsp->pdu);
958 }
paul9985f832005-02-09 15:51:56 +0000959 lsp->lsp_header->pdu_len = htons (stream_get_endp (lsp->pdu));
jardineb5d44e2003-12-23 08:09:43 +0000960 return;
961}
962
hasso92365882005-01-18 13:53:33 +0000963static struct isis_lsp *
hassof390d2c2004-09-10 20:48:21 +0000964lsp_next_frag (u_char frag_num, struct isis_lsp *lsp0, struct isis_area *area,
965 int level)
jardineb5d44e2003-12-23 08:09:43 +0000966{
967 struct isis_lsp *lsp;
hassof390d2c2004-09-10 20:48:21 +0000968 u_char frag_id[ISIS_SYS_ID_LEN + 2];
969
jardineb5d44e2003-12-23 08:09:43 +0000970 memcpy (frag_id, lsp0->lsp_header->lsp_id, ISIS_SYS_ID_LEN + 1);
971 LSP_FRAGMENT (frag_id) = frag_num;
972 lsp = lsp_search (frag_id, area->lspdb[level - 1]);
hassof390d2c2004-09-10 20:48:21 +0000973 if (lsp)
974 {
975 /*
976 * Clear the TLVs, but inherit the authinfo
977 */
978 lsp_clear_data (lsp);
979 if (lsp0->tlv_data.auth_info.type)
980 {
981 memcpy (&lsp->tlv_data.auth_info, &lsp->tlv_data.auth_info,
982 sizeof (struct isis_passwd));
983 tlv_add_authinfo (lsp->tlv_data.auth_info.type,
984 lsp->tlv_data.auth_info.len,
985 lsp->tlv_data.auth_info.passwd, lsp->pdu);
986 }
987 return lsp;
jardineb5d44e2003-12-23 08:09:43 +0000988 }
jardineb5d44e2003-12-23 08:09:43 +0000989 lsp = lsp_new (frag_id, area->max_lsp_lifetime[level - 1], 0, area->is_type,
hassof390d2c2004-09-10 20:48:21 +0000990 0, level);
jardineb5d44e2003-12-23 08:09:43 +0000991 lsp->own_lsp = 1;
hassof390d2c2004-09-10 20:48:21 +0000992 lsp_insert (lsp, area->lspdb[level - 1]);
jardineb5d44e2003-12-23 08:09:43 +0000993 listnode_add (lsp0->lspu.frags, lsp);
994 lsp->lspu.zero_lsp = lsp0;
995 /*
996 * Copy the authinfo from zero LSP
997 */
hassof390d2c2004-09-10 20:48:21 +0000998 if (lsp0->tlv_data.auth_info.type)
999 {
1000 memcpy (&lsp->tlv_data.auth_info, &lsp->tlv_data.auth_info,
1001 sizeof (struct isis_passwd));
1002 tlv_add_authinfo (lsp->tlv_data.auth_info.type,
1003 lsp->tlv_data.auth_info.len,
1004 lsp->tlv_data.auth_info.passwd, lsp->pdu);
1005 }
jardineb5d44e2003-12-23 08:09:43 +00001006 return lsp;
1007}
1008
1009/*
1010 * Builds the LSP data part. This func creates a new frag whenever
1011 * area->lsp_frag_threshold is exceeded.
1012 */
hasso92365882005-01-18 13:53:33 +00001013static void
jardineb5d44e2003-12-23 08:09:43 +00001014lsp_build_nonpseudo (struct isis_lsp *lsp, struct isis_area *area)
1015{
1016 struct is_neigh *is_neigh;
hassoaa4376e2005-09-26 17:39:48 +00001017 struct te_is_neigh *te_is_neigh;
paul1eb8ef22005-04-07 07:30:20 +00001018 struct listnode *node, *nnode, *ipnode, *ipnnode;
jardineb5d44e2003-12-23 08:09:43 +00001019 int level = lsp->level;
1020 struct isis_circuit *circuit;
1021 struct prefix_ipv4 *ipv4;
1022 struct ipv4_reachability *ipreach;
hassoaa4376e2005-09-26 17:39:48 +00001023 struct te_ipv4_reachability *te_ipreach;
jardineb5d44e2003-12-23 08:09:43 +00001024 struct isis_adjacency *nei;
1025#ifdef HAVE_IPV6
hasso67851572004-09-21 14:17:04 +00001026 struct prefix_ipv6 *ipv6, *ip6prefix;
jardineb5d44e2003-12-23 08:09:43 +00001027 struct ipv6_reachability *ip6reach;
1028#endif /* HAVE_IPV6 */
1029 struct tlvs tlv_data;
1030 struct isis_lsp *lsp0 = lsp;
1031 struct isis_passwd *passwd;
hasso18a6dce2004-10-03 18:18:34 +00001032 struct in_addr *routerid;
jardineb5d44e2003-12-23 08:09:43 +00001033
1034 /*
1035 * First add the tlvs related to area
1036 */
hassof390d2c2004-09-10 20:48:21 +00001037
jardineb5d44e2003-12-23 08:09:43 +00001038 /* Area addresses */
1039 if (lsp->tlv_data.area_addrs == NULL)
1040 lsp->tlv_data.area_addrs = list_new ();
1041 list_add_list (lsp->tlv_data.area_addrs, area->area_addrs);
1042 /* Protocols Supported */
hassof390d2c2004-09-10 20:48:21 +00001043 if (area->ip_circuits > 0
jardineb5d44e2003-12-23 08:09:43 +00001044#ifdef HAVE_IPV6
1045 || area->ipv6_circuits > 0
1046#endif /* HAVE_IPV6 */
hassof390d2c2004-09-10 20:48:21 +00001047 )
jardineb5d44e2003-12-23 08:09:43 +00001048 {
hassoaac372f2005-09-01 17:52:33 +00001049 lsp->tlv_data.nlpids = XCALLOC (MTYPE_ISIS_TLV, sizeof (struct nlpids));
jardineb5d44e2003-12-23 08:09:43 +00001050 lsp->tlv_data.nlpids->count = 0;
hassof390d2c2004-09-10 20:48:21 +00001051 if (area->ip_circuits > 0)
1052 {
1053 lsp->tlv_data.nlpids->count++;
1054 lsp->tlv_data.nlpids->nlpids[0] = NLPID_IP;
1055 }
jardineb5d44e2003-12-23 08:09:43 +00001056#ifdef HAVE_IPV6
hassof390d2c2004-09-10 20:48:21 +00001057 if (area->ipv6_circuits > 0)
1058 {
1059 lsp->tlv_data.nlpids->count++;
1060 lsp->tlv_data.nlpids->nlpids[lsp->tlv_data.nlpids->count - 1] =
1061 NLPID_IPV6;
1062 }
jardineb5d44e2003-12-23 08:09:43 +00001063#endif /* HAVE_IPV6 */
1064 }
1065 /* Dynamic Hostname */
hassof390d2c2004-09-10 20:48:21 +00001066 if (area->dynhostname)
1067 {
1068 lsp->tlv_data.hostname = XMALLOC (MTYPE_ISIS_TLV,
1069 sizeof (struct hostname));
jardin9e867fe2003-12-23 08:56:18 +00001070
hassof390d2c2004-09-10 20:48:21 +00001071 memcpy (lsp->tlv_data.hostname->name, unix_hostname (),
1072 strlen (unix_hostname ()));
1073 lsp->tlv_data.hostname->namelen = strlen (unix_hostname ());
1074 }
jardineb5d44e2003-12-23 08:09:43 +00001075
1076 /*
1077 * Building the zero lsp
1078 */
hassoaac372f2005-09-01 17:52:33 +00001079
1080 /* Reset stream endp. Stream is always there and on every LSP refresh only
1081 * TLV part of it is overwritten. So we must seek past header we will not
1082 * touch. */
hassoc89c05d2005-09-04 21:36:36 +00001083 stream_reset (lsp->pdu);
hassoaac372f2005-09-01 17:52:33 +00001084 stream_forward_endp (lsp->pdu, ISIS_FIXED_HDR_LEN + ISIS_LSP_HDR_LEN);
1085
jardineb5d44e2003-12-23 08:09:43 +00001086 /*
1087 * Add the authentication info if its present
1088 */
hassof390d2c2004-09-10 20:48:21 +00001089 (level == 1) ? (passwd = &area->area_passwd) :
1090 (passwd = &area->domain_passwd);
1091 if (passwd->type)
1092 {
1093 memcpy (&lsp->tlv_data.auth_info, passwd, sizeof (struct isis_passwd));
1094 tlv_add_authinfo (passwd->type, passwd->len, passwd->passwd, lsp->pdu);
1095 }
jardineb5d44e2003-12-23 08:09:43 +00001096 if (lsp->tlv_data.nlpids)
1097 tlv_add_nlpid (lsp->tlv_data.nlpids, lsp->pdu);
1098 if (lsp->tlv_data.hostname)
1099 tlv_add_dynamic_hostname (lsp->tlv_data.hostname, lsp->pdu);
hassof390d2c2004-09-10 20:48:21 +00001100 if (lsp->tlv_data.area_addrs && listcount (lsp->tlv_data.area_addrs) > 0)
jardineb5d44e2003-12-23 08:09:43 +00001101 tlv_add_area_addrs (lsp->tlv_data.area_addrs, lsp->pdu);
hassof390d2c2004-09-10 20:48:21 +00001102
hasso81ad8f62005-09-26 17:58:24 +00001103 /* IPv4 address and TE router ID TLVs. In case of the first one we don't
1104 * follow "C" vendor, but "J" vendor behavior - one IPv4 address is put into
1105 * LSP and this address is same as router id. */
hasso18a6dce2004-10-03 18:18:34 +00001106 if (router_id_zebra.s_addr != 0)
1107 {
hasso18a6dce2004-10-03 18:18:34 +00001108 if (lsp->tlv_data.ipv4_addrs == NULL)
hassobe7d65d2005-09-02 01:38:16 +00001109 {
1110 lsp->tlv_data.ipv4_addrs = list_new ();
1111 lsp->tlv_data.ipv4_addrs->del = free_tlv;
1112 }
hasso18a6dce2004-10-03 18:18:34 +00001113
1114 routerid = XMALLOC (MTYPE_ISIS_TLV, sizeof (struct in_addr));
1115 routerid->s_addr = router_id_zebra.s_addr;
hasso18a6dce2004-10-03 18:18:34 +00001116 listnode_add (lsp->tlv_data.ipv4_addrs, routerid);
hasso81ad8f62005-09-26 17:58:24 +00001117 tlv_add_in_addr (routerid, lsp->pdu, IPV4_ADDR);
hasso18a6dce2004-10-03 18:18:34 +00001118
hasso81ad8f62005-09-26 17:58:24 +00001119 /* Exactly same data is put into TE router ID TLV, but only if new style
1120 * TLV's are in use. */
1121 if (area->newmetric)
1122 {
1123 lsp->tlv_data.router_id = XMALLOC (MTYPE_ISIS_TLV,
1124 sizeof (struct in_addr));
1125 lsp->tlv_data.router_id->id.s_addr = router_id_zebra.s_addr;
1126 tlv_add_in_addr (&lsp->tlv_data.router_id->id, lsp->pdu, TE_ROUTER_ID);
1127 }
hasso18a6dce2004-10-03 18:18:34 +00001128 }
hassof1082d12005-09-19 04:23:34 +00001129
hasso81ad8f62005-09-26 17:58:24 +00001130 memset (&tlv_data, 0, sizeof (struct tlvs));
1131
hassof1082d12005-09-19 04:23:34 +00001132#ifdef TOPOLOGY_GENERATE
1133 /* If topology exists (and we create topology for level 1 only), create
1134 * (hardcoded) link to topology. */
1135 if (area->topology && level == 1)
1136 {
1137 if (tlv_data.is_neighs == NULL)
hassoaa4376e2005-09-26 17:39:48 +00001138 {
1139 tlv_data.is_neighs = list_new ();
1140 tlv_data.is_neighs->del = free_tlv;
1141 }
hassof1082d12005-09-19 04:23:34 +00001142 is_neigh = XMALLOC (MTYPE_ISIS_TLV, sizeof (struct is_neigh));
1143 memset (is_neigh, 0, sizeof (struct is_neigh));
1144
1145 memcpy (&is_neigh->neigh_id, area->topology_baseis, ISIS_SYS_ID_LEN);
1146 is_neigh->neigh_id[ISIS_SYS_ID_LEN - 1] = (1 & 0xFF);
1147 is_neigh->neigh_id[ISIS_SYS_ID_LEN - 2] = ((1 >> 8) & 0xFF);
1148 is_neigh->metrics.metric_default = 0x01;
1149 is_neigh->metrics.metric_delay = METRICS_UNSUPPORTED;
1150 is_neigh->metrics.metric_expense = METRICS_UNSUPPORTED;
1151 is_neigh->metrics.metric_error = METRICS_UNSUPPORTED;
1152 listnode_add (tlv_data.is_neighs, is_neigh);
1153 }
1154#endif /* TOPOLOGY_GENERATE */
1155
hasso18a6dce2004-10-03 18:18:34 +00001156 /*
jardineb5d44e2003-12-23 08:09:43 +00001157 * Then build lists of tlvs related to circuits
1158 */
paul1eb8ef22005-04-07 07:30:20 +00001159 for (ALL_LIST_ELEMENTS (area->circuit_list, node, nnode, circuit))
hassof390d2c2004-09-10 20:48:21 +00001160 {
hassof390d2c2004-09-10 20:48:21 +00001161 if (circuit->state != C_STATE_UP)
1162 continue;
jardineb5d44e2003-12-23 08:09:43 +00001163
hassof390d2c2004-09-10 20:48:21 +00001164 /*
1165 * Add IPv4 internal reachability of this circuit
1166 */
1167 if (circuit->ip_router && circuit->ip_addrs &&
1168 circuit->ip_addrs->count > 0)
1169 {
hassoaa4376e2005-09-26 17:39:48 +00001170 if (area->oldmetric)
hassof390d2c2004-09-10 20:48:21 +00001171 {
hassoaa4376e2005-09-26 17:39:48 +00001172 if (tlv_data.ipv4_int_reachs == NULL)
1173 {
1174 tlv_data.ipv4_int_reachs = list_new ();
1175 tlv_data.ipv4_int_reachs->del = free_tlv;
1176 }
1177 for (ALL_LIST_ELEMENTS (circuit->ip_addrs, ipnode, ipnnode, ipv4))
1178 {
1179 ipreach =
1180 XMALLOC (MTYPE_ISIS_TLV, sizeof (struct ipv4_reachability));
1181 ipreach->metrics = circuit->metrics[level - 1];
1182 masklen2ip (ipv4->prefixlen, &ipreach->mask);
1183 ipreach->prefix.s_addr = ((ipreach->mask.s_addr) &
1184 (ipv4->prefix.s_addr));
1185 listnode_add (tlv_data.ipv4_int_reachs, ipreach);
1186 }
hassobe7d65d2005-09-02 01:38:16 +00001187 tlv_data.ipv4_int_reachs->del = free_tlv;
hassof390d2c2004-09-10 20:48:21 +00001188 }
hassoaa4376e2005-09-26 17:39:48 +00001189 if (area->newmetric)
hassof390d2c2004-09-10 20:48:21 +00001190 {
hassoaa4376e2005-09-26 17:39:48 +00001191 if (tlv_data.te_ipv4_reachs == NULL)
1192 {
1193 tlv_data.te_ipv4_reachs = list_new ();
1194 tlv_data.te_ipv4_reachs->del = free_tlv;
1195 }
1196 for (ALL_LIST_ELEMENTS (circuit->ip_addrs, ipnode, ipnnode, ipv4))
1197 {
1198 /* FIXME All this assumes that we have no sub TLVs. */
1199 te_ipreach = XCALLOC (MTYPE_ISIS_TLV,
1200 sizeof (struct te_ipv4_reachability) +
1201 ((ipv4->prefixlen + 7)/8) - 1);
hasso309ddb12005-09-26 18:06:47 +00001202
1203 if (area->oldmetric)
1204 te_ipreach->te_metric = htonl (circuit->metrics[level - 1].metric_default);
1205 else
1206 te_ipreach->te_metric = htonl (circuit->te_metric[level - 1]);
1207
hassoaa4376e2005-09-26 17:39:48 +00001208 te_ipreach->control = (ipv4->prefixlen & 0x3F);
1209 memcpy (&te_ipreach->prefix_start, &ipv4->prefix.s_addr,
1210 (ipv4->prefixlen + 7)/8);
1211 listnode_add (tlv_data.te_ipv4_reachs, te_ipreach);
1212 }
hassof390d2c2004-09-10 20:48:21 +00001213 }
hassof390d2c2004-09-10 20:48:21 +00001214 }
jardineb5d44e2003-12-23 08:09:43 +00001215#ifdef HAVE_IPV6
hassof390d2c2004-09-10 20:48:21 +00001216 /*
1217 * Add IPv6 reachability of this circuit
1218 */
1219 if (circuit->ipv6_router && circuit->ipv6_non_link &&
1220 circuit->ipv6_non_link->count > 0)
1221 {
1222
1223 if (tlv_data.ipv6_reachs == NULL)
1224 {
1225 tlv_data.ipv6_reachs = list_new ();
hassobe7d65d2005-09-02 01:38:16 +00001226 tlv_data.ipv6_reachs->del = free_tlv;
hassof390d2c2004-09-10 20:48:21 +00001227 }
paul1eb8ef22005-04-07 07:30:20 +00001228 for (ALL_LIST_ELEMENTS (circuit->ipv6_non_link, ipnode, ipnnode,
1229 ipv6))
hassof390d2c2004-09-10 20:48:21 +00001230 {
hassof390d2c2004-09-10 20:48:21 +00001231 ip6reach =
hassoaac372f2005-09-01 17:52:33 +00001232 XCALLOC (MTYPE_ISIS_TLV, sizeof (struct ipv6_reachability));
hasso309ddb12005-09-26 18:06:47 +00001233
1234 if (area->oldmetric)
1235 ip6reach->metric =
1236 htonl (circuit->metrics[level - 1].metric_default);
1237 else
1238 ip6reach->metric = htonl (circuit->te_metric[level - 1]);
1239
hassof390d2c2004-09-10 20:48:21 +00001240 ip6reach->control_info = 0;
1241 ip6reach->prefix_len = ipv6->prefixlen;
hasso67851572004-09-21 14:17:04 +00001242 memcpy (&ip6prefix, &ipv6, sizeof(ip6prefix));
1243 apply_mask_ipv6 (ip6prefix);
1244 memcpy (ip6reach->prefix, ip6prefix->prefix.s6_addr,
1245 sizeof (ip6reach->prefix));
hassof390d2c2004-09-10 20:48:21 +00001246 listnode_add (tlv_data.ipv6_reachs, ip6reach);
1247 }
1248 }
1249#endif /* HAVE_IPV6 */
1250
1251 switch (circuit->circ_type)
1252 {
1253 case CIRCUIT_T_BROADCAST:
1254 if (level & circuit->circuit_is_type)
1255 {
hassoaa4376e2005-09-26 17:39:48 +00001256 if (area->oldmetric)
hassof390d2c2004-09-10 20:48:21 +00001257 {
hassoaa4376e2005-09-26 17:39:48 +00001258 if (tlv_data.is_neighs == NULL)
1259 {
1260 tlv_data.is_neighs = list_new ();
1261 tlv_data.is_neighs->del = free_tlv;
1262 }
1263 is_neigh = XCALLOC (MTYPE_ISIS_TLV, sizeof (struct is_neigh));
1264 if (level == 1)
1265 memcpy (is_neigh->neigh_id,
1266 circuit->u.bc.l1_desig_is, ISIS_SYS_ID_LEN + 1);
1267 else
1268 memcpy (is_neigh->neigh_id,
1269 circuit->u.bc.l2_desig_is, ISIS_SYS_ID_LEN + 1);
1270 is_neigh->metrics = circuit->metrics[level - 1];
1271 listnode_add (tlv_data.is_neighs, is_neigh);
hassobe7d65d2005-09-02 01:38:16 +00001272 tlv_data.is_neighs->del = free_tlv;
hassof390d2c2004-09-10 20:48:21 +00001273 }
hassoaa4376e2005-09-26 17:39:48 +00001274 if (area->newmetric)
1275 {
1276 uint32_t metric;
1277
1278 if (tlv_data.te_is_neighs == NULL)
1279 {
1280 tlv_data.te_is_neighs = list_new ();
1281 tlv_data.te_is_neighs->del = free_tlv;
1282 }
1283 te_is_neigh = XCALLOC (MTYPE_ISIS_TLV,
1284 sizeof (struct te_is_neigh));
1285 if (level == 1)
1286 memcpy (te_is_neigh->neigh_id,
1287 circuit->u.bc.l1_desig_is, ISIS_SYS_ID_LEN + 1);
1288 else
1289 memcpy (te_is_neigh->neigh_id,
1290 circuit->u.bc.l2_desig_is, ISIS_SYS_ID_LEN + 1);
hasso309ddb12005-09-26 18:06:47 +00001291 if (area->oldmetric)
1292 metric =
1293 ((htonl(circuit->metrics[level - 1].metric_default) >> 8)
1294 & 0xffffff);
1295 else
1296 metric = ((htonl(*circuit->te_metric) >> 8) & 0xffffff);
1297
hassoaa4376e2005-09-26 17:39:48 +00001298 memcpy (te_is_neigh->te_metric, &metric, 3);
1299 listnode_add (tlv_data.te_is_neighs, te_is_neigh);
1300 }
hassof390d2c2004-09-10 20:48:21 +00001301 }
1302 break;
1303 case CIRCUIT_T_P2P:
1304 nei = circuit->u.p2p.neighbor;
1305 if (nei && (level & nei->circuit_t))
1306 {
hassoaa4376e2005-09-26 17:39:48 +00001307 if (area->oldmetric)
hassof390d2c2004-09-10 20:48:21 +00001308 {
hassoaa4376e2005-09-26 17:39:48 +00001309 if (tlv_data.is_neighs == NULL)
1310 {
1311 tlv_data.is_neighs = list_new ();
1312 tlv_data.is_neighs->del = free_tlv;
1313 }
1314 is_neigh = XCALLOC (MTYPE_ISIS_TLV, sizeof (struct is_neigh));
1315 memcpy (is_neigh->neigh_id, nei->sysid, ISIS_SYS_ID_LEN);
1316 is_neigh->metrics = circuit->metrics[level - 1];
1317 listnode_add (tlv_data.is_neighs, is_neigh);
hassof390d2c2004-09-10 20:48:21 +00001318 }
hassoaa4376e2005-09-26 17:39:48 +00001319 if (area->newmetric)
1320 {
1321 uint32_t metric;
1322
1323 if (tlv_data.te_is_neighs == NULL)
1324 {
1325 tlv_data.te_is_neighs = list_new ();
1326 tlv_data.te_is_neighs->del = free_tlv;
1327 }
1328 te_is_neigh = XCALLOC (MTYPE_ISIS_TLV,
1329 sizeof (struct te_is_neigh));
1330 memcpy (te_is_neigh->neigh_id, nei->sysid, ISIS_SYS_ID_LEN);
1331 metric = ((htonl(*circuit->te_metric) >> 8) & 0xffffff);
1332 memcpy (te_is_neigh->te_metric, &metric, 3);
1333 listnode_add (tlv_data.te_is_neighs, te_is_neigh);
1334 }
hassof390d2c2004-09-10 20:48:21 +00001335 }
1336 break;
1337 case CIRCUIT_T_STATIC_IN:
1338 zlog_warn ("lsp_area_create: unsupported circuit type");
1339 break;
1340 case CIRCUIT_T_STATIC_OUT:
1341 zlog_warn ("lsp_area_create: unsupported circuit type");
1342 break;
1343 case CIRCUIT_T_DA:
1344 zlog_warn ("lsp_area_create: unsupported circuit type");
1345 break;
1346 default:
1347 zlog_warn ("lsp_area_create: unknown circuit type");
1348 }
1349 }
1350
1351 while (tlv_data.ipv4_int_reachs && listcount (tlv_data.ipv4_int_reachs))
1352 {
1353 if (lsp->tlv_data.ipv4_int_reachs == NULL)
1354 lsp->tlv_data.ipv4_int_reachs = list_new ();
1355 lsp_tlv_fit (lsp, &tlv_data.ipv4_int_reachs,
1356 &lsp->tlv_data.ipv4_int_reachs,
1357 IPV4_REACH_LEN, area->lsp_frag_threshold,
1358 tlv_add_ipv4_reachs);
1359 if (tlv_data.ipv4_int_reachs && listcount (tlv_data.ipv4_int_reachs))
1360 lsp = lsp_next_frag (LSP_FRAGMENT (lsp->lsp_header->lsp_id) + 1,
1361 lsp0, area, level);
1362 }
hassoaa4376e2005-09-26 17:39:48 +00001363 /* FIXME: We pass maximum te_ipv4_reachability length to the lsp_tlv_fit()
1364 * for now. lsp_tlv_fit() needs to be fixed to deal with variable length
1365 * TLVs (sub TLVs!). */
1366 while (tlv_data.te_ipv4_reachs && listcount (tlv_data.te_ipv4_reachs))
1367 {
1368 if (lsp->tlv_data.te_ipv4_reachs == NULL)
1369 lsp->tlv_data.te_ipv4_reachs = list_new ();
1370 lsp_tlv_fit (lsp, &tlv_data.te_ipv4_reachs,
1371 &lsp->tlv_data.te_ipv4_reachs,
1372 9, area->lsp_frag_threshold, tlv_add_te_ipv4_reachs);
1373 if (tlv_data.te_ipv4_reachs && listcount (tlv_data.te_ipv4_reachs))
1374 lsp = lsp_next_frag (LSP_FRAGMENT (lsp->lsp_header->lsp_id) + 1,
1375 lsp0, area, level);
1376 }
hassof390d2c2004-09-10 20:48:21 +00001377
1378#ifdef HAVE_IPV6
1379 while (tlv_data.ipv6_reachs && listcount (tlv_data.ipv6_reachs))
1380 {
1381 if (lsp->tlv_data.ipv6_reachs == NULL)
1382 lsp->tlv_data.ipv6_reachs = list_new ();
1383 lsp_tlv_fit (lsp, &tlv_data.ipv6_reachs,
1384 &lsp->tlv_data.ipv6_reachs,
1385 IPV6_REACH_LEN, area->lsp_frag_threshold,
1386 tlv_add_ipv6_reachs);
1387 if (tlv_data.ipv6_reachs && listcount (tlv_data.ipv6_reachs))
1388 lsp = lsp_next_frag (LSP_FRAGMENT (lsp->lsp_header->lsp_id) + 1,
1389 lsp0, area, level);
jardineb5d44e2003-12-23 08:09:43 +00001390 }
1391#endif /* HAVE_IPV6 */
hassof390d2c2004-09-10 20:48:21 +00001392
1393 while (tlv_data.is_neighs && listcount (tlv_data.is_neighs))
1394 {
1395 if (lsp->tlv_data.is_neighs == NULL)
1396 lsp->tlv_data.is_neighs = list_new ();
1397 lsp_tlv_fit (lsp, &tlv_data.is_neighs,
1398 &lsp->tlv_data.is_neighs,
1399 IS_NEIGHBOURS_LEN, area->lsp_frag_threshold,
1400 tlv_add_is_neighs);
1401 if (tlv_data.is_neighs && listcount (tlv_data.is_neighs))
1402 lsp = lsp_next_frag (LSP_FRAGMENT (lsp->lsp_header->lsp_id) + 1,
1403 lsp0, area, level);
jardineb5d44e2003-12-23 08:09:43 +00001404 }
jardineb5d44e2003-12-23 08:09:43 +00001405
hassoaa4376e2005-09-26 17:39:48 +00001406 while (tlv_data.te_is_neighs && listcount (tlv_data.te_is_neighs))
1407 {
1408 if (lsp->tlv_data.te_is_neighs == NULL)
1409 lsp->tlv_data.te_is_neighs = list_new ();
1410 lsp_tlv_fit (lsp, &tlv_data.te_is_neighs, &lsp->tlv_data.te_is_neighs,
1411 IS_NEIGHBOURS_LEN, area->lsp_frag_threshold,
1412 tlv_add_te_is_neighs);
1413 if (tlv_data.te_is_neighs && listcount (tlv_data.te_is_neighs))
1414 lsp = lsp_next_frag (LSP_FRAGMENT (lsp->lsp_header->lsp_id) + 1,
1415 lsp0, area, level);
1416 }
1417
1418 free_tlvs (&tlv_data);
jardineb5d44e2003-12-23 08:09:43 +00001419 return;
1420}
jardineb5d44e2003-12-23 08:09:43 +00001421
1422/*
1423 * 7.3.7 Generation on non-pseudonode LSPs
1424 */
hasso92365882005-01-18 13:53:33 +00001425static int
hassof390d2c2004-09-10 20:48:21 +00001426lsp_generate_non_pseudo (struct isis_area *area, int level)
1427{
jardineb5d44e2003-12-23 08:09:43 +00001428 struct isis_lsp *oldlsp, *newlsp;
1429 u_int32_t seq_num = 0;
1430 u_char lspid[ISIS_SYS_ID_LEN + 2];
1431
1432 memset (&lspid, 0, ISIS_SYS_ID_LEN + 2);
1433 memcpy (&lspid, isis->sysid, ISIS_SYS_ID_LEN);
1434
1435 /* only builds the lsp if the area shares the level */
hassof390d2c2004-09-10 20:48:21 +00001436 if ((area->is_type & level) == level)
1437 {
1438 oldlsp = lsp_search (lspid, area->lspdb[level - 1]);
1439 if (oldlsp)
1440 {
1441 seq_num = ntohl (oldlsp->lsp_header->seq_num);
1442 lsp_search_and_destroy (oldlsp->lsp_header->lsp_id,
1443 area->lspdb[level - 1]);
1444 /* FIXME: we should actually initiate a purge */
1445 }
1446 newlsp = lsp_new (lspid, area->max_lsp_lifetime[level - 1], seq_num,
1447 area->is_type, 0, level);
1448 newlsp->own_lsp = 1;
jardineb5d44e2003-12-23 08:09:43 +00001449
hassof390d2c2004-09-10 20:48:21 +00001450 lsp_insert (newlsp, area->lspdb[level - 1]);
1451 /* build_lsp_data (newlsp, area); */
1452 lsp_build_nonpseudo (newlsp, area);
1453 /* time to calculate our checksum */
1454 lsp_seqnum_update (newlsp);
1455 }
jardineb5d44e2003-12-23 08:09:43 +00001456
1457 /* DEBUG_ADJ_PACKETS */
hassof390d2c2004-09-10 20:48:21 +00001458 if (isis->debugs & DEBUG_ADJ_PACKETS)
1459 {
1460 /* FIXME: is this place right? fix missing info */
hasso529d65b2004-12-24 00:14:50 +00001461 zlog_debug ("ISIS-Upd (%s): Building L%d LSP", area->area_tag, level);
hassof390d2c2004-09-10 20:48:21 +00001462 }
jardineb5d44e2003-12-23 08:09:43 +00001463
1464 return ISIS_OK;
1465}
1466
1467/*
1468 * 7.3.9 Generation of level 1 LSPs (non-pseudonode)
1469 */
1470int
1471lsp_l1_generate (struct isis_area *area)
1472{
hassof390d2c2004-09-10 20:48:21 +00001473 THREAD_TIMER_ON (master, area->t_lsp_refresh[0], lsp_refresh_l1, area,
1474 MAX_LSP_GEN_INTERVAL);
jardineb5d44e2003-12-23 08:09:43 +00001475
1476 return lsp_generate_non_pseudo (area, 1);
1477}
1478
jardineb5d44e2003-12-23 08:09:43 +00001479/*
1480 * 7.3.9 Generation of level 2 LSPs (non-pseudonode)
1481 */
1482int
1483lsp_l2_generate (struct isis_area *area)
1484{
hassof390d2c2004-09-10 20:48:21 +00001485 THREAD_TIMER_ON (master, area->t_lsp_refresh[1], lsp_refresh_l2, area,
1486 MAX_LSP_GEN_INTERVAL);
jardineb5d44e2003-12-23 08:09:43 +00001487
1488 return lsp_generate_non_pseudo (area, 2);
1489}
1490
hasso92365882005-01-18 13:53:33 +00001491static int
jardineb5d44e2003-12-23 08:09:43 +00001492lsp_non_pseudo_regenerate (struct isis_area *area, int level)
1493{
1494 dict_t *lspdb = area->lspdb[level - 1];
1495 struct isis_lsp *lsp, *frag;
1496 struct listnode *node;
1497 u_char lspid[ISIS_SYS_ID_LEN + 2];
1498
1499 memset (lspid, 0, ISIS_SYS_ID_LEN + 2);
1500 memcpy (lspid, isis->sysid, ISIS_SYS_ID_LEN);
hassof390d2c2004-09-10 20:48:21 +00001501
jardineb5d44e2003-12-23 08:09:43 +00001502 lsp = lsp_search (lspid, lspdb);
jardineb5d44e2003-12-23 08:09:43 +00001503
hassof390d2c2004-09-10 20:48:21 +00001504 if (!lsp)
1505 {
1506 zlog_err
1507 ("ISIS-Upd (%s): lsp_non_pseudo_regenerate(): no L%d LSP found!",
1508 area->area_tag, level);
jardineb5d44e2003-12-23 08:09:43 +00001509
hassof390d2c2004-09-10 20:48:21 +00001510 return ISIS_ERROR;
1511 }
1512
1513 lsp_clear_data (lsp);
jardineb5d44e2003-12-23 08:09:43 +00001514 lsp_build_nonpseudo (lsp, area);
hassof390d2c2004-09-10 20:48:21 +00001515 lsp->lsp_header->rem_lifetime = htons (isis_jitter
1516 (area->max_lsp_lifetime[level - 1],
1517 MAX_AGE_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00001518 lsp_seqnum_update (lsp);
hassof390d2c2004-09-10 20:48:21 +00001519
1520 if (isis->debugs & DEBUG_UPDATE_PACKETS)
1521 {
hasso529d65b2004-12-24 00:14:50 +00001522 zlog_debug ("ISIS-Upd (%s): refreshing our L%d LSP %s, "
1523 "seq 0x%08x, cksum 0x%04x lifetime %us",
1524 area->area_tag,
1525 level,
1526 rawlspid_print (lsp->lsp_header->lsp_id),
1527 ntohl (lsp->lsp_header->seq_num),
1528 ntohs (lsp->lsp_header->checksum),
1529 ntohs (lsp->lsp_header->rem_lifetime));
hassof390d2c2004-09-10 20:48:21 +00001530 }
jardineb5d44e2003-12-23 08:09:43 +00001531
1532 lsp->last_generated = time (NULL);
1533 area->lsp_regenerate_pending[level - 1] = 0;
1534 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
paul1eb8ef22005-04-07 07:30:20 +00001535 for (ALL_LIST_ELEMENTS_RO (lsp->lspu.frags, node, frag))
hassof390d2c2004-09-10 20:48:21 +00001536 {
hassof390d2c2004-09-10 20:48:21 +00001537 frag->lsp_header->rem_lifetime = htons (isis_jitter
1538 (area->
1539 max_lsp_lifetime[level - 1],
1540 MAX_AGE_JITTER));
1541 ISIS_FLAGS_SET_ALL (frag->SRMflags);
1542 }
jardineb5d44e2003-12-23 08:09:43 +00001543
1544 if (area->ip_circuits)
1545 isis_spf_schedule (area, level);
1546#ifdef HAVE_IPV6
1547 if (area->ipv6_circuits)
1548 isis_spf_schedule6 (area, level);
1549#endif
1550 return ISIS_OK;
1551}
1552
jardineb5d44e2003-12-23 08:09:43 +00001553/*
1554 * Done at least every MAX_LSP_GEN_INTERVAL. Search own LSPs, update holding
1555 * time and set SRM
1556 */
hassof390d2c2004-09-10 20:48:21 +00001557int
jardineb5d44e2003-12-23 08:09:43 +00001558lsp_refresh_l1 (struct thread *thread)
1559{
1560 struct isis_area *area;
1561 unsigned long ref_time;
1562
1563 area = THREAD_ARG (thread);
1564 assert (area);
hassof390d2c2004-09-10 20:48:21 +00001565
jardineb5d44e2003-12-23 08:09:43 +00001566 area->t_lsp_refresh[0] = NULL;
hassof390d2c2004-09-10 20:48:21 +00001567 if (area->is_type & IS_LEVEL_1)
jardineb5d44e2003-12-23 08:09:43 +00001568 lsp_non_pseudo_regenerate (area, 1);
hassof390d2c2004-09-10 20:48:21 +00001569
1570 ref_time = area->lsp_refresh[0] > MAX_LSP_GEN_INTERVAL ?
jardineb5d44e2003-12-23 08:09:43 +00001571 MAX_LSP_GEN_INTERVAL : area->lsp_refresh[0];
1572
hassof390d2c2004-09-10 20:48:21 +00001573 THREAD_TIMER_ON (master, area->t_lsp_refresh[0], lsp_refresh_l1, area,
1574 isis_jitter (ref_time, MAX_AGE_JITTER));
hassod70f99e2004-02-11 20:26:31 +00001575
jardineb5d44e2003-12-23 08:09:43 +00001576 return ISIS_OK;
1577}
1578
hassof390d2c2004-09-10 20:48:21 +00001579int
jardineb5d44e2003-12-23 08:09:43 +00001580lsp_refresh_l2 (struct thread *thread)
1581{
1582 struct isis_area *area;
1583 unsigned long ref_time;
1584
1585 area = THREAD_ARG (thread);
1586 assert (area);
hassof390d2c2004-09-10 20:48:21 +00001587
jardineb5d44e2003-12-23 08:09:43 +00001588 area->t_lsp_refresh[1] = NULL;
hassof390d2c2004-09-10 20:48:21 +00001589 if (area->is_type & IS_LEVEL_2)
jardineb5d44e2003-12-23 08:09:43 +00001590 lsp_non_pseudo_regenerate (area, 2);
1591
hassof390d2c2004-09-10 20:48:21 +00001592 ref_time = area->lsp_refresh[1] > MAX_LSP_GEN_INTERVAL ?
jardineb5d44e2003-12-23 08:09:43 +00001593 MAX_LSP_GEN_INTERVAL : area->lsp_refresh[1];
1594
hassof390d2c2004-09-10 20:48:21 +00001595 THREAD_TIMER_ON (master, area->t_lsp_refresh[1], lsp_refresh_l2, area,
1596 isis_jitter (ref_time, MAX_AGE_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00001597
jardineb5d44e2003-12-23 08:09:43 +00001598 return ISIS_OK;
1599}
1600
jardineb5d44e2003-12-23 08:09:43 +00001601/*
1602 * Something has changed -> regenerate LSP
1603 */
1604
hasso92365882005-01-18 13:53:33 +00001605static int
jardineb5d44e2003-12-23 08:09:43 +00001606lsp_l1_regenerate (struct thread *thread)
1607{
1608 struct isis_area *area;
1609
1610 area = THREAD_ARG (thread);
1611 area->lsp_regenerate_pending[0] = 0;
1612
1613 return lsp_non_pseudo_regenerate (area, 1);
1614}
1615
hasso92365882005-01-18 13:53:33 +00001616static int
jardineb5d44e2003-12-23 08:09:43 +00001617lsp_l2_regenerate (struct thread *thread)
1618{
1619 struct isis_area *area;
1620
1621 area = THREAD_ARG (thread);
1622 area->lsp_regenerate_pending[1] = 0;
hassof390d2c2004-09-10 20:48:21 +00001623
jardineb5d44e2003-12-23 08:09:43 +00001624 return lsp_non_pseudo_regenerate (area, 2);
1625}
1626
hassof390d2c2004-09-10 20:48:21 +00001627int
jardineb5d44e2003-12-23 08:09:43 +00001628lsp_regenerate_schedule (struct isis_area *area)
1629{
1630 struct isis_lsp *lsp;
1631 u_char id[ISIS_SYS_ID_LEN + 2];
1632 time_t now, diff;
hassof390d2c2004-09-10 20:48:21 +00001633 memcpy (id, isis->sysid, ISIS_SYS_ID_LEN);
1634 LSP_PSEUDO_ID (id) = LSP_FRAGMENT (id) = 0;
jardineb5d44e2003-12-23 08:09:43 +00001635 now = time (NULL);
1636 /*
1637 * First level 1
1638 */
hassof390d2c2004-09-10 20:48:21 +00001639 if (area->is_type & IS_LEVEL_1)
1640 {
1641 lsp = lsp_search (id, area->lspdb[0]);
1642 if (!lsp || area->lsp_regenerate_pending[0])
1643 goto L2;
1644 /*
1645 * Throttle avoidance
1646 */
1647 diff = now - lsp->last_generated;
1648 if (diff < MIN_LSP_GEN_INTERVAL)
1649 {
1650 area->lsp_regenerate_pending[0] = 1;
1651 thread_add_timer (master, lsp_l1_regenerate, area,
1652 MIN_LSP_GEN_INTERVAL - diff);
hasso12a5cae2004-09-19 19:39:26 +00001653 goto L2;
hassof390d2c2004-09-10 20:48:21 +00001654 }
1655 else
1656 lsp_non_pseudo_regenerate (area, 1);
1657 }
jardineb5d44e2003-12-23 08:09:43 +00001658 /*
1659 * then 2
1660 */
hassof390d2c2004-09-10 20:48:21 +00001661L2:
1662 if (area->is_type & IS_LEVEL_2)
1663 {
1664 lsp = lsp_search (id, area->lspdb[1]);
1665 if (!lsp || area->lsp_regenerate_pending[1])
1666 return ISIS_OK;
1667 /*
1668 * Throttle avoidance
1669 */
1670 diff = now - lsp->last_generated;
1671 if (diff < MIN_LSP_GEN_INTERVAL)
1672 {
1673 area->lsp_regenerate_pending[1] = 1;
1674 thread_add_timer (master, lsp_l2_regenerate, area,
1675 MIN_LSP_GEN_INTERVAL - diff);
1676 return ISIS_OK;
1677 }
1678 else
1679 lsp_non_pseudo_regenerate (area, 2);
1680 }
1681
1682 return ISIS_OK;
jardineb5d44e2003-12-23 08:09:43 +00001683}
1684
1685/*
1686 * Funcs for pseudonode LSPs
1687 */
1688
1689/*
1690 * 7.3.8 and 7.3.10 Generation of level 1 and 2 pseudonode LSPs
1691 */
hasso92365882005-01-18 13:53:33 +00001692static void
hassof390d2c2004-09-10 20:48:21 +00001693lsp_build_pseudo (struct isis_lsp *lsp, struct isis_circuit *circuit,
1694 int level)
jardineb5d44e2003-12-23 08:09:43 +00001695{
1696 struct isis_adjacency *adj;
1697 struct is_neigh *is_neigh;
hassoaa4376e2005-09-26 17:39:48 +00001698 struct te_is_neigh *te_is_neigh;
jardineb5d44e2003-12-23 08:09:43 +00001699 struct es_neigh *es_neigh;
1700 struct list *adj_list;
paul1eb8ef22005-04-07 07:30:20 +00001701 struct listnode *node, *nnode;
jardineb5d44e2003-12-23 08:09:43 +00001702 struct isis_passwd *passwd;
1703
1704 assert (circuit);
1705 assert (circuit->circ_type == CIRCUIT_T_BROADCAST);
hassof390d2c2004-09-10 20:48:21 +00001706
jardineb5d44e2003-12-23 08:09:43 +00001707 if (!circuit->u.bc.is_dr[level - 1])
hassof390d2c2004-09-10 20:48:21 +00001708 return; /* we are not DIS on this circuit */
1709
jardineb5d44e2003-12-23 08:09:43 +00001710 lsp->level = level;
1711 if (level == 1)
1712 lsp->lsp_header->lsp_bits |= IS_LEVEL_1;
1713 else
1714 lsp->lsp_header->lsp_bits |= IS_LEVEL_2;
1715
1716 /*
1717 * add self to IS neighbours
1718 */
hassoaa4376e2005-09-26 17:39:48 +00001719 if (circuit->area->oldmetric)
hassof390d2c2004-09-10 20:48:21 +00001720 {
hassoaa4376e2005-09-26 17:39:48 +00001721 if (lsp->tlv_data.is_neighs == NULL)
1722 {
1723 lsp->tlv_data.is_neighs = list_new ();
1724 lsp->tlv_data.is_neighs->del = free_tlv;
1725 }
1726 is_neigh = XCALLOC (MTYPE_ISIS_TLV, sizeof (struct is_neigh));
paul15935e92005-05-03 09:27:23 +00001727
hassoaa4376e2005-09-26 17:39:48 +00001728 memcpy (&is_neigh->neigh_id, isis->sysid, ISIS_SYS_ID_LEN);
1729 listnode_add (lsp->tlv_data.is_neighs, is_neigh);
1730 }
1731 if (circuit->area->newmetric)
1732 {
1733 if (lsp->tlv_data.te_is_neighs == NULL)
1734 {
1735 lsp->tlv_data.te_is_neighs = list_new ();
1736 lsp->tlv_data.te_is_neighs->del = free_tlv;
1737 }
1738 te_is_neigh = XCALLOC (MTYPE_ISIS_TLV, sizeof (struct te_is_neigh));
1739
1740 memcpy (&te_is_neigh->neigh_id, isis->sysid, ISIS_SYS_ID_LEN);
1741 listnode_add (lsp->tlv_data.te_is_neighs, te_is_neigh);
1742 }
hassof390d2c2004-09-10 20:48:21 +00001743
1744 adj_list = list_new ();
1745 isis_adj_build_up_list (circuit->u.bc.adjdb[level - 1], adj_list);
1746
paul1eb8ef22005-04-07 07:30:20 +00001747 for (ALL_LIST_ELEMENTS (adj_list, node, nnode, adj))
hassof390d2c2004-09-10 20:48:21 +00001748 {
hassof390d2c2004-09-10 20:48:21 +00001749 if (adj->circuit_t & level)
1750 {
1751 if ((level == 1 && adj->sys_type == ISIS_SYSTYPE_L1_IS) ||
1752 (level == 1 && adj->sys_type == ISIS_SYSTYPE_L2_IS &&
hassoaa4376e2005-09-26 17:39:48 +00001753 adj->adj_usage == ISIS_ADJ_LEVEL1AND2) ||
hassof390d2c2004-09-10 20:48:21 +00001754 (level == 2 && adj->sys_type == ISIS_SYSTYPE_L2_IS))
1755 {
1756 /* an IS neighbour -> add it */
hassoaa4376e2005-09-26 17:39:48 +00001757 if (circuit->area->oldmetric)
1758 {
1759 is_neigh = XCALLOC (MTYPE_ISIS_TLV, sizeof (struct is_neigh));
paul15935e92005-05-03 09:27:23 +00001760
hassoaa4376e2005-09-26 17:39:48 +00001761 memcpy (&is_neigh->neigh_id, adj->sysid, ISIS_SYS_ID_LEN);
1762 listnode_add (lsp->tlv_data.is_neighs, is_neigh);
1763 }
1764 if (circuit->area->newmetric)
1765 {
1766 te_is_neigh = XCALLOC (MTYPE_ISIS_TLV,
1767 sizeof (struct te_is_neigh));
1768 memcpy (&te_is_neigh->neigh_id, adj->sysid, ISIS_SYS_ID_LEN);
1769 listnode_add (lsp->tlv_data.te_is_neighs, te_is_neigh);
1770 }
hassof390d2c2004-09-10 20:48:21 +00001771 }
1772 else if (level == 1 && adj->sys_type == ISIS_SYSTYPE_ES)
1773 {
1774 /* an ES neigbour add it, if we are building level 1 LSP */
1775 /* FIXME: the tlv-format is hard to use here */
1776 if (lsp->tlv_data.es_neighs == NULL)
1777 {
1778 lsp->tlv_data.es_neighs = list_new ();
1779 lsp->tlv_data.es_neighs->del = free_tlv;
1780 }
paul15935e92005-05-03 09:27:23 +00001781 es_neigh = XCALLOC (MTYPE_ISIS_TLV, sizeof (struct es_neigh));
1782
hassof390d2c2004-09-10 20:48:21 +00001783 memcpy (&es_neigh->first_es_neigh, adj->sysid, ISIS_SYS_ID_LEN);
hassoaac372f2005-09-01 17:52:33 +00001784 listnode_add (lsp->tlv_data.es_neighs, es_neigh);
hassof390d2c2004-09-10 20:48:21 +00001785 }
1786 }
jardineb5d44e2003-12-23 08:09:43 +00001787 }
hassof390d2c2004-09-10 20:48:21 +00001788
hassoc0fb2a52005-09-03 16:29:40 +00001789 /* Reset endp of stream to overwrite only TLV part of it. */
hassoc89c05d2005-09-04 21:36:36 +00001790 stream_reset (lsp->pdu);
hassoc0fb2a52005-09-03 16:29:40 +00001791 stream_forward_endp (lsp->pdu, ISIS_FIXED_HDR_LEN + ISIS_LSP_HDR_LEN);
1792
jardineb5d44e2003-12-23 08:09:43 +00001793 /*
1794 * Add the authentication info if it's present
1795 */
hassof390d2c2004-09-10 20:48:21 +00001796 (level == 1) ? (passwd = &circuit->area->area_passwd) :
1797 (passwd = &circuit->area->domain_passwd);
1798 if (passwd->type)
1799 {
1800 memcpy (&lsp->tlv_data.auth_info, passwd, sizeof (struct isis_passwd));
1801 tlv_add_authinfo (passwd->type, passwd->len, passwd->passwd, lsp->pdu);
1802 }
jardineb5d44e2003-12-23 08:09:43 +00001803
1804 if (lsp->tlv_data.is_neighs && listcount (lsp->tlv_data.is_neighs) > 0)
1805 tlv_add_is_neighs (lsp->tlv_data.is_neighs, lsp->pdu);
1806
hassoaa4376e2005-09-26 17:39:48 +00001807 if (lsp->tlv_data.te_is_neighs && listcount (lsp->tlv_data.te_is_neighs) > 0)
1808 tlv_add_te_is_neighs (lsp->tlv_data.te_is_neighs, lsp->pdu);
1809
jardineb5d44e2003-12-23 08:09:43 +00001810 if (lsp->tlv_data.es_neighs && listcount (lsp->tlv_data.es_neighs) > 0)
1811 tlv_add_is_neighs (lsp->tlv_data.es_neighs, lsp->pdu);
1812
paul9985f832005-02-09 15:51:56 +00001813 lsp->lsp_header->pdu_len = htons (stream_get_endp (lsp->pdu));
hassof390d2c2004-09-10 20:48:21 +00001814 iso_csum_create (STREAM_DATA (lsp->pdu) + 12,
1815 ntohs (lsp->lsp_header->pdu_len) - 12, 12);
1816
jardineb5d44e2003-12-23 08:09:43 +00001817 list_delete (adj_list);
1818
1819 return;
1820}
1821
hasso92365882005-01-18 13:53:33 +00001822static int
jardineb5d44e2003-12-23 08:09:43 +00001823lsp_pseudo_regenerate (struct isis_circuit *circuit, int level)
1824{
1825 dict_t *lspdb = circuit->area->lspdb[level - 1];
1826 struct isis_lsp *lsp;
1827 u_char lsp_id[ISIS_SYS_ID_LEN + 2];
hassof390d2c2004-09-10 20:48:21 +00001828
jardineb5d44e2003-12-23 08:09:43 +00001829 memcpy (lsp_id, isis->sysid, ISIS_SYS_ID_LEN);
hassof390d2c2004-09-10 20:48:21 +00001830 LSP_PSEUDO_ID (lsp_id) = circuit->circuit_id;
1831 LSP_FRAGMENT (lsp_id) = 0;
1832
jardineb5d44e2003-12-23 08:09:43 +00001833 lsp = lsp_search (lsp_id, lspdb);
hassof390d2c2004-09-10 20:48:21 +00001834
1835 if (!lsp)
1836 {
1837 zlog_err ("lsp_pseudo_regenerate(): no l%d LSP %s found!", level,
1838 rawlspid_print (lsp_id));
1839 return ISIS_ERROR;
1840 }
1841 lsp_clear_data (lsp);
jardineb5d44e2003-12-23 08:09:43 +00001842
1843 lsp_build_pseudo (lsp, circuit, level);
1844
hassof390d2c2004-09-10 20:48:21 +00001845 lsp->lsp_header->rem_lifetime =
jardineb5d44e2003-12-23 08:09:43 +00001846 htons (isis_jitter (circuit->area->max_lsp_lifetime[level - 1],
hassof390d2c2004-09-10 20:48:21 +00001847 MAX_AGE_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00001848
1849 lsp_inc_seqnum (lsp, 0);
hassof390d2c2004-09-10 20:48:21 +00001850
1851 if (isis->debugs & DEBUG_UPDATE_PACKETS)
1852 {
hasso529d65b2004-12-24 00:14:50 +00001853 zlog_debug ("ISIS-Upd (%s): refreshing pseudo LSP L%d %s",
1854 circuit->area->area_tag, level,
1855 rawlspid_print (lsp->lsp_header->lsp_id));
hassof390d2c2004-09-10 20:48:21 +00001856 }
jardineb5d44e2003-12-23 08:09:43 +00001857
1858 lsp->last_generated = time (NULL);
1859 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
hassof390d2c2004-09-10 20:48:21 +00001860
jardineb5d44e2003-12-23 08:09:43 +00001861 return ISIS_OK;
1862}
1863
jardineb5d44e2003-12-23 08:09:43 +00001864int
1865lsp_l1_refresh_pseudo (struct thread *thread)
1866{
1867 struct isis_circuit *circuit;
1868 int retval;
1869 unsigned long ref_time;
1870
hassof390d2c2004-09-10 20:48:21 +00001871 circuit = THREAD_ARG (thread);
1872
jardineb5d44e2003-12-23 08:09:43 +00001873 if (!circuit->u.bc.is_dr[0])
hassof390d2c2004-09-10 20:48:21 +00001874 return ISIS_ERROR; /* FIXME: purge and such */
1875
hasso13c48f72004-09-10 21:19:13 +00001876 circuit->u.bc.t_refresh_pseudo_lsp[0] = NULL;
1877
jardineb5d44e2003-12-23 08:09:43 +00001878 retval = lsp_pseudo_regenerate (circuit, 1);
hassof390d2c2004-09-10 20:48:21 +00001879
1880 ref_time = circuit->area->lsp_refresh[0] > MAX_LSP_GEN_INTERVAL ?
jardineb5d44e2003-12-23 08:09:43 +00001881 MAX_LSP_GEN_INTERVAL : circuit->area->lsp_refresh[0];
1882
hassof390d2c2004-09-10 20:48:21 +00001883 THREAD_TIMER_ON (master, circuit->u.bc.t_refresh_pseudo_lsp[0],
1884 lsp_l1_refresh_pseudo, circuit,
1885 isis_jitter (ref_time, MAX_AGE_JITTER));
1886
jardineb5d44e2003-12-23 08:09:43 +00001887 return retval;
1888}
1889
hassof390d2c2004-09-10 20:48:21 +00001890int
jardineb5d44e2003-12-23 08:09:43 +00001891lsp_l1_pseudo_generate (struct isis_circuit *circuit)
1892{
1893 struct isis_lsp *lsp;
1894 u_char id[ISIS_SYS_ID_LEN + 2];
1895 unsigned long ref_time;
1896
hassof390d2c2004-09-10 20:48:21 +00001897 memcpy (id, isis->sysid, ISIS_SYS_ID_LEN);
1898 LSP_FRAGMENT (id) = 0;
1899 LSP_PSEUDO_ID (id) = circuit->circuit_id;
jardineb5d44e2003-12-23 08:09:43 +00001900
1901 /*
1902 * If for some reason have a pseudo LSP in the db already -> regenerate
1903 */
1904 if (lsp_search (id, circuit->area->lspdb[0]))
1905 return lsp_pseudo_regenerate (circuit, 1);
1906 lsp = lsp_new (id, circuit->area->max_lsp_lifetime[0],
hassof390d2c2004-09-10 20:48:21 +00001907 1, circuit->area->is_type, 0, 1);
1908
jardineb5d44e2003-12-23 08:09:43 +00001909 lsp_build_pseudo (lsp, circuit, 1);
hassof390d2c2004-09-10 20:48:21 +00001910
jardineb5d44e2003-12-23 08:09:43 +00001911 lsp->own_lsp = 1;
1912 lsp_insert (lsp, circuit->area->lspdb[0]);
1913 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
1914
hassof390d2c2004-09-10 20:48:21 +00001915 ref_time = circuit->area->lsp_refresh[0] > MAX_LSP_GEN_INTERVAL ?
jardineb5d44e2003-12-23 08:09:43 +00001916 MAX_LSP_GEN_INTERVAL : circuit->area->lsp_refresh[0];
1917
hassof390d2c2004-09-10 20:48:21 +00001918 THREAD_TIMER_ON (master, circuit->u.bc.t_refresh_pseudo_lsp[0],
1919 lsp_l1_refresh_pseudo, circuit,
1920 isis_jitter (ref_time, MAX_AGE_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00001921
1922 return lsp_regenerate_schedule (circuit->area);
1923}
1924
1925int
1926lsp_l2_refresh_pseudo (struct thread *thread)
1927{
1928 struct isis_circuit *circuit;
1929 int retval;
1930 unsigned long ref_time;
hassof390d2c2004-09-10 20:48:21 +00001931 circuit = THREAD_ARG (thread);
1932
jardineb5d44e2003-12-23 08:09:43 +00001933 if (!circuit->u.bc.is_dr[1])
hassof390d2c2004-09-10 20:48:21 +00001934 return ISIS_ERROR; /* FIXME: purge and such */
1935
hasso13c48f72004-09-10 21:19:13 +00001936 circuit->u.bc.t_refresh_pseudo_lsp[1] = NULL;
1937
jardineb5d44e2003-12-23 08:09:43 +00001938 retval = lsp_pseudo_regenerate (circuit, 2);
1939
hassof390d2c2004-09-10 20:48:21 +00001940 ref_time = circuit->area->lsp_refresh[1] > MAX_LSP_GEN_INTERVAL ?
jardineb5d44e2003-12-23 08:09:43 +00001941 MAX_LSP_GEN_INTERVAL : circuit->area->lsp_refresh[1];
1942
hassof390d2c2004-09-10 20:48:21 +00001943 THREAD_TIMER_ON (master, circuit->u.bc.t_refresh_pseudo_lsp[1],
1944 lsp_l2_refresh_pseudo, circuit,
1945 isis_jitter (ref_time, MAX_AGE_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00001946
jardineb5d44e2003-12-23 08:09:43 +00001947 return retval;
1948}
1949
hassof390d2c2004-09-10 20:48:21 +00001950int
jardineb5d44e2003-12-23 08:09:43 +00001951lsp_l2_pseudo_generate (struct isis_circuit *circuit)
1952{
1953 struct isis_lsp *lsp;
1954 u_char id[ISIS_SYS_ID_LEN + 2];
1955 unsigned long ref_time;
1956
hassof390d2c2004-09-10 20:48:21 +00001957 memcpy (id, isis->sysid, ISIS_SYS_ID_LEN);
1958 LSP_FRAGMENT (id) = 0;
1959 LSP_PSEUDO_ID (id) = circuit->circuit_id;
jardineb5d44e2003-12-23 08:09:43 +00001960
1961 if (lsp_search (id, circuit->area->lspdb[1]))
1962 return lsp_pseudo_regenerate (circuit, 2);
1963
1964 lsp = lsp_new (id, circuit->area->max_lsp_lifetime[1],
hassof390d2c2004-09-10 20:48:21 +00001965 1, circuit->area->is_type, 0, 2);
jardineb5d44e2003-12-23 08:09:43 +00001966
1967 lsp_build_pseudo (lsp, circuit, 2);
hassof390d2c2004-09-10 20:48:21 +00001968
1969 ref_time = circuit->area->lsp_refresh[1] > MAX_LSP_GEN_INTERVAL ?
jardineb5d44e2003-12-23 08:09:43 +00001970 MAX_LSP_GEN_INTERVAL : circuit->area->lsp_refresh[1];
1971
1972
1973 lsp->own_lsp = 1;
1974 lsp_insert (lsp, circuit->area->lspdb[1]);
1975 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
hassof390d2c2004-09-10 20:48:21 +00001976
1977 THREAD_TIMER_ON (master, circuit->u.bc.t_refresh_pseudo_lsp[1],
1978 lsp_l2_refresh_pseudo, circuit,
1979 isis_jitter (ref_time, MAX_AGE_JITTER));
1980
jardineb5d44e2003-12-23 08:09:43 +00001981 return lsp_regenerate_schedule (circuit->area);
1982}
1983
jardineb5d44e2003-12-23 08:09:43 +00001984/*
1985 * Walk through LSPs for an area
1986 * - set remaining lifetime
1987 * - set LSPs with SRMflag set for sending
1988 */
hassof390d2c2004-09-10 20:48:21 +00001989int
jardineb5d44e2003-12-23 08:09:43 +00001990lsp_tick (struct thread *thread)
1991{
1992 struct isis_area *area;
1993 struct isis_circuit *circuit;
1994 struct isis_lsp *lsp;
1995 struct list *lsp_list;
paul1eb8ef22005-04-07 07:30:20 +00001996 struct listnode *lspnode, *lspnnode, *cnode;
jardineb5d44e2003-12-23 08:09:43 +00001997 dnode_t *dnode, *dnode_next;
1998 int level;
1999
2000 lsp_list = list_new ();
hassof390d2c2004-09-10 20:48:21 +00002001
jardineb5d44e2003-12-23 08:09:43 +00002002 area = THREAD_ARG (thread);
2003 assert (area);
hasso13c48f72004-09-10 21:19:13 +00002004 area->t_tick = NULL;
hassof390d2c2004-09-10 20:48:21 +00002005 THREAD_TIMER_ON (master, area->t_tick, lsp_tick, area, 1);
jardineb5d44e2003-12-23 08:09:43 +00002006
2007 /*
2008 * Build a list of LSPs with (any) SRMflag set
2009 * and removed the ones that have aged out
2010 */
hassof390d2c2004-09-10 20:48:21 +00002011 for (level = 0; level < ISIS_LEVELS; level++)
2012 {
2013 if (area->lspdb[level] && dict_count (area->lspdb[level]) > 0)
2014 {
2015 dnode = dict_first (area->lspdb[level]);
2016 while (dnode != NULL)
2017 {
2018 dnode_next = dict_next (area->lspdb[level], dnode);
2019 lsp = dnode_get (dnode);
2020 lsp_set_time (lsp);
2021 if (lsp->age_out == 0)
2022 {
jardineb5d44e2003-12-23 08:09:43 +00002023
hasso529d65b2004-12-24 00:14:50 +00002024 zlog_debug ("ISIS-Upd (%s): L%u LSP %s seq 0x%08x aged out",
2025 area->area_tag,
2026 lsp->level,
2027 rawlspid_print (lsp->lsp_header->lsp_id),
2028 ntohl (lsp->lsp_header->seq_num));
hassof1082d12005-09-19 04:23:34 +00002029#ifdef TOPOLOGY_GENERATE
2030 if (lsp->from_topology)
2031 THREAD_TIMER_OFF (lsp->t_lsp_top_ref);
2032#endif /* TOPOLOGY_GENERATE */
hassof390d2c2004-09-10 20:48:21 +00002033 lsp_destroy (lsp);
2034 dict_delete (area->lspdb[level], dnode);
2035 }
2036 else if (flags_any_set (lsp->SRMflags))
2037 listnode_add (lsp_list, lsp);
2038 dnode = dnode_next;
2039 }
jardineb5d44e2003-12-23 08:09:43 +00002040
hassof390d2c2004-09-10 20:48:21 +00002041 /*
2042 * Send LSPs on circuits indicated by the SRMflags
2043 */
2044 if (listcount (lsp_list) > 0)
2045 {
paul1eb8ef22005-04-07 07:30:20 +00002046 for (ALL_LIST_ELEMENTS_RO (area->circuit_list, cnode, circuit))
hassof390d2c2004-09-10 20:48:21 +00002047 {
paul1eb8ef22005-04-07 07:30:20 +00002048 for (ALL_LIST_ELEMENTS (lsp_list, lspnode, lspnnode, lsp))
hassof390d2c2004-09-10 20:48:21 +00002049 {
hassof390d2c2004-09-10 20:48:21 +00002050 if (ISIS_CHECK_FLAG (lsp->SRMflags, circuit))
2051 {
2052 /* FIXME: if same or elder lsp is already in lsp
2053 * queue */
2054 listnode_add (circuit->lsp_queue, lsp);
2055 thread_add_event (master, send_lsp, circuit, 0);
2056 }
2057 }
2058 }
2059 }
2060 list_delete_all_node (lsp_list);
2061 }
jardineb5d44e2003-12-23 08:09:43 +00002062 }
jardineb5d44e2003-12-23 08:09:43 +00002063
2064 list_delete (lsp_list);
2065
2066 return ISIS_OK;
2067}
2068
jardineb5d44e2003-12-23 08:09:43 +00002069void
hassof390d2c2004-09-10 20:48:21 +00002070lsp_purge_dr (u_char * id, struct isis_circuit *circuit, int level)
jardineb5d44e2003-12-23 08:09:43 +00002071{
2072 struct isis_lsp *lsp;
hassof390d2c2004-09-10 20:48:21 +00002073
jardineb5d44e2003-12-23 08:09:43 +00002074 lsp = lsp_search (id, circuit->area->lspdb[level - 1]);
hassof390d2c2004-09-10 20:48:21 +00002075
2076 if (lsp && lsp->purged == 0)
2077 {
2078 lsp->lsp_header->rem_lifetime = htons (0);
2079 lsp->lsp_header->pdu_len =
2080 htons (ISIS_FIXED_HDR_LEN + ISIS_LSP_HDR_LEN);
2081 lsp->purged = 0;
2082 iso_csum_create (STREAM_DATA (lsp->pdu) + 12,
2083 ntohs (lsp->lsp_header->pdu_len) - 12, 12);
2084 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
2085 }
2086
jardineb5d44e2003-12-23 08:09:43 +00002087 return;
2088}
2089
2090/*
2091 * Purge own LSP that is received and we don't have.
2092 * -> Do as in 7.3.16.4
2093 */
2094void
hassof390d2c2004-09-10 20:48:21 +00002095lsp_purge_non_exist (struct isis_link_state_hdr *lsp_hdr,
2096 struct isis_area *area)
jardineb5d44e2003-12-23 08:09:43 +00002097{
2098 struct isis_lsp *lsp;
2099
2100 /*
2101 * We need to create the LSP to be purged
2102 */
hasso529d65b2004-12-24 00:14:50 +00002103 zlog_debug ("LSP PURGE NON EXIST");
hassoaac372f2005-09-01 17:52:33 +00002104 lsp = XCALLOC (MTYPE_ISIS_LSP, sizeof (struct isis_lsp));
hassof390d2c2004-09-10 20:48:21 +00002105 /*FIXME: BUG BUG BUG! the lsp doesn't exist here! */
2106 /*did smt here, maybe good probably not */
jardineb5d44e2003-12-23 08:09:43 +00002107 lsp->level = ((lsp_hdr->lsp_bits & LSPBIT_IST) == IS_LEVEL_1) ? 1 : 2;
2108 lsp->pdu = stream_new (ISIS_FIXED_HDR_LEN + ISIS_LSP_HDR_LEN);
hassof390d2c2004-09-10 20:48:21 +00002109 lsp->isis_header = (struct isis_fixed_hdr *) STREAM_DATA (lsp->pdu);
jardineb5d44e2003-12-23 08:09:43 +00002110 fill_fixed_hdr (lsp->isis_header, (lsp->level == 1) ? L1_LINK_STATE
hassof390d2c2004-09-10 20:48:21 +00002111 : L2_LINK_STATE);
2112 lsp->lsp_header = (struct isis_link_state_hdr *) (STREAM_DATA (lsp->pdu) +
2113 ISIS_FIXED_HDR_LEN);
jardineb5d44e2003-12-23 08:09:43 +00002114 memcpy (lsp->lsp_header, lsp_hdr, ISIS_LSP_HDR_LEN);
hassof390d2c2004-09-10 20:48:21 +00002115
jardineb5d44e2003-12-23 08:09:43 +00002116 /*
2117 * Retain only LSP header
2118 */
2119 lsp->lsp_header->pdu_len = htons (ISIS_FIXED_HDR_LEN + ISIS_LSP_HDR_LEN);
2120 /*
2121 * Set the remaining lifetime to 0
2122 */
2123 lsp->lsp_header->rem_lifetime = 0;
2124 /*
2125 * Put the lsp into LSPdb
2126 */
hassof390d2c2004-09-10 20:48:21 +00002127 lsp_insert (lsp, area->lspdb[lsp->level - 1]);
jardineb5d44e2003-12-23 08:09:43 +00002128
2129 /*
2130 * Send in to whole area
2131 */
2132 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
hassof390d2c2004-09-10 20:48:21 +00002133
jardineb5d44e2003-12-23 08:09:43 +00002134 return;
2135}
2136
2137#ifdef TOPOLOGY_GENERATE
hasso92365882005-01-18 13:53:33 +00002138static int
jardineb5d44e2003-12-23 08:09:43 +00002139top_lsp_refresh (struct thread *thread)
2140{
hassof390d2c2004-09-10 20:48:21 +00002141 struct isis_lsp *lsp;
hassof1082d12005-09-19 04:23:34 +00002142 unsigned long ref_time;
jardineb5d44e2003-12-23 08:09:43 +00002143
2144 lsp = THREAD_ARG (thread);
2145 assert (lsp);
2146
2147 lsp->t_lsp_top_ref = NULL;
2148
hassof1082d12005-09-19 04:23:34 +00002149 lsp_seqnum_update (lsp);
jardineb5d44e2003-12-23 08:09:43 +00002150
2151 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
hassof390d2c2004-09-10 20:48:21 +00002152 if (isis->debugs & DEBUG_UPDATE_PACKETS)
2153 {
hasso529d65b2004-12-24 00:14:50 +00002154 zlog_debug ("ISIS-Upd (): refreshing Topology L1 %s",
2155 rawlspid_print (lsp->lsp_header->lsp_id));
hassof390d2c2004-09-10 20:48:21 +00002156 }
hassod3d74742005-09-28 18:30:51 +00002157 /* Refresh dynamic hostname in the cache. */
2158 isis_dynhn_insert (lsp->lsp_header->lsp_id, lsp->tlv_data.hostname,
2159 IS_LEVEL_1);
2160
hassof1082d12005-09-19 04:23:34 +00002161 lsp->lsp_header->rem_lifetime =
2162 htons (isis_jitter (lsp->area->max_lsp_lifetime[0], MAX_AGE_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002163
hassof1082d12005-09-19 04:23:34 +00002164 ref_time = lsp->area->lsp_refresh[0] > MAX_LSP_GEN_INTERVAL ?
2165 MAX_LSP_GEN_INTERVAL : lsp->area->lsp_refresh[0];
2166
hassof390d2c2004-09-10 20:48:21 +00002167 THREAD_TIMER_ON (master, lsp->t_lsp_top_ref, top_lsp_refresh, lsp,
hassof1082d12005-09-19 04:23:34 +00002168 isis_jitter (ref_time, MAX_LSP_GEN_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002169
2170 return ISIS_OK;
2171}
2172
2173void
2174generate_topology_lsps (struct isis_area *area)
2175{
2176 struct listnode *node;
2177 int i, max = 0;
2178 struct arc *arc;
2179 u_char lspid[ISIS_SYS_ID_LEN + 2];
2180 struct isis_lsp *lsp;
hassof1082d12005-09-19 04:23:34 +00002181 unsigned long ref_time;
jardineb5d44e2003-12-23 08:09:43 +00002182
2183 /* first we find the maximal node */
paula8f03df2005-04-10 15:58:10 +00002184 for (ALL_LIST_ELEMENTS_RO (area->topology, node, arc))
hassof390d2c2004-09-10 20:48:21 +00002185 {
2186 if (arc->from_node > max)
2187 max = arc->from_node;
2188 if (arc->to_node > max)
2189 max = arc->to_node;
jardineb5d44e2003-12-23 08:09:43 +00002190 }
2191
hassof390d2c2004-09-10 20:48:21 +00002192 for (i = 1; i < (max + 1); i++)
2193 {
2194 memcpy (lspid, area->topology_baseis, ISIS_SYS_ID_LEN);
2195 LSP_PSEUDO_ID (lspid) = 0x00;
2196 LSP_FRAGMENT (lspid) = 0x00;
2197 lspid[ISIS_SYS_ID_LEN - 1] = (i & 0xFF);
2198 lspid[ISIS_SYS_ID_LEN - 2] = ((i >> 8) & 0xFF);
jardineb5d44e2003-12-23 08:09:43 +00002199
hassof390d2c2004-09-10 20:48:21 +00002200 lsp = lsp_new (lspid, isis_jitter (area->max_lsp_lifetime[0],
hassof1082d12005-09-19 04:23:34 +00002201 MAX_AGE_JITTER), 1, IS_LEVEL_1, 0, 1);
2202 if (!lsp)
2203 return;
hassof390d2c2004-09-10 20:48:21 +00002204 lsp->from_topology = 1;
hassof1082d12005-09-19 04:23:34 +00002205 lsp->area = area;
jardineb5d44e2003-12-23 08:09:43 +00002206
hassof1082d12005-09-19 04:23:34 +00002207 /* Creating LSP data based on topology info. */
2208 build_topology_lsp_data (lsp, area, i);
2209 /* Checksum is also calculated here. */
2210 lsp_seqnum_update (lsp);
hasso9551eea2005-09-28 18:26:25 +00002211 /* Take care of inserting dynamic hostname into cache. */
2212 isis_dynhn_insert (lspid, lsp->tlv_data.hostname, IS_LEVEL_1);
hassof1082d12005-09-19 04:23:34 +00002213
2214 ref_time = area->lsp_refresh[0] > MAX_LSP_GEN_INTERVAL ?
2215 MAX_LSP_GEN_INTERVAL : area->lsp_refresh[0];
2216
2217 THREAD_TIMER_ON (master, lsp->t_lsp_top_ref, top_lsp_refresh, lsp,
2218 isis_jitter (ref_time, MAX_LSP_GEN_JITTER));
hassof390d2c2004-09-10 20:48:21 +00002219 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
2220 lsp_insert (lsp, area->lspdb[0]);
hassof390d2c2004-09-10 20:48:21 +00002221 }
jardineb5d44e2003-12-23 08:09:43 +00002222}
2223
2224void
2225remove_topology_lsps (struct isis_area *area)
2226{
2227 struct isis_lsp *lsp;
2228 dnode_t *dnode, *dnode_next;
2229
2230 dnode = dict_first (area->lspdb[0]);
hassof390d2c2004-09-10 20:48:21 +00002231 while (dnode != NULL)
2232 {
2233 dnode_next = dict_next (area->lspdb[0], dnode);
2234 lsp = dnode_get (dnode);
2235 if (lsp->from_topology)
2236 {
2237 THREAD_TIMER_OFF (lsp->t_lsp_top_ref);
2238 lsp_destroy (lsp);
2239 dict_delete (area->lspdb[0], dnode);
2240 }
2241 dnode = dnode_next;
jardineb5d44e2003-12-23 08:09:43 +00002242 }
jardineb5d44e2003-12-23 08:09:43 +00002243}
2244
2245void
hassof390d2c2004-09-10 20:48:21 +00002246build_topology_lsp_data (struct isis_lsp *lsp, struct isis_area *area,
jardineb5d44e2003-12-23 08:09:43 +00002247 int lsp_top_num)
2248{
paula8f03df2005-04-10 15:58:10 +00002249 struct listnode *node, *nnode;
jardineb5d44e2003-12-23 08:09:43 +00002250 struct arc *arc;
jardineb5d44e2003-12-23 08:09:43 +00002251 struct is_neigh *is_neigh;
hasso9551eea2005-09-28 18:26:25 +00002252 struct te_is_neigh *te_is_neigh;
jardineb5d44e2003-12-23 08:09:43 +00002253 char buff[200];
hassof1082d12005-09-19 04:23:34 +00002254 struct tlvs tlv_data;
2255 struct isis_lsp *lsp0 = lsp;
jardineb5d44e2003-12-23 08:09:43 +00002256
hassof1082d12005-09-19 04:23:34 +00002257 /* Add area addresses. FIXME: Is it needed at all? */
2258 if (lsp->tlv_data.area_addrs == NULL)
2259 lsp->tlv_data.area_addrs = list_new ();
2260 list_add_list (lsp->tlv_data.area_addrs, area->area_addrs);
jardineb5d44e2003-12-23 08:09:43 +00002261
hassof1082d12005-09-19 04:23:34 +00002262 if (lsp->tlv_data.nlpids == NULL)
2263 lsp->tlv_data.nlpids = XMALLOC (MTYPE_ISIS_TLV, sizeof (struct nlpids));
2264 lsp->tlv_data.nlpids->count = 1;
2265 lsp->tlv_data.nlpids->nlpids[0] = NLPID_IP;
jardineb5d44e2003-12-23 08:09:43 +00002266
hassof1082d12005-09-19 04:23:34 +00002267 if (area->dynhostname)
2268 {
2269 lsp->tlv_data.hostname = XMALLOC (MTYPE_ISIS_TLV,
2270 sizeof (struct hostname));
2271 memset (buff, 0x00, 200);
2272 sprintf (buff, "%s%d", area->topology_basedynh ? area->topology_basedynh :
2273 "feedme", lsp_top_num);
2274 memcpy (lsp->tlv_data.hostname->name, buff, strlen (buff));
2275 lsp->tlv_data.hostname->namelen = strlen (buff);
2276 }
2277
2278 if (lsp->tlv_data.nlpids)
2279 tlv_add_nlpid (lsp->tlv_data.nlpids, lsp->pdu);
2280 if (lsp->tlv_data.hostname)
2281 tlv_add_dynamic_hostname (lsp->tlv_data.hostname, lsp->pdu);
2282 if (lsp->tlv_data.area_addrs && listcount (lsp->tlv_data.area_addrs) > 0)
2283 tlv_add_area_addrs (lsp->tlv_data.area_addrs, lsp->pdu);
2284
2285 memset (&tlv_data, 0, sizeof (struct tlvs));
2286 if (tlv_data.is_neighs == NULL)
hasso9551eea2005-09-28 18:26:25 +00002287 {
2288 tlv_data.is_neighs = list_new ();
2289 tlv_data.is_neighs->del = free_tlv;
2290 }
hassof1082d12005-09-19 04:23:34 +00002291
2292 /* Add reachability for this IS for simulated 1. */
hassof390d2c2004-09-10 20:48:21 +00002293 if (lsp_top_num == 1)
2294 {
hassof1082d12005-09-19 04:23:34 +00002295 is_neigh = XMALLOC (MTYPE_ISIS_TLV, sizeof (struct is_neigh));
2296 memset (is_neigh, 0, sizeof (struct is_neigh));
2297
hassof390d2c2004-09-10 20:48:21 +00002298 memcpy (&is_neigh->neigh_id, isis->sysid, ISIS_SYS_ID_LEN);
jardineb5d44e2003-12-23 08:09:43 +00002299 LSP_PSEUDO_ID (is_neigh->neigh_id) = 0x00;
hassof1082d12005-09-19 04:23:34 +00002300 /* Metric MUST NOT be 0, unless it's not alias TLV. */
2301 is_neigh->metrics.metric_default = 0x01;
jardineb5d44e2003-12-23 08:09:43 +00002302 is_neigh->metrics.metric_delay = METRICS_UNSUPPORTED;
2303 is_neigh->metrics.metric_expense = METRICS_UNSUPPORTED;
2304 is_neigh->metrics.metric_error = METRICS_UNSUPPORTED;
hassof1082d12005-09-19 04:23:34 +00002305 listnode_add (tlv_data.is_neighs, is_neigh);
jardineb5d44e2003-12-23 08:09:43 +00002306 }
hassof390d2c2004-09-10 20:48:21 +00002307
hassof1082d12005-09-19 04:23:34 +00002308 /* Add IS reachabilities. */
paula8f03df2005-04-10 15:58:10 +00002309 for (ALL_LIST_ELEMENTS (area->topology, node, nnode, arc))
hassof390d2c2004-09-10 20:48:21 +00002310 {
hassof1082d12005-09-19 04:23:34 +00002311 int to_lsp = 0;
2312
2313 if ((lsp_top_num != arc->from_node) && (lsp_top_num != arc->to_node))
2314 continue;
2315
2316 if (lsp_top_num == arc->from_node)
2317 to_lsp = arc->to_node;
2318 else
2319 to_lsp = arc->from_node;
2320
hasso9551eea2005-09-28 18:26:25 +00002321 if (area->oldmetric)
2322 {
2323 is_neigh = XCALLOC (MTYPE_ISIS_TLV, sizeof (struct is_neigh));
hassof1082d12005-09-19 04:23:34 +00002324
hasso9551eea2005-09-28 18:26:25 +00002325 memcpy (&is_neigh->neigh_id, area->topology_baseis, ISIS_SYS_ID_LEN);
2326 is_neigh->neigh_id[ISIS_SYS_ID_LEN - 1] = (to_lsp & 0xFF);
2327 is_neigh->neigh_id[ISIS_SYS_ID_LEN - 2] = ((to_lsp >> 8) & 0xFF);
2328 is_neigh->metrics.metric_default = arc->distance;
2329 is_neigh->metrics.metric_delay = METRICS_UNSUPPORTED;
2330 is_neigh->metrics.metric_expense = METRICS_UNSUPPORTED;
2331 is_neigh->metrics.metric_error = METRICS_UNSUPPORTED;
2332 listnode_add (tlv_data.is_neighs, is_neigh);
2333 }
2334
2335 if (area->newmetric)
2336 {
2337 uint32_t metric;
2338
2339 if (tlv_data.te_is_neighs == NULL)
2340 {
2341 tlv_data.te_is_neighs = list_new ();
2342 tlv_data.te_is_neighs->del = free_tlv;
2343 }
2344 te_is_neigh = XCALLOC (MTYPE_ISIS_TLV, sizeof (struct te_is_neigh));
2345 memcpy (&te_is_neigh->neigh_id, area->topology_baseis,
2346 ISIS_SYS_ID_LEN);
2347 te_is_neigh->neigh_id[ISIS_SYS_ID_LEN - 1] = (to_lsp & 0xFF);
2348 te_is_neigh->neigh_id[ISIS_SYS_ID_LEN - 2] = ((to_lsp >> 8) & 0xFF);
2349 metric = ((htonl(arc->distance) >> 8) & 0xffffff);
2350 memcpy (te_is_neigh->te_metric, &metric, 3);
2351 listnode_add (tlv_data.te_is_neighs, te_is_neigh);
2352 }
hassof390d2c2004-09-10 20:48:21 +00002353 }
hassof1082d12005-09-19 04:23:34 +00002354
2355 while (tlv_data.is_neighs && listcount (tlv_data.is_neighs))
2356 {
2357 if (lsp->tlv_data.is_neighs == NULL)
2358 lsp->tlv_data.is_neighs = list_new ();
hasso9551eea2005-09-28 18:26:25 +00002359 lsp_tlv_fit (lsp, &tlv_data.is_neighs, &lsp->tlv_data.is_neighs,
hassof1082d12005-09-19 04:23:34 +00002360 IS_NEIGHBOURS_LEN, area->lsp_frag_threshold,
2361 tlv_add_is_neighs);
2362 if (tlv_data.is_neighs && listcount (tlv_data.is_neighs))
2363 lsp = lsp_next_frag (LSP_FRAGMENT (lsp->lsp_header->lsp_id) + 1,
2364 lsp0, area, IS_LEVEL_1);
2365 }
2366
hasso9551eea2005-09-28 18:26:25 +00002367 while (tlv_data.te_is_neighs && listcount (tlv_data.te_is_neighs))
2368 {
2369 if (lsp->tlv_data.te_is_neighs == NULL)
2370 lsp->tlv_data.te_is_neighs = list_new ();
2371 lsp_tlv_fit (lsp, &tlv_data.te_is_neighs, &lsp->tlv_data.te_is_neighs,
2372 IS_NEIGHBOURS_LEN, area->lsp_frag_threshold,
2373 tlv_add_te_is_neighs);
2374 if (tlv_data.te_is_neighs && listcount (tlv_data.te_is_neighs))
2375 lsp = lsp_next_frag (LSP_FRAGMENT (lsp->lsp_header->lsp_id) + 1,
2376 lsp0, area, IS_LEVEL_1);
2377 }
2378
hassof1082d12005-09-19 04:23:34 +00002379 free_tlvs (&tlv_data);
2380 return;
jardineb5d44e2003-12-23 08:09:43 +00002381}
2382#endif /* TOPOLOGY_GENERATE */