blob: 987a9b32b54a342bd4a4ffd28c9f5242a31d7298 [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 */
23#include <stdlib.h>
24#include <stdio.h>
25#include <zebra.h>
jardineb5d44e2003-12-23 08:09:43 +000026
27#include "linklist.h"
28#include "thread.h"
29#include "vty.h"
30#include "stream.h"
31#include "memory.h"
32#include "log.h"
33#include "prefix.h"
34#include "command.h"
35#include "hash.h"
36#include "if.h"
37
38#include "isisd/dict.h"
39#include "isisd/isis_constants.h"
40#include "isisd/isis_common.h"
41#include "isisd/isis_circuit.h"
42#include "isisd/isisd.h"
43#include "isisd/isis_tlv.h"
44#include "isisd/isis_lsp.h"
45#include "isisd/isis_pdu.h"
46#include "isisd/isis_dynhn.h"
47#include "isisd/isis_misc.h"
48#include "isisd/isis_flags.h"
49#include "isisd/iso_checksum.h"
50#include "isisd/isis_csm.h"
51#include "isisd/isis_adjacency.h"
52#include "isisd/isis_spf.h"
53
54#ifdef TOPOLOGY_GENERATE
55#include "spgrid.h"
56#endif
57
hassof390d2c2004-09-10 20:48:21 +000058#define LSP_MEMORY_PREASSIGN
jardineb5d44e2003-12-23 08:09:43 +000059
60extern struct isis *isis;
61extern struct thread_master *master;
hasso18a6dce2004-10-03 18:18:34 +000062extern struct in_addr router_id_zebra;
jardineb5d44e2003-12-23 08:09:43 +000063
hasso73d1aea2004-09-24 10:45:28 +000064/* staticly assigned vars for printing purposes */
65char lsp_bits_string[200]; /* FIXME: enough ? */
66
hassof390d2c2004-09-10 20:48:21 +000067int
68lsp_id_cmp (u_char * id1, u_char * id2)
69{
jardineb5d44e2003-12-23 08:09:43 +000070 return memcmp (id1, id2, ISIS_SYS_ID_LEN + 2);
71}
72
73dict_t *
hassof390d2c2004-09-10 20:48:21 +000074lsp_db_init (void)
jardineb5d44e2003-12-23 08:09:43 +000075{
76 dict_t *dict;
hassof390d2c2004-09-10 20:48:21 +000077
78 dict = dict_create (DICTCOUNT_T_MAX, (dict_comp_t) lsp_id_cmp);
79
jardineb5d44e2003-12-23 08:09:43 +000080 return dict;
81}
82
83struct isis_lsp *
hassof390d2c2004-09-10 20:48:21 +000084lsp_search (u_char * id, dict_t * lspdb)
jardineb5d44e2003-12-23 08:09:43 +000085{
86 dnode_t *node;
87
hassof390d2c2004-09-10 20:48:21 +000088#ifdef EXTREME_DEBUG
jardineb5d44e2003-12-23 08:09:43 +000089 dnode_t *dn;
90
hasso529d65b2004-12-24 00:14:50 +000091 zlog_debug ("searching db");
hassof390d2c2004-09-10 20:48:21 +000092 for (dn = dict_first (lspdb); dn; dn = dict_next (lspdb, dn))
93 {
hasso529d65b2004-12-24 00:14:50 +000094 zlog_debug ("%s\t%pX", rawlspid_print ((char *) dnode_getkey (dn)),
95 dnode_get (dn));
hassof390d2c2004-09-10 20:48:21 +000096 }
jardineb5d44e2003-12-23 08:09:43 +000097#endif /* EXTREME DEBUG */
98
99 node = dict_lookup (lspdb, id);
hassof390d2c2004-09-10 20:48:21 +0000100
jardineb5d44e2003-12-23 08:09:43 +0000101 if (node)
hassof390d2c2004-09-10 20:48:21 +0000102 return (struct isis_lsp *) dnode_get (node);
jardineb5d44e2003-12-23 08:09:43 +0000103
104 return NULL;
105}
106
hasso92365882005-01-18 13:53:33 +0000107static void
jardineb5d44e2003-12-23 08:09:43 +0000108lsp_clear_data (struct isis_lsp *lsp)
109{
110 if (!lsp)
111 return;
hassof390d2c2004-09-10 20:48:21 +0000112
113 if (lsp->own_lsp)
114 {
115 if (lsp->tlv_data.nlpids)
116 XFREE (MTYPE_ISIS_TLV, lsp->tlv_data.nlpids);
117 if (lsp->tlv_data.hostname)
118 XFREE (MTYPE_ISIS_TLV, lsp->tlv_data.hostname);
119 }
jardineb5d44e2003-12-23 08:09:43 +0000120 if (lsp->tlv_data.is_neighs)
121 list_delete (lsp->tlv_data.is_neighs);
122 if (lsp->tlv_data.area_addrs)
123 list_delete (lsp->tlv_data.area_addrs);
124 if (lsp->tlv_data.es_neighs)
125 list_delete (lsp->tlv_data.es_neighs);
126 if (lsp->tlv_data.ipv4_addrs)
127 list_delete (lsp->tlv_data.ipv4_addrs);
128 if (lsp->tlv_data.ipv4_int_reachs)
129 list_delete (lsp->tlv_data.ipv4_int_reachs);
130 if (lsp->tlv_data.ipv4_ext_reachs)
131 list_delete (lsp->tlv_data.ipv4_ext_reachs);
132#ifdef HAVE_IPV6
133 if (lsp->tlv_data.ipv6_addrs)
134 list_delete (lsp->tlv_data.ipv6_addrs);
135 if (lsp->tlv_data.ipv6_reachs)
136 list_delete (lsp->tlv_data.ipv6_reachs);
137#endif /* HAVE_IPV6 */
138
139 memset (&lsp->tlv_data, 0, sizeof (struct tlvs));
140
141 return;
142}
143
hasso92365882005-01-18 13:53:33 +0000144static void
jardineb5d44e2003-12-23 08:09:43 +0000145lsp_destroy (struct isis_lsp *lsp)
146{
147 if (!lsp)
148 return;
hassof390d2c2004-09-10 20:48:21 +0000149
jardineb5d44e2003-12-23 08:09:43 +0000150 lsp_clear_data (lsp);
hassof390d2c2004-09-10 20:48:21 +0000151
152 if (LSP_FRAGMENT (lsp->lsp_header->lsp_id) == 0 && lsp->lspu.frags)
153 {
jardineb5d44e2003-12-23 08:09:43 +0000154 list_delete (lsp->lspu.frags);
hassof390d2c2004-09-10 20:48:21 +0000155 }
156
jardineb5d44e2003-12-23 08:09:43 +0000157 if (lsp->pdu)
158 stream_free (lsp->pdu);
159 XFREE (MTYPE_ISIS_LSP, lsp);
160}
161
hassof390d2c2004-09-10 20:48:21 +0000162void
163lsp_db_destroy (dict_t * lspdb)
jardineb5d44e2003-12-23 08:09:43 +0000164{
165 dnode_t *dnode, *next;
166 struct isis_lsp *lsp;
hassof390d2c2004-09-10 20:48:21 +0000167
jardineb5d44e2003-12-23 08:09:43 +0000168 dnode = dict_first (lspdb);
hassof390d2c2004-09-10 20:48:21 +0000169 while (dnode)
170 {
171 next = dict_next (lspdb, dnode);
172 lsp = dnode_get (dnode);
173 lsp_destroy (lsp);
174 dict_delete_free (lspdb, dnode);
175 dnode = next;
176 }
177
jardineb5d44e2003-12-23 08:09:43 +0000178 dict_free (lspdb);
hassof390d2c2004-09-10 20:48:21 +0000179
jardineb5d44e2003-12-23 08:09:43 +0000180 return;
181}
182
183/*
184 * Remove all the frags belonging to the given lsp
185 */
hasso92365882005-01-18 13:53:33 +0000186static void
hassof390d2c2004-09-10 20:48:21 +0000187lsp_remove_frags (struct list *frags, dict_t * lspdb)
jardineb5d44e2003-12-23 08:09:43 +0000188{
189 dnode_t *dnode;
190 struct listnode *lnode;
191 struct isis_lsp *lsp;
192
hassof390d2c2004-09-10 20:48:21 +0000193 for (lnode = listhead (frags); lnode; nextnode (lnode))
194 {
195 lsp = getdata (lnode);
196 dnode = dict_lookup (lspdb, lsp->lsp_header->lsp_id);
197 lsp_destroy (lsp);
198 dnode_destroy (dict_delete (lspdb, dnode));
199 }
200
jardineb5d44e2003-12-23 08:09:43 +0000201 list_delete_all_node (frags);
hassof390d2c2004-09-10 20:48:21 +0000202
jardineb5d44e2003-12-23 08:09:43 +0000203 return;
204}
205
206void
hassof390d2c2004-09-10 20:48:21 +0000207lsp_search_and_destroy (u_char * id, dict_t * lspdb)
jardineb5d44e2003-12-23 08:09:43 +0000208{
209 dnode_t *node;
210 struct isis_lsp *lsp;
211
212 node = dict_lookup (lspdb, id);
hassof390d2c2004-09-10 20:48:21 +0000213 if (node)
214 {
215 node = dict_delete (lspdb, node);
216 lsp = dnode_get (node);
217 /*
218 * If this is a zero lsp, remove all the frags now
219 */
220 if (LSP_FRAGMENT (lsp->lsp_header->lsp_id) == 0)
221 {
222 if (lsp->lspu.frags)
223 lsp_remove_frags (lsp->lspu.frags, lspdb);
224 }
225 else
226 {
227 /*
228 * else just remove this frag, from the zero lsps' frag list
229 */
230 if (lsp->lspu.zero_lsp && lsp->lspu.zero_lsp->lspu.frags)
231 listnode_delete (lsp->lspu.zero_lsp->lspu.frags, lsp);
232 }
233 lsp_destroy (lsp);
234 dnode_destroy (node);
jardineb5d44e2003-12-23 08:09:43 +0000235 }
jardineb5d44e2003-12-23 08:09:43 +0000236}
237
238/*
239 * Compares a LSP to given values
240 * Params are given in net order
241 */
hassof390d2c2004-09-10 20:48:21 +0000242int
243lsp_compare (char *areatag, struct isis_lsp *lsp, u_int32_t seq_num,
jardineb5d44e2003-12-23 08:09:43 +0000244 u_int16_t checksum, u_int16_t rem_lifetime)
245{
hassof390d2c2004-09-10 20:48:21 +0000246 /* no point in double ntohl on seqnum */
247 if (lsp->lsp_header->seq_num == seq_num &&
jardineb5d44e2003-12-23 08:09:43 +0000248 lsp->lsp_header->checksum == checksum &&
249 /*comparing with 0, no need to do ntohl */
250 ((lsp->lsp_header->rem_lifetime == 0 && rem_lifetime == 0) ||
hassof390d2c2004-09-10 20:48:21 +0000251 (lsp->lsp_header->rem_lifetime != 0 && rem_lifetime != 0)))
252 {
253 if (isis->debugs & DEBUG_SNP_PACKETS)
254 {
hasso529d65b2004-12-24 00:14:50 +0000255 zlog_debug ("ISIS-Snp (%s): LSP %s seq 0x%08x, cksum 0x%04x,"
256 " lifetime %us",
257 areatag,
258 rawlspid_print (lsp->lsp_header->lsp_id),
259 ntohl (lsp->lsp_header->seq_num),
260 ntohs (lsp->lsp_header->checksum),
261 ntohs (lsp->lsp_header->rem_lifetime));
262 zlog_debug ("ISIS-Snp (%s): is equal to ours seq 0x%08x,"
263 " cksum 0x%04x, lifetime %us",
264 areatag,
265 ntohl (seq_num), ntohs (checksum), ntohs (rem_lifetime));
hassof390d2c2004-09-10 20:48:21 +0000266 }
267 return LSP_EQUAL;
jardineb5d44e2003-12-23 08:09:43 +0000268 }
jardineb5d44e2003-12-23 08:09:43 +0000269
hassof390d2c2004-09-10 20:48:21 +0000270 if (ntohl (seq_num) >= ntohl (lsp->lsp_header->seq_num))
271 {
272 if (isis->debugs & DEBUG_SNP_PACKETS)
273 {
hasso529d65b2004-12-24 00:14:50 +0000274 zlog_debug ("ISIS-Snp (%s): LSP %s seq 0x%08x, cksum 0x%04x,"
275 " lifetime %us",
276 areatag,
277 rawlspid_print (lsp->lsp_header->lsp_id),
278 ntohl (seq_num), ntohs (checksum), ntohs (rem_lifetime));
279 zlog_debug ("ISIS-Snp (%s): is newer than ours seq 0x%08x, "
280 "cksum 0x%04x, lifetime %us",
281 areatag,
282 ntohl (lsp->lsp_header->seq_num),
283 ntohs (lsp->lsp_header->checksum),
284 ntohs (lsp->lsp_header->rem_lifetime));
hassof390d2c2004-09-10 20:48:21 +0000285 }
286 return LSP_NEWER;
jardineb5d44e2003-12-23 08:09:43 +0000287 }
hassof390d2c2004-09-10 20:48:21 +0000288 if (isis->debugs & DEBUG_SNP_PACKETS)
289 {
hasso529d65b2004-12-24 00:14:50 +0000290 zlog_debug
hassof390d2c2004-09-10 20:48:21 +0000291 ("ISIS-Snp (%s): LSP %s seq 0x%08x, cksum 0x%04x, lifetime %us",
292 areatag, rawlspid_print (lsp->lsp_header->lsp_id), ntohl (seq_num),
293 ntohs (checksum), ntohs (rem_lifetime));
hasso529d65b2004-12-24 00:14:50 +0000294 zlog_debug ("ISIS-Snp (%s): is older than ours seq 0x%08x,"
295 " cksum 0x%04x, lifetime %us", areatag,
296 ntohl (lsp->lsp_header->seq_num),
297 ntohs (lsp->lsp_header->checksum),
298 ntohs (lsp->lsp_header->rem_lifetime));
hassof390d2c2004-09-10 20:48:21 +0000299 }
jardineb5d44e2003-12-23 08:09:43 +0000300
301 return LSP_OLDER;
302}
303
hassof390d2c2004-09-10 20:48:21 +0000304void
jardineb5d44e2003-12-23 08:09:43 +0000305lsp_inc_seqnum (struct isis_lsp *lsp, u_int32_t seq_num)
306{
307 u_int32_t newseq;
hassof390d2c2004-09-10 20:48:21 +0000308
jardineb5d44e2003-12-23 08:09:43 +0000309 if (seq_num == 0 || ntohl (lsp->lsp_header->seq_num) > seq_num)
310 newseq = ntohl (lsp->lsp_header->seq_num) + 1;
311 else
hassof390d2c2004-09-10 20:48:21 +0000312 newseq = seq_num++;
313
jardineb5d44e2003-12-23 08:09:43 +0000314 lsp->lsp_header->seq_num = htonl (newseq);
hassof390d2c2004-09-10 20:48:21 +0000315 iso_csum_create (STREAM_DATA (lsp->pdu) + 12,
316 ntohs (lsp->lsp_header->pdu_len) - 12, 12);
jardineb5d44e2003-12-23 08:09:43 +0000317
318 return;
319}
320
321/*
322 * Genetates checksum for LSP and its frags
323 */
hasso92365882005-01-18 13:53:33 +0000324static void
jardineb5d44e2003-12-23 08:09:43 +0000325lsp_seqnum_update (struct isis_lsp *lsp0)
326{
327 struct isis_lsp *lsp;
328 struct listnode *node;
hassof390d2c2004-09-10 20:48:21 +0000329
jardineb5d44e2003-12-23 08:09:43 +0000330 lsp_inc_seqnum (lsp0, 0);
331
332 if (!lsp0->lspu.frags)
333 return;
334
hassof390d2c2004-09-10 20:48:21 +0000335 for (node = listhead (lsp0->lspu.frags); node; nextnode (node))
336 {
337 lsp = getdata (node);
338 lsp_inc_seqnum (lsp, 0);
339 }
340
jardineb5d44e2003-12-23 08:09:43 +0000341 return;
342}
343
hassof390d2c2004-09-10 20:48:21 +0000344int
jardineb5d44e2003-12-23 08:09:43 +0000345isis_lsp_authinfo_check (struct stream *stream, struct isis_area *area,
hassof390d2c2004-09-10 20:48:21 +0000346 int pdulen, struct isis_passwd *passwd)
jardineb5d44e2003-12-23 08:09:43 +0000347{
348 uint32_t expected = 0, found;
349 struct tlvs tlvs;
350 int retval = 0;
351
352 expected |= TLVFLAG_AUTH_INFO;
353 retval = parse_tlvs (area->area_tag, stream->data +
hassof390d2c2004-09-10 20:48:21 +0000354 ISIS_FIXED_HDR_LEN + ISIS_LSP_HDR_LEN,
355 pdulen - ISIS_FIXED_HDR_LEN
356 - ISIS_LSP_HDR_LEN, &expected, &found, &tlvs);
jardineb5d44e2003-12-23 08:09:43 +0000357 if (retval || !(found & TLVFLAG_AUTH_INFO))
hassof390d2c2004-09-10 20:48:21 +0000358 return 1; /* Auth fail (parsing failed or no auth-tlv) */
jardineb5d44e2003-12-23 08:09:43 +0000359
360 return authentication_check (passwd, &tlvs.auth_info);
361}
362
hasso92365882005-01-18 13:53:33 +0000363static void
hassof390d2c2004-09-10 20:48:21 +0000364lsp_update_data (struct isis_lsp *lsp, struct stream *stream,
365 struct isis_area *area)
jardineb5d44e2003-12-23 08:09:43 +0000366{
hassof390d2c2004-09-10 20:48:21 +0000367 uint32_t expected = 0, found;
jardineb5d44e2003-12-23 08:09:43 +0000368 int retval;
hassof390d2c2004-09-10 20:48:21 +0000369
jardineb5d44e2003-12-23 08:09:43 +0000370 /* copying only the relevant part of our stream */
371 lsp->pdu = stream_new (stream->endp);
jardineb5d44e2003-12-23 08:09:43 +0000372 lsp->pdu->getp = stream->getp;
373 lsp->pdu->endp = stream->endp;
374 memcpy (lsp->pdu->data, stream->data, stream->endp);
375
376 /* setting pointers to the correct place */
hassof390d2c2004-09-10 20:48:21 +0000377 lsp->isis_header = (struct isis_fixed_hdr *) (STREAM_DATA (lsp->pdu));
378 lsp->lsp_header = (struct isis_link_state_hdr *) (STREAM_DATA (lsp->pdu) +
379 ISIS_FIXED_HDR_LEN);
jardineb5d44e2003-12-23 08:09:43 +0000380 lsp->age_out = ZERO_AGE_LIFETIME;
hassof390d2c2004-09-10 20:48:21 +0000381 lsp->installed = time (NULL);
jardineb5d44e2003-12-23 08:09:43 +0000382 /*
383 * Get LSP data i.e. TLVs
384 */
385 expected |= TLVFLAG_AUTH_INFO;
386 expected |= TLVFLAG_AREA_ADDRS;
387 expected |= TLVFLAG_IS_NEIGHS;
hassof390d2c2004-09-10 20:48:21 +0000388 if ((lsp->lsp_header->lsp_bits & 3) == 3) /* a level 2 LSP */
jardineb5d44e2003-12-23 08:09:43 +0000389 expected |= TLVFLAG_PARTITION_DESIG_LEVEL2_IS;
390 expected |= TLVFLAG_NLPID;
391 if (area->dynhostname)
392 expected |= TLVFLAG_DYN_HOSTNAME;
hassof390d2c2004-09-10 20:48:21 +0000393 if (area->newmetric)
394 {
395 expected |= TLVFLAG_TE_IS_NEIGHS;
396 expected |= TLVFLAG_TE_IPV4_REACHABILITY;
397 expected |= TLVFLAG_TE_ROUTER_ID;
398 }
jardineb5d44e2003-12-23 08:09:43 +0000399 expected |= TLVFLAG_IPV4_ADDR;
400 expected |= TLVFLAG_IPV4_INT_REACHABILITY;
401 expected |= TLVFLAG_IPV4_EXT_REACHABILITY;
402#ifdef HAVE_IPV6
403 expected |= TLVFLAG_IPV6_ADDR;
404 expected |= TLVFLAG_IPV6_REACHABILITY;
405#endif /* HAVE_IPV6 */
406
407 retval = parse_tlvs (area->area_tag, lsp->pdu->data +
hassof390d2c2004-09-10 20:48:21 +0000408 ISIS_FIXED_HDR_LEN + ISIS_LSP_HDR_LEN,
409 ntohs (lsp->lsp_header->pdu_len) - ISIS_FIXED_HDR_LEN
410 - ISIS_LSP_HDR_LEN, &expected, &found, &lsp->tlv_data);
jardineb5d44e2003-12-23 08:09:43 +0000411
hassof390d2c2004-09-10 20:48:21 +0000412 if (found & TLVFLAG_DYN_HOSTNAME)
413 {
414 if (area->dynhostname)
415 isis_dynhn_insert (lsp->lsp_header->lsp_id, lsp->tlv_data.hostname,
416 (lsp->lsp_header->lsp_bits & LSPBIT_IST) ==
417 IS_LEVEL_1_AND_2 ? IS_LEVEL_2 :
418 (lsp->lsp_header->lsp_bits & LSPBIT_IST));
419 }
jardineb5d44e2003-12-23 08:09:43 +0000420
421}
422
423void
424lsp_update (struct isis_lsp *lsp, struct isis_link_state_hdr *lsp_hdr,
hassof390d2c2004-09-10 20:48:21 +0000425 struct stream *stream, struct isis_area *area)
jardineb5d44e2003-12-23 08:09:43 +0000426{
hassof390d2c2004-09-10 20:48:21 +0000427 /* free the old lsp data */
jardineb5d44e2003-12-23 08:09:43 +0000428 XFREE (MTYPE_STREAM_DATA, lsp->pdu);
429 lsp_clear_data (lsp);
430
431 /* rebuild the lsp data */
432 lsp_update_data (lsp, stream, area);
433
hassof390d2c2004-09-10 20:48:21 +0000434 /* set the new values for lsp header */
jardineb5d44e2003-12-23 08:09:43 +0000435 memcpy (lsp->lsp_header, lsp_hdr, ISIS_LSP_HDR_LEN);
jardineb5d44e2003-12-23 08:09:43 +0000436}
437
jardineb5d44e2003-12-23 08:09:43 +0000438/* creation of LSP directly from what we received */
439struct isis_lsp *
hassof390d2c2004-09-10 20:48:21 +0000440lsp_new_from_stream_ptr (struct stream *stream,
441 u_int16_t pdu_len, struct isis_lsp *lsp0,
442 struct isis_area *area)
jardineb5d44e2003-12-23 08:09:43 +0000443{
444 struct isis_lsp *lsp;
445
446 lsp = XMALLOC (MTYPE_ISIS_LSP, sizeof (struct isis_lsp));
447 memset (lsp, 0, sizeof (struct isis_lsp));
hassof390d2c2004-09-10 20:48:21 +0000448
jardineb5d44e2003-12-23 08:09:43 +0000449 lsp_update_data (lsp, stream, area);
hassof390d2c2004-09-10 20:48:21 +0000450
451 if (lsp0 == NULL)
452 {
453 /*
454 * zero lsp -> create the list for fragments
455 */
456 lsp->lspu.frags = list_new ();
457 }
458 else
459 {
460 /*
461 * a fragment -> set the backpointer and add this to zero lsps frag list
462 */
463 lsp->lspu.zero_lsp = lsp0;
464 listnode_add (lsp0->lspu.frags, lsp);
465 }
466
jardineb5d44e2003-12-23 08:09:43 +0000467 return lsp;
468}
469
470struct isis_lsp *
hassof390d2c2004-09-10 20:48:21 +0000471lsp_new (u_char * lsp_id, u_int16_t rem_lifetime, u_int32_t seq_num,
472 u_int8_t lsp_bits, u_int16_t checksum, int level)
jardineb5d44e2003-12-23 08:09:43 +0000473{
474 struct isis_lsp *lsp;
475
476 lsp = XMALLOC (MTYPE_ISIS_LSP, sizeof (struct isis_lsp));
hassof390d2c2004-09-10 20:48:21 +0000477 if (!lsp)
478 {
479 /* FIXME: set lspdbol bit */
480 zlog_warn ("lsp_new(): out of memory");
481 return NULL;
482 }
jardineb5d44e2003-12-23 08:09:43 +0000483 memset (lsp, 0, sizeof (struct isis_lsp));
484#ifdef LSP_MEMORY_PREASSIGN
hassof390d2c2004-09-10 20:48:21 +0000485 lsp->pdu = stream_new (1514); /*Should be minimal mtu? yup... */
jardineb5d44e2003-12-23 08:09:43 +0000486#else
hassof390d2c2004-09-10 20:48:21 +0000487 /* We need to do realloc on TLVs additions */
488 lsp->pdu = malloc (ISIS_FIXED_HDR_LEN + ISIS_LSP_HDR_LEN);
jardineb5d44e2003-12-23 08:09:43 +0000489#endif /* LSP_MEMORY_PREASSIGN */
490 if (LSP_FRAGMENT (lsp_id) == 0)
491 lsp->lspu.frags = list_new ();
hassof390d2c2004-09-10 20:48:21 +0000492 lsp->isis_header = (struct isis_fixed_hdr *) (STREAM_DATA (lsp->pdu));
493 lsp->lsp_header = (struct isis_link_state_hdr *)
494 (STREAM_DATA (lsp->pdu) + ISIS_FIXED_HDR_LEN);
495
jardineb5d44e2003-12-23 08:09:43 +0000496 /* at first we fill the FIXED HEADER */
hassof390d2c2004-09-10 20:48:21 +0000497 (level == 1) ? fill_fixed_hdr (lsp->isis_header, L1_LINK_STATE) :
498 fill_fixed_hdr (lsp->isis_header, L2_LINK_STATE);
499
jardineb5d44e2003-12-23 08:09:43 +0000500 /* now for the LSP HEADER */
501 /* Minimal LSP PDU size */
hassof390d2c2004-09-10 20:48:21 +0000502 lsp->lsp_header->pdu_len = htons (ISIS_FIXED_HDR_LEN + ISIS_LSP_HDR_LEN);
jardineb5d44e2003-12-23 08:09:43 +0000503 memcpy (lsp->lsp_header->lsp_id, lsp_id, ISIS_SYS_ID_LEN + 2);
hassof390d2c2004-09-10 20:48:21 +0000504 lsp->lsp_header->checksum = checksum; /* Provided in network order */
jardineb5d44e2003-12-23 08:09:43 +0000505 lsp->lsp_header->seq_num = htonl (seq_num);
506 lsp->lsp_header->rem_lifetime = htons (rem_lifetime);
507 lsp->lsp_header->lsp_bits = lsp_bits;
508 lsp->level = level;
509 lsp->age_out = ZERO_AGE_LIFETIME;
510
paul9985f832005-02-09 15:51:56 +0000511 stream_forward_endp (lsp->pdu, ISIS_FIXED_HDR_LEN + ISIS_LSP_HDR_LEN);
jardineb5d44e2003-12-23 08:09:43 +0000512
513 /* #ifdef EXTREME_DEBUG */
514 /* logging */
hasso529d65b2004-12-24 00:14:50 +0000515 zlog_debug ("New LSP with ID %s-%02x-%02x seqnum %08x", sysid_print (lsp_id),
516 LSP_PSEUDO_ID (lsp->lsp_header->lsp_id),
517 LSP_FRAGMENT (lsp->lsp_header->lsp_id),
518 ntohl (lsp->lsp_header->seq_num));
jardineb5d44e2003-12-23 08:09:43 +0000519 /* #endif EXTREME DEBUG */
520
521 return lsp;
522}
523
524void
hassof390d2c2004-09-10 20:48:21 +0000525lsp_insert (struct isis_lsp *lsp, dict_t * lspdb)
jardineb5d44e2003-12-23 08:09:43 +0000526{
527 dict_alloc_insert (lspdb, lsp->lsp_header->lsp_id, lsp);
528}
529
530/*
531 * Build a list of LSPs with non-zero ht bounded by start and stop ids
532 */
hassof390d2c2004-09-10 20:48:21 +0000533void
534lsp_build_list_nonzero_ht (u_char * start_id, u_char * stop_id,
535 struct list *list, dict_t * lspdb)
jardineb5d44e2003-12-23 08:09:43 +0000536{
537 dnode_t *first, *last, *curr;
538
539 first = dict_lower_bound (lspdb, start_id);
540 if (!first)
541 return;
hassof390d2c2004-09-10 20:48:21 +0000542
jardineb5d44e2003-12-23 08:09:43 +0000543 last = dict_upper_bound (lspdb, stop_id);
hassof390d2c2004-09-10 20:48:21 +0000544
jardineb5d44e2003-12-23 08:09:43 +0000545 curr = first;
hassof390d2c2004-09-10 20:48:21 +0000546
547 if (((struct isis_lsp *) (curr->dict_data))->lsp_header->rem_lifetime)
jardineb5d44e2003-12-23 08:09:43 +0000548 listnode_add (list, first->dict_data);
549
hassof390d2c2004-09-10 20:48:21 +0000550 while (curr)
551 {
552 curr = dict_next (lspdb, curr);
553 if (curr &&
554 ((struct isis_lsp *) (curr->dict_data))->lsp_header->rem_lifetime)
555 listnode_add (list, curr->dict_data);
556 if (curr == last)
557 break;
558 }
559
jardineb5d44e2003-12-23 08:09:43 +0000560 return;
561}
562
563/*
564 * Build a list of all LSPs bounded by start and stop ids
565 */
hassof390d2c2004-09-10 20:48:21 +0000566void
567lsp_build_list (u_char * start_id, u_char * stop_id,
568 struct list *list, dict_t * lspdb)
jardineb5d44e2003-12-23 08:09:43 +0000569{
570 dnode_t *first, *last, *curr;
571
572 first = dict_lower_bound (lspdb, start_id);
573 if (!first)
574 return;
hassof390d2c2004-09-10 20:48:21 +0000575
jardineb5d44e2003-12-23 08:09:43 +0000576 last = dict_upper_bound (lspdb, stop_id);
hassof390d2c2004-09-10 20:48:21 +0000577
jardineb5d44e2003-12-23 08:09:43 +0000578 curr = first;
hassof390d2c2004-09-10 20:48:21 +0000579
jardineb5d44e2003-12-23 08:09:43 +0000580 listnode_add (list, first->dict_data);
581
hassof390d2c2004-09-10 20:48:21 +0000582 while (curr)
583 {
584 curr = dict_next (lspdb, curr);
585 if (curr)
586 listnode_add (list, curr->dict_data);
587 if (curr == last)
588 break;
589 }
590
jardineb5d44e2003-12-23 08:09:43 +0000591 return;
592}
593
594/*
595 * Build a list of LSPs with SSN flag set for the given circuit
596 */
597void
hassof390d2c2004-09-10 20:48:21 +0000598lsp_build_list_ssn (struct isis_circuit *circuit, struct list *list,
599 dict_t * lspdb)
jardineb5d44e2003-12-23 08:09:43 +0000600{
601 dnode_t *dnode, *next;
602 struct isis_lsp *lsp;
hassof390d2c2004-09-10 20:48:21 +0000603
jardineb5d44e2003-12-23 08:09:43 +0000604 dnode = dict_first (lspdb);
hassof390d2c2004-09-10 20:48:21 +0000605 while (dnode != NULL)
606 {
607 next = dict_next (lspdb, dnode);
608 lsp = dnode_get (dnode);
609 if (ISIS_CHECK_FLAG (lsp->SSNflags, circuit))
610 listnode_add (list, lsp);
611 dnode = next;
612 }
613
jardineb5d44e2003-12-23 08:09:43 +0000614 return;
615}
616
hasso92365882005-01-18 13:53:33 +0000617static void
jardineb5d44e2003-12-23 08:09:43 +0000618lsp_set_time (struct isis_lsp *lsp)
619{
620 assert (lsp);
hassof390d2c2004-09-10 20:48:21 +0000621
622 if (lsp->lsp_header->rem_lifetime == 0)
623 {
624 if (lsp->age_out != 0)
625 lsp->age_out--;
626 return;
627 }
jardineb5d44e2003-12-23 08:09:43 +0000628
629 /* If we are turning 0 */
630 /* ISO 10589 - 7.3.16.4 first paragraph */
631
hassof390d2c2004-09-10 20:48:21 +0000632 if (ntohs (lsp->lsp_header->rem_lifetime) == 1)
633 {
634 /* 7.3.16.4 a) set SRM flags on all */
635 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
636 /* 7.3.16.4 b) retain only the header FIXME */
637 /* 7.3.16.4 c) record the time to purge FIXME (other way to do it) */
638 }
jardineb5d44e2003-12-23 08:09:43 +0000639
hassof390d2c2004-09-10 20:48:21 +0000640 lsp->lsp_header->rem_lifetime =
jardineb5d44e2003-12-23 08:09:43 +0000641 htons (ntohs (lsp->lsp_header->rem_lifetime) - 1);
642}
643
hasso92365882005-01-18 13:53:33 +0000644static void
hassof390d2c2004-09-10 20:48:21 +0000645lspid_print (u_char * lsp_id, u_char * trg, char dynhost, char frag)
jardineb5d44e2003-12-23 08:09:43 +0000646{
647 struct isis_dynhn *dyn = NULL;
hassof390d2c2004-09-10 20:48:21 +0000648 u_char id[SYSID_STRLEN];
jardineb5d44e2003-12-23 08:09:43 +0000649
650 if (dynhost)
651 dyn = dynhn_find_by_id (lsp_id);
652 else
653 dyn = NULL;
654
655 if (dyn)
hassof7c43dc2004-09-26 16:24:14 +0000656 sprintf ((char *)id, "%.14s", dyn->name.name);
jardineb5d44e2003-12-23 08:09:43 +0000657 else if (!memcmp (isis->sysid, lsp_id, ISIS_SYS_ID_LEN) & dynhost)
hassof7c43dc2004-09-26 16:24:14 +0000658 sprintf ((char *)id, "%.14s", unix_hostname ());
jardineb5d44e2003-12-23 08:09:43 +0000659 else
hassof390d2c2004-09-10 20:48:21 +0000660 {
661 memcpy (id, sysid_print (lsp_id), 15);
662 }
663 if (frag)
hassof7c43dc2004-09-26 16:24:14 +0000664 sprintf ((char *)trg, "%s.%02x-%02x", id, LSP_PSEUDO_ID (lsp_id),
hassof390d2c2004-09-10 20:48:21 +0000665 LSP_FRAGMENT (lsp_id));
666 else
hassof7c43dc2004-09-26 16:24:14 +0000667 sprintf ((char *)trg, "%s.%02x", id, LSP_PSEUDO_ID (lsp_id));
jardineb5d44e2003-12-23 08:09:43 +0000668}
669
hassof390d2c2004-09-10 20:48:21 +0000670/* Convert the lsp attribute bits to attribute string */
hasso1cd80842004-10-07 20:07:40 +0000671const char *
hassof390d2c2004-09-10 20:48:21 +0000672lsp_bits2string (u_char * lsp_bits)
673{
674 char *pos = lsp_bits_string;
jardineb5d44e2003-12-23 08:09:43 +0000675
hassof390d2c2004-09-10 20:48:21 +0000676 if (!*lsp_bits)
jardineb5d44e2003-12-23 08:09:43 +0000677 return " none";
678
679 /* we only focus on the default metric */
680 pos += sprintf (pos, "%d/",
hassof390d2c2004-09-10 20:48:21 +0000681 ISIS_MASK_LSP_ATT_DEFAULT_BIT (*lsp_bits) ? 1 : 0);
jardineb5d44e2003-12-23 08:09:43 +0000682
683 pos += sprintf (pos, "%d/",
hassof390d2c2004-09-10 20:48:21 +0000684 ISIS_MASK_LSP_PARTITION_BIT (*lsp_bits) ? 1 : 0);
jardineb5d44e2003-12-23 08:09:43 +0000685
hassof390d2c2004-09-10 20:48:21 +0000686 pos += sprintf (pos, "%d", ISIS_MASK_LSP_OL_BIT (*lsp_bits) ? 1 : 0);
687
jardineb5d44e2003-12-23 08:09:43 +0000688 *(pos) = '\0';
jardineb5d44e2003-12-23 08:09:43 +0000689
hassof390d2c2004-09-10 20:48:21 +0000690 return lsp_bits_string;
jardineb5d44e2003-12-23 08:09:43 +0000691}
692
693/* this function prints the lsp on show isis database */
hasso92365882005-01-18 13:53:33 +0000694static void
hassof390d2c2004-09-10 20:48:21 +0000695lsp_print (dnode_t * node, struct vty *vty, char dynhost)
jardineb5d44e2003-12-23 08:09:43 +0000696{
hassof390d2c2004-09-10 20:48:21 +0000697 struct isis_lsp *lsp = dnode_get (node);
jardineb5d44e2003-12-23 08:09:43 +0000698 u_char LSPid[255];
699
700 lspid_print (lsp->lsp_header->lsp_id, LSPid, dynhost, 1);
hassof390d2c2004-09-10 20:48:21 +0000701 vty_out (vty, "%-21s%c ", LSPid, lsp->own_lsp ? '*' : ' ');
702 vty_out (vty, "0x%08x ", ntohl (lsp->lsp_header->seq_num));
703 vty_out (vty, "0x%04x ", ntohs (lsp->lsp_header->checksum));
jardineb5d44e2003-12-23 08:09:43 +0000704
hassof390d2c2004-09-10 20:48:21 +0000705 if (ntohs (lsp->lsp_header->rem_lifetime) == 0)
706 vty_out (vty, " (%2u)", lsp->age_out);
jardineb5d44e2003-12-23 08:09:43 +0000707 else
hassof390d2c2004-09-10 20:48:21 +0000708 vty_out (vty, "%5u", ntohs (lsp->lsp_header->rem_lifetime));
jardineb5d44e2003-12-23 08:09:43 +0000709
710 vty_out (vty, " %s%s",
hassof390d2c2004-09-10 20:48:21 +0000711 lsp_bits2string (&lsp->lsp_header->lsp_bits), VTY_NEWLINE);
jardineb5d44e2003-12-23 08:09:43 +0000712}
713
hasso92365882005-01-18 13:53:33 +0000714static void
hassof390d2c2004-09-10 20:48:21 +0000715lsp_print_detail (dnode_t * node, struct vty *vty, char dynhost)
jardineb5d44e2003-12-23 08:09:43 +0000716{
717 struct isis_lsp *lsp = dnode_get (node);
718 struct area_addr *area_addr;
hassof390d2c2004-09-10 20:48:21 +0000719 int i;
jardineb5d44e2003-12-23 08:09:43 +0000720 struct listnode *lnode;
721 struct is_neigh *is_neigh;
722 struct te_is_neigh *te_is_neigh;
723 struct ipv4_reachability *ipv4_reach;
724 struct in_addr *ipv4_addr;
725 struct te_ipv4_reachability *te_ipv4_reach;
726#ifdef HAVE_IPV6
727 struct ipv6_reachability *ipv6_reach;
728 struct in6_addr in6;
729#endif
730 u_char LSPid[255];
731 u_char hostname[255];
732 u_char buff[BUFSIZ];
jardineb5d44e2003-12-23 08:09:43 +0000733 u_char ipv4_reach_prefix[20];
734 u_char ipv4_reach_mask[20];
735 u_char ipv4_address[20];
736
737 lspid_print (lsp->lsp_header->lsp_id, LSPid, dynhost, 1);
hassof390d2c2004-09-10 20:48:21 +0000738 lsp_print (node, vty, dynhost);
jardineb5d44e2003-12-23 08:09:43 +0000739
740 /* for all area address */
hassof390d2c2004-09-10 20:48:21 +0000741 if (lsp->tlv_data.area_addrs)
742 {
743 LIST_LOOP (lsp->tlv_data.area_addrs, area_addr, lnode)
744 {
hasso1cd80842004-10-07 20:07:40 +0000745 vty_out (vty, " Area Address: %s%s",
hassof390d2c2004-09-10 20:48:21 +0000746 isonet_print (area_addr->area_addr, area_addr->addr_len),
747 VTY_NEWLINE);
748 }
jardineb5d44e2003-12-23 08:09:43 +0000749 }
jardineb5d44e2003-12-23 08:09:43 +0000750
751 /* for the nlpid tlv */
hassof390d2c2004-09-10 20:48:21 +0000752 if (lsp->tlv_data.nlpids)
753 {
754 for (i = 0; i < lsp->tlv_data.nlpids->count; i++)
755 {
756 switch (lsp->tlv_data.nlpids->nlpids[i])
757 {
758 case NLPID_IP:
759 case NLPID_IPV6:
hasso1cd80842004-10-07 20:07:40 +0000760 vty_out (vty, " NLPID: 0x%X%s",
hassof390d2c2004-09-10 20:48:21 +0000761 lsp->tlv_data.nlpids->nlpids[i], VTY_NEWLINE);
762 break;
763 default:
hasso1cd80842004-10-07 20:07:40 +0000764 vty_out (vty, " NLPID: %s%s", "unknown", VTY_NEWLINE);
hassof390d2c2004-09-10 20:48:21 +0000765 break;
766 }
767 }
768 }
jardineb5d44e2003-12-23 08:09:43 +0000769
770 /* for the hostname tlv */
hassof390d2c2004-09-10 20:48:21 +0000771 if (lsp->tlv_data.hostname)
772 {
773 bzero (hostname, sizeof (hostname));
774 memcpy (hostname, lsp->tlv_data.hostname->name,
775 lsp->tlv_data.hostname->namelen);
776 vty_out (vty, " Hostname: %s%s", hostname, VTY_NEWLINE);
jardineb5d44e2003-12-23 08:09:43 +0000777 }
hassof390d2c2004-09-10 20:48:21 +0000778
779 if (lsp->tlv_data.ipv4_addrs)
780 {
781 LIST_LOOP (lsp->tlv_data.ipv4_addrs, ipv4_addr, lnode)
782 {
783 memcpy (ipv4_address, inet_ntoa (*ipv4_addr), sizeof (ipv4_address));
784 vty_out (vty, " IP: %s%s", ipv4_address, VTY_NEWLINE);
785 }
786 }
787
hasso1cd80842004-10-07 20:07:40 +0000788 /* TE router id */
789 if (lsp->tlv_data.router_id)
790 {
791 memcpy (ipv4_address, inet_ntoa (lsp->tlv_data.router_id->id),
792 sizeof (ipv4_address));
793 vty_out (vty, " Router ID: %s%s", ipv4_address, VTY_NEWLINE);
794 }
795
796 /* for the IS neighbor tlv */
797 if (lsp->tlv_data.is_neighs)
798 {
799 LIST_LOOP (lsp->tlv_data.is_neighs, is_neigh, lnode)
800 {
801 lspid_print (is_neigh->neigh_id, LSPid, dynhost, 0);
802 vty_out (vty, " Metric: %d IS %s%s",
803 is_neigh->metrics.metric_default, LSPid, VTY_NEWLINE);
804 }
805 }
806
jardineb5d44e2003-12-23 08:09:43 +0000807 /* for the internal reachable tlv */
808 if (lsp->tlv_data.ipv4_int_reachs)
hassof390d2c2004-09-10 20:48:21 +0000809 LIST_LOOP (lsp->tlv_data.ipv4_int_reachs, ipv4_reach, lnode)
810 {
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));
hasso2097cd82003-12-23 11:51:08 +0000815 vty_out (vty, " Metric: %d IP %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)
hassof390d2c2004-09-10 20:48:21 +0000822 LIST_LOOP (lsp->tlv_data.ipv4_ext_reachs, ipv4_reach, lnode)
823 {
824 memcpy (ipv4_reach_prefix, inet_ntoa (ipv4_reach->prefix),
825 sizeof (ipv4_reach_prefix));
826 memcpy (ipv4_reach_mask, inet_ntoa (ipv4_reach->mask),
827 sizeof (ipv4_reach_mask));
hasso2097cd82003-12-23 11:51:08 +0000828 vty_out (vty, " Metric: %d IP-External %s %s%s",
hassof390d2c2004-09-10 20:48:21 +0000829 ipv4_reach->metrics.metric_default, ipv4_reach_prefix,
830 ipv4_reach_mask, VTY_NEWLINE);
831 }
jardineb5d44e2003-12-23 08:09:43 +0000832
hasso2097cd82003-12-23 11:51:08 +0000833 /* IPv6 tlv */
834#ifdef HAVE_IPV6
835 if (lsp->tlv_data.ipv6_reachs)
hassof390d2c2004-09-10 20:48:21 +0000836 LIST_LOOP (lsp->tlv_data.ipv6_reachs, ipv6_reach, lnode)
837 {
838 memset (&in6, 0, sizeof (in6));
839 memcpy (in6.s6_addr, ipv6_reach->prefix,
840 PSIZE (ipv6_reach->prefix_len));
hassof7c43dc2004-09-26 16:24:14 +0000841 inet_ntop (AF_INET6, &in6, (char *)buff, BUFSIZ);
hasso2097cd82003-12-23 11:51:08 +0000842 if ((ipv6_reach->control_info &&
hassof390d2c2004-09-10 20:48:21 +0000843 CTRL_INFO_DISTRIBUTION) == DISTRIBUTION_INTERNAL)
844 vty_out (vty, " Metric: %d IPv6-Intern %s/%d%s",
845 ntohl (ipv6_reach->metric),
846 buff, ipv6_reach->prefix_len, VTY_NEWLINE);
hasso2097cd82003-12-23 11:51:08 +0000847 else
hassof390d2c2004-09-10 20:48:21 +0000848 vty_out (vty, " Metric: %d IPv6-Extern %s/%d%s",
849 ntohl (ipv6_reach->metric),
850 buff, ipv6_reach->prefix_len, VTY_NEWLINE);
hasso2097cd82003-12-23 11:51:08 +0000851 }
852#endif
hasso1cd80842004-10-07 20:07:40 +0000853 /* TE IS neighbor tlv */
jardineb5d44e2003-12-23 08:09:43 +0000854 if (lsp->tlv_data.te_is_neighs)
hassof390d2c2004-09-10 20:48:21 +0000855 LIST_LOOP (lsp->tlv_data.te_is_neighs, te_is_neigh, lnode)
856 {
hasso1cd80842004-10-07 20:07:40 +0000857 /* FIXME: metric display is wrong. */
hassof390d2c2004-09-10 20:48:21 +0000858 lspid_print (te_is_neigh->neigh_id, LSPid, dynhost, 0);
hasso1cd80842004-10-07 20:07:40 +0000859 vty_out (vty, " Metric: %d extd-IS %s%s",
860 te_is_neigh->te_metric[0], LSPid, VTY_NEWLINE);
hassof390d2c2004-09-10 20:48:21 +0000861 }
jardineb5d44e2003-12-23 08:09:43 +0000862
hasso1cd80842004-10-07 20:07:40 +0000863 /* TE IPv4 tlv */
jardineb5d44e2003-12-23 08:09:43 +0000864 if (lsp->tlv_data.te_ipv4_reachs)
hassof390d2c2004-09-10 20:48:21 +0000865 LIST_LOOP (lsp->tlv_data.te_ipv4_reachs, te_ipv4_reach, lnode)
866 {
hasso1cd80842004-10-07 20:07:40 +0000867 /* FIXME: There should be better way to output this stuff. */
hasso2e864cf2004-10-08 06:40:24 +0000868 vty_out (vty, " Metric: %d extd-IP %s/%d%s",
hasso1cd80842004-10-07 20:07:40 +0000869 ntohl (te_ipv4_reach->te_metric),
hassof390d2c2004-09-10 20:48:21 +0000870 inet_ntoa (newprefix2inaddr (&te_ipv4_reach->prefix_start,
871 te_ipv4_reach->control)),
hasso1cd80842004-10-07 20:07:40 +0000872 te_ipv4_reach->control & 0x3F, VTY_NEWLINE);
hassof390d2c2004-09-10 20:48:21 +0000873 }
jardineb5d44e2003-12-23 08:09:43 +0000874
hassof390d2c2004-09-10 20:48:21 +0000875 return;
jardineb5d44e2003-12-23 08:09:43 +0000876}
877
878/* print all the lsps info in the local lspdb */
hassof390d2c2004-09-10 20:48:21 +0000879int
880lsp_print_all (struct vty *vty, dict_t * lspdb, char detail, char dynhost)
jardineb5d44e2003-12-23 08:09:43 +0000881{
882
hassof390d2c2004-09-10 20:48:21 +0000883 dnode_t *node = dict_first (lspdb), *next;
jardineb5d44e2003-12-23 08:09:43 +0000884 int lsp_count = 0;
885
886 /* print the title, for both modes */
887 vty_out (vty, "LSP ID LSP Seq Num LSP Checksum "
hassof390d2c2004-09-10 20:48:21 +0000888 "LSP Holdtime ATT/P/OL%s", VTY_NEWLINE);
889
890 if (detail == ISIS_UI_LEVEL_BRIEF)
891 {
892 while (node != NULL)
893 {
894 /* I think it is unnecessary, so I comment it out */
895 /* dict_contains (lspdb, node); */
896 next = dict_next (lspdb, node);
897 lsp_print (node, vty, dynhost);
898 node = next;
899 lsp_count++;
900 }
jardineb5d44e2003-12-23 08:09:43 +0000901 }
hassof390d2c2004-09-10 20:48:21 +0000902 else if (detail == ISIS_UI_LEVEL_DETAIL)
903 {
904 while (node != NULL)
905 {
906 next = dict_next (lspdb, node);
907 lsp_print_detail (node, vty, dynhost);
908 node = next;
909 lsp_count++;
910 }
jardineb5d44e2003-12-23 08:09:43 +0000911 }
jardineb5d44e2003-12-23 08:09:43 +0000912
913 return lsp_count;
914}
915
916/* this function reallocate memory to an lsp pdu, with an additional
917 * size of memory, it scans the lsp and moves all pointers the
918 * way they should */
hasso92365882005-01-18 13:53:33 +0000919static u_char *
hassof390d2c2004-09-10 20:48:21 +0000920lsppdu_realloc (struct isis_lsp * lsp, int memorytype, int size)
jardineb5d44e2003-12-23 08:09:43 +0000921{
922 u_char *retval;
hassof390d2c2004-09-10 20:48:21 +0000923
924 retval = STREAM_DATA (lsp->pdu) + ntohs (lsp->lsp_header->pdu_len);
jardineb5d44e2003-12-23 08:09:43 +0000925#ifdef LSP_MEMORY_PREASSIGN
hassof390d2c2004-09-10 20:48:21 +0000926 lsp->lsp_header->pdu_len = htons (ntohs (lsp->lsp_header->pdu_len) + size);
jardineb5d44e2003-12-23 08:09:43 +0000927 return retval;
hassof390d2c2004-09-10 20:48:21 +0000928#else /* otherwise we have to move all pointers */
jardineb5d44e2003-12-23 08:09:43 +0000929 u_char *newpdu;
930 newpdu = stream_new (ntohs (lsp->lsp_header->pdu_len) + size);
hassof390d2c2004-09-10 20:48:21 +0000931 memcpy (STREAM_DATA (newpdu), STREAM_DATA (lsp->pdu),
932 ntohs (lsp->lsp_header->pdu_len));
jardineb5d44e2003-12-23 08:09:43 +0000933 XFREE (memorytype, lsp->pdu);
934 lsp->pdu = newpdu;
hassof390d2c2004-09-10 20:48:21 +0000935 lsp->isis_header = (struct isis_fixed_hdr *) STREAM_DATA (lsp->pdu);
936 lsp->lsp_header = (struct isis_link_state_hdr *)
937 (STREAM_DATA (lsp->pdu) + ISIS_FIXED_HDR_LEN);
jardineb5d44e2003-12-23 08:09:43 +0000938 htons (ntohs (lsp->lsp_header->pdu_len) += size);
hassof390d2c2004-09-10 20:48:21 +0000939 return STREAM_DATA (lsp->pdu) + (lsp->lsp_header->pdu_len - size);
jardineb5d44e2003-12-23 08:09:43 +0000940#endif /* LSP_MEMORY_PREASSIGN */
941}
942
hassof390d2c2004-09-10 20:48:21 +0000943#if 0 /* Saving the old one just in case :) */
jardineb5d44e2003-12-23 08:09:43 +0000944/*
945 * Builds the lsp->tlv_data
946 * and writes the tlvs into lsp->pdu
947 */
948void
949lsp_build_nonpseudo (struct isis_lsp *lsp, struct isis_area *area)
950{
951 struct is_neigh *is_neigh;
952 struct listnode *node, *ipnode;
953 int level = lsp->level;
954 struct isis_circuit *circuit;
955 struct prefix_ipv4 *ipv4;
956 struct ipv4_reachability *ipreach;
957 struct isis_adjacency *nei;
958#ifdef HAVE_IPV6
959 struct prefix_ipv6 *ipv6;
960 struct ipv6_reachability *ip6reach;
961#endif /* HAVE_IPV6 */
hassof390d2c2004-09-10 20:48:21 +0000962
jardineb5d44e2003-12-23 08:09:43 +0000963 /*
964 * First add the tlvs related to area
965 */
hassof390d2c2004-09-10 20:48:21 +0000966
jardineb5d44e2003-12-23 08:09:43 +0000967 /* Area addresses */
968 if (lsp->tlv_data.area_addrs == NULL)
969 lsp->tlv_data.area_addrs = list_new ();
970 list_add_list (lsp->tlv_data.area_addrs, area->area_addrs);
971 /* Protocols Supported */
hassof390d2c2004-09-10 20:48:21 +0000972 if (area->ip_circuits > 0
jardineb5d44e2003-12-23 08:09:43 +0000973#ifdef HAVE_IPV6
974 || area->ipv6_circuits > 0
975#endif /* HAVE_IPV6 */
hassof390d2c2004-09-10 20:48:21 +0000976 )
jardineb5d44e2003-12-23 08:09:43 +0000977 {
978 lsp->tlv_data.nlpids = XMALLOC (MTYPE_ISIS_TLV, sizeof (struct nlpids));
979 lsp->tlv_data.nlpids->count = 0;
hassof390d2c2004-09-10 20:48:21 +0000980 if (area->ip_circuits > 0)
981 {
982 lsp->tlv_data.nlpids->count++;
983 lsp->tlv_data.nlpids->nlpids[0] = NLPID_IP;
984 }
jardineb5d44e2003-12-23 08:09:43 +0000985#ifdef HAVE_IPV6
hassof390d2c2004-09-10 20:48:21 +0000986 if (area->ipv6_circuits > 0)
987 {
988 lsp->tlv_data.nlpids->count++;
989 lsp->tlv_data.nlpids->nlpids[lsp->tlv_data.nlpids->count - 1] =
990 NLPID_IPV6;
991 }
jardineb5d44e2003-12-23 08:09:43 +0000992#endif /* HAVE_IPV6 */
993 }
994 /* Dynamic Hostname */
hassof390d2c2004-09-10 20:48:21 +0000995 if (area->dynhostname)
996 {
997 lsp->tlv_data.hostname = XMALLOC (MTYPE_ISIS_TLV,
998 sizeof (struct hostname));
999 memcpy (&lsp->tlv_data.hostname->name, unix_hostname (),
1000 strlen (unix_hostname ()));
1001 lsp->tlv_data.hostname->namelen = strlen (unix_hostname ());
1002 }
jardineb5d44e2003-12-23 08:09:43 +00001003#ifdef TOPOLOGY_GENERATE
1004 /*
1005 * If we have a topology in this area, we need to connect this lsp to
1006 * the first topology lsp
1007 */
hassof390d2c2004-09-10 20:48:21 +00001008 if ((area->topology) && (level == 1))
1009 {
1010 if (lsp->tlv_data.is_neighs == NULL)
1011 lsp->tlv_data.is_neighs = list_new ();
1012 is_neigh = XMALLOC (MTYPE_ISIS_TLV, sizeof (struct is_neigh));
1013 memset (is_neigh, 0, sizeof (struct is_neigh));
1014 memcpy (&is_neigh->neigh_id, area->topology_baseis, ISIS_SYS_ID_LEN);
1015 /* connected to the first */
1016 is_neigh->neigh_id[ISIS_SYS_ID_LEN - 1] = (0x01);
1017 /* this is actually the same system, why mess the SPT */
1018 is_neigh->metrics.metric_default = 0;
1019 is_neigh->metrics.metric_delay = METRICS_UNSUPPORTED;
1020 is_neigh->metrics.metric_expense = METRICS_UNSUPPORTED;
1021 is_neigh->metrics.metric_error = METRICS_UNSUPPORTED;
1022 listnode_add (lsp->tlv_data.is_neighs, is_neigh);
jardineb5d44e2003-12-23 08:09:43 +00001023
hassof390d2c2004-09-10 20:48:21 +00001024 }
jardineb5d44e2003-12-23 08:09:43 +00001025#endif
1026
1027 /*
1028 * Then add tlvs related to circuits
1029 */
hassof390d2c2004-09-10 20:48:21 +00001030 for (node = listhead (area->circuit_list); node; nextnode (node))
1031 {
1032 circuit = getdata (node);
1033 if (circuit->state != C_STATE_UP)
1034 continue;
1035
1036 /*
1037 * Add IPv4 internal reachability of this circuit
1038 */
1039 if (circuit->ip_router && circuit->ip_addrs &&
1040 circuit->ip_addrs->count > 0)
1041 {
1042 if (lsp->tlv_data.ipv4_int_reachs == NULL)
1043 {
1044 lsp->tlv_data.ipv4_int_reachs = list_new ();
1045 lsp->tlv_data.ipv4_int_reachs->del = free_tlv;
1046 }
1047 for (ipnode = listhead (circuit->ip_addrs); ipnode;
1048 nextnode (ipnode))
1049 {
1050 ipv4 = getdata (ipnode);
1051 ipreach =
1052 XMALLOC (MTYPE_ISIS_TLV, sizeof (struct ipv4_reachability));
1053 ipreach->metrics = circuit->metrics[level - 1];
1054 ipreach->prefix = ipv4->prefix;
1055 masklen2ip (ipv4->prefixlen, &ipreach->mask);
1056 listnode_add (lsp->tlv_data.ipv4_int_reachs, ipreach);
1057 }
1058 }
jardineb5d44e2003-12-23 08:09:43 +00001059#ifdef HAVE_IPV6
hassof390d2c2004-09-10 20:48:21 +00001060 /*
1061 * Add IPv6 reachability of this circuit
1062 */
1063 if (circuit->ipv6_router && circuit->ipv6_non_link &&
1064 circuit->ipv6_non_link->count > 0)
1065 {
1066 if (lsp->tlv_data.ipv6_reachs == NULL)
1067 {
1068 lsp->tlv_data.ipv6_reachs = list_new ();
1069 lsp->tlv_data.ipv6_reachs->del = free_tlv;
1070 }
1071 for (ipnode = listhead (circuit->ipv6_non_link); ipnode;
1072 nextnode (ipnode))
1073 {
1074 ipv6 = getdata (ipnode);
1075 ip6reach =
1076 XMALLOC (MTYPE_ISIS_TLV, sizeof (struct ipv6_reachability));
1077 memset (ip6reach, 0, sizeof (struct ipv6_reachability));
1078 ip6reach->metric =
1079 htonl (circuit->metrics[level - 1].metric_default);
1080 ip6reach->control_info = 0;
1081 ip6reach->prefix_len = ipv6->prefixlen;
1082 memcpy (&ip6reach->prefix, ipv6->prefix.s6_addr,
1083 (ipv6->prefixlen + 7) / 8);
1084 listnode_add (lsp->tlv_data.ipv6_reachs, ip6reach);
1085 }
1086 }
jardineb5d44e2003-12-23 08:09:43 +00001087#endif /* HAVE_IPV6 */
hassof390d2c2004-09-10 20:48:21 +00001088
1089 switch (circuit->circ_type)
1090 {
1091 case CIRCUIT_T_BROADCAST:
1092 if (level & circuit->circuit_is_type)
1093 {
1094 if (lsp->tlv_data.is_neighs == NULL)
1095 {
1096 lsp->tlv_data.is_neighs = list_new ();
1097 lsp->tlv_data.is_neighs->del = free_tlv;
1098 }
1099 is_neigh = XMALLOC (MTYPE_ISIS_TLV, sizeof (struct is_neigh));
1100 memset (is_neigh, 0, sizeof (struct is_neigh));
1101 if (level == 1)
1102 memcpy (&is_neigh->neigh_id,
1103 circuit->u.bc.l1_desig_is, ISIS_SYS_ID_LEN + 1);
1104 else
1105 memcpy (&is_neigh->neigh_id,
1106 circuit->u.bc.l2_desig_is, ISIS_SYS_ID_LEN + 1);
1107 is_neigh->metrics = circuit->metrics[level - 1];
1108 listnode_add (lsp->tlv_data.is_neighs, is_neigh);
1109 }
1110 break;
1111 case CIRCUIT_T_P2P:
1112 nei = circuit->u.p2p.neighbor;
1113 if (nei && (level & nei->circuit_t))
1114 {
1115 if (lsp->tlv_data.is_neighs == NULL)
1116 {
1117 lsp->tlv_data.is_neighs = list_new ();
1118 lsp->tlv_data.is_neighs->del = free_tlv;
1119 }
1120 is_neigh = XMALLOC (MTYPE_ISIS_TLV, sizeof (struct is_neigh));
1121 memset (is_neigh, 0, sizeof (struct is_neigh));
1122 memcpy (&is_neigh->neigh_id, nei->sysid, ISIS_SYS_ID_LEN);
1123 is_neigh->metrics = circuit->metrics[level - 1];
1124 listnode_add (lsp->tlv_data.is_neighs, is_neigh);
1125 }
1126 break;
1127 case CIRCUIT_T_STATIC_IN:
1128 zlog_warn ("lsp_area_create: unsupported circuit type");
1129 break;
1130 case CIRCUIT_T_STATIC_OUT:
1131 zlog_warn ("lsp_area_create: unsupported circuit type");
1132 break;
1133 case CIRCUIT_T_DA:
1134 zlog_warn ("lsp_area_create: unsupported circuit type");
1135 break;
1136 default:
1137 zlog_warn ("lsp_area_create: unknown circuit type");
1138 }
jardineb5d44e2003-12-23 08:09:43 +00001139 }
hassof390d2c2004-09-10 20:48:21 +00001140
paul9985f832005-02-09 15:51:56 +00001141 stream_forward_endp (lsp->pdu, ISIS_FIXED_HDR_LEN + ISIS_LSP_HDR_LEN);
hassof390d2c2004-09-10 20:48:21 +00001142
jardineb5d44e2003-12-23 08:09:43 +00001143 if (lsp->tlv_data.nlpids)
1144 tlv_add_nlpid (lsp->tlv_data.nlpids, lsp->pdu);
1145 if (lsp->tlv_data.hostname)
1146 tlv_add_dynamic_hostname (lsp->tlv_data.hostname, lsp->pdu);
hassof390d2c2004-09-10 20:48:21 +00001147 if (lsp->tlv_data.area_addrs && listcount (lsp->tlv_data.area_addrs) > 0)
jardineb5d44e2003-12-23 08:09:43 +00001148 tlv_add_area_addrs (lsp->tlv_data.area_addrs, lsp->pdu);
1149 if (lsp->tlv_data.is_neighs && listcount (lsp->tlv_data.is_neighs) > 0)
1150 tlv_add_is_neighs (lsp->tlv_data.is_neighs, lsp->pdu);
hassof390d2c2004-09-10 20:48:21 +00001151 if (lsp->tlv_data.ipv4_int_reachs &&
jardineb5d44e2003-12-23 08:09:43 +00001152 listcount (lsp->tlv_data.ipv4_int_reachs) > 0)
1153 tlv_add_ipv4_reachs (lsp->tlv_data.ipv4_int_reachs, lsp->pdu);
hassof390d2c2004-09-10 20:48:21 +00001154#ifdef HAVE_IPV6
1155 if (lsp->tlv_data.ipv6_reachs && listcount (lsp->tlv_data.ipv6_reachs) > 0)
jardineb5d44e2003-12-23 08:09:43 +00001156 tlv_add_ipv6_reachs (lsp->tlv_data.ipv6_reachs, lsp->pdu);
1157#endif /* HAVE_IPV6 */
1158
paul9985f832005-02-09 15:51:56 +00001159 lsp->lsp_header->pdu_len = htons (stream_get_endp (lsp->pdu));
jardineb5d44e2003-12-23 08:09:43 +00001160
1161 return;
1162}
1163#endif
1164
1165#define FRAG_THOLD(S,T) \
1166((STREAM_SIZE(S)*T)/100)
1167
1168/* stream*, area->lsp_frag_threshold, increment */
1169#define FRAG_NEEDED(S,T,I) \
1170 (STREAM_SIZE(S)-STREAM_REMAIN(S)+(I) > FRAG_THOLD(S,T))
1171
hasso92365882005-01-18 13:53:33 +00001172static void
jardineb5d44e2003-12-23 08:09:43 +00001173lsp_tlv_fit (struct isis_lsp *lsp, struct list **from, struct list **to,
hassof390d2c2004-09-10 20:48:21 +00001174 int tlvsize, int frag_thold,
1175 int tlv_build_func (struct list *, struct stream *))
jardineb5d44e2003-12-23 08:09:43 +00001176{
1177 int count, i;
hassof390d2c2004-09-10 20:48:21 +00001178
jardineb5d44e2003-12-23 08:09:43 +00001179 /* can we fit all ? */
hassof390d2c2004-09-10 20:48:21 +00001180 if (!FRAG_NEEDED (lsp->pdu, frag_thold, listcount (*from) * tlvsize + 2))
1181 {
1182 tlv_build_func (*from, lsp->pdu);
1183 *to = *from;
1184 *from = NULL;
jardineb5d44e2003-12-23 08:09:43 +00001185 }
hassof390d2c2004-09-10 20:48:21 +00001186 else if (!FRAG_NEEDED (lsp->pdu, frag_thold, tlvsize + 2))
1187 {
1188 /* fit all we can */
1189 count = FRAG_THOLD (lsp->pdu, frag_thold) - 2 -
1190 (STREAM_SIZE (lsp->pdu) - STREAM_REMAIN (lsp->pdu));
1191 if (count)
1192 count = count / tlvsize;
1193 for (i = 0; i < count; i++)
1194 {
1195 listnode_add (*to, getdata (listhead (*from)));
1196 listnode_delete (*from, getdata (listhead (*from)));
1197 }
1198 tlv_build_func (*to, lsp->pdu);
1199 }
paul9985f832005-02-09 15:51:56 +00001200 lsp->lsp_header->pdu_len = htons (stream_get_endp (lsp->pdu));
jardineb5d44e2003-12-23 08:09:43 +00001201 return;
1202}
1203
hasso92365882005-01-18 13:53:33 +00001204static struct isis_lsp *
hassof390d2c2004-09-10 20:48:21 +00001205lsp_next_frag (u_char frag_num, struct isis_lsp *lsp0, struct isis_area *area,
1206 int level)
jardineb5d44e2003-12-23 08:09:43 +00001207{
1208 struct isis_lsp *lsp;
hassof390d2c2004-09-10 20:48:21 +00001209 u_char frag_id[ISIS_SYS_ID_LEN + 2];
1210
jardineb5d44e2003-12-23 08:09:43 +00001211 memcpy (frag_id, lsp0->lsp_header->lsp_id, ISIS_SYS_ID_LEN + 1);
1212 LSP_FRAGMENT (frag_id) = frag_num;
1213 lsp = lsp_search (frag_id, area->lspdb[level - 1]);
hassof390d2c2004-09-10 20:48:21 +00001214 if (lsp)
1215 {
1216 /*
1217 * Clear the TLVs, but inherit the authinfo
1218 */
1219 lsp_clear_data (lsp);
1220 if (lsp0->tlv_data.auth_info.type)
1221 {
1222 memcpy (&lsp->tlv_data.auth_info, &lsp->tlv_data.auth_info,
1223 sizeof (struct isis_passwd));
1224 tlv_add_authinfo (lsp->tlv_data.auth_info.type,
1225 lsp->tlv_data.auth_info.len,
1226 lsp->tlv_data.auth_info.passwd, lsp->pdu);
1227 }
1228 return lsp;
jardineb5d44e2003-12-23 08:09:43 +00001229 }
jardineb5d44e2003-12-23 08:09:43 +00001230 lsp = lsp_new (frag_id, area->max_lsp_lifetime[level - 1], 0, area->is_type,
hassof390d2c2004-09-10 20:48:21 +00001231 0, level);
jardineb5d44e2003-12-23 08:09:43 +00001232 lsp->own_lsp = 1;
hassof390d2c2004-09-10 20:48:21 +00001233 lsp_insert (lsp, area->lspdb[level - 1]);
jardineb5d44e2003-12-23 08:09:43 +00001234 listnode_add (lsp0->lspu.frags, lsp);
1235 lsp->lspu.zero_lsp = lsp0;
1236 /*
1237 * Copy the authinfo from zero LSP
1238 */
hassof390d2c2004-09-10 20:48:21 +00001239 if (lsp0->tlv_data.auth_info.type)
1240 {
1241 memcpy (&lsp->tlv_data.auth_info, &lsp->tlv_data.auth_info,
1242 sizeof (struct isis_passwd));
1243 tlv_add_authinfo (lsp->tlv_data.auth_info.type,
1244 lsp->tlv_data.auth_info.len,
1245 lsp->tlv_data.auth_info.passwd, lsp->pdu);
1246 }
jardineb5d44e2003-12-23 08:09:43 +00001247 return lsp;
1248}
1249
1250/*
1251 * Builds the LSP data part. This func creates a new frag whenever
1252 * area->lsp_frag_threshold is exceeded.
1253 */
1254#if 1
hasso92365882005-01-18 13:53:33 +00001255static void
jardineb5d44e2003-12-23 08:09:43 +00001256lsp_build_nonpseudo (struct isis_lsp *lsp, struct isis_area *area)
1257{
1258 struct is_neigh *is_neigh;
1259 struct listnode *node, *ipnode;
1260 int level = lsp->level;
1261 struct isis_circuit *circuit;
1262 struct prefix_ipv4 *ipv4;
1263 struct ipv4_reachability *ipreach;
1264 struct isis_adjacency *nei;
1265#ifdef HAVE_IPV6
hasso67851572004-09-21 14:17:04 +00001266 struct prefix_ipv6 *ipv6, *ip6prefix;
jardineb5d44e2003-12-23 08:09:43 +00001267 struct ipv6_reachability *ip6reach;
1268#endif /* HAVE_IPV6 */
1269 struct tlvs tlv_data;
1270 struct isis_lsp *lsp0 = lsp;
1271 struct isis_passwd *passwd;
hasso18a6dce2004-10-03 18:18:34 +00001272 struct in_addr *routerid;
jardineb5d44e2003-12-23 08:09:43 +00001273
1274 /*
1275 * First add the tlvs related to area
1276 */
hassof390d2c2004-09-10 20:48:21 +00001277
jardineb5d44e2003-12-23 08:09:43 +00001278 /* Area addresses */
1279 if (lsp->tlv_data.area_addrs == NULL)
1280 lsp->tlv_data.area_addrs = list_new ();
1281 list_add_list (lsp->tlv_data.area_addrs, area->area_addrs);
1282 /* Protocols Supported */
hassof390d2c2004-09-10 20:48:21 +00001283 if (area->ip_circuits > 0
jardineb5d44e2003-12-23 08:09:43 +00001284#ifdef HAVE_IPV6
1285 || area->ipv6_circuits > 0
1286#endif /* HAVE_IPV6 */
hassof390d2c2004-09-10 20:48:21 +00001287 )
jardineb5d44e2003-12-23 08:09:43 +00001288 {
1289 lsp->tlv_data.nlpids = XMALLOC (MTYPE_ISIS_TLV, sizeof (struct nlpids));
1290 lsp->tlv_data.nlpids->count = 0;
hassof390d2c2004-09-10 20:48:21 +00001291 if (area->ip_circuits > 0)
1292 {
1293 lsp->tlv_data.nlpids->count++;
1294 lsp->tlv_data.nlpids->nlpids[0] = NLPID_IP;
1295 }
jardineb5d44e2003-12-23 08:09:43 +00001296#ifdef HAVE_IPV6
hassof390d2c2004-09-10 20:48:21 +00001297 if (area->ipv6_circuits > 0)
1298 {
1299 lsp->tlv_data.nlpids->count++;
1300 lsp->tlv_data.nlpids->nlpids[lsp->tlv_data.nlpids->count - 1] =
1301 NLPID_IPV6;
1302 }
jardineb5d44e2003-12-23 08:09:43 +00001303#endif /* HAVE_IPV6 */
1304 }
1305 /* Dynamic Hostname */
hassof390d2c2004-09-10 20:48:21 +00001306 if (area->dynhostname)
1307 {
1308 lsp->tlv_data.hostname = XMALLOC (MTYPE_ISIS_TLV,
1309 sizeof (struct hostname));
jardin9e867fe2003-12-23 08:56:18 +00001310
hassof390d2c2004-09-10 20:48:21 +00001311 memcpy (lsp->tlv_data.hostname->name, unix_hostname (),
1312 strlen (unix_hostname ()));
1313 lsp->tlv_data.hostname->namelen = strlen (unix_hostname ());
1314 }
jardineb5d44e2003-12-23 08:09:43 +00001315
1316 /*
1317 * Building the zero lsp
1318 */
paul9985f832005-02-09 15:51:56 +00001319 stream_forward_endp (lsp->pdu, ISIS_FIXED_HDR_LEN + ISIS_LSP_HDR_LEN);
jardineb5d44e2003-12-23 08:09:43 +00001320 /*
1321 * Add the authentication info if its present
1322 */
hassof390d2c2004-09-10 20:48:21 +00001323 (level == 1) ? (passwd = &area->area_passwd) :
1324 (passwd = &area->domain_passwd);
1325 if (passwd->type)
1326 {
1327 memcpy (&lsp->tlv_data.auth_info, passwd, sizeof (struct isis_passwd));
1328 tlv_add_authinfo (passwd->type, passwd->len, passwd->passwd, lsp->pdu);
1329 }
jardineb5d44e2003-12-23 08:09:43 +00001330 if (lsp->tlv_data.nlpids)
1331 tlv_add_nlpid (lsp->tlv_data.nlpids, lsp->pdu);
1332 if (lsp->tlv_data.hostname)
1333 tlv_add_dynamic_hostname (lsp->tlv_data.hostname, lsp->pdu);
hassof390d2c2004-09-10 20:48:21 +00001334 if (lsp->tlv_data.area_addrs && listcount (lsp->tlv_data.area_addrs) > 0)
jardineb5d44e2003-12-23 08:09:43 +00001335 tlv_add_area_addrs (lsp->tlv_data.area_addrs, lsp->pdu);
hassof390d2c2004-09-10 20:48:21 +00001336
jardineb5d44e2003-12-23 08:09:43 +00001337 memset (&tlv_data, 0, sizeof (struct tlvs));
1338 /*
hasso18a6dce2004-10-03 18:18:34 +00001339 * IPv4 address TLV. We don't follow "C" vendor, but "J" vendor behavior -
1340 * one IPv4 address is put into LSP and this address is same as router id.
1341 */
1342 if (router_id_zebra.s_addr != 0)
1343 {
hasso18a6dce2004-10-03 18:18:34 +00001344 if (lsp->tlv_data.ipv4_addrs == NULL)
1345 lsp->tlv_data.ipv4_addrs = list_new ();
1346
1347 routerid = XMALLOC (MTYPE_ISIS_TLV, sizeof (struct in_addr));
1348 routerid->s_addr = router_id_zebra.s_addr;
1349
1350 listnode_add (lsp->tlv_data.ipv4_addrs, routerid);
1351
1352 /*
1353 * FIXME: Using add_tlv() directly is hack, but tlv_add_ip_addrs()
1354 * expects list of prefix_ipv4 structures, but we have list of
1355 * in_addr structures.
1356 */
1357 add_tlv (IPV4_ADDR, IPV4_MAX_BYTELEN, (u_char *) &routerid->s_addr,
1358 lsp->pdu);
1359 }
1360 /*
jardineb5d44e2003-12-23 08:09:43 +00001361 * Then build lists of tlvs related to circuits
1362 */
hassof390d2c2004-09-10 20:48:21 +00001363 for (node = listhead (area->circuit_list); node; nextnode (node))
1364 {
1365 circuit = getdata (node);
1366 if (circuit->state != C_STATE_UP)
1367 continue;
jardineb5d44e2003-12-23 08:09:43 +00001368
hassof390d2c2004-09-10 20:48:21 +00001369 /*
1370 * Add IPv4 internal reachability of this circuit
1371 */
1372 if (circuit->ip_router && circuit->ip_addrs &&
1373 circuit->ip_addrs->count > 0)
1374 {
1375 if (tlv_data.ipv4_int_reachs == NULL)
1376 {
1377 tlv_data.ipv4_int_reachs = list_new ();
1378 }
1379 for (ipnode = listhead (circuit->ip_addrs); ipnode;
1380 nextnode (ipnode))
1381 {
1382 ipv4 = getdata (ipnode);
1383 ipreach =
1384 XMALLOC (MTYPE_ISIS_TLV, sizeof (struct ipv4_reachability));
1385 ipreach->metrics = circuit->metrics[level - 1];
hassof390d2c2004-09-10 20:48:21 +00001386 masklen2ip (ipv4->prefixlen, &ipreach->mask);
hasso67851572004-09-21 14:17:04 +00001387 ipreach->prefix.s_addr = ((ipreach->mask.s_addr) &
1388 (ipv4->prefix.s_addr));
hassof390d2c2004-09-10 20:48:21 +00001389 listnode_add (tlv_data.ipv4_int_reachs, ipreach);
1390 }
1391
1392 }
jardineb5d44e2003-12-23 08:09:43 +00001393#ifdef HAVE_IPV6
hassof390d2c2004-09-10 20:48:21 +00001394 /*
1395 * Add IPv6 reachability of this circuit
1396 */
1397 if (circuit->ipv6_router && circuit->ipv6_non_link &&
1398 circuit->ipv6_non_link->count > 0)
1399 {
1400
1401 if (tlv_data.ipv6_reachs == NULL)
1402 {
1403 tlv_data.ipv6_reachs = list_new ();
1404 }
1405 for (ipnode = listhead (circuit->ipv6_non_link); ipnode;
1406 nextnode (ipnode))
1407 {
1408 ipv6 = getdata (ipnode);
1409 ip6reach =
1410 XMALLOC (MTYPE_ISIS_TLV, sizeof (struct ipv6_reachability));
1411 memset (ip6reach, 0, sizeof (struct ipv6_reachability));
1412 ip6reach->metric =
1413 htonl (circuit->metrics[level - 1].metric_default);
1414 ip6reach->control_info = 0;
1415 ip6reach->prefix_len = ipv6->prefixlen;
hasso67851572004-09-21 14:17:04 +00001416 memcpy (&ip6prefix, &ipv6, sizeof(ip6prefix));
1417 apply_mask_ipv6 (ip6prefix);
1418 memcpy (ip6reach->prefix, ip6prefix->prefix.s6_addr,
1419 sizeof (ip6reach->prefix));
hassof390d2c2004-09-10 20:48:21 +00001420 listnode_add (tlv_data.ipv6_reachs, ip6reach);
1421 }
1422 }
1423#endif /* HAVE_IPV6 */
1424
1425 switch (circuit->circ_type)
1426 {
1427 case CIRCUIT_T_BROADCAST:
1428 if (level & circuit->circuit_is_type)
1429 {
1430 if (tlv_data.is_neighs == NULL)
1431 {
1432 tlv_data.is_neighs = list_new ();
1433 }
1434 is_neigh = XMALLOC (MTYPE_ISIS_TLV, sizeof (struct is_neigh));
1435 memset (is_neigh, 0, sizeof (struct is_neigh));
1436 if (level == 1)
1437 memcpy (is_neigh->neigh_id,
1438 circuit->u.bc.l1_desig_is, ISIS_SYS_ID_LEN + 1);
1439 else
1440 memcpy (is_neigh->neigh_id,
1441 circuit->u.bc.l2_desig_is, ISIS_SYS_ID_LEN + 1);
1442 is_neigh->metrics = circuit->metrics[level - 1];
1443 listnode_add (tlv_data.is_neighs, is_neigh);
1444 }
1445 break;
1446 case CIRCUIT_T_P2P:
1447 nei = circuit->u.p2p.neighbor;
1448 if (nei && (level & nei->circuit_t))
1449 {
1450 if (tlv_data.is_neighs == NULL)
1451 {
1452 tlv_data.is_neighs = list_new ();
1453 tlv_data.is_neighs->del = free_tlv;
1454 }
1455 is_neigh = XMALLOC (MTYPE_ISIS_TLV, sizeof (struct is_neigh));
1456 memset (is_neigh, 0, sizeof (struct is_neigh));
1457 memcpy (is_neigh->neigh_id, nei->sysid, ISIS_SYS_ID_LEN);
1458 is_neigh->metrics = circuit->metrics[level - 1];
1459 listnode_add (tlv_data.is_neighs, is_neigh);
1460 }
1461 break;
1462 case CIRCUIT_T_STATIC_IN:
1463 zlog_warn ("lsp_area_create: unsupported circuit type");
1464 break;
1465 case CIRCUIT_T_STATIC_OUT:
1466 zlog_warn ("lsp_area_create: unsupported circuit type");
1467 break;
1468 case CIRCUIT_T_DA:
1469 zlog_warn ("lsp_area_create: unsupported circuit type");
1470 break;
1471 default:
1472 zlog_warn ("lsp_area_create: unknown circuit type");
1473 }
1474 }
1475
1476 while (tlv_data.ipv4_int_reachs && listcount (tlv_data.ipv4_int_reachs))
1477 {
1478 if (lsp->tlv_data.ipv4_int_reachs == NULL)
1479 lsp->tlv_data.ipv4_int_reachs = list_new ();
1480 lsp_tlv_fit (lsp, &tlv_data.ipv4_int_reachs,
1481 &lsp->tlv_data.ipv4_int_reachs,
1482 IPV4_REACH_LEN, area->lsp_frag_threshold,
1483 tlv_add_ipv4_reachs);
1484 if (tlv_data.ipv4_int_reachs && listcount (tlv_data.ipv4_int_reachs))
1485 lsp = lsp_next_frag (LSP_FRAGMENT (lsp->lsp_header->lsp_id) + 1,
1486 lsp0, area, level);
1487 }
1488
1489#ifdef HAVE_IPV6
1490 while (tlv_data.ipv6_reachs && listcount (tlv_data.ipv6_reachs))
1491 {
1492 if (lsp->tlv_data.ipv6_reachs == NULL)
1493 lsp->tlv_data.ipv6_reachs = list_new ();
1494 lsp_tlv_fit (lsp, &tlv_data.ipv6_reachs,
1495 &lsp->tlv_data.ipv6_reachs,
1496 IPV6_REACH_LEN, area->lsp_frag_threshold,
1497 tlv_add_ipv6_reachs);
1498 if (tlv_data.ipv6_reachs && listcount (tlv_data.ipv6_reachs))
1499 lsp = lsp_next_frag (LSP_FRAGMENT (lsp->lsp_header->lsp_id) + 1,
1500 lsp0, area, level);
jardineb5d44e2003-12-23 08:09:43 +00001501 }
1502#endif /* HAVE_IPV6 */
hassof390d2c2004-09-10 20:48:21 +00001503
1504 while (tlv_data.is_neighs && listcount (tlv_data.is_neighs))
1505 {
1506 if (lsp->tlv_data.is_neighs == NULL)
1507 lsp->tlv_data.is_neighs = list_new ();
1508 lsp_tlv_fit (lsp, &tlv_data.is_neighs,
1509 &lsp->tlv_data.is_neighs,
1510 IS_NEIGHBOURS_LEN, area->lsp_frag_threshold,
1511 tlv_add_is_neighs);
1512 if (tlv_data.is_neighs && listcount (tlv_data.is_neighs))
1513 lsp = lsp_next_frag (LSP_FRAGMENT (lsp->lsp_header->lsp_id) + 1,
1514 lsp0, area, level);
jardineb5d44e2003-12-23 08:09:43 +00001515 }
jardineb5d44e2003-12-23 08:09:43 +00001516
jardineb5d44e2003-12-23 08:09:43 +00001517 return;
1518}
1519#endif
1520
hasso92365882005-01-18 13:53:33 +00001521#if 0 /* Old code? */
1522static void
jardineb5d44e2003-12-23 08:09:43 +00001523build_lsp_data (struct isis_lsp *lsp, struct isis_area *area)
1524{
1525 struct list *circuit_list = area->circuit_list;
1526 struct isis_circuit *circuit;
1527 u_char *tlv_ptr;
1528 struct is_neigh *is_neigh;
1529
hassof390d2c2004-09-10 20:48:21 +00001530
jardineb5d44e2003-12-23 08:09:43 +00001531 /* add our nlpids */
hassof390d2c2004-09-10 20:48:21 +00001532 /* the 2 is for the TL plus 1 for the nlpid */
1533 tlv_ptr = lsppdu_realloc (lsp, MTYPE_ISIS_TLV, 3);
1534 *tlv_ptr = PROTOCOLS_SUPPORTED; /* Type */
1535 *(tlv_ptr + 1) = 1; /* one protocol */
1536#ifdef HAVE_IPV6 /*dunno if its right */
1537 *(tlv_ptr + 2) = NLPID_IPV6;
jardineb5d44e2003-12-23 08:09:43 +00001538#else
hassof390d2c2004-09-10 20:48:21 +00001539 *(tlv_ptr + 2) = NLPID_IP;
jardineb5d44e2003-12-23 08:09:43 +00001540#endif /* HAVE_IPV6 */
1541
1542 /* we should add our areas here
1543 * FIXME: we need to figure out which should be added? Adj? All? First? */
1544
1545 /* first, lets add ourselves to the IS neighbours info */
hassof390d2c2004-09-10 20:48:21 +00001546 /* the 2 is for the TL plus 1 for the virtual field */
1547 tlv_ptr = lsppdu_realloc (lsp, MTYPE_ISIS_TLV, 3);
1548 *tlv_ptr = IS_NEIGHBOURS; /* Type */
1549 *(tlv_ptr + 2) = 0; /* virtual is zero */
1550 lsp->tlv_data.is_neighs = list_new (); /* new list of is_neighbours */
jardineb5d44e2003-12-23 08:09:43 +00001551 /* assign space for the is_neigh at the pdu end */
hassof390d2c2004-09-10 20:48:21 +00001552 is_neigh = (struct is_neigh *) lsppdu_realloc (lsp, MTYPE_ISIS_TLV,
1553 sizeof (struct is_neigh));
jardineb5d44e2003-12-23 08:09:43 +00001554 /* add this node to our list */
hassof390d2c2004-09-10 20:48:21 +00001555 listnode_add (lsp->tlv_data.is_neighs, is_neigh);
jardineb5d44e2003-12-23 08:09:43 +00001556 /* FIXME: Do we need our designated address here? */
hassof390d2c2004-09-10 20:48:21 +00001557 memcpy (&is_neigh->neigh_id, isis->sysid, ISIS_SYS_ID_LEN + 1);
jardineb5d44e2003-12-23 08:09:43 +00001558 /* FIXME: Where should we really get our own LSPs metrics from? */
hassof390d2c2004-09-10 20:48:21 +00001559 circuit = (struct isis_circuit *) listhead (circuit_list);
1560 /* is_neigh->metrics = circuit->metrics[lsp->level -1]; */
jardineb5d44e2003-12-23 08:09:43 +00001561 /* Length */
hassof390d2c2004-09-10 20:48:21 +00001562 *(tlv_ptr + 1) =
1563 (lsp->tlv_data.is_neighs->count * sizeof (struct is_neigh) + 1);
jardineb5d44e2003-12-23 08:09:43 +00001564
1565 /* FIXME: scan for adjencecies and add them */
1566
1567 /* FIXME: add reachability info */
1568
hassof390d2c2004-09-10 20:48:21 +00001569 /* adding dynamic hostname if needed */
1570 if (area->dynhostname)
1571 {
1572 tlv_ptr = lsppdu_realloc (lsp, MTYPE_ISIS_TLV, 2); /* the 2 is for the TL */
1573 *tlv_ptr = DYNAMIC_HOSTNAME; /* Type */
1574 *(tlv_ptr + 1) = strlen (unix_hostname ()); /* Length */
1575 lsp->tlv_data.hostname = (struct hostname *)
1576 (lsppdu_realloc (lsp, MTYPE_ISIS_TLV,
1577 /* the -1 is to fit the length in the struct */
1578 strlen (unix_hostname ())) - 1);
1579 memcpy (lsp->tlv_data.hostname->name, unix_hostname (),
1580 strlen (unix_hostname ()));
1581 }
jardineb5d44e2003-12-23 08:09:43 +00001582
1583}
hasso92365882005-01-18 13:53:33 +00001584#endif /* 0 */
jardineb5d44e2003-12-23 08:09:43 +00001585
1586/*
1587 * 7.3.7 Generation on non-pseudonode LSPs
1588 */
hasso92365882005-01-18 13:53:33 +00001589static int
hassof390d2c2004-09-10 20:48:21 +00001590lsp_generate_non_pseudo (struct isis_area *area, int level)
1591{
jardineb5d44e2003-12-23 08:09:43 +00001592 struct isis_lsp *oldlsp, *newlsp;
1593 u_int32_t seq_num = 0;
1594 u_char lspid[ISIS_SYS_ID_LEN + 2];
1595
1596 memset (&lspid, 0, ISIS_SYS_ID_LEN + 2);
1597 memcpy (&lspid, isis->sysid, ISIS_SYS_ID_LEN);
1598
1599 /* only builds the lsp if the area shares the level */
hassof390d2c2004-09-10 20:48:21 +00001600 if ((area->is_type & level) == level)
1601 {
1602 oldlsp = lsp_search (lspid, area->lspdb[level - 1]);
1603 if (oldlsp)
1604 {
1605 seq_num = ntohl (oldlsp->lsp_header->seq_num);
1606 lsp_search_and_destroy (oldlsp->lsp_header->lsp_id,
1607 area->lspdb[level - 1]);
1608 /* FIXME: we should actually initiate a purge */
1609 }
1610 newlsp = lsp_new (lspid, area->max_lsp_lifetime[level - 1], seq_num,
1611 area->is_type, 0, level);
1612 newlsp->own_lsp = 1;
jardineb5d44e2003-12-23 08:09:43 +00001613
hassof390d2c2004-09-10 20:48:21 +00001614 lsp_insert (newlsp, area->lspdb[level - 1]);
1615 /* build_lsp_data (newlsp, area); */
1616 lsp_build_nonpseudo (newlsp, area);
1617 /* time to calculate our checksum */
1618 lsp_seqnum_update (newlsp);
1619 }
jardineb5d44e2003-12-23 08:09:43 +00001620
1621 /* DEBUG_ADJ_PACKETS */
hassof390d2c2004-09-10 20:48:21 +00001622 if (isis->debugs & DEBUG_ADJ_PACKETS)
1623 {
1624 /* FIXME: is this place right? fix missing info */
hasso529d65b2004-12-24 00:14:50 +00001625 zlog_debug ("ISIS-Upd (%s): Building L%d LSP", area->area_tag, level);
hassof390d2c2004-09-10 20:48:21 +00001626 }
jardineb5d44e2003-12-23 08:09:43 +00001627
1628 return ISIS_OK;
1629}
1630
1631/*
1632 * 7.3.9 Generation of level 1 LSPs (non-pseudonode)
1633 */
1634int
1635lsp_l1_generate (struct isis_area *area)
1636{
hassof390d2c2004-09-10 20:48:21 +00001637 THREAD_TIMER_ON (master, area->t_lsp_refresh[0], lsp_refresh_l1, area,
1638 MAX_LSP_GEN_INTERVAL);
jardineb5d44e2003-12-23 08:09:43 +00001639
1640 return lsp_generate_non_pseudo (area, 1);
1641}
1642
jardineb5d44e2003-12-23 08:09:43 +00001643/*
1644 * 7.3.9 Generation of level 2 LSPs (non-pseudonode)
1645 */
1646int
1647lsp_l2_generate (struct isis_area *area)
1648{
hassof390d2c2004-09-10 20:48:21 +00001649 THREAD_TIMER_ON (master, area->t_lsp_refresh[1], lsp_refresh_l2, area,
1650 MAX_LSP_GEN_INTERVAL);
jardineb5d44e2003-12-23 08:09:43 +00001651
1652 return lsp_generate_non_pseudo (area, 2);
1653}
1654
hasso92365882005-01-18 13:53:33 +00001655static int
jardineb5d44e2003-12-23 08:09:43 +00001656lsp_non_pseudo_regenerate (struct isis_area *area, int level)
1657{
1658 dict_t *lspdb = area->lspdb[level - 1];
1659 struct isis_lsp *lsp, *frag;
1660 struct listnode *node;
1661 u_char lspid[ISIS_SYS_ID_LEN + 2];
1662
1663 memset (lspid, 0, ISIS_SYS_ID_LEN + 2);
1664 memcpy (lspid, isis->sysid, ISIS_SYS_ID_LEN);
hassof390d2c2004-09-10 20:48:21 +00001665
jardineb5d44e2003-12-23 08:09:43 +00001666 lsp = lsp_search (lspid, lspdb);
jardineb5d44e2003-12-23 08:09:43 +00001667
hassof390d2c2004-09-10 20:48:21 +00001668 if (!lsp)
1669 {
1670 zlog_err
1671 ("ISIS-Upd (%s): lsp_non_pseudo_regenerate(): no L%d LSP found!",
1672 area->area_tag, level);
jardineb5d44e2003-12-23 08:09:43 +00001673
hassof390d2c2004-09-10 20:48:21 +00001674 return ISIS_ERROR;
1675 }
1676
1677 lsp_clear_data (lsp);
jardineb5d44e2003-12-23 08:09:43 +00001678 lsp_build_nonpseudo (lsp, area);
hassof390d2c2004-09-10 20:48:21 +00001679 lsp->lsp_header->rem_lifetime = htons (isis_jitter
1680 (area->max_lsp_lifetime[level - 1],
1681 MAX_AGE_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00001682 lsp_seqnum_update (lsp);
hassof390d2c2004-09-10 20:48:21 +00001683
1684 if (isis->debugs & DEBUG_UPDATE_PACKETS)
1685 {
hasso529d65b2004-12-24 00:14:50 +00001686 zlog_debug ("ISIS-Upd (%s): refreshing our L%d LSP %s, "
1687 "seq 0x%08x, cksum 0x%04x lifetime %us",
1688 area->area_tag,
1689 level,
1690 rawlspid_print (lsp->lsp_header->lsp_id),
1691 ntohl (lsp->lsp_header->seq_num),
1692 ntohs (lsp->lsp_header->checksum),
1693 ntohs (lsp->lsp_header->rem_lifetime));
hassof390d2c2004-09-10 20:48:21 +00001694 }
jardineb5d44e2003-12-23 08:09:43 +00001695
1696 lsp->last_generated = time (NULL);
1697 area->lsp_regenerate_pending[level - 1] = 0;
1698 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
hassof390d2c2004-09-10 20:48:21 +00001699 for (node = listhead (lsp->lspu.frags); node; nextnode (node))
1700 {
1701 frag = getdata (node);
1702 frag->lsp_header->rem_lifetime = htons (isis_jitter
1703 (area->
1704 max_lsp_lifetime[level - 1],
1705 MAX_AGE_JITTER));
1706 ISIS_FLAGS_SET_ALL (frag->SRMflags);
1707 }
jardineb5d44e2003-12-23 08:09:43 +00001708
1709 if (area->ip_circuits)
1710 isis_spf_schedule (area, level);
1711#ifdef HAVE_IPV6
1712 if (area->ipv6_circuits)
1713 isis_spf_schedule6 (area, level);
1714#endif
1715 return ISIS_OK;
1716}
1717
jardineb5d44e2003-12-23 08:09:43 +00001718/*
1719 * Done at least every MAX_LSP_GEN_INTERVAL. Search own LSPs, update holding
1720 * time and set SRM
1721 */
hassof390d2c2004-09-10 20:48:21 +00001722int
jardineb5d44e2003-12-23 08:09:43 +00001723lsp_refresh_l1 (struct thread *thread)
1724{
1725 struct isis_area *area;
1726 unsigned long ref_time;
1727
1728 area = THREAD_ARG (thread);
1729 assert (area);
hassof390d2c2004-09-10 20:48:21 +00001730
jardineb5d44e2003-12-23 08:09:43 +00001731 area->t_lsp_refresh[0] = NULL;
hassof390d2c2004-09-10 20:48:21 +00001732 if (area->is_type & IS_LEVEL_1)
jardineb5d44e2003-12-23 08:09:43 +00001733 lsp_non_pseudo_regenerate (area, 1);
hassof390d2c2004-09-10 20:48:21 +00001734
1735 ref_time = area->lsp_refresh[0] > MAX_LSP_GEN_INTERVAL ?
jardineb5d44e2003-12-23 08:09:43 +00001736 MAX_LSP_GEN_INTERVAL : area->lsp_refresh[0];
1737
hassof390d2c2004-09-10 20:48:21 +00001738 THREAD_TIMER_ON (master, area->t_lsp_refresh[0], lsp_refresh_l1, area,
1739 isis_jitter (ref_time, MAX_AGE_JITTER));
hassod70f99e2004-02-11 20:26:31 +00001740
jardineb5d44e2003-12-23 08:09:43 +00001741 return ISIS_OK;
1742}
1743
hassof390d2c2004-09-10 20:48:21 +00001744int
jardineb5d44e2003-12-23 08:09:43 +00001745lsp_refresh_l2 (struct thread *thread)
1746{
1747 struct isis_area *area;
1748 unsigned long ref_time;
1749
1750 area = THREAD_ARG (thread);
1751 assert (area);
hassof390d2c2004-09-10 20:48:21 +00001752
jardineb5d44e2003-12-23 08:09:43 +00001753 area->t_lsp_refresh[1] = NULL;
hassof390d2c2004-09-10 20:48:21 +00001754 if (area->is_type & IS_LEVEL_2)
jardineb5d44e2003-12-23 08:09:43 +00001755 lsp_non_pseudo_regenerate (area, 2);
1756
hassof390d2c2004-09-10 20:48:21 +00001757 ref_time = area->lsp_refresh[1] > MAX_LSP_GEN_INTERVAL ?
jardineb5d44e2003-12-23 08:09:43 +00001758 MAX_LSP_GEN_INTERVAL : area->lsp_refresh[1];
1759
hassof390d2c2004-09-10 20:48:21 +00001760 THREAD_TIMER_ON (master, area->t_lsp_refresh[1], lsp_refresh_l2, area,
1761 isis_jitter (ref_time, MAX_AGE_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00001762
jardineb5d44e2003-12-23 08:09:43 +00001763 return ISIS_OK;
1764}
1765
jardineb5d44e2003-12-23 08:09:43 +00001766/*
1767 * Something has changed -> regenerate LSP
1768 */
1769
hasso92365882005-01-18 13:53:33 +00001770static int
jardineb5d44e2003-12-23 08:09:43 +00001771lsp_l1_regenerate (struct thread *thread)
1772{
1773 struct isis_area *area;
1774
1775 area = THREAD_ARG (thread);
1776 area->lsp_regenerate_pending[0] = 0;
1777
1778 return lsp_non_pseudo_regenerate (area, 1);
1779}
1780
hasso92365882005-01-18 13:53:33 +00001781static int
jardineb5d44e2003-12-23 08:09:43 +00001782lsp_l2_regenerate (struct thread *thread)
1783{
1784 struct isis_area *area;
1785
1786 area = THREAD_ARG (thread);
1787 area->lsp_regenerate_pending[1] = 0;
hassof390d2c2004-09-10 20:48:21 +00001788
jardineb5d44e2003-12-23 08:09:43 +00001789 return lsp_non_pseudo_regenerate (area, 2);
1790}
1791
hassof390d2c2004-09-10 20:48:21 +00001792int
jardineb5d44e2003-12-23 08:09:43 +00001793lsp_regenerate_schedule (struct isis_area *area)
1794{
1795 struct isis_lsp *lsp;
1796 u_char id[ISIS_SYS_ID_LEN + 2];
1797 time_t now, diff;
hassof390d2c2004-09-10 20:48:21 +00001798 memcpy (id, isis->sysid, ISIS_SYS_ID_LEN);
1799 LSP_PSEUDO_ID (id) = LSP_FRAGMENT (id) = 0;
jardineb5d44e2003-12-23 08:09:43 +00001800 now = time (NULL);
1801 /*
1802 * First level 1
1803 */
hassof390d2c2004-09-10 20:48:21 +00001804 if (area->is_type & IS_LEVEL_1)
1805 {
1806 lsp = lsp_search (id, area->lspdb[0]);
1807 if (!lsp || area->lsp_regenerate_pending[0])
1808 goto L2;
1809 /*
1810 * Throttle avoidance
1811 */
1812 diff = now - lsp->last_generated;
1813 if (diff < MIN_LSP_GEN_INTERVAL)
1814 {
1815 area->lsp_regenerate_pending[0] = 1;
1816 thread_add_timer (master, lsp_l1_regenerate, area,
1817 MIN_LSP_GEN_INTERVAL - diff);
hasso12a5cae2004-09-19 19:39:26 +00001818 goto L2;
hassof390d2c2004-09-10 20:48:21 +00001819 }
1820 else
1821 lsp_non_pseudo_regenerate (area, 1);
1822 }
jardineb5d44e2003-12-23 08:09:43 +00001823 /*
1824 * then 2
1825 */
hassof390d2c2004-09-10 20:48:21 +00001826L2:
1827 if (area->is_type & IS_LEVEL_2)
1828 {
1829 lsp = lsp_search (id, area->lspdb[1]);
1830 if (!lsp || area->lsp_regenerate_pending[1])
1831 return ISIS_OK;
1832 /*
1833 * Throttle avoidance
1834 */
1835 diff = now - lsp->last_generated;
1836 if (diff < MIN_LSP_GEN_INTERVAL)
1837 {
1838 area->lsp_regenerate_pending[1] = 1;
1839 thread_add_timer (master, lsp_l2_regenerate, area,
1840 MIN_LSP_GEN_INTERVAL - diff);
1841 return ISIS_OK;
1842 }
1843 else
1844 lsp_non_pseudo_regenerate (area, 2);
1845 }
1846
1847 return ISIS_OK;
jardineb5d44e2003-12-23 08:09:43 +00001848}
1849
1850/*
1851 * Funcs for pseudonode LSPs
1852 */
1853
1854/*
1855 * 7.3.8 and 7.3.10 Generation of level 1 and 2 pseudonode LSPs
1856 */
hasso92365882005-01-18 13:53:33 +00001857static void
hassof390d2c2004-09-10 20:48:21 +00001858lsp_build_pseudo (struct isis_lsp *lsp, struct isis_circuit *circuit,
1859 int level)
jardineb5d44e2003-12-23 08:09:43 +00001860{
1861 struct isis_adjacency *adj;
1862 struct is_neigh *is_neigh;
1863 struct es_neigh *es_neigh;
1864 struct list *adj_list;
1865 struct listnode *node;
1866 struct isis_passwd *passwd;
1867
1868 assert (circuit);
1869 assert (circuit->circ_type == CIRCUIT_T_BROADCAST);
hassof390d2c2004-09-10 20:48:21 +00001870
jardineb5d44e2003-12-23 08:09:43 +00001871 if (!circuit->u.bc.is_dr[level - 1])
hassof390d2c2004-09-10 20:48:21 +00001872 return; /* we are not DIS on this circuit */
1873
jardineb5d44e2003-12-23 08:09:43 +00001874 lsp->level = level;
1875 if (level == 1)
1876 lsp->lsp_header->lsp_bits |= IS_LEVEL_1;
1877 else
1878 lsp->lsp_header->lsp_bits |= IS_LEVEL_2;
1879
1880 /*
1881 * add self to IS neighbours
1882 */
hassof390d2c2004-09-10 20:48:21 +00001883 if (lsp->tlv_data.is_neighs == NULL)
1884 {
1885 lsp->tlv_data.is_neighs = list_new ();
1886 lsp->tlv_data.is_neighs->del = free_tlv;
1887 }
jardineb5d44e2003-12-23 08:09:43 +00001888 is_neigh = XMALLOC (MTYPE_ISIS_TLV, sizeof (struct is_neigh));
1889 memset (is_neigh, 0, sizeof (struct is_neigh));
1890 memcpy (&is_neigh->neigh_id, isis->sysid, ISIS_SYS_ID_LEN);
1891 listnode_add (lsp->tlv_data.is_neighs, is_neigh);
hassof390d2c2004-09-10 20:48:21 +00001892
1893 adj_list = list_new ();
1894 isis_adj_build_up_list (circuit->u.bc.adjdb[level - 1], adj_list);
1895
1896 for (node = listhead (adj_list); node; nextnode (node))
1897 {
1898 adj = getdata (node);
1899 if (adj->circuit_t & level)
1900 {
1901 if ((level == 1 && adj->sys_type == ISIS_SYSTYPE_L1_IS) ||
1902 (level == 1 && adj->sys_type == ISIS_SYSTYPE_L2_IS &&
1903 adj->adj_usage == ISIS_ADJ_LEVEL1AND2) ||
1904 (level == 2 && adj->sys_type == ISIS_SYSTYPE_L2_IS))
1905 {
1906 /* an IS neighbour -> add it */
1907 is_neigh = XMALLOC (MTYPE_ISIS_TLV, sizeof (struct is_neigh));
1908 memset (is_neigh, 0, sizeof (struct is_neigh));
1909 memcpy (&is_neigh->neigh_id, adj->sysid, ISIS_SYS_ID_LEN);
1910 listnode_add (lsp->tlv_data.is_neighs, is_neigh);
1911 }
1912 else if (level == 1 && adj->sys_type == ISIS_SYSTYPE_ES)
1913 {
1914 /* an ES neigbour add it, if we are building level 1 LSP */
1915 /* FIXME: the tlv-format is hard to use here */
1916 if (lsp->tlv_data.es_neighs == NULL)
1917 {
1918 lsp->tlv_data.es_neighs = list_new ();
1919 lsp->tlv_data.es_neighs->del = free_tlv;
1920 }
1921 es_neigh = XMALLOC (MTYPE_ISIS_TLV, sizeof (struct es_neigh));
1922 memset (es_neigh, 0, sizeof (struct es_neigh));
1923 memcpy (&es_neigh->first_es_neigh, adj->sysid, ISIS_SYS_ID_LEN);
1924 listnode_add (lsp->tlv_data.es_neighs, is_neigh);
1925 }
1926 }
jardineb5d44e2003-12-23 08:09:43 +00001927 }
hassof390d2c2004-09-10 20:48:21 +00001928
paul9985f832005-02-09 15:51:56 +00001929 stream_forward_endp (lsp->pdu, ISIS_FIXED_HDR_LEN + ISIS_LSP_HDR_LEN);
jardineb5d44e2003-12-23 08:09:43 +00001930 /*
1931 * Add the authentication info if it's present
1932 */
hassof390d2c2004-09-10 20:48:21 +00001933 (level == 1) ? (passwd = &circuit->area->area_passwd) :
1934 (passwd = &circuit->area->domain_passwd);
1935 if (passwd->type)
1936 {
1937 memcpy (&lsp->tlv_data.auth_info, passwd, sizeof (struct isis_passwd));
1938 tlv_add_authinfo (passwd->type, passwd->len, passwd->passwd, lsp->pdu);
1939 }
jardineb5d44e2003-12-23 08:09:43 +00001940
1941 if (lsp->tlv_data.is_neighs && listcount (lsp->tlv_data.is_neighs) > 0)
1942 tlv_add_is_neighs (lsp->tlv_data.is_neighs, lsp->pdu);
1943
1944 if (lsp->tlv_data.es_neighs && listcount (lsp->tlv_data.es_neighs) > 0)
1945 tlv_add_is_neighs (lsp->tlv_data.es_neighs, lsp->pdu);
1946
paul9985f832005-02-09 15:51:56 +00001947 lsp->lsp_header->pdu_len = htons (stream_get_endp (lsp->pdu));
hassof390d2c2004-09-10 20:48:21 +00001948 iso_csum_create (STREAM_DATA (lsp->pdu) + 12,
1949 ntohs (lsp->lsp_header->pdu_len) - 12, 12);
1950
jardineb5d44e2003-12-23 08:09:43 +00001951 list_delete (adj_list);
1952
1953 return;
1954}
1955
hasso92365882005-01-18 13:53:33 +00001956static int
jardineb5d44e2003-12-23 08:09:43 +00001957lsp_pseudo_regenerate (struct isis_circuit *circuit, int level)
1958{
1959 dict_t *lspdb = circuit->area->lspdb[level - 1];
1960 struct isis_lsp *lsp;
1961 u_char lsp_id[ISIS_SYS_ID_LEN + 2];
hassof390d2c2004-09-10 20:48:21 +00001962
jardineb5d44e2003-12-23 08:09:43 +00001963 memcpy (lsp_id, isis->sysid, ISIS_SYS_ID_LEN);
hassof390d2c2004-09-10 20:48:21 +00001964 LSP_PSEUDO_ID (lsp_id) = circuit->circuit_id;
1965 LSP_FRAGMENT (lsp_id) = 0;
1966
jardineb5d44e2003-12-23 08:09:43 +00001967 lsp = lsp_search (lsp_id, lspdb);
hassof390d2c2004-09-10 20:48:21 +00001968
1969 if (!lsp)
1970 {
1971 zlog_err ("lsp_pseudo_regenerate(): no l%d LSP %s found!", level,
1972 rawlspid_print (lsp_id));
1973 return ISIS_ERROR;
1974 }
1975 lsp_clear_data (lsp);
jardineb5d44e2003-12-23 08:09:43 +00001976
1977 lsp_build_pseudo (lsp, circuit, level);
1978
hassof390d2c2004-09-10 20:48:21 +00001979 lsp->lsp_header->rem_lifetime =
jardineb5d44e2003-12-23 08:09:43 +00001980 htons (isis_jitter (circuit->area->max_lsp_lifetime[level - 1],
hassof390d2c2004-09-10 20:48:21 +00001981 MAX_AGE_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00001982
1983 lsp_inc_seqnum (lsp, 0);
hassof390d2c2004-09-10 20:48:21 +00001984
1985 if (isis->debugs & DEBUG_UPDATE_PACKETS)
1986 {
hasso529d65b2004-12-24 00:14:50 +00001987 zlog_debug ("ISIS-Upd (%s): refreshing pseudo LSP L%d %s",
1988 circuit->area->area_tag, level,
1989 rawlspid_print (lsp->lsp_header->lsp_id));
hassof390d2c2004-09-10 20:48:21 +00001990 }
jardineb5d44e2003-12-23 08:09:43 +00001991
1992 lsp->last_generated = time (NULL);
1993 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
hassof390d2c2004-09-10 20:48:21 +00001994
jardineb5d44e2003-12-23 08:09:43 +00001995 return ISIS_OK;
1996}
1997
jardineb5d44e2003-12-23 08:09:43 +00001998int
1999lsp_l1_refresh_pseudo (struct thread *thread)
2000{
2001 struct isis_circuit *circuit;
2002 int retval;
2003 unsigned long ref_time;
2004
hassof390d2c2004-09-10 20:48:21 +00002005 circuit = THREAD_ARG (thread);
2006
jardineb5d44e2003-12-23 08:09:43 +00002007 if (!circuit->u.bc.is_dr[0])
hassof390d2c2004-09-10 20:48:21 +00002008 return ISIS_ERROR; /* FIXME: purge and such */
2009
hasso13c48f72004-09-10 21:19:13 +00002010 circuit->u.bc.t_refresh_pseudo_lsp[0] = NULL;
2011
jardineb5d44e2003-12-23 08:09:43 +00002012 retval = lsp_pseudo_regenerate (circuit, 1);
hassof390d2c2004-09-10 20:48:21 +00002013
2014 ref_time = circuit->area->lsp_refresh[0] > MAX_LSP_GEN_INTERVAL ?
jardineb5d44e2003-12-23 08:09:43 +00002015 MAX_LSP_GEN_INTERVAL : circuit->area->lsp_refresh[0];
2016
hassof390d2c2004-09-10 20:48:21 +00002017 THREAD_TIMER_ON (master, circuit->u.bc.t_refresh_pseudo_lsp[0],
2018 lsp_l1_refresh_pseudo, circuit,
2019 isis_jitter (ref_time, MAX_AGE_JITTER));
2020
jardineb5d44e2003-12-23 08:09:43 +00002021 return retval;
2022}
2023
hassof390d2c2004-09-10 20:48:21 +00002024int
jardineb5d44e2003-12-23 08:09:43 +00002025lsp_l1_pseudo_generate (struct isis_circuit *circuit)
2026{
2027 struct isis_lsp *lsp;
2028 u_char id[ISIS_SYS_ID_LEN + 2];
2029 unsigned long ref_time;
2030
hassof390d2c2004-09-10 20:48:21 +00002031 memcpy (id, isis->sysid, ISIS_SYS_ID_LEN);
2032 LSP_FRAGMENT (id) = 0;
2033 LSP_PSEUDO_ID (id) = circuit->circuit_id;
jardineb5d44e2003-12-23 08:09:43 +00002034
2035 /*
2036 * If for some reason have a pseudo LSP in the db already -> regenerate
2037 */
2038 if (lsp_search (id, circuit->area->lspdb[0]))
2039 return lsp_pseudo_regenerate (circuit, 1);
2040 lsp = lsp_new (id, circuit->area->max_lsp_lifetime[0],
hassof390d2c2004-09-10 20:48:21 +00002041 1, circuit->area->is_type, 0, 1);
2042
jardineb5d44e2003-12-23 08:09:43 +00002043 lsp_build_pseudo (lsp, circuit, 1);
hassof390d2c2004-09-10 20:48:21 +00002044
jardineb5d44e2003-12-23 08:09:43 +00002045 lsp->own_lsp = 1;
2046 lsp_insert (lsp, circuit->area->lspdb[0]);
2047 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
2048
hassof390d2c2004-09-10 20:48:21 +00002049 ref_time = circuit->area->lsp_refresh[0] > MAX_LSP_GEN_INTERVAL ?
jardineb5d44e2003-12-23 08:09:43 +00002050 MAX_LSP_GEN_INTERVAL : circuit->area->lsp_refresh[0];
2051
hassof390d2c2004-09-10 20:48:21 +00002052 THREAD_TIMER_ON (master, circuit->u.bc.t_refresh_pseudo_lsp[0],
2053 lsp_l1_refresh_pseudo, circuit,
2054 isis_jitter (ref_time, MAX_AGE_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002055
2056 return lsp_regenerate_schedule (circuit->area);
2057}
2058
2059int
2060lsp_l2_refresh_pseudo (struct thread *thread)
2061{
2062 struct isis_circuit *circuit;
2063 int retval;
2064 unsigned long ref_time;
hassof390d2c2004-09-10 20:48:21 +00002065 circuit = THREAD_ARG (thread);
2066
jardineb5d44e2003-12-23 08:09:43 +00002067 if (!circuit->u.bc.is_dr[1])
hassof390d2c2004-09-10 20:48:21 +00002068 return ISIS_ERROR; /* FIXME: purge and such */
2069
hasso13c48f72004-09-10 21:19:13 +00002070 circuit->u.bc.t_refresh_pseudo_lsp[1] = NULL;
2071
jardineb5d44e2003-12-23 08:09:43 +00002072 retval = lsp_pseudo_regenerate (circuit, 2);
2073
hassof390d2c2004-09-10 20:48:21 +00002074 ref_time = circuit->area->lsp_refresh[1] > MAX_LSP_GEN_INTERVAL ?
jardineb5d44e2003-12-23 08:09:43 +00002075 MAX_LSP_GEN_INTERVAL : circuit->area->lsp_refresh[1];
2076
hassof390d2c2004-09-10 20:48:21 +00002077 THREAD_TIMER_ON (master, circuit->u.bc.t_refresh_pseudo_lsp[1],
2078 lsp_l2_refresh_pseudo, circuit,
2079 isis_jitter (ref_time, MAX_AGE_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002080
jardineb5d44e2003-12-23 08:09:43 +00002081 return retval;
2082}
2083
hassof390d2c2004-09-10 20:48:21 +00002084int
jardineb5d44e2003-12-23 08:09:43 +00002085lsp_l2_pseudo_generate (struct isis_circuit *circuit)
2086{
2087 struct isis_lsp *lsp;
2088 u_char id[ISIS_SYS_ID_LEN + 2];
2089 unsigned long ref_time;
2090
hassof390d2c2004-09-10 20:48:21 +00002091 memcpy (id, isis->sysid, ISIS_SYS_ID_LEN);
2092 LSP_FRAGMENT (id) = 0;
2093 LSP_PSEUDO_ID (id) = circuit->circuit_id;
jardineb5d44e2003-12-23 08:09:43 +00002094
2095 if (lsp_search (id, circuit->area->lspdb[1]))
2096 return lsp_pseudo_regenerate (circuit, 2);
2097
2098 lsp = lsp_new (id, circuit->area->max_lsp_lifetime[1],
hassof390d2c2004-09-10 20:48:21 +00002099 1, circuit->area->is_type, 0, 2);
jardineb5d44e2003-12-23 08:09:43 +00002100
2101 lsp_build_pseudo (lsp, circuit, 2);
hassof390d2c2004-09-10 20:48:21 +00002102
2103 ref_time = circuit->area->lsp_refresh[1] > MAX_LSP_GEN_INTERVAL ?
jardineb5d44e2003-12-23 08:09:43 +00002104 MAX_LSP_GEN_INTERVAL : circuit->area->lsp_refresh[1];
2105
2106
2107 lsp->own_lsp = 1;
2108 lsp_insert (lsp, circuit->area->lspdb[1]);
2109 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
hassof390d2c2004-09-10 20:48:21 +00002110
2111 THREAD_TIMER_ON (master, circuit->u.bc.t_refresh_pseudo_lsp[1],
2112 lsp_l2_refresh_pseudo, circuit,
2113 isis_jitter (ref_time, MAX_AGE_JITTER));
2114
jardineb5d44e2003-12-23 08:09:43 +00002115 return lsp_regenerate_schedule (circuit->area);
2116}
2117
jardineb5d44e2003-12-23 08:09:43 +00002118/*
2119 * Walk through LSPs for an area
2120 * - set remaining lifetime
2121 * - set LSPs with SRMflag set for sending
2122 */
hassof390d2c2004-09-10 20:48:21 +00002123int
jardineb5d44e2003-12-23 08:09:43 +00002124lsp_tick (struct thread *thread)
2125{
2126 struct isis_area *area;
2127 struct isis_circuit *circuit;
2128 struct isis_lsp *lsp;
2129 struct list *lsp_list;
2130 struct listnode *lspnode, *cnode;
2131 dnode_t *dnode, *dnode_next;
2132 int level;
2133
2134 lsp_list = list_new ();
hassof390d2c2004-09-10 20:48:21 +00002135
jardineb5d44e2003-12-23 08:09:43 +00002136 area = THREAD_ARG (thread);
2137 assert (area);
hasso13c48f72004-09-10 21:19:13 +00002138 area->t_tick = NULL;
hassof390d2c2004-09-10 20:48:21 +00002139 THREAD_TIMER_ON (master, area->t_tick, lsp_tick, area, 1);
jardineb5d44e2003-12-23 08:09:43 +00002140
2141 /*
2142 * Build a list of LSPs with (any) SRMflag set
2143 * and removed the ones that have aged out
2144 */
hassof390d2c2004-09-10 20:48:21 +00002145 for (level = 0; level < ISIS_LEVELS; level++)
2146 {
2147 if (area->lspdb[level] && dict_count (area->lspdb[level]) > 0)
2148 {
2149 dnode = dict_first (area->lspdb[level]);
2150 while (dnode != NULL)
2151 {
2152 dnode_next = dict_next (area->lspdb[level], dnode);
2153 lsp = dnode_get (dnode);
2154 lsp_set_time (lsp);
2155 if (lsp->age_out == 0)
2156 {
jardineb5d44e2003-12-23 08:09:43 +00002157
hasso529d65b2004-12-24 00:14:50 +00002158 zlog_debug ("ISIS-Upd (%s): L%u LSP %s seq 0x%08x aged out",
2159 area->area_tag,
2160 lsp->level,
2161 rawlspid_print (lsp->lsp_header->lsp_id),
2162 ntohl (lsp->lsp_header->seq_num));
jardineb5d44e2003-12-23 08:09:43 +00002163
hassof390d2c2004-09-10 20:48:21 +00002164 lsp_destroy (lsp);
2165 dict_delete (area->lspdb[level], dnode);
2166 }
2167 else if (flags_any_set (lsp->SRMflags))
2168 listnode_add (lsp_list, lsp);
2169 dnode = dnode_next;
2170 }
jardineb5d44e2003-12-23 08:09:43 +00002171
hassof390d2c2004-09-10 20:48:21 +00002172 /*
2173 * Send LSPs on circuits indicated by the SRMflags
2174 */
2175 if (listcount (lsp_list) > 0)
2176 {
2177 for (cnode = listhead (area->circuit_list); cnode;
2178 nextnode (cnode))
2179 {
2180 circuit = getdata (cnode);
2181 for (lspnode = listhead (lsp_list); lspnode;
2182 nextnode (lspnode))
2183 {
2184 lsp = getdata (lspnode);
2185 if (ISIS_CHECK_FLAG (lsp->SRMflags, circuit))
2186 {
2187 /* FIXME: if same or elder lsp is already in lsp
2188 * queue */
2189 listnode_add (circuit->lsp_queue, lsp);
2190 thread_add_event (master, send_lsp, circuit, 0);
2191 }
2192 }
2193 }
2194 }
2195 list_delete_all_node (lsp_list);
2196 }
jardineb5d44e2003-12-23 08:09:43 +00002197 }
jardineb5d44e2003-12-23 08:09:43 +00002198
2199 list_delete (lsp_list);
2200
2201 return ISIS_OK;
2202}
2203
jardineb5d44e2003-12-23 08:09:43 +00002204void
hassof390d2c2004-09-10 20:48:21 +00002205lsp_purge_dr (u_char * id, struct isis_circuit *circuit, int level)
jardineb5d44e2003-12-23 08:09:43 +00002206{
2207 struct isis_lsp *lsp;
hassof390d2c2004-09-10 20:48:21 +00002208
jardineb5d44e2003-12-23 08:09:43 +00002209 lsp = lsp_search (id, circuit->area->lspdb[level - 1]);
hassof390d2c2004-09-10 20:48:21 +00002210
2211 if (lsp && lsp->purged == 0)
2212 {
2213 lsp->lsp_header->rem_lifetime = htons (0);
2214 lsp->lsp_header->pdu_len =
2215 htons (ISIS_FIXED_HDR_LEN + ISIS_LSP_HDR_LEN);
2216 lsp->purged = 0;
2217 iso_csum_create (STREAM_DATA (lsp->pdu) + 12,
2218 ntohs (lsp->lsp_header->pdu_len) - 12, 12);
2219 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
2220 }
2221
jardineb5d44e2003-12-23 08:09:43 +00002222 return;
2223}
2224
2225/*
2226 * Purge own LSP that is received and we don't have.
2227 * -> Do as in 7.3.16.4
2228 */
2229void
hassof390d2c2004-09-10 20:48:21 +00002230lsp_purge_non_exist (struct isis_link_state_hdr *lsp_hdr,
2231 struct isis_area *area)
jardineb5d44e2003-12-23 08:09:43 +00002232{
2233 struct isis_lsp *lsp;
2234
2235 /*
2236 * We need to create the LSP to be purged
2237 */
hasso529d65b2004-12-24 00:14:50 +00002238 zlog_debug ("LSP PURGE NON EXIST");
jardineb5d44e2003-12-23 08:09:43 +00002239 lsp = XMALLOC (MTYPE_ISIS_LSP, sizeof (struct isis_lsp));
2240 memset (lsp, 0, sizeof (struct isis_lsp));
hassof390d2c2004-09-10 20:48:21 +00002241 /*FIXME: BUG BUG BUG! the lsp doesn't exist here! */
2242 /*did smt here, maybe good probably not */
jardineb5d44e2003-12-23 08:09:43 +00002243 lsp->level = ((lsp_hdr->lsp_bits & LSPBIT_IST) == IS_LEVEL_1) ? 1 : 2;
2244 lsp->pdu = stream_new (ISIS_FIXED_HDR_LEN + ISIS_LSP_HDR_LEN);
hassof390d2c2004-09-10 20:48:21 +00002245 lsp->isis_header = (struct isis_fixed_hdr *) STREAM_DATA (lsp->pdu);
jardineb5d44e2003-12-23 08:09:43 +00002246 fill_fixed_hdr (lsp->isis_header, (lsp->level == 1) ? L1_LINK_STATE
hassof390d2c2004-09-10 20:48:21 +00002247 : L2_LINK_STATE);
2248 lsp->lsp_header = (struct isis_link_state_hdr *) (STREAM_DATA (lsp->pdu) +
2249 ISIS_FIXED_HDR_LEN);
jardineb5d44e2003-12-23 08:09:43 +00002250 memcpy (lsp->lsp_header, lsp_hdr, ISIS_LSP_HDR_LEN);
hassof390d2c2004-09-10 20:48:21 +00002251
jardineb5d44e2003-12-23 08:09:43 +00002252 /*
2253 * Retain only LSP header
2254 */
2255 lsp->lsp_header->pdu_len = htons (ISIS_FIXED_HDR_LEN + ISIS_LSP_HDR_LEN);
2256 /*
2257 * Set the remaining lifetime to 0
2258 */
2259 lsp->lsp_header->rem_lifetime = 0;
2260 /*
2261 * Put the lsp into LSPdb
2262 */
hassof390d2c2004-09-10 20:48:21 +00002263 lsp_insert (lsp, area->lspdb[lsp->level - 1]);
jardineb5d44e2003-12-23 08:09:43 +00002264
2265 /*
2266 * Send in to whole area
2267 */
2268 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
hassof390d2c2004-09-10 20:48:21 +00002269
jardineb5d44e2003-12-23 08:09:43 +00002270 return;
2271}
2272
2273#ifdef TOPOLOGY_GENERATE
hasso92365882005-01-18 13:53:33 +00002274static int
jardineb5d44e2003-12-23 08:09:43 +00002275top_lsp_refresh (struct thread *thread)
2276{
hassof390d2c2004-09-10 20:48:21 +00002277 struct isis_lsp *lsp;
jardineb5d44e2003-12-23 08:09:43 +00002278
2279 lsp = THREAD_ARG (thread);
2280 assert (lsp);
2281
2282 lsp->t_lsp_top_ref = NULL;
2283
hassof390d2c2004-09-10 20:48:21 +00002284 lsp->lsp_header->rem_lifetime =
2285 htons (isis_jitter (MAX_AGE, MAX_AGE_JITTER));
2286 lsp->lsp_header->seq_num = htonl (ntohl (lsp->lsp_header->seq_num) + 1);
jardineb5d44e2003-12-23 08:09:43 +00002287
2288 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
hassof390d2c2004-09-10 20:48:21 +00002289 if (isis->debugs & DEBUG_UPDATE_PACKETS)
2290 {
hasso529d65b2004-12-24 00:14:50 +00002291 zlog_debug ("ISIS-Upd (): refreshing Topology L1 %s",
2292 rawlspid_print (lsp->lsp_header->lsp_id));
hassof390d2c2004-09-10 20:48:21 +00002293 }
jardineb5d44e2003-12-23 08:09:43 +00002294
2295 /* time to calculate our checksum */
2296 iso_csum_create (STREAM_DATA (lsp->pdu) + 12,
hassof390d2c2004-09-10 20:48:21 +00002297 ntohs (lsp->lsp_header->pdu_len) - 12, 12);
2298 THREAD_TIMER_ON (master, lsp->t_lsp_top_ref, top_lsp_refresh, lsp,
2299 isis_jitter (MAX_LSP_GEN_INTERVAL, MAX_LSP_GEN_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002300
2301 return ISIS_OK;
2302}
2303
2304void
2305generate_topology_lsps (struct isis_area *area)
2306{
2307 struct listnode *node;
2308 int i, max = 0;
2309 struct arc *arc;
2310 u_char lspid[ISIS_SYS_ID_LEN + 2];
2311 struct isis_lsp *lsp;
2312
2313 /* first we find the maximal node */
hassof390d2c2004-09-10 20:48:21 +00002314 LIST_LOOP (area->topology, arc, node)
2315 {
2316 if (arc->from_node > max)
2317 max = arc->from_node;
2318 if (arc->to_node > max)
2319 max = arc->to_node;
jardineb5d44e2003-12-23 08:09:43 +00002320 }
2321
hassof390d2c2004-09-10 20:48:21 +00002322 for (i = 1; i < (max + 1); i++)
2323 {
2324 memcpy (lspid, area->topology_baseis, ISIS_SYS_ID_LEN);
2325 LSP_PSEUDO_ID (lspid) = 0x00;
2326 LSP_FRAGMENT (lspid) = 0x00;
2327 lspid[ISIS_SYS_ID_LEN - 1] = (i & 0xFF);
2328 lspid[ISIS_SYS_ID_LEN - 2] = ((i >> 8) & 0xFF);
jardineb5d44e2003-12-23 08:09:43 +00002329
hassof390d2c2004-09-10 20:48:21 +00002330 lsp = lsp_new (lspid, isis_jitter (area->max_lsp_lifetime[0],
2331 MAX_AGE_JITTER), 1, IS_LEVEL_1, 0,
2332 1);
2333 lsp->from_topology = 1;
2334 /* creating data based on topology */
2335 build_topology_lsp_data (lsp, area, i);
2336 /* time to calculate our checksum */
2337 iso_csum_create (STREAM_DATA (lsp->pdu) + 12,
2338 ntohs (lsp->lsp_header->pdu_len) - 12, 12);
2339 THREAD_TIMER_ON (master, lsp->t_lsp_top_ref, top_lsp_refresh, lsp,
2340 isis_jitter (MAX_LSP_GEN_INTERVAL,
2341 MAX_LSP_GEN_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002342
hassof390d2c2004-09-10 20:48:21 +00002343 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
2344 lsp_insert (lsp, area->lspdb[0]);
jardineb5d44e2003-12-23 08:09:43 +00002345
hassof390d2c2004-09-10 20:48:21 +00002346 }
jardineb5d44e2003-12-23 08:09:43 +00002347}
2348
2349void
2350remove_topology_lsps (struct isis_area *area)
2351{
2352 struct isis_lsp *lsp;
2353 dnode_t *dnode, *dnode_next;
2354
2355 dnode = dict_first (area->lspdb[0]);
hassof390d2c2004-09-10 20:48:21 +00002356 while (dnode != NULL)
2357 {
2358 dnode_next = dict_next (area->lspdb[0], dnode);
2359 lsp = dnode_get (dnode);
2360 if (lsp->from_topology)
2361 {
2362 THREAD_TIMER_OFF (lsp->t_lsp_top_ref);
2363 lsp_destroy (lsp);
2364 dict_delete (area->lspdb[0], dnode);
2365 }
2366 dnode = dnode_next;
jardineb5d44e2003-12-23 08:09:43 +00002367 }
jardineb5d44e2003-12-23 08:09:43 +00002368}
2369
2370void
hassof390d2c2004-09-10 20:48:21 +00002371build_topology_lsp_data (struct isis_lsp *lsp, struct isis_area *area,
jardineb5d44e2003-12-23 08:09:43 +00002372 int lsp_top_num)
2373{
2374 struct listnode *node;
2375 struct arc *arc;
2376 u_char *tlv_ptr;
2377 struct is_neigh *is_neigh;
2378 int to_lsp = 0;
2379 char buff[200];
2380
2381 /* add our nlpids */
hassof390d2c2004-09-10 20:48:21 +00002382 /* the 2 is for the TL plus 1 for the nlpid */
2383 tlv_ptr = lsppdu_realloc (lsp, MTYPE_ISIS_TLV, 3);
2384 *tlv_ptr = PROTOCOLS_SUPPORTED; /* Type */
2385 *(tlv_ptr + 1) = 1; /* one protocol */
2386 *(tlv_ptr + 2) = NLPID_IP;
2387 lsp->tlv_data.nlpids = (struct nlpids *) (tlv_ptr + 1);
jardineb5d44e2003-12-23 08:09:43 +00002388
2389 /* first, lets add the tops */
hassof390d2c2004-09-10 20:48:21 +00002390 /* the 2 is for the TL plus 1 for the virtual field */
2391 tlv_ptr = lsppdu_realloc (lsp, MTYPE_ISIS_TLV, 3);
2392 *tlv_ptr = IS_NEIGHBOURS; /* Type */
2393 *(tlv_ptr + 1) = 1; /* this is the virtual char len */
2394 *(tlv_ptr + 2) = 0; /* virtual is zero */
2395 lsp->tlv_data.is_neighs = list_new (); /* new list of is_neighbours */
jardineb5d44e2003-12-23 08:09:43 +00002396
2397 /* add reachability for this IS for simulated 1 */
hassof390d2c2004-09-10 20:48:21 +00002398 if (lsp_top_num == 1)
2399 {
jardineb5d44e2003-12-23 08:09:43 +00002400 /* assign space for the is_neigh at the pdu end */
hassof390d2c2004-09-10 20:48:21 +00002401 is_neigh = (struct is_neigh *) lsppdu_realloc (lsp, MTYPE_ISIS_TLV,
2402 sizeof (struct
2403 is_neigh));
jardineb5d44e2003-12-23 08:09:43 +00002404 /* add this node to our list */
hassof390d2c2004-09-10 20:48:21 +00002405 listnode_add (lsp->tlv_data.is_neighs, is_neigh);
2406 memcpy (&is_neigh->neigh_id, isis->sysid, ISIS_SYS_ID_LEN);
jardineb5d44e2003-12-23 08:09:43 +00002407 LSP_PSEUDO_ID (is_neigh->neigh_id) = 0x00;
hassof390d2c2004-09-10 20:48:21 +00002408 is_neigh->metrics.metric_default = 0x00; /* no special reason */
jardineb5d44e2003-12-23 08:09:43 +00002409 is_neigh->metrics.metric_delay = METRICS_UNSUPPORTED;
2410 is_neigh->metrics.metric_expense = METRICS_UNSUPPORTED;
2411 is_neigh->metrics.metric_error = METRICS_UNSUPPORTED;
2412 /* don't forget the length */
hassof390d2c2004-09-10 20:48:21 +00002413 *(tlv_ptr + 1) += IS_NEIGHBOURS_LEN; /* the -1 is the virtual */
2414 /* no need to check for fragging here, it is a lonely is_reach */
jardineb5d44e2003-12-23 08:09:43 +00002415 }
hassof390d2c2004-09-10 20:48:21 +00002416
2417 /* addding is reachabilities */
2418 LIST_LOOP (area->topology, arc, node)
2419 {
2420 if ((arc->from_node == lsp_top_num) || (arc->to_node == lsp_top_num))
2421 {
2422 if (arc->to_node == lsp_top_num)
2423 to_lsp = arc->from_node;
2424 if (arc->from_node == lsp_top_num)
2425 to_lsp = arc->to_node;
2426
2427 /* if the length here is about to cross the FF limit, we reTLV */
2428 if (*(tlv_ptr + 1) >= (0xFF - IS_NEIGHBOURS_LEN))
2429 {
2430 /* retlv */
2431 /* the 2 is for the TL plus 1 for the virtual field */
2432 tlv_ptr = lsppdu_realloc (lsp, MTYPE_ISIS_TLV, 3);
2433 *tlv_ptr = IS_NEIGHBOURS; /* Type */
2434 *(tlv_ptr + 1) = 1; /* this is the virtual char len */
2435 *(tlv_ptr + 2) = 0; /* virtual is zero */
2436 }
2437 /* doing this here assures us that we won't add an "empty" tlv */
2438 /* assign space for the is_neigh at the pdu end */
2439 is_neigh = (struct is_neigh *) lsppdu_realloc (lsp, MTYPE_ISIS_TLV,
2440 sizeof (struct
2441 is_neigh));
2442 /* add this node to our list */
2443 listnode_add (lsp->tlv_data.is_neighs, is_neigh);
2444 memcpy (&is_neigh->neigh_id, area->topology_baseis, ISIS_SYS_ID_LEN);
2445 LSP_PSEUDO_ID (is_neigh->neigh_id) = 0x00;
2446 is_neigh->neigh_id[ISIS_SYS_ID_LEN - 1] = (to_lsp & 0xFF);
2447 is_neigh->neigh_id[ISIS_SYS_ID_LEN - 2] = ((to_lsp >> 8) & 0xFF);
2448 is_neigh->metrics.metric_default = arc->distance;
2449 is_neigh->metrics.metric_delay = METRICS_UNSUPPORTED;
2450 is_neigh->metrics.metric_expense = METRICS_UNSUPPORTED;
2451 is_neigh->metrics.metric_error = METRICS_UNSUPPORTED;
2452 /* don't forget the length */
2453 *(tlv_ptr + 1) += IS_NEIGHBOURS_LEN; /* the -1 is the virtual */
2454 }
jardineb5d44e2003-12-23 08:09:43 +00002455 }
2456
hassof390d2c2004-09-10 20:48:21 +00002457 /* adding dynamic hostname if needed */
2458 if (area->dynhostname)
2459 {
2460 memset (buff, 0x00, 200);
2461 sprintf (buff, "feedme%d", lsp_top_num);
2462 /* the 2 is for the TL */
2463 tlv_ptr = lsppdu_realloc (lsp, MTYPE_ISIS_TLV, 2);
2464 *tlv_ptr = DYNAMIC_HOSTNAME; /* Type */
2465 *(tlv_ptr + 1) = strlen (buff); /* Length */
2466 /* the -1 is to fit the length in the struct */
2467 lsp->tlv_data.hostname = (struct hostname *)
2468 (lsppdu_realloc (lsp, MTYPE_ISIS_TLV, strlen (buff)) - 1);
2469 memcpy (lsp->tlv_data.hostname->name, buff, strlen (buff));
2470 }
jardineb5d44e2003-12-23 08:09:43 +00002471
2472 /* thanks to hannes, another bug bites the dust */
hassof390d2c2004-09-10 20:48:21 +00002473 lsp->pdu->endp = ntohs (lsp->lsp_header->pdu_len);
jardineb5d44e2003-12-23 08:09:43 +00002474}
2475#endif /* TOPOLOGY_GENERATE */