blob: 81d189dfd9de495e700b7bb0def8746d5ff606ae [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);
1202 te_ipreach->te_metric = htonl (*circuit->te_metric);
1203 te_ipreach->control = (ipv4->prefixlen & 0x3F);
1204 memcpy (&te_ipreach->prefix_start, &ipv4->prefix.s_addr,
1205 (ipv4->prefixlen + 7)/8);
1206 listnode_add (tlv_data.te_ipv4_reachs, te_ipreach);
1207 }
hassof390d2c2004-09-10 20:48:21 +00001208 }
hassof390d2c2004-09-10 20:48:21 +00001209 }
jardineb5d44e2003-12-23 08:09:43 +00001210#ifdef HAVE_IPV6
hassof390d2c2004-09-10 20:48:21 +00001211 /*
1212 * Add IPv6 reachability of this circuit
1213 */
1214 if (circuit->ipv6_router && circuit->ipv6_non_link &&
1215 circuit->ipv6_non_link->count > 0)
1216 {
1217
1218 if (tlv_data.ipv6_reachs == NULL)
1219 {
1220 tlv_data.ipv6_reachs = list_new ();
hassobe7d65d2005-09-02 01:38:16 +00001221 tlv_data.ipv6_reachs->del = free_tlv;
hassof390d2c2004-09-10 20:48:21 +00001222 }
paul1eb8ef22005-04-07 07:30:20 +00001223 for (ALL_LIST_ELEMENTS (circuit->ipv6_non_link, ipnode, ipnnode,
1224 ipv6))
hassof390d2c2004-09-10 20:48:21 +00001225 {
hassof390d2c2004-09-10 20:48:21 +00001226 ip6reach =
hassoaac372f2005-09-01 17:52:33 +00001227 XCALLOC (MTYPE_ISIS_TLV, sizeof (struct ipv6_reachability));
hassof390d2c2004-09-10 20:48:21 +00001228 ip6reach->metric =
1229 htonl (circuit->metrics[level - 1].metric_default);
1230 ip6reach->control_info = 0;
1231 ip6reach->prefix_len = ipv6->prefixlen;
hasso67851572004-09-21 14:17:04 +00001232 memcpy (&ip6prefix, &ipv6, sizeof(ip6prefix));
1233 apply_mask_ipv6 (ip6prefix);
1234 memcpy (ip6reach->prefix, ip6prefix->prefix.s6_addr,
1235 sizeof (ip6reach->prefix));
hassof390d2c2004-09-10 20:48:21 +00001236 listnode_add (tlv_data.ipv6_reachs, ip6reach);
1237 }
1238 }
1239#endif /* HAVE_IPV6 */
1240
1241 switch (circuit->circ_type)
1242 {
1243 case CIRCUIT_T_BROADCAST:
1244 if (level & circuit->circuit_is_type)
1245 {
hassoaa4376e2005-09-26 17:39:48 +00001246 if (area->oldmetric)
hassof390d2c2004-09-10 20:48:21 +00001247 {
hassoaa4376e2005-09-26 17:39:48 +00001248 if (tlv_data.is_neighs == NULL)
1249 {
1250 tlv_data.is_neighs = list_new ();
1251 tlv_data.is_neighs->del = free_tlv;
1252 }
1253 is_neigh = XCALLOC (MTYPE_ISIS_TLV, sizeof (struct is_neigh));
1254 if (level == 1)
1255 memcpy (is_neigh->neigh_id,
1256 circuit->u.bc.l1_desig_is, ISIS_SYS_ID_LEN + 1);
1257 else
1258 memcpy (is_neigh->neigh_id,
1259 circuit->u.bc.l2_desig_is, ISIS_SYS_ID_LEN + 1);
1260 is_neigh->metrics = circuit->metrics[level - 1];
1261 listnode_add (tlv_data.is_neighs, is_neigh);
hassobe7d65d2005-09-02 01:38:16 +00001262 tlv_data.is_neighs->del = free_tlv;
hassof390d2c2004-09-10 20:48:21 +00001263 }
hassoaa4376e2005-09-26 17:39:48 +00001264 if (area->newmetric)
1265 {
1266 uint32_t metric;
1267
1268 if (tlv_data.te_is_neighs == NULL)
1269 {
1270 tlv_data.te_is_neighs = list_new ();
1271 tlv_data.te_is_neighs->del = free_tlv;
1272 }
1273 te_is_neigh = XCALLOC (MTYPE_ISIS_TLV,
1274 sizeof (struct te_is_neigh));
1275 if (level == 1)
1276 memcpy (te_is_neigh->neigh_id,
1277 circuit->u.bc.l1_desig_is, ISIS_SYS_ID_LEN + 1);
1278 else
1279 memcpy (te_is_neigh->neigh_id,
1280 circuit->u.bc.l2_desig_is, ISIS_SYS_ID_LEN + 1);
1281 metric = ((htonl(*circuit->te_metric) >> 8) & 0xffffff);
1282 memcpy (te_is_neigh->te_metric, &metric, 3);
1283 listnode_add (tlv_data.te_is_neighs, te_is_neigh);
1284 }
hassof390d2c2004-09-10 20:48:21 +00001285 }
1286 break;
1287 case CIRCUIT_T_P2P:
1288 nei = circuit->u.p2p.neighbor;
1289 if (nei && (level & nei->circuit_t))
1290 {
hassoaa4376e2005-09-26 17:39:48 +00001291 if (area->oldmetric)
hassof390d2c2004-09-10 20:48:21 +00001292 {
hassoaa4376e2005-09-26 17:39:48 +00001293 if (tlv_data.is_neighs == NULL)
1294 {
1295 tlv_data.is_neighs = list_new ();
1296 tlv_data.is_neighs->del = free_tlv;
1297 }
1298 is_neigh = XCALLOC (MTYPE_ISIS_TLV, sizeof (struct is_neigh));
1299 memcpy (is_neigh->neigh_id, nei->sysid, ISIS_SYS_ID_LEN);
1300 is_neigh->metrics = circuit->metrics[level - 1];
1301 listnode_add (tlv_data.is_neighs, is_neigh);
hassof390d2c2004-09-10 20:48:21 +00001302 }
hassoaa4376e2005-09-26 17:39:48 +00001303 if (area->newmetric)
1304 {
1305 uint32_t metric;
1306
1307 if (tlv_data.te_is_neighs == NULL)
1308 {
1309 tlv_data.te_is_neighs = list_new ();
1310 tlv_data.te_is_neighs->del = free_tlv;
1311 }
1312 te_is_neigh = XCALLOC (MTYPE_ISIS_TLV,
1313 sizeof (struct te_is_neigh));
1314 memcpy (te_is_neigh->neigh_id, nei->sysid, ISIS_SYS_ID_LEN);
1315 metric = ((htonl(*circuit->te_metric) >> 8) & 0xffffff);
1316 memcpy (te_is_neigh->te_metric, &metric, 3);
1317 listnode_add (tlv_data.te_is_neighs, te_is_neigh);
1318 }
hassof390d2c2004-09-10 20:48:21 +00001319 }
1320 break;
1321 case CIRCUIT_T_STATIC_IN:
1322 zlog_warn ("lsp_area_create: unsupported circuit type");
1323 break;
1324 case CIRCUIT_T_STATIC_OUT:
1325 zlog_warn ("lsp_area_create: unsupported circuit type");
1326 break;
1327 case CIRCUIT_T_DA:
1328 zlog_warn ("lsp_area_create: unsupported circuit type");
1329 break;
1330 default:
1331 zlog_warn ("lsp_area_create: unknown circuit type");
1332 }
1333 }
1334
1335 while (tlv_data.ipv4_int_reachs && listcount (tlv_data.ipv4_int_reachs))
1336 {
1337 if (lsp->tlv_data.ipv4_int_reachs == NULL)
1338 lsp->tlv_data.ipv4_int_reachs = list_new ();
1339 lsp_tlv_fit (lsp, &tlv_data.ipv4_int_reachs,
1340 &lsp->tlv_data.ipv4_int_reachs,
1341 IPV4_REACH_LEN, area->lsp_frag_threshold,
1342 tlv_add_ipv4_reachs);
1343 if (tlv_data.ipv4_int_reachs && listcount (tlv_data.ipv4_int_reachs))
1344 lsp = lsp_next_frag (LSP_FRAGMENT (lsp->lsp_header->lsp_id) + 1,
1345 lsp0, area, level);
1346 }
hassoaa4376e2005-09-26 17:39:48 +00001347 /* FIXME: We pass maximum te_ipv4_reachability length to the lsp_tlv_fit()
1348 * for now. lsp_tlv_fit() needs to be fixed to deal with variable length
1349 * TLVs (sub TLVs!). */
1350 while (tlv_data.te_ipv4_reachs && listcount (tlv_data.te_ipv4_reachs))
1351 {
1352 if (lsp->tlv_data.te_ipv4_reachs == NULL)
1353 lsp->tlv_data.te_ipv4_reachs = list_new ();
1354 lsp_tlv_fit (lsp, &tlv_data.te_ipv4_reachs,
1355 &lsp->tlv_data.te_ipv4_reachs,
1356 9, area->lsp_frag_threshold, tlv_add_te_ipv4_reachs);
1357 if (tlv_data.te_ipv4_reachs && listcount (tlv_data.te_ipv4_reachs))
1358 lsp = lsp_next_frag (LSP_FRAGMENT (lsp->lsp_header->lsp_id) + 1,
1359 lsp0, area, level);
1360 }
hassof390d2c2004-09-10 20:48:21 +00001361
1362#ifdef HAVE_IPV6
1363 while (tlv_data.ipv6_reachs && listcount (tlv_data.ipv6_reachs))
1364 {
1365 if (lsp->tlv_data.ipv6_reachs == NULL)
1366 lsp->tlv_data.ipv6_reachs = list_new ();
1367 lsp_tlv_fit (lsp, &tlv_data.ipv6_reachs,
1368 &lsp->tlv_data.ipv6_reachs,
1369 IPV6_REACH_LEN, area->lsp_frag_threshold,
1370 tlv_add_ipv6_reachs);
1371 if (tlv_data.ipv6_reachs && listcount (tlv_data.ipv6_reachs))
1372 lsp = lsp_next_frag (LSP_FRAGMENT (lsp->lsp_header->lsp_id) + 1,
1373 lsp0, area, level);
jardineb5d44e2003-12-23 08:09:43 +00001374 }
1375#endif /* HAVE_IPV6 */
hassof390d2c2004-09-10 20:48:21 +00001376
1377 while (tlv_data.is_neighs && listcount (tlv_data.is_neighs))
1378 {
1379 if (lsp->tlv_data.is_neighs == NULL)
1380 lsp->tlv_data.is_neighs = list_new ();
1381 lsp_tlv_fit (lsp, &tlv_data.is_neighs,
1382 &lsp->tlv_data.is_neighs,
1383 IS_NEIGHBOURS_LEN, area->lsp_frag_threshold,
1384 tlv_add_is_neighs);
1385 if (tlv_data.is_neighs && listcount (tlv_data.is_neighs))
1386 lsp = lsp_next_frag (LSP_FRAGMENT (lsp->lsp_header->lsp_id) + 1,
1387 lsp0, area, level);
jardineb5d44e2003-12-23 08:09:43 +00001388 }
jardineb5d44e2003-12-23 08:09:43 +00001389
hassoaa4376e2005-09-26 17:39:48 +00001390 while (tlv_data.te_is_neighs && listcount (tlv_data.te_is_neighs))
1391 {
1392 if (lsp->tlv_data.te_is_neighs == NULL)
1393 lsp->tlv_data.te_is_neighs = list_new ();
1394 lsp_tlv_fit (lsp, &tlv_data.te_is_neighs, &lsp->tlv_data.te_is_neighs,
1395 IS_NEIGHBOURS_LEN, area->lsp_frag_threshold,
1396 tlv_add_te_is_neighs);
1397 if (tlv_data.te_is_neighs && listcount (tlv_data.te_is_neighs))
1398 lsp = lsp_next_frag (LSP_FRAGMENT (lsp->lsp_header->lsp_id) + 1,
1399 lsp0, area, level);
1400 }
1401
1402 free_tlvs (&tlv_data);
jardineb5d44e2003-12-23 08:09:43 +00001403 return;
1404}
jardineb5d44e2003-12-23 08:09:43 +00001405
1406/*
1407 * 7.3.7 Generation on non-pseudonode LSPs
1408 */
hasso92365882005-01-18 13:53:33 +00001409static int
hassof390d2c2004-09-10 20:48:21 +00001410lsp_generate_non_pseudo (struct isis_area *area, int level)
1411{
jardineb5d44e2003-12-23 08:09:43 +00001412 struct isis_lsp *oldlsp, *newlsp;
1413 u_int32_t seq_num = 0;
1414 u_char lspid[ISIS_SYS_ID_LEN + 2];
1415
1416 memset (&lspid, 0, ISIS_SYS_ID_LEN + 2);
1417 memcpy (&lspid, isis->sysid, ISIS_SYS_ID_LEN);
1418
1419 /* only builds the lsp if the area shares the level */
hassof390d2c2004-09-10 20:48:21 +00001420 if ((area->is_type & level) == level)
1421 {
1422 oldlsp = lsp_search (lspid, area->lspdb[level - 1]);
1423 if (oldlsp)
1424 {
1425 seq_num = ntohl (oldlsp->lsp_header->seq_num);
1426 lsp_search_and_destroy (oldlsp->lsp_header->lsp_id,
1427 area->lspdb[level - 1]);
1428 /* FIXME: we should actually initiate a purge */
1429 }
1430 newlsp = lsp_new (lspid, area->max_lsp_lifetime[level - 1], seq_num,
1431 area->is_type, 0, level);
1432 newlsp->own_lsp = 1;
jardineb5d44e2003-12-23 08:09:43 +00001433
hassof390d2c2004-09-10 20:48:21 +00001434 lsp_insert (newlsp, area->lspdb[level - 1]);
1435 /* build_lsp_data (newlsp, area); */
1436 lsp_build_nonpseudo (newlsp, area);
1437 /* time to calculate our checksum */
1438 lsp_seqnum_update (newlsp);
1439 }
jardineb5d44e2003-12-23 08:09:43 +00001440
1441 /* DEBUG_ADJ_PACKETS */
hassof390d2c2004-09-10 20:48:21 +00001442 if (isis->debugs & DEBUG_ADJ_PACKETS)
1443 {
1444 /* FIXME: is this place right? fix missing info */
hasso529d65b2004-12-24 00:14:50 +00001445 zlog_debug ("ISIS-Upd (%s): Building L%d LSP", area->area_tag, level);
hassof390d2c2004-09-10 20:48:21 +00001446 }
jardineb5d44e2003-12-23 08:09:43 +00001447
1448 return ISIS_OK;
1449}
1450
1451/*
1452 * 7.3.9 Generation of level 1 LSPs (non-pseudonode)
1453 */
1454int
1455lsp_l1_generate (struct isis_area *area)
1456{
hassof390d2c2004-09-10 20:48:21 +00001457 THREAD_TIMER_ON (master, area->t_lsp_refresh[0], lsp_refresh_l1, area,
1458 MAX_LSP_GEN_INTERVAL);
jardineb5d44e2003-12-23 08:09:43 +00001459
1460 return lsp_generate_non_pseudo (area, 1);
1461}
1462
jardineb5d44e2003-12-23 08:09:43 +00001463/*
1464 * 7.3.9 Generation of level 2 LSPs (non-pseudonode)
1465 */
1466int
1467lsp_l2_generate (struct isis_area *area)
1468{
hassof390d2c2004-09-10 20:48:21 +00001469 THREAD_TIMER_ON (master, area->t_lsp_refresh[1], lsp_refresh_l2, area,
1470 MAX_LSP_GEN_INTERVAL);
jardineb5d44e2003-12-23 08:09:43 +00001471
1472 return lsp_generate_non_pseudo (area, 2);
1473}
1474
hasso92365882005-01-18 13:53:33 +00001475static int
jardineb5d44e2003-12-23 08:09:43 +00001476lsp_non_pseudo_regenerate (struct isis_area *area, int level)
1477{
1478 dict_t *lspdb = area->lspdb[level - 1];
1479 struct isis_lsp *lsp, *frag;
1480 struct listnode *node;
1481 u_char lspid[ISIS_SYS_ID_LEN + 2];
1482
1483 memset (lspid, 0, ISIS_SYS_ID_LEN + 2);
1484 memcpy (lspid, isis->sysid, ISIS_SYS_ID_LEN);
hassof390d2c2004-09-10 20:48:21 +00001485
jardineb5d44e2003-12-23 08:09:43 +00001486 lsp = lsp_search (lspid, lspdb);
jardineb5d44e2003-12-23 08:09:43 +00001487
hassof390d2c2004-09-10 20:48:21 +00001488 if (!lsp)
1489 {
1490 zlog_err
1491 ("ISIS-Upd (%s): lsp_non_pseudo_regenerate(): no L%d LSP found!",
1492 area->area_tag, level);
jardineb5d44e2003-12-23 08:09:43 +00001493
hassof390d2c2004-09-10 20:48:21 +00001494 return ISIS_ERROR;
1495 }
1496
1497 lsp_clear_data (lsp);
jardineb5d44e2003-12-23 08:09:43 +00001498 lsp_build_nonpseudo (lsp, area);
hassof390d2c2004-09-10 20:48:21 +00001499 lsp->lsp_header->rem_lifetime = htons (isis_jitter
1500 (area->max_lsp_lifetime[level - 1],
1501 MAX_AGE_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00001502 lsp_seqnum_update (lsp);
hassof390d2c2004-09-10 20:48:21 +00001503
1504 if (isis->debugs & DEBUG_UPDATE_PACKETS)
1505 {
hasso529d65b2004-12-24 00:14:50 +00001506 zlog_debug ("ISIS-Upd (%s): refreshing our L%d LSP %s, "
1507 "seq 0x%08x, cksum 0x%04x lifetime %us",
1508 area->area_tag,
1509 level,
1510 rawlspid_print (lsp->lsp_header->lsp_id),
1511 ntohl (lsp->lsp_header->seq_num),
1512 ntohs (lsp->lsp_header->checksum),
1513 ntohs (lsp->lsp_header->rem_lifetime));
hassof390d2c2004-09-10 20:48:21 +00001514 }
jardineb5d44e2003-12-23 08:09:43 +00001515
1516 lsp->last_generated = time (NULL);
1517 area->lsp_regenerate_pending[level - 1] = 0;
1518 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
paul1eb8ef22005-04-07 07:30:20 +00001519 for (ALL_LIST_ELEMENTS_RO (lsp->lspu.frags, node, frag))
hassof390d2c2004-09-10 20:48:21 +00001520 {
hassof390d2c2004-09-10 20:48:21 +00001521 frag->lsp_header->rem_lifetime = htons (isis_jitter
1522 (area->
1523 max_lsp_lifetime[level - 1],
1524 MAX_AGE_JITTER));
1525 ISIS_FLAGS_SET_ALL (frag->SRMflags);
1526 }
jardineb5d44e2003-12-23 08:09:43 +00001527
1528 if (area->ip_circuits)
1529 isis_spf_schedule (area, level);
1530#ifdef HAVE_IPV6
1531 if (area->ipv6_circuits)
1532 isis_spf_schedule6 (area, level);
1533#endif
1534 return ISIS_OK;
1535}
1536
jardineb5d44e2003-12-23 08:09:43 +00001537/*
1538 * Done at least every MAX_LSP_GEN_INTERVAL. Search own LSPs, update holding
1539 * time and set SRM
1540 */
hassof390d2c2004-09-10 20:48:21 +00001541int
jardineb5d44e2003-12-23 08:09:43 +00001542lsp_refresh_l1 (struct thread *thread)
1543{
1544 struct isis_area *area;
1545 unsigned long ref_time;
1546
1547 area = THREAD_ARG (thread);
1548 assert (area);
hassof390d2c2004-09-10 20:48:21 +00001549
jardineb5d44e2003-12-23 08:09:43 +00001550 area->t_lsp_refresh[0] = NULL;
hassof390d2c2004-09-10 20:48:21 +00001551 if (area->is_type & IS_LEVEL_1)
jardineb5d44e2003-12-23 08:09:43 +00001552 lsp_non_pseudo_regenerate (area, 1);
hassof390d2c2004-09-10 20:48:21 +00001553
1554 ref_time = area->lsp_refresh[0] > MAX_LSP_GEN_INTERVAL ?
jardineb5d44e2003-12-23 08:09:43 +00001555 MAX_LSP_GEN_INTERVAL : area->lsp_refresh[0];
1556
hassof390d2c2004-09-10 20:48:21 +00001557 THREAD_TIMER_ON (master, area->t_lsp_refresh[0], lsp_refresh_l1, area,
1558 isis_jitter (ref_time, MAX_AGE_JITTER));
hassod70f99e2004-02-11 20:26:31 +00001559
jardineb5d44e2003-12-23 08:09:43 +00001560 return ISIS_OK;
1561}
1562
hassof390d2c2004-09-10 20:48:21 +00001563int
jardineb5d44e2003-12-23 08:09:43 +00001564lsp_refresh_l2 (struct thread *thread)
1565{
1566 struct isis_area *area;
1567 unsigned long ref_time;
1568
1569 area = THREAD_ARG (thread);
1570 assert (area);
hassof390d2c2004-09-10 20:48:21 +00001571
jardineb5d44e2003-12-23 08:09:43 +00001572 area->t_lsp_refresh[1] = NULL;
hassof390d2c2004-09-10 20:48:21 +00001573 if (area->is_type & IS_LEVEL_2)
jardineb5d44e2003-12-23 08:09:43 +00001574 lsp_non_pseudo_regenerate (area, 2);
1575
hassof390d2c2004-09-10 20:48:21 +00001576 ref_time = area->lsp_refresh[1] > MAX_LSP_GEN_INTERVAL ?
jardineb5d44e2003-12-23 08:09:43 +00001577 MAX_LSP_GEN_INTERVAL : area->lsp_refresh[1];
1578
hassof390d2c2004-09-10 20:48:21 +00001579 THREAD_TIMER_ON (master, area->t_lsp_refresh[1], lsp_refresh_l2, area,
1580 isis_jitter (ref_time, MAX_AGE_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00001581
jardineb5d44e2003-12-23 08:09:43 +00001582 return ISIS_OK;
1583}
1584
jardineb5d44e2003-12-23 08:09:43 +00001585/*
1586 * Something has changed -> regenerate LSP
1587 */
1588
hasso92365882005-01-18 13:53:33 +00001589static int
jardineb5d44e2003-12-23 08:09:43 +00001590lsp_l1_regenerate (struct thread *thread)
1591{
1592 struct isis_area *area;
1593
1594 area = THREAD_ARG (thread);
1595 area->lsp_regenerate_pending[0] = 0;
1596
1597 return lsp_non_pseudo_regenerate (area, 1);
1598}
1599
hasso92365882005-01-18 13:53:33 +00001600static int
jardineb5d44e2003-12-23 08:09:43 +00001601lsp_l2_regenerate (struct thread *thread)
1602{
1603 struct isis_area *area;
1604
1605 area = THREAD_ARG (thread);
1606 area->lsp_regenerate_pending[1] = 0;
hassof390d2c2004-09-10 20:48:21 +00001607
jardineb5d44e2003-12-23 08:09:43 +00001608 return lsp_non_pseudo_regenerate (area, 2);
1609}
1610
hassof390d2c2004-09-10 20:48:21 +00001611int
jardineb5d44e2003-12-23 08:09:43 +00001612lsp_regenerate_schedule (struct isis_area *area)
1613{
1614 struct isis_lsp *lsp;
1615 u_char id[ISIS_SYS_ID_LEN + 2];
1616 time_t now, diff;
hassof390d2c2004-09-10 20:48:21 +00001617 memcpy (id, isis->sysid, ISIS_SYS_ID_LEN);
1618 LSP_PSEUDO_ID (id) = LSP_FRAGMENT (id) = 0;
jardineb5d44e2003-12-23 08:09:43 +00001619 now = time (NULL);
1620 /*
1621 * First level 1
1622 */
hassof390d2c2004-09-10 20:48:21 +00001623 if (area->is_type & IS_LEVEL_1)
1624 {
1625 lsp = lsp_search (id, area->lspdb[0]);
1626 if (!lsp || area->lsp_regenerate_pending[0])
1627 goto L2;
1628 /*
1629 * Throttle avoidance
1630 */
1631 diff = now - lsp->last_generated;
1632 if (diff < MIN_LSP_GEN_INTERVAL)
1633 {
1634 area->lsp_regenerate_pending[0] = 1;
1635 thread_add_timer (master, lsp_l1_regenerate, area,
1636 MIN_LSP_GEN_INTERVAL - diff);
hasso12a5cae2004-09-19 19:39:26 +00001637 goto L2;
hassof390d2c2004-09-10 20:48:21 +00001638 }
1639 else
1640 lsp_non_pseudo_regenerate (area, 1);
1641 }
jardineb5d44e2003-12-23 08:09:43 +00001642 /*
1643 * then 2
1644 */
hassof390d2c2004-09-10 20:48:21 +00001645L2:
1646 if (area->is_type & IS_LEVEL_2)
1647 {
1648 lsp = lsp_search (id, area->lspdb[1]);
1649 if (!lsp || area->lsp_regenerate_pending[1])
1650 return ISIS_OK;
1651 /*
1652 * Throttle avoidance
1653 */
1654 diff = now - lsp->last_generated;
1655 if (diff < MIN_LSP_GEN_INTERVAL)
1656 {
1657 area->lsp_regenerate_pending[1] = 1;
1658 thread_add_timer (master, lsp_l2_regenerate, area,
1659 MIN_LSP_GEN_INTERVAL - diff);
1660 return ISIS_OK;
1661 }
1662 else
1663 lsp_non_pseudo_regenerate (area, 2);
1664 }
1665
1666 return ISIS_OK;
jardineb5d44e2003-12-23 08:09:43 +00001667}
1668
1669/*
1670 * Funcs for pseudonode LSPs
1671 */
1672
1673/*
1674 * 7.3.8 and 7.3.10 Generation of level 1 and 2 pseudonode LSPs
1675 */
hasso92365882005-01-18 13:53:33 +00001676static void
hassof390d2c2004-09-10 20:48:21 +00001677lsp_build_pseudo (struct isis_lsp *lsp, struct isis_circuit *circuit,
1678 int level)
jardineb5d44e2003-12-23 08:09:43 +00001679{
1680 struct isis_adjacency *adj;
1681 struct is_neigh *is_neigh;
hassoaa4376e2005-09-26 17:39:48 +00001682 struct te_is_neigh *te_is_neigh;
jardineb5d44e2003-12-23 08:09:43 +00001683 struct es_neigh *es_neigh;
1684 struct list *adj_list;
paul1eb8ef22005-04-07 07:30:20 +00001685 struct listnode *node, *nnode;
jardineb5d44e2003-12-23 08:09:43 +00001686 struct isis_passwd *passwd;
1687
1688 assert (circuit);
1689 assert (circuit->circ_type == CIRCUIT_T_BROADCAST);
hassof390d2c2004-09-10 20:48:21 +00001690
jardineb5d44e2003-12-23 08:09:43 +00001691 if (!circuit->u.bc.is_dr[level - 1])
hassof390d2c2004-09-10 20:48:21 +00001692 return; /* we are not DIS on this circuit */
1693
jardineb5d44e2003-12-23 08:09:43 +00001694 lsp->level = level;
1695 if (level == 1)
1696 lsp->lsp_header->lsp_bits |= IS_LEVEL_1;
1697 else
1698 lsp->lsp_header->lsp_bits |= IS_LEVEL_2;
1699
1700 /*
1701 * add self to IS neighbours
1702 */
hassoaa4376e2005-09-26 17:39:48 +00001703 if (circuit->area->oldmetric)
hassof390d2c2004-09-10 20:48:21 +00001704 {
hassoaa4376e2005-09-26 17:39:48 +00001705 if (lsp->tlv_data.is_neighs == NULL)
1706 {
1707 lsp->tlv_data.is_neighs = list_new ();
1708 lsp->tlv_data.is_neighs->del = free_tlv;
1709 }
1710 is_neigh = XCALLOC (MTYPE_ISIS_TLV, sizeof (struct is_neigh));
paul15935e92005-05-03 09:27:23 +00001711
hassoaa4376e2005-09-26 17:39:48 +00001712 memcpy (&is_neigh->neigh_id, isis->sysid, ISIS_SYS_ID_LEN);
1713 listnode_add (lsp->tlv_data.is_neighs, is_neigh);
1714 }
1715 if (circuit->area->newmetric)
1716 {
1717 if (lsp->tlv_data.te_is_neighs == NULL)
1718 {
1719 lsp->tlv_data.te_is_neighs = list_new ();
1720 lsp->tlv_data.te_is_neighs->del = free_tlv;
1721 }
1722 te_is_neigh = XCALLOC (MTYPE_ISIS_TLV, sizeof (struct te_is_neigh));
1723
1724 memcpy (&te_is_neigh->neigh_id, isis->sysid, ISIS_SYS_ID_LEN);
1725 listnode_add (lsp->tlv_data.te_is_neighs, te_is_neigh);
1726 }
hassof390d2c2004-09-10 20:48:21 +00001727
1728 adj_list = list_new ();
1729 isis_adj_build_up_list (circuit->u.bc.adjdb[level - 1], adj_list);
1730
paul1eb8ef22005-04-07 07:30:20 +00001731 for (ALL_LIST_ELEMENTS (adj_list, node, nnode, adj))
hassof390d2c2004-09-10 20:48:21 +00001732 {
hassof390d2c2004-09-10 20:48:21 +00001733 if (adj->circuit_t & level)
1734 {
1735 if ((level == 1 && adj->sys_type == ISIS_SYSTYPE_L1_IS) ||
1736 (level == 1 && adj->sys_type == ISIS_SYSTYPE_L2_IS &&
hassoaa4376e2005-09-26 17:39:48 +00001737 adj->adj_usage == ISIS_ADJ_LEVEL1AND2) ||
hassof390d2c2004-09-10 20:48:21 +00001738 (level == 2 && adj->sys_type == ISIS_SYSTYPE_L2_IS))
1739 {
1740 /* an IS neighbour -> add it */
hassoaa4376e2005-09-26 17:39:48 +00001741 if (circuit->area->oldmetric)
1742 {
1743 is_neigh = XCALLOC (MTYPE_ISIS_TLV, sizeof (struct is_neigh));
paul15935e92005-05-03 09:27:23 +00001744
hassoaa4376e2005-09-26 17:39:48 +00001745 memcpy (&is_neigh->neigh_id, adj->sysid, ISIS_SYS_ID_LEN);
1746 listnode_add (lsp->tlv_data.is_neighs, is_neigh);
1747 }
1748 if (circuit->area->newmetric)
1749 {
1750 te_is_neigh = XCALLOC (MTYPE_ISIS_TLV,
1751 sizeof (struct te_is_neigh));
1752 memcpy (&te_is_neigh->neigh_id, adj->sysid, ISIS_SYS_ID_LEN);
1753 listnode_add (lsp->tlv_data.te_is_neighs, te_is_neigh);
1754 }
hassof390d2c2004-09-10 20:48:21 +00001755 }
1756 else if (level == 1 && adj->sys_type == ISIS_SYSTYPE_ES)
1757 {
1758 /* an ES neigbour add it, if we are building level 1 LSP */
1759 /* FIXME: the tlv-format is hard to use here */
1760 if (lsp->tlv_data.es_neighs == NULL)
1761 {
1762 lsp->tlv_data.es_neighs = list_new ();
1763 lsp->tlv_data.es_neighs->del = free_tlv;
1764 }
paul15935e92005-05-03 09:27:23 +00001765 es_neigh = XCALLOC (MTYPE_ISIS_TLV, sizeof (struct es_neigh));
1766
hassof390d2c2004-09-10 20:48:21 +00001767 memcpy (&es_neigh->first_es_neigh, adj->sysid, ISIS_SYS_ID_LEN);
hassoaac372f2005-09-01 17:52:33 +00001768 listnode_add (lsp->tlv_data.es_neighs, es_neigh);
hassof390d2c2004-09-10 20:48:21 +00001769 }
1770 }
jardineb5d44e2003-12-23 08:09:43 +00001771 }
hassof390d2c2004-09-10 20:48:21 +00001772
hassoc0fb2a52005-09-03 16:29:40 +00001773 /* Reset endp of stream to overwrite only TLV part of it. */
hassoc89c05d2005-09-04 21:36:36 +00001774 stream_reset (lsp->pdu);
hassoc0fb2a52005-09-03 16:29:40 +00001775 stream_forward_endp (lsp->pdu, ISIS_FIXED_HDR_LEN + ISIS_LSP_HDR_LEN);
1776
jardineb5d44e2003-12-23 08:09:43 +00001777 /*
1778 * Add the authentication info if it's present
1779 */
hassof390d2c2004-09-10 20:48:21 +00001780 (level == 1) ? (passwd = &circuit->area->area_passwd) :
1781 (passwd = &circuit->area->domain_passwd);
1782 if (passwd->type)
1783 {
1784 memcpy (&lsp->tlv_data.auth_info, passwd, sizeof (struct isis_passwd));
1785 tlv_add_authinfo (passwd->type, passwd->len, passwd->passwd, lsp->pdu);
1786 }
jardineb5d44e2003-12-23 08:09:43 +00001787
1788 if (lsp->tlv_data.is_neighs && listcount (lsp->tlv_data.is_neighs) > 0)
1789 tlv_add_is_neighs (lsp->tlv_data.is_neighs, lsp->pdu);
1790
hassoaa4376e2005-09-26 17:39:48 +00001791 if (lsp->tlv_data.te_is_neighs && listcount (lsp->tlv_data.te_is_neighs) > 0)
1792 tlv_add_te_is_neighs (lsp->tlv_data.te_is_neighs, lsp->pdu);
1793
jardineb5d44e2003-12-23 08:09:43 +00001794 if (lsp->tlv_data.es_neighs && listcount (lsp->tlv_data.es_neighs) > 0)
1795 tlv_add_is_neighs (lsp->tlv_data.es_neighs, lsp->pdu);
1796
paul9985f832005-02-09 15:51:56 +00001797 lsp->lsp_header->pdu_len = htons (stream_get_endp (lsp->pdu));
hassof390d2c2004-09-10 20:48:21 +00001798 iso_csum_create (STREAM_DATA (lsp->pdu) + 12,
1799 ntohs (lsp->lsp_header->pdu_len) - 12, 12);
1800
jardineb5d44e2003-12-23 08:09:43 +00001801 list_delete (adj_list);
1802
1803 return;
1804}
1805
hasso92365882005-01-18 13:53:33 +00001806static int
jardineb5d44e2003-12-23 08:09:43 +00001807lsp_pseudo_regenerate (struct isis_circuit *circuit, int level)
1808{
1809 dict_t *lspdb = circuit->area->lspdb[level - 1];
1810 struct isis_lsp *lsp;
1811 u_char lsp_id[ISIS_SYS_ID_LEN + 2];
hassof390d2c2004-09-10 20:48:21 +00001812
jardineb5d44e2003-12-23 08:09:43 +00001813 memcpy (lsp_id, isis->sysid, ISIS_SYS_ID_LEN);
hassof390d2c2004-09-10 20:48:21 +00001814 LSP_PSEUDO_ID (lsp_id) = circuit->circuit_id;
1815 LSP_FRAGMENT (lsp_id) = 0;
1816
jardineb5d44e2003-12-23 08:09:43 +00001817 lsp = lsp_search (lsp_id, lspdb);
hassof390d2c2004-09-10 20:48:21 +00001818
1819 if (!lsp)
1820 {
1821 zlog_err ("lsp_pseudo_regenerate(): no l%d LSP %s found!", level,
1822 rawlspid_print (lsp_id));
1823 return ISIS_ERROR;
1824 }
1825 lsp_clear_data (lsp);
jardineb5d44e2003-12-23 08:09:43 +00001826
1827 lsp_build_pseudo (lsp, circuit, level);
1828
hassof390d2c2004-09-10 20:48:21 +00001829 lsp->lsp_header->rem_lifetime =
jardineb5d44e2003-12-23 08:09:43 +00001830 htons (isis_jitter (circuit->area->max_lsp_lifetime[level - 1],
hassof390d2c2004-09-10 20:48:21 +00001831 MAX_AGE_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00001832
1833 lsp_inc_seqnum (lsp, 0);
hassof390d2c2004-09-10 20:48:21 +00001834
1835 if (isis->debugs & DEBUG_UPDATE_PACKETS)
1836 {
hasso529d65b2004-12-24 00:14:50 +00001837 zlog_debug ("ISIS-Upd (%s): refreshing pseudo LSP L%d %s",
1838 circuit->area->area_tag, level,
1839 rawlspid_print (lsp->lsp_header->lsp_id));
hassof390d2c2004-09-10 20:48:21 +00001840 }
jardineb5d44e2003-12-23 08:09:43 +00001841
1842 lsp->last_generated = time (NULL);
1843 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
hassof390d2c2004-09-10 20:48:21 +00001844
jardineb5d44e2003-12-23 08:09:43 +00001845 return ISIS_OK;
1846}
1847
jardineb5d44e2003-12-23 08:09:43 +00001848int
1849lsp_l1_refresh_pseudo (struct thread *thread)
1850{
1851 struct isis_circuit *circuit;
1852 int retval;
1853 unsigned long ref_time;
1854
hassof390d2c2004-09-10 20:48:21 +00001855 circuit = THREAD_ARG (thread);
1856
jardineb5d44e2003-12-23 08:09:43 +00001857 if (!circuit->u.bc.is_dr[0])
hassof390d2c2004-09-10 20:48:21 +00001858 return ISIS_ERROR; /* FIXME: purge and such */
1859
hasso13c48f72004-09-10 21:19:13 +00001860 circuit->u.bc.t_refresh_pseudo_lsp[0] = NULL;
1861
jardineb5d44e2003-12-23 08:09:43 +00001862 retval = lsp_pseudo_regenerate (circuit, 1);
hassof390d2c2004-09-10 20:48:21 +00001863
1864 ref_time = circuit->area->lsp_refresh[0] > MAX_LSP_GEN_INTERVAL ?
jardineb5d44e2003-12-23 08:09:43 +00001865 MAX_LSP_GEN_INTERVAL : circuit->area->lsp_refresh[0];
1866
hassof390d2c2004-09-10 20:48:21 +00001867 THREAD_TIMER_ON (master, circuit->u.bc.t_refresh_pseudo_lsp[0],
1868 lsp_l1_refresh_pseudo, circuit,
1869 isis_jitter (ref_time, MAX_AGE_JITTER));
1870
jardineb5d44e2003-12-23 08:09:43 +00001871 return retval;
1872}
1873
hassof390d2c2004-09-10 20:48:21 +00001874int
jardineb5d44e2003-12-23 08:09:43 +00001875lsp_l1_pseudo_generate (struct isis_circuit *circuit)
1876{
1877 struct isis_lsp *lsp;
1878 u_char id[ISIS_SYS_ID_LEN + 2];
1879 unsigned long ref_time;
1880
hassof390d2c2004-09-10 20:48:21 +00001881 memcpy (id, isis->sysid, ISIS_SYS_ID_LEN);
1882 LSP_FRAGMENT (id) = 0;
1883 LSP_PSEUDO_ID (id) = circuit->circuit_id;
jardineb5d44e2003-12-23 08:09:43 +00001884
1885 /*
1886 * If for some reason have a pseudo LSP in the db already -> regenerate
1887 */
1888 if (lsp_search (id, circuit->area->lspdb[0]))
1889 return lsp_pseudo_regenerate (circuit, 1);
1890 lsp = lsp_new (id, circuit->area->max_lsp_lifetime[0],
hassof390d2c2004-09-10 20:48:21 +00001891 1, circuit->area->is_type, 0, 1);
1892
jardineb5d44e2003-12-23 08:09:43 +00001893 lsp_build_pseudo (lsp, circuit, 1);
hassof390d2c2004-09-10 20:48:21 +00001894
jardineb5d44e2003-12-23 08:09:43 +00001895 lsp->own_lsp = 1;
1896 lsp_insert (lsp, circuit->area->lspdb[0]);
1897 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
1898
hassof390d2c2004-09-10 20:48:21 +00001899 ref_time = circuit->area->lsp_refresh[0] > MAX_LSP_GEN_INTERVAL ?
jardineb5d44e2003-12-23 08:09:43 +00001900 MAX_LSP_GEN_INTERVAL : circuit->area->lsp_refresh[0];
1901
hassof390d2c2004-09-10 20:48:21 +00001902 THREAD_TIMER_ON (master, circuit->u.bc.t_refresh_pseudo_lsp[0],
1903 lsp_l1_refresh_pseudo, circuit,
1904 isis_jitter (ref_time, MAX_AGE_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00001905
1906 return lsp_regenerate_schedule (circuit->area);
1907}
1908
1909int
1910lsp_l2_refresh_pseudo (struct thread *thread)
1911{
1912 struct isis_circuit *circuit;
1913 int retval;
1914 unsigned long ref_time;
hassof390d2c2004-09-10 20:48:21 +00001915 circuit = THREAD_ARG (thread);
1916
jardineb5d44e2003-12-23 08:09:43 +00001917 if (!circuit->u.bc.is_dr[1])
hassof390d2c2004-09-10 20:48:21 +00001918 return ISIS_ERROR; /* FIXME: purge and such */
1919
hasso13c48f72004-09-10 21:19:13 +00001920 circuit->u.bc.t_refresh_pseudo_lsp[1] = NULL;
1921
jardineb5d44e2003-12-23 08:09:43 +00001922 retval = lsp_pseudo_regenerate (circuit, 2);
1923
hassof390d2c2004-09-10 20:48:21 +00001924 ref_time = circuit->area->lsp_refresh[1] > MAX_LSP_GEN_INTERVAL ?
jardineb5d44e2003-12-23 08:09:43 +00001925 MAX_LSP_GEN_INTERVAL : circuit->area->lsp_refresh[1];
1926
hassof390d2c2004-09-10 20:48:21 +00001927 THREAD_TIMER_ON (master, circuit->u.bc.t_refresh_pseudo_lsp[1],
1928 lsp_l2_refresh_pseudo, circuit,
1929 isis_jitter (ref_time, MAX_AGE_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00001930
jardineb5d44e2003-12-23 08:09:43 +00001931 return retval;
1932}
1933
hassof390d2c2004-09-10 20:48:21 +00001934int
jardineb5d44e2003-12-23 08:09:43 +00001935lsp_l2_pseudo_generate (struct isis_circuit *circuit)
1936{
1937 struct isis_lsp *lsp;
1938 u_char id[ISIS_SYS_ID_LEN + 2];
1939 unsigned long ref_time;
1940
hassof390d2c2004-09-10 20:48:21 +00001941 memcpy (id, isis->sysid, ISIS_SYS_ID_LEN);
1942 LSP_FRAGMENT (id) = 0;
1943 LSP_PSEUDO_ID (id) = circuit->circuit_id;
jardineb5d44e2003-12-23 08:09:43 +00001944
1945 if (lsp_search (id, circuit->area->lspdb[1]))
1946 return lsp_pseudo_regenerate (circuit, 2);
1947
1948 lsp = lsp_new (id, circuit->area->max_lsp_lifetime[1],
hassof390d2c2004-09-10 20:48:21 +00001949 1, circuit->area->is_type, 0, 2);
jardineb5d44e2003-12-23 08:09:43 +00001950
1951 lsp_build_pseudo (lsp, circuit, 2);
hassof390d2c2004-09-10 20:48:21 +00001952
1953 ref_time = circuit->area->lsp_refresh[1] > MAX_LSP_GEN_INTERVAL ?
jardineb5d44e2003-12-23 08:09:43 +00001954 MAX_LSP_GEN_INTERVAL : circuit->area->lsp_refresh[1];
1955
1956
1957 lsp->own_lsp = 1;
1958 lsp_insert (lsp, circuit->area->lspdb[1]);
1959 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
hassof390d2c2004-09-10 20:48:21 +00001960
1961 THREAD_TIMER_ON (master, circuit->u.bc.t_refresh_pseudo_lsp[1],
1962 lsp_l2_refresh_pseudo, circuit,
1963 isis_jitter (ref_time, MAX_AGE_JITTER));
1964
jardineb5d44e2003-12-23 08:09:43 +00001965 return lsp_regenerate_schedule (circuit->area);
1966}
1967
jardineb5d44e2003-12-23 08:09:43 +00001968/*
1969 * Walk through LSPs for an area
1970 * - set remaining lifetime
1971 * - set LSPs with SRMflag set for sending
1972 */
hassof390d2c2004-09-10 20:48:21 +00001973int
jardineb5d44e2003-12-23 08:09:43 +00001974lsp_tick (struct thread *thread)
1975{
1976 struct isis_area *area;
1977 struct isis_circuit *circuit;
1978 struct isis_lsp *lsp;
1979 struct list *lsp_list;
paul1eb8ef22005-04-07 07:30:20 +00001980 struct listnode *lspnode, *lspnnode, *cnode;
jardineb5d44e2003-12-23 08:09:43 +00001981 dnode_t *dnode, *dnode_next;
1982 int level;
1983
1984 lsp_list = list_new ();
hassof390d2c2004-09-10 20:48:21 +00001985
jardineb5d44e2003-12-23 08:09:43 +00001986 area = THREAD_ARG (thread);
1987 assert (area);
hasso13c48f72004-09-10 21:19:13 +00001988 area->t_tick = NULL;
hassof390d2c2004-09-10 20:48:21 +00001989 THREAD_TIMER_ON (master, area->t_tick, lsp_tick, area, 1);
jardineb5d44e2003-12-23 08:09:43 +00001990
1991 /*
1992 * Build a list of LSPs with (any) SRMflag set
1993 * and removed the ones that have aged out
1994 */
hassof390d2c2004-09-10 20:48:21 +00001995 for (level = 0; level < ISIS_LEVELS; level++)
1996 {
1997 if (area->lspdb[level] && dict_count (area->lspdb[level]) > 0)
1998 {
1999 dnode = dict_first (area->lspdb[level]);
2000 while (dnode != NULL)
2001 {
2002 dnode_next = dict_next (area->lspdb[level], dnode);
2003 lsp = dnode_get (dnode);
2004 lsp_set_time (lsp);
2005 if (lsp->age_out == 0)
2006 {
jardineb5d44e2003-12-23 08:09:43 +00002007
hasso529d65b2004-12-24 00:14:50 +00002008 zlog_debug ("ISIS-Upd (%s): L%u LSP %s seq 0x%08x aged out",
2009 area->area_tag,
2010 lsp->level,
2011 rawlspid_print (lsp->lsp_header->lsp_id),
2012 ntohl (lsp->lsp_header->seq_num));
hassof1082d12005-09-19 04:23:34 +00002013#ifdef TOPOLOGY_GENERATE
2014 if (lsp->from_topology)
2015 THREAD_TIMER_OFF (lsp->t_lsp_top_ref);
2016#endif /* TOPOLOGY_GENERATE */
hassof390d2c2004-09-10 20:48:21 +00002017 lsp_destroy (lsp);
2018 dict_delete (area->lspdb[level], dnode);
2019 }
2020 else if (flags_any_set (lsp->SRMflags))
2021 listnode_add (lsp_list, lsp);
2022 dnode = dnode_next;
2023 }
jardineb5d44e2003-12-23 08:09:43 +00002024
hassof390d2c2004-09-10 20:48:21 +00002025 /*
2026 * Send LSPs on circuits indicated by the SRMflags
2027 */
2028 if (listcount (lsp_list) > 0)
2029 {
paul1eb8ef22005-04-07 07:30:20 +00002030 for (ALL_LIST_ELEMENTS_RO (area->circuit_list, cnode, circuit))
hassof390d2c2004-09-10 20:48:21 +00002031 {
paul1eb8ef22005-04-07 07:30:20 +00002032 for (ALL_LIST_ELEMENTS (lsp_list, lspnode, lspnnode, lsp))
hassof390d2c2004-09-10 20:48:21 +00002033 {
hassof390d2c2004-09-10 20:48:21 +00002034 if (ISIS_CHECK_FLAG (lsp->SRMflags, circuit))
2035 {
2036 /* FIXME: if same or elder lsp is already in lsp
2037 * queue */
2038 listnode_add (circuit->lsp_queue, lsp);
2039 thread_add_event (master, send_lsp, circuit, 0);
2040 }
2041 }
2042 }
2043 }
2044 list_delete_all_node (lsp_list);
2045 }
jardineb5d44e2003-12-23 08:09:43 +00002046 }
jardineb5d44e2003-12-23 08:09:43 +00002047
2048 list_delete (lsp_list);
2049
2050 return ISIS_OK;
2051}
2052
jardineb5d44e2003-12-23 08:09:43 +00002053void
hassof390d2c2004-09-10 20:48:21 +00002054lsp_purge_dr (u_char * id, struct isis_circuit *circuit, int level)
jardineb5d44e2003-12-23 08:09:43 +00002055{
2056 struct isis_lsp *lsp;
hassof390d2c2004-09-10 20:48:21 +00002057
jardineb5d44e2003-12-23 08:09:43 +00002058 lsp = lsp_search (id, circuit->area->lspdb[level - 1]);
hassof390d2c2004-09-10 20:48:21 +00002059
2060 if (lsp && lsp->purged == 0)
2061 {
2062 lsp->lsp_header->rem_lifetime = htons (0);
2063 lsp->lsp_header->pdu_len =
2064 htons (ISIS_FIXED_HDR_LEN + ISIS_LSP_HDR_LEN);
2065 lsp->purged = 0;
2066 iso_csum_create (STREAM_DATA (lsp->pdu) + 12,
2067 ntohs (lsp->lsp_header->pdu_len) - 12, 12);
2068 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
2069 }
2070
jardineb5d44e2003-12-23 08:09:43 +00002071 return;
2072}
2073
2074/*
2075 * Purge own LSP that is received and we don't have.
2076 * -> Do as in 7.3.16.4
2077 */
2078void
hassof390d2c2004-09-10 20:48:21 +00002079lsp_purge_non_exist (struct isis_link_state_hdr *lsp_hdr,
2080 struct isis_area *area)
jardineb5d44e2003-12-23 08:09:43 +00002081{
2082 struct isis_lsp *lsp;
2083
2084 /*
2085 * We need to create the LSP to be purged
2086 */
hasso529d65b2004-12-24 00:14:50 +00002087 zlog_debug ("LSP PURGE NON EXIST");
hassoaac372f2005-09-01 17:52:33 +00002088 lsp = XCALLOC (MTYPE_ISIS_LSP, sizeof (struct isis_lsp));
hassof390d2c2004-09-10 20:48:21 +00002089 /*FIXME: BUG BUG BUG! the lsp doesn't exist here! */
2090 /*did smt here, maybe good probably not */
jardineb5d44e2003-12-23 08:09:43 +00002091 lsp->level = ((lsp_hdr->lsp_bits & LSPBIT_IST) == IS_LEVEL_1) ? 1 : 2;
2092 lsp->pdu = stream_new (ISIS_FIXED_HDR_LEN + ISIS_LSP_HDR_LEN);
hassof390d2c2004-09-10 20:48:21 +00002093 lsp->isis_header = (struct isis_fixed_hdr *) STREAM_DATA (lsp->pdu);
jardineb5d44e2003-12-23 08:09:43 +00002094 fill_fixed_hdr (lsp->isis_header, (lsp->level == 1) ? L1_LINK_STATE
hassof390d2c2004-09-10 20:48:21 +00002095 : L2_LINK_STATE);
2096 lsp->lsp_header = (struct isis_link_state_hdr *) (STREAM_DATA (lsp->pdu) +
2097 ISIS_FIXED_HDR_LEN);
jardineb5d44e2003-12-23 08:09:43 +00002098 memcpy (lsp->lsp_header, lsp_hdr, ISIS_LSP_HDR_LEN);
hassof390d2c2004-09-10 20:48:21 +00002099
jardineb5d44e2003-12-23 08:09:43 +00002100 /*
2101 * Retain only LSP header
2102 */
2103 lsp->lsp_header->pdu_len = htons (ISIS_FIXED_HDR_LEN + ISIS_LSP_HDR_LEN);
2104 /*
2105 * Set the remaining lifetime to 0
2106 */
2107 lsp->lsp_header->rem_lifetime = 0;
2108 /*
2109 * Put the lsp into LSPdb
2110 */
hassof390d2c2004-09-10 20:48:21 +00002111 lsp_insert (lsp, area->lspdb[lsp->level - 1]);
jardineb5d44e2003-12-23 08:09:43 +00002112
2113 /*
2114 * Send in to whole area
2115 */
2116 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
hassof390d2c2004-09-10 20:48:21 +00002117
jardineb5d44e2003-12-23 08:09:43 +00002118 return;
2119}
2120
2121#ifdef TOPOLOGY_GENERATE
hasso92365882005-01-18 13:53:33 +00002122static int
jardineb5d44e2003-12-23 08:09:43 +00002123top_lsp_refresh (struct thread *thread)
2124{
hassof390d2c2004-09-10 20:48:21 +00002125 struct isis_lsp *lsp;
hassof1082d12005-09-19 04:23:34 +00002126 unsigned long ref_time;
jardineb5d44e2003-12-23 08:09:43 +00002127
2128 lsp = THREAD_ARG (thread);
2129 assert (lsp);
2130
2131 lsp->t_lsp_top_ref = NULL;
2132
hassof1082d12005-09-19 04:23:34 +00002133 lsp_seqnum_update (lsp);
jardineb5d44e2003-12-23 08:09:43 +00002134
2135 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
hassof390d2c2004-09-10 20:48:21 +00002136 if (isis->debugs & DEBUG_UPDATE_PACKETS)
2137 {
hasso529d65b2004-12-24 00:14:50 +00002138 zlog_debug ("ISIS-Upd (): refreshing Topology L1 %s",
2139 rawlspid_print (lsp->lsp_header->lsp_id));
hassof390d2c2004-09-10 20:48:21 +00002140 }
hassof1082d12005-09-19 04:23:34 +00002141 lsp->lsp_header->rem_lifetime =
2142 htons (isis_jitter (lsp->area->max_lsp_lifetime[0], MAX_AGE_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002143
hassof1082d12005-09-19 04:23:34 +00002144 ref_time = lsp->area->lsp_refresh[0] > MAX_LSP_GEN_INTERVAL ?
2145 MAX_LSP_GEN_INTERVAL : lsp->area->lsp_refresh[0];
2146
hassof390d2c2004-09-10 20:48:21 +00002147 THREAD_TIMER_ON (master, lsp->t_lsp_top_ref, top_lsp_refresh, lsp,
hassof1082d12005-09-19 04:23:34 +00002148 isis_jitter (ref_time, MAX_LSP_GEN_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002149
2150 return ISIS_OK;
2151}
2152
2153void
2154generate_topology_lsps (struct isis_area *area)
2155{
2156 struct listnode *node;
2157 int i, max = 0;
2158 struct arc *arc;
2159 u_char lspid[ISIS_SYS_ID_LEN + 2];
2160 struct isis_lsp *lsp;
hassof1082d12005-09-19 04:23:34 +00002161 unsigned long ref_time;
jardineb5d44e2003-12-23 08:09:43 +00002162
2163 /* first we find the maximal node */
paula8f03df2005-04-10 15:58:10 +00002164 for (ALL_LIST_ELEMENTS_RO (area->topology, node, arc))
hassof390d2c2004-09-10 20:48:21 +00002165 {
2166 if (arc->from_node > max)
2167 max = arc->from_node;
2168 if (arc->to_node > max)
2169 max = arc->to_node;
jardineb5d44e2003-12-23 08:09:43 +00002170 }
2171
hassof390d2c2004-09-10 20:48:21 +00002172 for (i = 1; i < (max + 1); i++)
2173 {
2174 memcpy (lspid, area->topology_baseis, ISIS_SYS_ID_LEN);
2175 LSP_PSEUDO_ID (lspid) = 0x00;
2176 LSP_FRAGMENT (lspid) = 0x00;
2177 lspid[ISIS_SYS_ID_LEN - 1] = (i & 0xFF);
2178 lspid[ISIS_SYS_ID_LEN - 2] = ((i >> 8) & 0xFF);
jardineb5d44e2003-12-23 08:09:43 +00002179
hassof390d2c2004-09-10 20:48:21 +00002180 lsp = lsp_new (lspid, isis_jitter (area->max_lsp_lifetime[0],
hassof1082d12005-09-19 04:23:34 +00002181 MAX_AGE_JITTER), 1, IS_LEVEL_1, 0, 1);
2182 if (!lsp)
2183 return;
hassof390d2c2004-09-10 20:48:21 +00002184 lsp->from_topology = 1;
hassof1082d12005-09-19 04:23:34 +00002185 lsp->area = area;
jardineb5d44e2003-12-23 08:09:43 +00002186
hassof1082d12005-09-19 04:23:34 +00002187 /* Creating LSP data based on topology info. */
2188 build_topology_lsp_data (lsp, area, i);
2189 /* Checksum is also calculated here. */
2190 lsp_seqnum_update (lsp);
2191
2192 ref_time = area->lsp_refresh[0] > MAX_LSP_GEN_INTERVAL ?
2193 MAX_LSP_GEN_INTERVAL : area->lsp_refresh[0];
2194
2195 THREAD_TIMER_ON (master, lsp->t_lsp_top_ref, top_lsp_refresh, lsp,
2196 isis_jitter (ref_time, MAX_LSP_GEN_JITTER));
hassof390d2c2004-09-10 20:48:21 +00002197 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
2198 lsp_insert (lsp, area->lspdb[0]);
hassof390d2c2004-09-10 20:48:21 +00002199 }
jardineb5d44e2003-12-23 08:09:43 +00002200}
2201
2202void
2203remove_topology_lsps (struct isis_area *area)
2204{
2205 struct isis_lsp *lsp;
2206 dnode_t *dnode, *dnode_next;
2207
2208 dnode = dict_first (area->lspdb[0]);
hassof390d2c2004-09-10 20:48:21 +00002209 while (dnode != NULL)
2210 {
2211 dnode_next = dict_next (area->lspdb[0], dnode);
2212 lsp = dnode_get (dnode);
2213 if (lsp->from_topology)
2214 {
2215 THREAD_TIMER_OFF (lsp->t_lsp_top_ref);
2216 lsp_destroy (lsp);
2217 dict_delete (area->lspdb[0], dnode);
2218 }
2219 dnode = dnode_next;
jardineb5d44e2003-12-23 08:09:43 +00002220 }
jardineb5d44e2003-12-23 08:09:43 +00002221}
2222
2223void
hassof390d2c2004-09-10 20:48:21 +00002224build_topology_lsp_data (struct isis_lsp *lsp, struct isis_area *area,
jardineb5d44e2003-12-23 08:09:43 +00002225 int lsp_top_num)
2226{
paula8f03df2005-04-10 15:58:10 +00002227 struct listnode *node, *nnode;
jardineb5d44e2003-12-23 08:09:43 +00002228 struct arc *arc;
jardineb5d44e2003-12-23 08:09:43 +00002229 struct is_neigh *is_neigh;
jardineb5d44e2003-12-23 08:09:43 +00002230 char buff[200];
hassof1082d12005-09-19 04:23:34 +00002231 struct tlvs tlv_data;
2232 struct isis_lsp *lsp0 = lsp;
jardineb5d44e2003-12-23 08:09:43 +00002233
hassof1082d12005-09-19 04:23:34 +00002234 /* Add area addresses. FIXME: Is it needed at all? */
2235 if (lsp->tlv_data.area_addrs == NULL)
2236 lsp->tlv_data.area_addrs = list_new ();
2237 list_add_list (lsp->tlv_data.area_addrs, area->area_addrs);
jardineb5d44e2003-12-23 08:09:43 +00002238
hassof1082d12005-09-19 04:23:34 +00002239 if (lsp->tlv_data.nlpids == NULL)
2240 lsp->tlv_data.nlpids = XMALLOC (MTYPE_ISIS_TLV, sizeof (struct nlpids));
2241 lsp->tlv_data.nlpids->count = 1;
2242 lsp->tlv_data.nlpids->nlpids[0] = NLPID_IP;
jardineb5d44e2003-12-23 08:09:43 +00002243
hassof1082d12005-09-19 04:23:34 +00002244 if (area->dynhostname)
2245 {
2246 lsp->tlv_data.hostname = XMALLOC (MTYPE_ISIS_TLV,
2247 sizeof (struct hostname));
2248 memset (buff, 0x00, 200);
2249 sprintf (buff, "%s%d", area->topology_basedynh ? area->topology_basedynh :
2250 "feedme", lsp_top_num);
2251 memcpy (lsp->tlv_data.hostname->name, buff, strlen (buff));
2252 lsp->tlv_data.hostname->namelen = strlen (buff);
2253 }
2254
2255 if (lsp->tlv_data.nlpids)
2256 tlv_add_nlpid (lsp->tlv_data.nlpids, lsp->pdu);
2257 if (lsp->tlv_data.hostname)
2258 tlv_add_dynamic_hostname (lsp->tlv_data.hostname, lsp->pdu);
2259 if (lsp->tlv_data.area_addrs && listcount (lsp->tlv_data.area_addrs) > 0)
2260 tlv_add_area_addrs (lsp->tlv_data.area_addrs, lsp->pdu);
2261
2262 memset (&tlv_data, 0, sizeof (struct tlvs));
2263 if (tlv_data.is_neighs == NULL)
2264 tlv_data.is_neighs = list_new ();
2265
2266 /* Add reachability for this IS for simulated 1. */
hassof390d2c2004-09-10 20:48:21 +00002267 if (lsp_top_num == 1)
2268 {
hassof1082d12005-09-19 04:23:34 +00002269 is_neigh = XMALLOC (MTYPE_ISIS_TLV, sizeof (struct is_neigh));
2270 memset (is_neigh, 0, sizeof (struct is_neigh));
2271
hassof390d2c2004-09-10 20:48:21 +00002272 memcpy (&is_neigh->neigh_id, isis->sysid, ISIS_SYS_ID_LEN);
jardineb5d44e2003-12-23 08:09:43 +00002273 LSP_PSEUDO_ID (is_neigh->neigh_id) = 0x00;
hassof1082d12005-09-19 04:23:34 +00002274 /* Metric MUST NOT be 0, unless it's not alias TLV. */
2275 is_neigh->metrics.metric_default = 0x01;
jardineb5d44e2003-12-23 08:09:43 +00002276 is_neigh->metrics.metric_delay = METRICS_UNSUPPORTED;
2277 is_neigh->metrics.metric_expense = METRICS_UNSUPPORTED;
2278 is_neigh->metrics.metric_error = METRICS_UNSUPPORTED;
hassof1082d12005-09-19 04:23:34 +00002279 listnode_add (tlv_data.is_neighs, is_neigh);
jardineb5d44e2003-12-23 08:09:43 +00002280 }
hassof390d2c2004-09-10 20:48:21 +00002281
hassof1082d12005-09-19 04:23:34 +00002282 /* Add IS reachabilities. */
paula8f03df2005-04-10 15:58:10 +00002283 for (ALL_LIST_ELEMENTS (area->topology, node, nnode, arc))
hassof390d2c2004-09-10 20:48:21 +00002284 {
hassof1082d12005-09-19 04:23:34 +00002285 int to_lsp = 0;
2286
2287 if ((lsp_top_num != arc->from_node) && (lsp_top_num != arc->to_node))
2288 continue;
2289
2290 if (lsp_top_num == arc->from_node)
2291 to_lsp = arc->to_node;
2292 else
2293 to_lsp = arc->from_node;
2294
2295 is_neigh = XMALLOC (MTYPE_ISIS_TLV, sizeof (struct is_neigh));
2296 memset (is_neigh, 0, sizeof (struct is_neigh));
2297
2298 memcpy (&is_neigh->neigh_id, area->topology_baseis, ISIS_SYS_ID_LEN);
2299 is_neigh->neigh_id[ISIS_SYS_ID_LEN - 1] = (to_lsp & 0xFF);
2300 is_neigh->neigh_id[ISIS_SYS_ID_LEN - 2] = ((to_lsp >> 8) & 0xFF);
2301 is_neigh->metrics.metric_default = arc->distance;
2302 is_neigh->metrics.metric_delay = METRICS_UNSUPPORTED;
2303 is_neigh->metrics.metric_expense = METRICS_UNSUPPORTED;
2304 is_neigh->metrics.metric_error = METRICS_UNSUPPORTED;
2305 listnode_add (tlv_data.is_neighs, is_neigh);
hassof390d2c2004-09-10 20:48:21 +00002306 }
hassof1082d12005-09-19 04:23:34 +00002307
2308 while (tlv_data.is_neighs && listcount (tlv_data.is_neighs))
2309 {
2310 if (lsp->tlv_data.is_neighs == NULL)
2311 lsp->tlv_data.is_neighs = list_new ();
2312 lsp_tlv_fit (lsp, &tlv_data.is_neighs,
2313 &lsp->tlv_data.is_neighs,
2314 IS_NEIGHBOURS_LEN, area->lsp_frag_threshold,
2315 tlv_add_is_neighs);
2316 if (tlv_data.is_neighs && listcount (tlv_data.is_neighs))
2317 lsp = lsp_next_frag (LSP_FRAGMENT (lsp->lsp_header->lsp_id) + 1,
2318 lsp0, area, IS_LEVEL_1);
2319 }
2320
2321 free_tlvs (&tlv_data);
2322 return;
jardineb5d44e2003-12-23 08:09:43 +00002323}
2324#endif /* TOPOLOGY_GENERATE */