blob: 6dcc75e98a87eb31b2295bf4154f4809585df914 [file] [log] [blame]
jardineb5d44e2003-12-23 08:09:43 +00001/*
2 * IS-IS Rout(e)ing protocol - isis_pdu.c
3 * PDU 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
24#include <stdio.h>
25#include <string.h>
26#include <zebra.h>
jardineb5d44e2003-12-23 08:09:43 +000027
28#include "memory.h"
29#include "thread.h"
30#include "linklist.h"
31#include "log.h"
32#include "stream.h"
33#include "vty.h"
34#include "hash.c"
35#include "prefix.h"
36#include "if.h"
37
38#include "isisd/dict.h"
39#include "isisd/include-netbsd/iso.h"
40#include "isisd/isis_constants.h"
41#include "isisd/isis_common.h"
42#include "isisd/isis_adjacency.h"
43#include "isisd/isis_circuit.h"
44#include "isisd/isis_network.h"
45#include "isisd/isis_misc.h"
46#include "isisd/isis_dr.h"
47#include "isisd/isis_flags.h"
48#include "isisd/isis_tlv.h"
49#include "isisd/isisd.h"
50#include "isisd/isis_dynhn.h"
51#include "isisd/isis_lsp.h"
52#include "isisd/isis_pdu.h"
53#include "isisd/iso_checksum.h"
54#include "isisd/isis_csm.h"
55#include "isisd/isis_events.h"
56
57extern struct thread_master *master;
58extern struct isis *isis;
59
60#define ISIS_MINIMUM_FIXED_HDR_LEN 15
hassof390d2c2004-09-10 20:48:21 +000061#define ISIS_MIN_PDU_LEN 13 /* partial seqnum pdu with id_len=2 */
jardineb5d44e2003-12-23 08:09:43 +000062
63#ifndef PNBBY
64#define PNBBY 8
65#endif /* PNBBY */
66
67/* Utility mask array. */
hassof390d2c2004-09-10 20:48:21 +000068static u_char maskbit[] = {
jardineb5d44e2003-12-23 08:09:43 +000069 0x00, 0x80, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc, 0xfe, 0xff
70};
71
72/*
73 * HELPER FUNCS
74 */
75
76/*
77 * Compares two sets of area addresses
78 */
hassof390d2c2004-09-10 20:48:21 +000079static int
jardineb5d44e2003-12-23 08:09:43 +000080area_match (struct list *left, struct list *right)
81{
82 struct area_addr *addr1, *addr2;
83 struct listnode *node1, *node2;
84
hassof390d2c2004-09-10 20:48:21 +000085 LIST_LOOP (left, addr1, node1)
86 {
87 LIST_LOOP (right, addr2, node2)
88 {
89 if (addr1->addr_len == addr2->addr_len &&
90 !memcmp (addr1->area_addr, addr2->area_addr, (int) addr1->addr_len))
91 return 1; /* match */
jardineb5d44e2003-12-23 08:09:43 +000092 }
93 }
94
hassof390d2c2004-09-10 20:48:21 +000095 return 0; /* mismatch */
jardineb5d44e2003-12-23 08:09:43 +000096}
97
98/*
99 * Check if ip2 is in the ip1's network (function like Prefix.h:prefix_match() )
100 * param ip1 the IS interface ip address structure
101 * param ip2 the IIH's ip address
102 * return 0 the IIH's IP is not in the IS's subnetwork
103 * 1 the IIH's IP is in the IS's subnetwork
104 */
hasso92365882005-01-18 13:53:33 +0000105static int
hassof390d2c2004-09-10 20:48:21 +0000106ip_same_subnet (struct prefix_ipv4 *ip1, struct in_addr *ip2)
jardineb5d44e2003-12-23 08:09:43 +0000107{
108 u_char *addr1, *addr2;
hasso53c997c2004-09-15 16:21:59 +0000109 int shift, offset, offsetloop;
jardineb5d44e2003-12-23 08:09:43 +0000110 int len;
hassof390d2c2004-09-10 20:48:21 +0000111
112 addr1 = (u_char *) & ip1->prefix.s_addr;
113 addr2 = (u_char *) & ip2->s_addr;
jardineb5d44e2003-12-23 08:09:43 +0000114 len = ip1->prefixlen;
115
116 shift = len % PNBBY;
hasso53c997c2004-09-15 16:21:59 +0000117 offsetloop = offset = len / PNBBY;
jardineb5d44e2003-12-23 08:09:43 +0000118
hasso53c997c2004-09-15 16:21:59 +0000119 while (offsetloop--)
120 if (addr1[offsetloop] != addr2[offsetloop])
121 return 0;
jardineb5d44e2003-12-23 08:09:43 +0000122
hassof390d2c2004-09-10 20:48:21 +0000123 if (shift)
hasso53c997c2004-09-15 16:21:59 +0000124 if (maskbit[shift] & (addr1[offset] ^ addr2[offset]))
125 return 0;
hassof390d2c2004-09-10 20:48:21 +0000126
127 return 1; /* match */
jardineb5d44e2003-12-23 08:09:43 +0000128}
129
jardineb5d44e2003-12-23 08:09:43 +0000130/*
131 * Compares two set of ip addresses
132 * param left the local interface's ip addresses
133 * param right the iih interface's ip address
134 * return 0 no match;
135 * 1 match;
136 */
hassof390d2c2004-09-10 20:48:21 +0000137static int
jardineb5d44e2003-12-23 08:09:43 +0000138ip_match (struct list *left, struct list *right)
139{
140 struct prefix_ipv4 *ip1;
141 struct in_addr *ip2;
142 struct listnode *node1, *node2;
143
hassoe082ac12004-09-27 18:13:57 +0000144 if ((left == NULL) || (right == NULL))
145 return 0;
146
hassof390d2c2004-09-10 20:48:21 +0000147 LIST_LOOP (left, ip1, node1)
148 {
149 LIST_LOOP (right, ip2, node2)
150 {
151 if (ip_same_subnet (ip1, ip2))
152 {
153 return 1; /* match */
154 }
jardineb5d44e2003-12-23 08:09:43 +0000155 }
hassof390d2c2004-09-10 20:48:21 +0000156
jardineb5d44e2003-12-23 08:09:43 +0000157 }
158 return 0;
159}
160
161/*
162 * Checks whether we should accept a PDU of given level
163 */
164static int
165accept_level (int level, int circuit_t)
166{
hassof390d2c2004-09-10 20:48:21 +0000167 int retval = ((circuit_t & level) == level); /* simple approach */
jardineb5d44e2003-12-23 08:09:43 +0000168
169 return retval;
170}
171
hassof390d2c2004-09-10 20:48:21 +0000172int
jardineb5d44e2003-12-23 08:09:43 +0000173authentication_check (struct isis_passwd *one, struct isis_passwd *theother)
174{
hassof390d2c2004-09-10 20:48:21 +0000175 if (one->type != theother->type)
176 {
177 zlog_warn ("Unsupported authentication type %d", theother->type);
178 return 1; /* Auth fail (different authentication types) */
179 }
180 switch (one->type)
181 {
182 case ISIS_PASSWD_TYPE_CLEARTXT:
183 if (one->len != theother->len)
184 return 1; /* Auth fail () - passwd len mismatch */
185 return memcmp (one->passwd, theother->passwd, one->len);
186 break;
187 default:
188 zlog_warn ("Unsupported authentication type");
189 break;
190 }
191 return 0; /* Auth pass */
jardineb5d44e2003-12-23 08:09:43 +0000192}
193
194/*
195 * Processing helper functions
196 */
hasso92365882005-01-18 13:53:33 +0000197static void
hassof390d2c2004-09-10 20:48:21 +0000198tlvs_to_adj_nlpids (struct tlvs *tlvs, struct isis_adjacency *adj)
jardineb5d44e2003-12-23 08:09:43 +0000199{
200 int i;
201 struct nlpids *tlv_nlpids;
202
hassof390d2c2004-09-10 20:48:21 +0000203 if (tlvs->nlpids)
204 {
jardineb5d44e2003-12-23 08:09:43 +0000205
hassof390d2c2004-09-10 20:48:21 +0000206 tlv_nlpids = tlvs->nlpids;
jardineb5d44e2003-12-23 08:09:43 +0000207
hassof390d2c2004-09-10 20:48:21 +0000208 adj->nlpids.count = tlv_nlpids->count;
jardineb5d44e2003-12-23 08:09:43 +0000209
hassof390d2c2004-09-10 20:48:21 +0000210 for (i = 0; i < tlv_nlpids->count; i++)
211 {
212 adj->nlpids.nlpids[i] = tlv_nlpids->nlpids[i];
213 }
jardineb5d44e2003-12-23 08:09:43 +0000214 }
jardineb5d44e2003-12-23 08:09:43 +0000215}
216
hasso92365882005-01-18 13:53:33 +0000217static void
jardineb5d44e2003-12-23 08:09:43 +0000218del_ip_addr (void *val)
219{
220 XFREE (MTYPE_ISIS_TMP, val);
221}
222
hasso92365882005-01-18 13:53:33 +0000223static void
hassof390d2c2004-09-10 20:48:21 +0000224tlvs_to_adj_ipv4_addrs (struct tlvs *tlvs, struct isis_adjacency *adj)
jardineb5d44e2003-12-23 08:09:43 +0000225{
226 struct listnode *node;
227 struct in_addr *ipv4_addr, *malloced;
228
hassof390d2c2004-09-10 20:48:21 +0000229 if (adj->ipv4_addrs)
230 {
231 adj->ipv4_addrs->del = del_ip_addr;
232 list_delete (adj->ipv4_addrs);
jardineb5d44e2003-12-23 08:09:43 +0000233 }
hassof390d2c2004-09-10 20:48:21 +0000234 adj->ipv4_addrs = list_new ();
235 if (tlvs->ipv4_addrs)
236 {
237 LIST_LOOP (tlvs->ipv4_addrs, ipv4_addr, node)
238 {
239 malloced = XMALLOC (MTYPE_ISIS_TMP, sizeof (struct in_addr));
240 memcpy (malloced, ipv4_addr, sizeof (struct in_addr));
241 listnode_add (adj->ipv4_addrs, malloced);
242 }
243 }
jardineb5d44e2003-12-23 08:09:43 +0000244}
245
246#ifdef HAVE_IPV6
hasso92365882005-01-18 13:53:33 +0000247static void
hassof390d2c2004-09-10 20:48:21 +0000248tlvs_to_adj_ipv6_addrs (struct tlvs *tlvs, struct isis_adjacency *adj)
jardineb5d44e2003-12-23 08:09:43 +0000249{
250 struct listnode *node;
251 struct in6_addr *ipv6_addr, *malloced;
252
hassof390d2c2004-09-10 20:48:21 +0000253 if (adj->ipv6_addrs)
254 {
255 adj->ipv6_addrs->del = del_ip_addr;
256 list_delete (adj->ipv6_addrs);
jardineb5d44e2003-12-23 08:09:43 +0000257 }
hassof390d2c2004-09-10 20:48:21 +0000258 adj->ipv6_addrs = list_new ();
259 if (tlvs->ipv6_addrs)
260 {
261 LIST_LOOP (tlvs->ipv6_addrs, ipv6_addr, node)
262 {
263 malloced = XMALLOC (MTYPE_ISIS_TMP, sizeof (struct in6_addr));
264 memcpy (malloced, ipv6_addr, sizeof (struct in6_addr));
265 listnode_add (adj->ipv6_addrs, malloced);
266 }
267 }
jardineb5d44e2003-12-23 08:09:43 +0000268
269}
270#endif /* HAVE_IPV6 */
271
jardineb5d44e2003-12-23 08:09:43 +0000272/*
273 * RECEIVE SIDE
274 */
275
276/*
277 * Process P2P IIH
278 * ISO - 10589
279 * Section 8.2.5 - Receiving point-to-point IIH PDUs
280 *
281 */
282static int
283process_p2p_hello (struct isis_circuit *circuit)
284{
285 int retval = ISIS_OK;
286 struct isis_p2p_hello_hdr *hdr;
287 struct isis_adjacency *adj;
288 u_int32_t expected = 0, found;
289 struct tlvs tlvs;
290
hassof390d2c2004-09-10 20:48:21 +0000291 if ((stream_get_endp (circuit->rcv_stream) -
292 stream_get_getp (circuit->rcv_stream)) < ISIS_P2PHELLO_HDRLEN)
293 {
294 zlog_warn ("Packet too short");
295 return ISIS_WARNING;
296 }
jardineb5d44e2003-12-23 08:09:43 +0000297
298 /* 8.2.5.1 PDU acceptance tests */
299
300 /* 8.2.5.1 a) external domain untrue */
301 /* FIXME: not useful at all? */
302
303 /* 8.2.5.1 b) ID Length mismatch */
304 /* checked at the handle_pdu */
305
306 /* 8.2.5.2 IIH PDU Processing */
307
308 /* 8.2.5.2 a) 1) Maximum Area Addresses */
309 /* Already checked, and can also be ommited */
310
311 /*
312 * Get the header
313 */
hassof390d2c2004-09-10 20:48:21 +0000314 hdr = (struct isis_p2p_hello_hdr *) STREAM_PNT (circuit->rcv_stream);
jardineb5d44e2003-12-23 08:09:43 +0000315 circuit->rcv_stream->getp += ISIS_P2PHELLO_HDRLEN;
316
317 /* hdr.circuit_t = stream_getc (stream);
hassof390d2c2004-09-10 20:48:21 +0000318 stream_get (hdr.source_id, stream, ISIS_SYS_ID_LEN);
319 hdr.hold_time = stream_getw (stream);
320 hdr.pdu_len = stream_getw (stream);
321 hdr.local_id = stream_getc (stream); */
jardineb5d44e2003-12-23 08:09:43 +0000322
323 /*
324 * My interpertation of the ISO, if no adj exists we will create one for
325 * the circuit
326 */
327
hassof390d2c2004-09-10 20:48:21 +0000328 if (isis->debugs & DEBUG_ADJ_PACKETS)
329 {
hasso529d65b2004-12-24 00:14:50 +0000330 zlog_debug ("ISIS-Adj (%s): Rcvd P2P IIH from (%s), cir type %s,"
331 " cir id %02d, length %d",
332 circuit->area->area_tag, circuit->interface->name,
333 circuit_t2string (circuit->circuit_is_type),
334 circuit->circuit_id, ntohs (hdr->pdu_len));
hassof390d2c2004-09-10 20:48:21 +0000335 }
jardineb5d44e2003-12-23 08:09:43 +0000336
337 adj = circuit->u.p2p.neighbor;
hassof390d2c2004-09-10 20:48:21 +0000338 if (!adj)
339 {
hassof7c43dc2004-09-26 16:24:14 +0000340 adj = isis_new_adj (hdr->source_id, (u_char *) " ", 0, circuit);
hassof390d2c2004-09-10 20:48:21 +0000341 if (adj == NULL)
342 return ISIS_ERROR;
343 circuit->u.p2p.neighbor = adj;
344 isis_adj_state_change (adj, ISIS_ADJ_INITIALIZING, NULL);
345 adj->sys_type = ISIS_SYSTYPE_UNKNOWN;
346 }
jardineb5d44e2003-12-23 08:09:43 +0000347
348 /* 8.2.6 Monitoring point-to-point adjacencies */
349 adj->hold_time = ntohs (hdr->hold_time);
hassof390d2c2004-09-10 20:48:21 +0000350 adj->last_upd = time (NULL);
jardineb5d44e2003-12-23 08:09:43 +0000351
352 /*
353 * Lets get the TLVS now
354 */
355 expected |= TLVFLAG_AREA_ADDRS;
356 expected |= TLVFLAG_AUTH_INFO;
357 expected |= TLVFLAG_NLPID;
358 expected |= TLVFLAG_IPV4_ADDR;
359 expected |= TLVFLAG_IPV6_ADDR;
360
361 retval = parse_tlvs (circuit->area->area_tag,
362 STREAM_PNT (circuit->rcv_stream),
hassof390d2c2004-09-10 20:48:21 +0000363 ntohs (hdr->pdu_len) - ISIS_P2PHELLO_HDRLEN
364 - ISIS_FIXED_HDR_LEN, &expected, &found, &tlvs);
jardineb5d44e2003-12-23 08:09:43 +0000365
hassof390d2c2004-09-10 20:48:21 +0000366 if (retval > ISIS_WARNING)
367 {
368 free_tlvs (&tlvs);
369 return retval;
370 };
jardineb5d44e2003-12-23 08:09:43 +0000371
372 /* 8.2.5.1 c) Authentication */
hassof390d2c2004-09-10 20:48:21 +0000373 if (circuit->passwd.type)
374 {
375 if (!(found & TLVFLAG_AUTH_INFO) ||
376 authentication_check (&circuit->passwd, &tlvs.auth_info))
377 {
378 isis_event_auth_failure (circuit->area->area_tag,
379 "P2P hello authentication failure",
380 hdr->source_id);
381 return ISIS_OK;
382 }
jardineb5d44e2003-12-23 08:09:43 +0000383 }
jardineb5d44e2003-12-23 08:09:43 +0000384
385 /* we do this now because the adj may not survive till the end... */
386
387 /* we need to copy addresses to the adj */
hassof390d2c2004-09-10 20:48:21 +0000388 tlvs_to_adj_ipv4_addrs (&tlvs, adj);
jardineb5d44e2003-12-23 08:09:43 +0000389
390#ifdef HAVE_IPV6
hassof390d2c2004-09-10 20:48:21 +0000391 tlvs_to_adj_ipv6_addrs (&tlvs, adj);
jardineb5d44e2003-12-23 08:09:43 +0000392#endif /* HAVE_IPV6 */
393
394 /* lets take care of the expiry */
hassof390d2c2004-09-10 20:48:21 +0000395 THREAD_TIMER_OFF (adj->t_expire);
396 THREAD_TIMER_ON (master, adj->t_expire, isis_adj_expire, adj,
397 (long) adj->hold_time);
jardineb5d44e2003-12-23 08:09:43 +0000398
399 /* 8.2.5.2 a) a match was detected */
hassof390d2c2004-09-10 20:48:21 +0000400 if (area_match (circuit->area->area_addrs, tlvs.area_addrs))
401 {
402 /* 8.2.5.2 a) 2) If the system is L1 - table 5 */
403 if (circuit->area->is_type == IS_LEVEL_1)
404 {
405 switch (hdr->circuit_t)
406 {
407 case IS_LEVEL_1:
408 case IS_LEVEL_1_AND_2:
409 if (adj->adj_state != ISIS_ADJ_UP)
410 {
411 /* (4) adj state up */
412 isis_adj_state_change (adj, ISIS_ADJ_UP, NULL);
413 /* (5) adj usage level 1 */
414 adj->adj_usage = ISIS_ADJ_LEVEL1;
415 }
416 else if (adj->adj_usage == ISIS_ADJ_LEVEL1)
417 {
418 ; /* accept */
419 }
420 break;
421 case IS_LEVEL_2:
422 if (adj->adj_state != ISIS_ADJ_UP)
423 {
424 /* (7) reject - wrong system type event */
425 zlog_warn ("wrongSystemType");
426 return ISIS_WARNING; /* Reject */
427 }
428 else if (adj->adj_usage == ISIS_ADJ_LEVEL1)
429 {
430 /* (6) down - wrong system */
431 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
432 }
433 break;
434 }
435 }
jardineb5d44e2003-12-23 08:09:43 +0000436
hassof390d2c2004-09-10 20:48:21 +0000437 /* 8.2.5.2 a) 3) If the system is L1L2 - table 6 */
438 if (circuit->area->is_type == IS_LEVEL_1_AND_2)
439 {
440 switch (hdr->circuit_t)
441 {
442 case IS_LEVEL_1:
443 if (adj->adj_state != ISIS_ADJ_UP)
444 {
445 /* (6) adj state up */
446 isis_adj_state_change (adj, ISIS_ADJ_UP, NULL);
447 /* (7) adj usage level 1 */
448 adj->adj_usage = ISIS_ADJ_LEVEL1;
449 }
450 else if (adj->adj_usage == ISIS_ADJ_LEVEL1)
451 {
452 ; /* accept */
453 }
454 else if ((adj->adj_usage == ISIS_ADJ_LEVEL1AND2) ||
455 (adj->adj_usage == ISIS_ADJ_LEVEL2))
456 {
457 /* (8) down - wrong system */
458 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
459 }
460 break;
461 case IS_LEVEL_2:
462 if (adj->adj_state != ISIS_ADJ_UP)
463 {
464 /* (6) adj state up */
465 isis_adj_state_change (adj, ISIS_ADJ_UP, NULL);
466 /* (9) adj usage level 2 */
467 adj->adj_usage = ISIS_ADJ_LEVEL2;
468 }
469 else if ((adj->adj_usage == ISIS_ADJ_LEVEL1) ||
470 (adj->adj_usage == ISIS_ADJ_LEVEL1AND2))
471 {
472 /* (8) down - wrong system */
473 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
474 }
475 else if (adj->adj_usage == ISIS_ADJ_LEVEL2)
476 {
477 ; /* Accept */
478 }
479 break;
480 case IS_LEVEL_1_AND_2:
481 if (adj->adj_state != ISIS_ADJ_UP)
482 {
483 /* (6) adj state up */
484 isis_adj_state_change (adj, ISIS_ADJ_UP, NULL);
485 /* (10) adj usage level 1 */
486 adj->adj_usage = ISIS_ADJ_LEVEL1AND2;
487 }
488 else if ((adj->adj_usage == ISIS_ADJ_LEVEL1) ||
489 (adj->adj_usage == ISIS_ADJ_LEVEL2))
490 {
491 /* (8) down - wrong system */
492 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
493 }
494 else if (adj->adj_usage == ISIS_ADJ_LEVEL1AND2)
495 {
496 ; /* Accept */
497 }
498 break;
499 }
500 }
jardineb5d44e2003-12-23 08:09:43 +0000501
hassof390d2c2004-09-10 20:48:21 +0000502 /* 8.2.5.2 a) 4) If the system is L2 - table 7 */
503 if (circuit->area->is_type == IS_LEVEL_2)
504 {
505 switch (hdr->circuit_t)
506 {
507 case IS_LEVEL_1:
508 if (adj->adj_state != ISIS_ADJ_UP)
509 {
510 /* (5) reject - wrong system type event */
511 zlog_warn ("wrongSystemType");
512 return ISIS_WARNING; /* Reject */
513 }
514 else if ((adj->adj_usage == ISIS_ADJ_LEVEL1AND2) ||
515 (adj->adj_usage == ISIS_ADJ_LEVEL2))
516 {
517 /* (6) down - wrong system */
518 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
519 }
520 break;
521 case IS_LEVEL_1_AND_2:
522 case IS_LEVEL_2:
523 if (adj->adj_state != ISIS_ADJ_UP)
524 {
525 /* (7) adj state up */
526 isis_adj_state_change (adj, ISIS_ADJ_UP, NULL);
527 /* (8) adj usage level 2 */
528 adj->adj_usage = ISIS_ADJ_LEVEL2;
529 }
530 else if (adj->adj_usage == ISIS_ADJ_LEVEL1AND2)
531 {
532 /* (6) down - wrong system */
533 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
534 }
535 else if (adj->adj_usage == ISIS_ADJ_LEVEL2)
536 {
537 ; /* Accept */
538 }
539 break;
540 }
541 }
jardineb5d44e2003-12-23 08:09:43 +0000542 }
jardineb5d44e2003-12-23 08:09:43 +0000543 /* 8.2.5.2 b) if no match was detected */
544 else
jardineb5d44e2003-12-23 08:09:43 +0000545 {
hassof390d2c2004-09-10 20:48:21 +0000546 if (circuit->area->is_type == IS_LEVEL_1)
547 {
548 /* 8.2.5.2 b) 1) is_type L1 and adj is not up */
549 if (adj->adj_state != ISIS_ADJ_UP)
550 {
551 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Area Mismatch");
552 /* 8.2.5.2 b) 2)is_type L1 and adj is up */
553 }
554 else
555 {
556 isis_adj_state_change (adj, ISIS_ADJ_DOWN,
557 "Down - Area Mismatch");
558 }
559 }
560 /* 8.2.5.2 b 3 If the system is L2 or L1L2 - table 8 */
561 else
562 {
563 switch (hdr->circuit_t)
564 {
565 case IS_LEVEL_1:
566 if (adj->adj_state != ISIS_ADJ_UP)
567 {
568 /* (6) reject - Area Mismatch event */
569 zlog_warn ("AreaMismatch");
570 return ISIS_WARNING; /* Reject */
571 }
572 else if (adj->adj_usage == ISIS_ADJ_LEVEL1)
573 {
574 /* (7) down - area mismatch */
575 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Area Mismatch");
jardineb5d44e2003-12-23 08:09:43 +0000576
hassof390d2c2004-09-10 20:48:21 +0000577 }
578 else if ((adj->adj_usage == ISIS_ADJ_LEVEL1AND2) ||
579 (adj->adj_usage == ISIS_ADJ_LEVEL2))
580 {
581 /* (7) down - wrong system */
582 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
583 }
584 break;
585 case IS_LEVEL_1_AND_2:
586 case IS_LEVEL_2:
587 if (adj->adj_state != ISIS_ADJ_UP)
588 {
589 /* (8) adj state up */
590 isis_adj_state_change (adj, ISIS_ADJ_UP, NULL);
591 /* (9) adj usage level 2 */
592 adj->adj_usage = ISIS_ADJ_LEVEL2;
593 }
594 else if (adj->adj_usage == ISIS_ADJ_LEVEL1)
595 {
596 /* (7) down - wrong system */
597 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
598 }
599 else if (adj->adj_usage == ISIS_ADJ_LEVEL1AND2)
600 {
601 if (hdr->circuit_t == IS_LEVEL_2)
602 {
603 /* (7) down - wrong system */
604 isis_adj_state_change (adj, ISIS_ADJ_DOWN,
605 "Wrong System");
606 }
607 else
608 {
609 /* (7) down - area mismatch */
610 isis_adj_state_change (adj, ISIS_ADJ_DOWN,
611 "Area Mismatch");
612 }
613 }
614 else if (adj->adj_usage == ISIS_ADJ_LEVEL2)
615 {
616 ; /* Accept */
617 }
618 break;
619 }
620 }
jardineb5d44e2003-12-23 08:09:43 +0000621 }
jardineb5d44e2003-12-23 08:09:43 +0000622 /* 8.2.5.2 c) if the action was up - comparing circuit IDs */
623 /* FIXME - Missing parts */
624
jardineb5d44e2003-12-23 08:09:43 +0000625 /* some of my own understanding of the ISO, why the heck does
626 * it not say what should I change the system_type to...
627 */
hassof390d2c2004-09-10 20:48:21 +0000628 switch (adj->adj_usage)
629 {
jardineb5d44e2003-12-23 08:09:43 +0000630 case ISIS_ADJ_LEVEL1:
631 adj->sys_type = ISIS_SYSTYPE_L1_IS;
632 break;
633 case ISIS_ADJ_LEVEL2:
634 adj->sys_type = ISIS_SYSTYPE_L2_IS;
635 break;
636 case ISIS_ADJ_LEVEL1AND2:
637 adj->sys_type = ISIS_SYSTYPE_L2_IS;
638 break;
639 case ISIS_ADJ_NONE:
640 adj->sys_type = ISIS_SYSTYPE_UNKNOWN;
641 break;
hassof390d2c2004-09-10 20:48:21 +0000642 }
jardineb5d44e2003-12-23 08:09:43 +0000643
644 adj->circuit_t = hdr->circuit_t;
645 adj->level = hdr->circuit_t;
646
647 free_tlvs (&tlvs);
648
649 return retval;
650}
651
jardineb5d44e2003-12-23 08:09:43 +0000652/*
653 * Process IS-IS LAN Level 1/2 Hello PDU
654 */
hassof390d2c2004-09-10 20:48:21 +0000655static int
656process_lan_hello (int level, struct isis_circuit *circuit, u_char * ssnpa)
jardineb5d44e2003-12-23 08:09:43 +0000657{
658 int retval = ISIS_OK;
659 struct isis_lan_hello_hdr hdr;
660 struct isis_adjacency *adj;
661 u_int32_t expected = 0, found;
662 struct tlvs tlvs;
663 u_char *snpa;
664 struct listnode *node;
665
hassof390d2c2004-09-10 20:48:21 +0000666 if ((stream_get_endp (circuit->rcv_stream) -
667 stream_get_getp (circuit->rcv_stream)) < ISIS_LANHELLO_HDRLEN)
668 {
669 zlog_warn ("Packet too short");
670 return ISIS_WARNING;
jardineb5d44e2003-12-23 08:09:43 +0000671 }
hassof390d2c2004-09-10 20:48:21 +0000672
673 if (circuit->ext_domain)
674 {
hasso529d65b2004-12-24 00:14:50 +0000675 zlog_debug ("level %d LAN Hello received over circuit with "
676 "externalDomain = true", level);
hassof390d2c2004-09-10 20:48:21 +0000677 return ISIS_WARNING;
678 }
679
680 if (!accept_level (level, circuit->circuit_is_type))
681 {
682 if (isis->debugs & DEBUG_ADJ_PACKETS)
683 {
hasso529d65b2004-12-24 00:14:50 +0000684 zlog_debug ("ISIS-Adj (%s): Interface level mismatch, %s",
685 circuit->area->area_tag, circuit->interface->name);
hassof390d2c2004-09-10 20:48:21 +0000686 }
687 return ISIS_WARNING;
688 }
jardineb5d44e2003-12-23 08:09:43 +0000689
690#if 0
691 /* Cisco's debug message compatability */
hassof390d2c2004-09-10 20:48:21 +0000692 if (!accept_level (level, circuit->area->is_type))
693 {
694 if (isis->debugs & DEBUG_ADJ_PACKETS)
695 {
hasso529d65b2004-12-24 00:14:50 +0000696 zlog_debug ("ISIS-Adj (%s): is type mismatch",
697 circuit->area->area_tag);
hassof390d2c2004-09-10 20:48:21 +0000698 }
699 return ISIS_WARNING;
jardineb5d44e2003-12-23 08:09:43 +0000700 }
jardineb5d44e2003-12-23 08:09:43 +0000701#endif
702 /*
703 * Fill the header
704 */
705 hdr.circuit_t = stream_getc (circuit->rcv_stream);
706 stream_get (hdr.source_id, circuit->rcv_stream, ISIS_SYS_ID_LEN);
707 hdr.hold_time = stream_getw (circuit->rcv_stream);
hassof390d2c2004-09-10 20:48:21 +0000708 hdr.pdu_len = stream_getw (circuit->rcv_stream);
709 hdr.prio = stream_getc (circuit->rcv_stream);
jardineb5d44e2003-12-23 08:09:43 +0000710 stream_get (hdr.lan_id, circuit->rcv_stream, ISIS_SYS_ID_LEN + 1);
711
712 if (hdr.circuit_t != IS_LEVEL_1 && hdr.circuit_t != IS_LEVEL_2 &&
hassof390d2c2004-09-10 20:48:21 +0000713 hdr.circuit_t != IS_LEVEL_1_AND_2)
714 {
715 zlog_warn ("Level %d LAN Hello with Circuit Type %d", level,
716 hdr.circuit_t);
717 return ISIS_ERROR;
718 }
jardineb5d44e2003-12-23 08:09:43 +0000719 /*
720 * Then get the tlvs
721 */
722 expected |= TLVFLAG_AUTH_INFO;
723 expected |= TLVFLAG_AREA_ADDRS;
724 expected |= TLVFLAG_LAN_NEIGHS;
725 expected |= TLVFLAG_NLPID;
726 expected |= TLVFLAG_IPV4_ADDR;
727 expected |= TLVFLAG_IPV6_ADDR;
728
729 retval = parse_tlvs (circuit->area->area_tag,
hassof390d2c2004-09-10 20:48:21 +0000730 STREAM_PNT (circuit->rcv_stream),
731 hdr.pdu_len - ISIS_LANHELLO_HDRLEN -
732 ISIS_FIXED_HDR_LEN, &expected, &found, &tlvs);
jardineb5d44e2003-12-23 08:09:43 +0000733
hassof390d2c2004-09-10 20:48:21 +0000734 if (retval > ISIS_WARNING)
735 {
736 zlog_warn ("parse_tlvs() failed");
737 goto out;
738 }
jardineb5d44e2003-12-23 08:09:43 +0000739
hassof390d2c2004-09-10 20:48:21 +0000740 if (!(found & TLVFLAG_AREA_ADDRS))
741 {
742 zlog_warn ("No Area addresses TLV in Level %d LAN IS to IS hello",
743 level);
jardineb5d44e2003-12-23 08:09:43 +0000744 retval = ISIS_WARNING;
745 goto out;
746 }
hassof390d2c2004-09-10 20:48:21 +0000747
748 if (circuit->passwd.type)
749 {
750 if (!(found & TLVFLAG_AUTH_INFO) ||
751 authentication_check (&circuit->passwd, &tlvs.auth_info))
752 {
753 isis_event_auth_failure (circuit->area->area_tag,
754 "LAN hello authentication failure",
755 hdr.source_id);
756 retval = ISIS_WARNING;
757 goto out;
758 }
759 }
jardineb5d44e2003-12-23 08:09:43 +0000760
761 /*
762 * Accept the level 1 adjacency only if a match between local and
763 * remote area addresses is found
764 */
hassof390d2c2004-09-10 20:48:21 +0000765 if (level == 1 && !area_match (circuit->area->area_addrs, tlvs.area_addrs))
766 {
767 if (isis->debugs & DEBUG_ADJ_PACKETS)
768 {
hasso529d65b2004-12-24 00:14:50 +0000769 zlog_debug ("ISIS-Adj (%s): Area mismatch, level %d IIH on %s",
770 circuit->area->area_tag, level,
771 circuit->interface->name);
hassof390d2c2004-09-10 20:48:21 +0000772 }
773 retval = ISIS_OK;
774 goto out;
jardineb5d44e2003-12-23 08:09:43 +0000775 }
jardineb5d44e2003-12-23 08:09:43 +0000776
777 /*
778 * it's own IIH PDU - discard silently
hassof390d2c2004-09-10 20:48:21 +0000779 */
780 if (!memcmp (circuit->u.bc.snpa, ssnpa, ETH_ALEN))
781 {
hasso529d65b2004-12-24 00:14:50 +0000782 zlog_debug ("ISIS-Adj (%s): it's own IIH PDU - discarded",
783 circuit->area->area_tag);
jardineb5d44e2003-12-23 08:09:43 +0000784
hassof390d2c2004-09-10 20:48:21 +0000785 retval = ISIS_OK;
786 goto out;
787 }
jardineb5d44e2003-12-23 08:09:43 +0000788
789 /*
790 * check if it's own interface ip match iih ip addrs
791 */
hassof390d2c2004-09-10 20:48:21 +0000792 if (!(found & TLVFLAG_IPV4_ADDR)
793 || !ip_match (circuit->ip_addrs, tlvs.ipv4_addrs))
794 {
hasso529d65b2004-12-24 00:14:50 +0000795 zlog_debug
hassof390d2c2004-09-10 20:48:21 +0000796 ("ISIS-Adj: No usable IP interface addresses in LAN IIH from %s\n",
797 circuit->interface->name);
798 retval = ISIS_WARNING;
799 goto out;
800 }
jardineb5d44e2003-12-23 08:09:43 +0000801
802 adj = isis_adj_lookup (hdr.source_id, circuit->u.bc.adjdb[level - 1]);
hassof390d2c2004-09-10 20:48:21 +0000803 if (!adj)
804 {
805 /*
806 * Do as in 8.4.2.5
807 */
808 adj = isis_new_adj (hdr.source_id, ssnpa, level, circuit);
809 if (adj == NULL)
hasso13c48f72004-09-10 21:19:13 +0000810 {
811 retval = ISIS_ERROR;
812 goto out;
813 }
jardineb5d44e2003-12-23 08:09:43 +0000814
hassof390d2c2004-09-10 20:48:21 +0000815 adj->level = level;
816 isis_adj_state_change (adj, ISIS_ADJ_INITIALIZING, NULL);
jardineb5d44e2003-12-23 08:09:43 +0000817
hassof390d2c2004-09-10 20:48:21 +0000818 if (level == 1)
819 {
820 adj->sys_type = ISIS_SYSTYPE_L1_IS;
821 }
822 else
823 {
824 adj->sys_type = ISIS_SYSTYPE_L2_IS;
825 }
826 list_delete_all_node (circuit->u.bc.lan_neighs[level - 1]);
827 isis_adj_build_neigh_list (circuit->u.bc.adjdb[level - 1],
828 circuit->u.bc.lan_neighs[level - 1]);
jardineb5d44e2003-12-23 08:09:43 +0000829 }
jardineb5d44e2003-12-23 08:09:43 +0000830
hassoa211d652004-09-20 14:55:29 +0000831 if(adj->dis_record[level-1].dis==ISIS_IS_DIS)
832 switch (level)
833 {
834 case 1:
835 if (memcmp (circuit->u.bc.l1_desig_is, hdr.lan_id, ISIS_SYS_ID_LEN + 1))
836 {
837 thread_add_event (master, isis_event_dis_status_change, circuit, 0);
hasso64a7afd2004-09-14 11:05:13 +0000838 memcpy (&circuit->u.bc.l1_desig_is, hdr.lan_id,
839 ISIS_SYS_ID_LEN + 1);
hassoa211d652004-09-20 14:55:29 +0000840 }
841 break;
842 case 2:
843 if (memcmp (circuit->u.bc.l2_desig_is, hdr.lan_id, ISIS_SYS_ID_LEN + 1))
844 {
845 thread_add_event (master, isis_event_dis_status_change, circuit, 0);
hasso64a7afd2004-09-14 11:05:13 +0000846 memcpy (&circuit->u.bc.l2_desig_is, hdr.lan_id,
847 ISIS_SYS_ID_LEN + 1);
hassoa211d652004-09-20 14:55:29 +0000848 }
849 break;
850 }
jardineb5d44e2003-12-23 08:09:43 +0000851
852 adj->hold_time = hdr.hold_time;
hassof390d2c2004-09-10 20:48:21 +0000853 adj->last_upd = time (NULL);
854 adj->prio[level - 1] = hdr.prio;
jardineb5d44e2003-12-23 08:09:43 +0000855
856 memcpy (adj->lanid, hdr.lan_id, ISIS_SYS_ID_LEN + 1);
857
858 /* which protocol are spoken ??? */
hassof390d2c2004-09-10 20:48:21 +0000859 if (found & TLVFLAG_NLPID)
jardineb5d44e2003-12-23 08:09:43 +0000860 tlvs_to_adj_nlpids (&tlvs, adj);
861
862 /* we need to copy addresses to the adj */
hassof390d2c2004-09-10 20:48:21 +0000863 if (found & TLVFLAG_IPV4_ADDR)
jardineb5d44e2003-12-23 08:09:43 +0000864 tlvs_to_adj_ipv4_addrs (&tlvs, adj);
865
866#ifdef HAVE_IPV6
hassof390d2c2004-09-10 20:48:21 +0000867 if (found & TLVFLAG_IPV6_ADDR)
jardineb5d44e2003-12-23 08:09:43 +0000868 tlvs_to_adj_ipv6_addrs (&tlvs, adj);
869#endif /* HAVE_IPV6 */
870
871 adj->circuit_t = hdr.circuit_t;
872
873 /* lets take care of the expiry */
hassof390d2c2004-09-10 20:48:21 +0000874 THREAD_TIMER_OFF (adj->t_expire);
875 THREAD_TIMER_ON (master, adj->t_expire, isis_adj_expire, adj,
876 (long) adj->hold_time);
jardineb5d44e2003-12-23 08:09:43 +0000877
878 /*
879 * If the snpa for this circuit is found from LAN Neighbours TLV
880 * we have two-way communication -> adjacency can be put to state "up"
881 */
882
hassof390d2c2004-09-10 20:48:21 +0000883 if (found & TLVFLAG_LAN_NEIGHS)
884 {
885 if (adj->adj_state != ISIS_ADJ_UP)
886 {
887 LIST_LOOP (tlvs.lan_neighs, snpa, node)
888 if (!memcmp (snpa, circuit->u.bc.snpa, ETH_ALEN))
889 {
890 isis_adj_state_change (adj, ISIS_ADJ_UP,
891 "own SNPA found in LAN Neighbours TLV");
892 }
893 }
jardineb5d44e2003-12-23 08:09:43 +0000894 }
jardineb5d44e2003-12-23 08:09:43 +0000895
hassof390d2c2004-09-10 20:48:21 +0000896out:
jardineb5d44e2003-12-23 08:09:43 +0000897 /* DEBUG_ADJ_PACKETS */
hassof390d2c2004-09-10 20:48:21 +0000898 if (isis->debugs & DEBUG_ADJ_PACKETS)
899 {
900 /* FIXME: is this place right? fix missing info */
hasso529d65b2004-12-24 00:14:50 +0000901 zlog_debug ("ISIS-Adj (%s): Rcvd L%d LAN IIH from %s on %s, cirType %s, "
902 "cirID %u, length %ld",
903 circuit->area->area_tag,
904 level, snpa_print (ssnpa), circuit->interface->name,
905 circuit_t2string (circuit->circuit_is_type),
906 circuit->circuit_id, stream_get_endp (circuit->rcv_stream));
hassof390d2c2004-09-10 20:48:21 +0000907 }
jardineb5d44e2003-12-23 08:09:43 +0000908
909 free_tlvs (&tlvs);
910
911 return retval;
912}
913
914/*
915 * Process Level 1/2 Link State
916 * ISO - 10589
917 * Section 7.3.15.1 - Action on receipt of a link state PDU
hassof390d2c2004-09-10 20:48:21 +0000918 */
919static int
920process_lsp (int level, struct isis_circuit *circuit, u_char * ssnpa)
jardineb5d44e2003-12-23 08:09:43 +0000921{
922 struct isis_link_state_hdr *hdr;
923 struct isis_adjacency *adj = NULL;
924 struct isis_lsp *lsp, *lsp0 = NULL;
925 int retval = ISIS_OK, comp = 0;
926 u_char lspid[ISIS_SYS_ID_LEN + 2];
927 struct isis_passwd *passwd;
928
929 /* Sanity check - FIXME: move to correct place */
hassof390d2c2004-09-10 20:48:21 +0000930 if ((stream_get_endp (circuit->rcv_stream) -
931 stream_get_getp (circuit->rcv_stream)) < ISIS_LSP_HDR_LEN)
932 {
933 zlog_warn ("Packet too short");
934 return ISIS_WARNING;
935 }
jardineb5d44e2003-12-23 08:09:43 +0000936
937 /* Reference the header */
hassof390d2c2004-09-10 20:48:21 +0000938 hdr = (struct isis_link_state_hdr *) STREAM_PNT (circuit->rcv_stream);
jardineb5d44e2003-12-23 08:09:43 +0000939
hassof390d2c2004-09-10 20:48:21 +0000940 if (isis->debugs & DEBUG_UPDATE_PACKETS)
941 {
hasso529d65b2004-12-24 00:14:50 +0000942 zlog_debug ("ISIS-Upd (%s): Rcvd L%d LSP %s, seq 0x%08x, cksum 0x%04x, "
943 "lifetime %us, len %lu, on %s",
944 circuit->area->area_tag,
945 level,
946 rawlspid_print (hdr->lsp_id),
947 ntohl (hdr->seq_num),
948 ntohs (hdr->checksum),
949 ntohs (hdr->rem_lifetime),
950 circuit->rcv_stream->endp, circuit->interface->name);
hassof390d2c2004-09-10 20:48:21 +0000951 }
jardineb5d44e2003-12-23 08:09:43 +0000952
953 assert (ntohs (hdr->pdu_len) > ISIS_LSP_HDR_LEN);
954
955 /* Checksum sanity check - FIXME: move to correct place */
956 /* 12 = sysid+pdu+remtime */
hassof390d2c2004-09-10 20:48:21 +0000957 if (iso_csum_verify (STREAM_PNT (circuit->rcv_stream) + 4,
958 ntohs (hdr->pdu_len) - 12, &hdr->checksum))
959 {
hasso529d65b2004-12-24 00:14:50 +0000960 zlog_debug ("ISIS-Upd (%s): LSP %s invalid LSP checksum 0x%04x",
961 circuit->area->area_tag,
962 rawlspid_print (hdr->lsp_id), ntohs (hdr->checksum));
jardineb5d44e2003-12-23 08:09:43 +0000963
hassof390d2c2004-09-10 20:48:21 +0000964 return ISIS_WARNING;
965 }
jardineb5d44e2003-12-23 08:09:43 +0000966
967 /* 7.3.15.1 a) 1 - external domain circuit will discard lsps */
hassof390d2c2004-09-10 20:48:21 +0000968 if (circuit->ext_domain)
969 {
hasso529d65b2004-12-24 00:14:50 +0000970 zlog_debug
hassof390d2c2004-09-10 20:48:21 +0000971 ("ISIS-Upd (%s): LSP %s received at level %d over circuit with "
972 "externalDomain = true", circuit->area->area_tag,
973 rawlspid_print (hdr->lsp_id), level);
jardineb5d44e2003-12-23 08:09:43 +0000974
hassof390d2c2004-09-10 20:48:21 +0000975 return ISIS_WARNING;
976 }
jardineb5d44e2003-12-23 08:09:43 +0000977
978 /* 7.3.15.1 a) 2,3 - manualL2OnlyMode not implemented */
hassof390d2c2004-09-10 20:48:21 +0000979 if (!accept_level (level, circuit->circuit_is_type))
980 {
hasso529d65b2004-12-24 00:14:50 +0000981 zlog_debug ("ISIS-Upd (%s): LSP %s received at level %d over circuit of"
982 " type %s",
983 circuit->area->area_tag,
984 rawlspid_print (hdr->lsp_id),
985 level, circuit_t2string (circuit->circuit_is_type));
jardineb5d44e2003-12-23 08:09:43 +0000986
hassof390d2c2004-09-10 20:48:21 +0000987 return ISIS_WARNING;
988 }
jardineb5d44e2003-12-23 08:09:43 +0000989
990 /* 7.3.15.1 a) 4 - need to make sure IDLength matches */
991
992 /* 7.3.15.1 a) 5 - maximum area match, can be ommited since we only use 3 */
993
994 /* 7.3.15.1 a) 7 - password check */
995 (level == ISIS_LEVEL1) ? (passwd = &circuit->area->area_passwd) :
996 (passwd = &circuit->area->domain_passwd);
hassof390d2c2004-09-10 20:48:21 +0000997 if (passwd->type)
998 {
999 if (isis_lsp_authinfo_check (circuit->rcv_stream, circuit->area,
1000 ntohs (hdr->pdu_len), passwd))
1001 {
1002 isis_event_auth_failure (circuit->area->area_tag,
1003 "LSP authentication failure", hdr->lsp_id);
1004 return ISIS_WARNING;
1005 }
jardineb5d44e2003-12-23 08:09:43 +00001006 }
jardineb5d44e2003-12-23 08:09:43 +00001007 /* Find the LSP in our database and compare it to this Link State header */
1008 lsp = lsp_search (hdr->lsp_id, circuit->area->lspdb[level - 1]);
1009 if (lsp)
hassof390d2c2004-09-10 20:48:21 +00001010 comp = lsp_compare (circuit->area->area_tag, lsp, hdr->seq_num,
1011 hdr->checksum, hdr->rem_lifetime);
1012 if (lsp && (lsp->own_lsp
jardineb5d44e2003-12-23 08:09:43 +00001013#ifdef TOPOLOGY_GENERATE
hassof390d2c2004-09-10 20:48:21 +00001014 || lsp->from_topology
jardineb5d44e2003-12-23 08:09:43 +00001015#endif /* TOPOLOGY_GENERATE */
hassof390d2c2004-09-10 20:48:21 +00001016 ))
jardineb5d44e2003-12-23 08:09:43 +00001017 goto dontcheckadj;
1018
1019 /* 7.3.15.1 a) 6 - Must check that we have an adjacency of the same level */
1020 /* for broadcast circuits, snpa should be compared */
1021 /* FIXME : Point To Point */
1022
hassof390d2c2004-09-10 20:48:21 +00001023 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
1024 {
1025 adj = isis_adj_lookup_snpa (ssnpa, circuit->u.bc.adjdb[level - 1]);
1026 if (!adj)
1027 {
hasso529d65b2004-12-24 00:14:50 +00001028 zlog_debug ("(%s): DS ======= LSP %s, seq 0x%08x, cksum 0x%04x, "
1029 "lifetime %us on %s",
1030 circuit->area->area_tag,
1031 rawlspid_print (hdr->lsp_id),
1032 ntohl (hdr->seq_num),
1033 ntohs (hdr->checksum),
1034 ntohs (hdr->rem_lifetime), circuit->interface->name);
hassof390d2c2004-09-10 20:48:21 +00001035 return ISIS_WARNING; /* Silently discard */
1036 }
jardineb5d44e2003-12-23 08:09:43 +00001037 }
jardineb5d44e2003-12-23 08:09:43 +00001038
1039 /* for non broadcast, we just need to find same level adj */
hassof390d2c2004-09-10 20:48:21 +00001040 else
1041 {
1042 /* If no adj, or no sharing of level */
1043 if (!circuit->u.p2p.neighbor)
1044 {
1045 return ISIS_OK; /* Silently discard */
1046 }
1047 else
1048 {
1049 if (((level == 1) &&
1050 (circuit->u.p2p.neighbor->adj_usage == ISIS_ADJ_LEVEL2)) ||
1051 ((level == 2) &&
1052 (circuit->u.p2p.neighbor->adj_usage == ISIS_ADJ_LEVEL1)))
1053 return ISIS_WARNING; /* Silently discard */
1054 }
jardineb5d44e2003-12-23 08:09:43 +00001055 }
hassof390d2c2004-09-10 20:48:21 +00001056dontcheckadj:
jardineb5d44e2003-12-23 08:09:43 +00001057 /* 7.3.15.1 a) 7 - Passwords for level 1 - not implemented */
1058
1059 /* 7.3.15.1 a) 8 - Passwords for level 2 - not implemented */
1060
hassof390d2c2004-09-10 20:48:21 +00001061 /* 7.3.15.1 a) 9 - OriginatingLSPBufferSize - not implemented FIXME: do it */
jardineb5d44e2003-12-23 08:09:43 +00001062
hassof390d2c2004-09-10 20:48:21 +00001063 /* 7.3.15.1 b) - If the remaining life time is 0, we perform 7.3.16.4 */
1064 if (hdr->rem_lifetime == 0)
1065 {
1066 if (!lsp)
1067 {
1068 /* 7.3.16.4 a) 1) No LSP in db -> send an ack, but don't save */
1069 /* only needed on explicit update, eg - p2p */
1070 if (circuit->circ_type == CIRCUIT_T_P2P)
1071 ack_lsp (hdr, circuit, level);
1072 return retval; /* FIXME: do we need a purge? */
1073 }
1074 else
1075 {
1076 if (memcmp (hdr->lsp_id, isis->sysid, ISIS_SYS_ID_LEN))
1077 {
1078 /* LSP by some other system -> do 7.3.16.4 b) */
1079 /* 7.3.16.4 b) 1) */
1080 if (comp == LSP_NEWER)
1081 {
1082 lsp_update (lsp, hdr, circuit->rcv_stream, circuit->area);
1083 /* ii */
1084 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
1085 /* iii */
1086 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
1087 /* v */
1088 ISIS_FLAGS_CLEAR_ALL (lsp->SSNflags); /* FIXME: OTHER than c */
1089 /* iv */
1090 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1091 ISIS_SET_FLAG (lsp->SSNflags, circuit);
jardineb5d44e2003-12-23 08:09:43 +00001092
hassof390d2c2004-09-10 20:48:21 +00001093 } /* 7.3.16.4 b) 2) */
1094 else if (comp == LSP_EQUAL)
1095 {
1096 /* i */
1097 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
1098 /* ii */
1099 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1100 ISIS_SET_FLAG (lsp->SSNflags, circuit);
1101 } /* 7.3.16.4 b) 3) */
1102 else
1103 {
1104 ISIS_SET_FLAG (lsp->SRMflags, circuit);
1105 ISIS_CLEAR_FLAG (lsp->SSNflags, circuit);
1106 }
1107 }
1108 else
1109 {
1110 /* our own LSP -> 7.3.16.4 c) */
1111 if (LSP_PSEUDO_ID (lsp->lsp_header->lsp_id) !=
1112 circuit->circuit_id
1113 || (LSP_PSEUDO_ID (lsp->lsp_header->lsp_id) ==
1114 circuit->circuit_id
1115 && circuit->u.bc.is_dr[level - 1] == 1))
1116 {
1117 lsp->lsp_header->seq_num = htonl (ntohl (hdr->seq_num) + 1);
hasso529d65b2004-12-24 00:14:50 +00001118 zlog_debug ("LSP LEN: %d", ntohs (lsp->lsp_header->pdu_len));
hassof390d2c2004-09-10 20:48:21 +00001119 iso_csum_create (STREAM_DATA (lsp->pdu) + 12,
1120 ntohs (lsp->lsp_header->pdu_len) - 12, 12);
1121 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
hasso529d65b2004-12-24 00:14:50 +00001122 zlog_debug
hassof390d2c2004-09-10 20:48:21 +00001123 ("ISIS-Upd (%s): (1) re-originating LSP %s new seq 0x%08x",
1124 circuit->area->area_tag, rawlspid_print (hdr->lsp_id),
1125 ntohl (lsp->lsp_header->seq_num));
1126 lsp->lsp_header->rem_lifetime =
1127 htons (isis_jitter
1128 (circuit->area->max_lsp_lifetime[level - 1],
1129 MAX_AGE_JITTER));
1130 }
1131 else
1132 {
1133 /* Got purge for own pseudo-lsp, and we are not DR */
1134 lsp_purge_dr (lsp->lsp_header->lsp_id, circuit, level);
1135 }
1136 }
1137 }
1138 return retval;
jardineb5d44e2003-12-23 08:09:43 +00001139 }
jardineb5d44e2003-12-23 08:09:43 +00001140 /* 7.3.15.1 c) - If this is our own lsp and we don't have it initiate a
1141 * purge */
hassof390d2c2004-09-10 20:48:21 +00001142 if (memcmp (hdr->lsp_id, isis->sysid, ISIS_SYS_ID_LEN) == 0)
1143 {
1144 if (!lsp)
1145 {
1146 /* 7.3.16.4: initiate a purge */
1147 lsp_purge_non_exist (hdr, circuit->area);
1148 return ISIS_OK;
1149 }
1150 /* 7.3.15.1 d) - If this is our own lsp and we have it */
1151
1152 /* In 7.3.16.1, If an Intermediate system R somewhere in the domain
1153 * has information that the current sequence number for source S is
1154 * "greater" than that held by S, ... */
1155
1156 else if (ntohl (hdr->seq_num) > ntohl (lsp->lsp_header->seq_num))
1157 {
1158 /* 7.3.16.1 */
1159 lsp->lsp_header->seq_num = htonl (ntohl (hdr->seq_num) + 1);
1160
1161 iso_csum_create (STREAM_DATA (lsp->pdu) + 12,
1162 ntohs (lsp->lsp_header->pdu_len) - 12, 12);
1163
1164 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
hasso529d65b2004-12-24 00:14:50 +00001165 zlog_debug
hassof390d2c2004-09-10 20:48:21 +00001166 ("ISIS-Upd (%s): (2) re-originating LSP %s new seq 0x%08x",
1167 circuit->area->area_tag, rawlspid_print (hdr->lsp_id),
1168 ntohl (lsp->lsp_header->seq_num));
1169 lsp->lsp_header->rem_lifetime =
1170 htons (isis_jitter
1171 (circuit->area->max_lsp_lifetime[level - 1],
1172 MAX_AGE_JITTER));
1173 }
jardineb5d44e2003-12-23 08:09:43 +00001174 }
hassof390d2c2004-09-10 20:48:21 +00001175 else
1176 {
1177 /* 7.3.15.1 e) - This lsp originated on another system */
jardineb5d44e2003-12-23 08:09:43 +00001178
hassof390d2c2004-09-10 20:48:21 +00001179 /* 7.3.15.1 e) 1) LSP newer than the one in db or no LSP in db */
1180 if ((!lsp || comp == LSP_NEWER))
1181 {
1182 /* i */
1183 if (lsp)
1184 {
jardineb5d44e2003-12-23 08:09:43 +00001185#ifdef EXTREME_DEBUG
hasso529d65b2004-12-24 00:14:50 +00001186 zlog_debug ("level %d number is - %ld", level,
1187 circuit->area->lspdb[level - 1]->dict_nodecount);
jardineb5d44e2003-12-23 08:09:43 +00001188#endif /* EXTREME DEBUG */
hassof390d2c2004-09-10 20:48:21 +00001189 lsp_search_and_destroy (hdr->lsp_id,
1190 circuit->area->lspdb[level - 1]);
1191 /* exists, so we overwrite */
jardineb5d44e2003-12-23 08:09:43 +00001192#ifdef EXTREME_DEBUG
hasso529d65b2004-12-24 00:14:50 +00001193 zlog_debug ("level %d number is - %ld", level,
1194 circuit->area->lspdb[level - 1]->dict_nodecount);
jardineb5d44e2003-12-23 08:09:43 +00001195#endif /* EXTREME DEBUG */
hassof390d2c2004-09-10 20:48:21 +00001196 }
1197 /*
1198 * If this lsp is a frag, need to see if we have zero lsp present
1199 */
1200 if (LSP_FRAGMENT (hdr->lsp_id) != 0)
1201 {
1202 memcpy (lspid, hdr->lsp_id, ISIS_SYS_ID_LEN + 1);
1203 LSP_FRAGMENT (lspid) = 0;
1204 lsp0 = lsp_search (lspid, circuit->area->lspdb[level - 1]);
1205 if (!lsp0)
1206 {
hasso529d65b2004-12-24 00:14:50 +00001207 zlog_debug ("Got lsp frag, while zero lsp not database");
hassof390d2c2004-09-10 20:48:21 +00001208 return ISIS_OK;
1209 }
1210 }
1211 lsp =
1212 lsp_new_from_stream_ptr (circuit->rcv_stream,
1213 ntohs (hdr->pdu_len), lsp0,
1214 circuit->area);
1215 lsp->level = level;
1216 lsp->adj = adj;
1217 lsp_insert (lsp, circuit->area->lspdb[level - 1]);
1218 /* ii */
1219 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
1220 /* iii */
1221 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
jardineb5d44e2003-12-23 08:09:43 +00001222
hassof390d2c2004-09-10 20:48:21 +00001223 /* iv */
1224 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1225 ISIS_SET_FLAG (lsp->SSNflags, circuit);
1226 /* FIXME: v) */
1227 }
1228 /* 7.3.15.1 e) 2) LSP equal to the one in db */
1229 else if (comp == LSP_EQUAL)
1230 {
1231 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
1232 lsp_update (lsp, hdr, circuit->rcv_stream, circuit->area);
1233 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1234 {
1235 ISIS_SET_FLAG (lsp->SSNflags, circuit);
1236 }
1237 }
1238 /* 7.3.15.1 e) 3) LSP older than the one in db */
1239 else
1240 {
1241 ISIS_SET_FLAG (lsp->SRMflags, circuit);
1242 ISIS_CLEAR_FLAG (lsp->SSNflags, circuit);
1243 }
jardineb5d44e2003-12-23 08:09:43 +00001244 }
jardineb5d44e2003-12-23 08:09:43 +00001245 if (lsp)
1246 lsp->adj = adj;
1247 return retval;
1248}
1249
1250/*
1251 * Process Sequence Numbers
1252 * ISO - 10589
1253 * Section 7.3.15.2 - Action on receipt of a sequence numbers PDU
1254 */
1255
hasso92365882005-01-18 13:53:33 +00001256static int
hassof390d2c2004-09-10 20:48:21 +00001257process_snp (int snp_type, int level, struct isis_circuit *circuit,
1258 u_char * ssnpa)
jardineb5d44e2003-12-23 08:09:43 +00001259{
1260 int retval = ISIS_OK;
1261 int cmp, own_lsp;
1262 char typechar = ' ';
1263 int len;
1264 struct isis_adjacency *adj;
1265 struct isis_complete_seqnum_hdr *chdr = NULL;
1266 struct isis_partial_seqnum_hdr *phdr = NULL;
1267 uint32_t found = 0, expected = 0;
1268 struct isis_lsp *lsp;
1269 struct lsp_entry *entry;
hassof390d2c2004-09-10 20:48:21 +00001270 struct listnode *node, *node2;
jardineb5d44e2003-12-23 08:09:43 +00001271 struct tlvs tlvs;
1272 struct list *lsp_list = NULL;
1273 struct isis_passwd *passwd;
1274
hassof390d2c2004-09-10 20:48:21 +00001275 if (snp_type == ISIS_SNP_CSNP_FLAG)
1276 {
1277 /* getting the header info */
1278 typechar = 'C';
1279 chdr =
1280 (struct isis_complete_seqnum_hdr *) STREAM_PNT (circuit->rcv_stream);
1281 circuit->rcv_stream->getp += ISIS_CSNP_HDRLEN;
1282 len = ntohs (chdr->pdu_len);
1283 if (len < ISIS_CSNP_HDRLEN)
1284 {
1285 zlog_warn ("Received a CSNP with bogus length!");
1286 return ISIS_OK;
1287 }
jardineb5d44e2003-12-23 08:09:43 +00001288 }
hassof390d2c2004-09-10 20:48:21 +00001289 else
1290 {
1291 typechar = 'P';
1292 phdr =
1293 (struct isis_partial_seqnum_hdr *) STREAM_PNT (circuit->rcv_stream);
1294 circuit->rcv_stream->getp += ISIS_PSNP_HDRLEN;
1295 len = ntohs (phdr->pdu_len);
1296 if (len < ISIS_PSNP_HDRLEN)
1297 {
1298 zlog_warn ("Received a CSNP with bogus length!");
1299 return ISIS_OK;
1300 }
jardineb5d44e2003-12-23 08:09:43 +00001301 }
jardineb5d44e2003-12-23 08:09:43 +00001302
1303 /* 7.3.15.2 a) 1 - external domain circuit will discard snp pdu */
hassof390d2c2004-09-10 20:48:21 +00001304 if (circuit->ext_domain)
1305 {
jardineb5d44e2003-12-23 08:09:43 +00001306
hasso529d65b2004-12-24 00:14:50 +00001307 zlog_debug ("ISIS-Snp (%s): Rcvd L%d %cSNP on %s, "
1308 "skipping: circuit externalDomain = true",
1309 circuit->area->area_tag,
1310 level, typechar, circuit->interface->name);
jardineb5d44e2003-12-23 08:09:43 +00001311
1312 return ISIS_OK;
1313 }
hassof390d2c2004-09-10 20:48:21 +00001314
1315 /* 7.3.15.2 a) 2,3 - manualL2OnlyMode not implemented */
1316 if (!accept_level (level, circuit->circuit_is_type))
1317 {
1318
hasso529d65b2004-12-24 00:14:50 +00001319 zlog_debug ("ISIS-Snp (%s): Rcvd L%d %cSNP on %s, "
1320 "skipping: circuit type %s does not match level %d",
1321 circuit->area->area_tag,
1322 level,
1323 typechar,
1324 circuit->interface->name,
1325 circuit_t2string (circuit->circuit_is_type), level);
hassof390d2c2004-09-10 20:48:21 +00001326
1327 return ISIS_OK;
1328 }
1329
1330 /* 7.3.15.2 a) 4 - not applicable for CSNP only PSNPs on broadcast */
1331 if ((snp_type == ISIS_SNP_PSNP_FLAG) &&
1332 (circuit->circ_type == CIRCUIT_T_BROADCAST))
1333 {
1334 if (!circuit->u.bc.is_dr[level - 1])
1335 {
1336
hasso529d65b2004-12-24 00:14:50 +00001337 zlog_debug ("ISIS-Snp (%s): Rcvd L%d %cSNP from %s on %s, "
1338 "skipping: we are not the DIS",
1339 circuit->area->area_tag,
1340 level,
1341 typechar, snpa_print (ssnpa), circuit->interface->name);
hassof390d2c2004-09-10 20:48:21 +00001342
1343 return ISIS_OK;
1344 }
1345 }
jardineb5d44e2003-12-23 08:09:43 +00001346
1347 /* 7.3.15.2 a) 5 - need to make sure IDLength matches - already checked */
1348
1349 /* 7.3.15.2 a) 6 - maximum area match, can be ommited since we only use 3
1350 * - already checked */
1351
1352 /* 7.3.15.2 a) 7 - Must check that we have an adjacency of the same level */
1353 /* for broadcast circuits, snpa should be compared */
1354 /* FIXME : Do we need to check SNPA? */
hassof390d2c2004-09-10 20:48:21 +00001355 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
1356 {
1357 if (snp_type == ISIS_SNP_CSNP_FLAG)
1358 {
1359 adj =
1360 isis_adj_lookup (chdr->source_id, circuit->u.bc.adjdb[level - 1]);
1361 }
1362 else
1363 {
1364 /* a psnp on a broadcast, how lovely of Juniper :) */
1365 adj =
1366 isis_adj_lookup (phdr->source_id, circuit->u.bc.adjdb[level - 1]);
1367 }
1368 if (!adj)
1369 return ISIS_OK; /* Silently discard */
jardineb5d44e2003-12-23 08:09:43 +00001370 }
hassof390d2c2004-09-10 20:48:21 +00001371 else
1372 {
1373 if (!circuit->u.p2p.neighbor)
1374 return ISIS_OK; /* Silently discard */
1375 }
jardineb5d44e2003-12-23 08:09:43 +00001376
1377 /* 7.3.15.2 a) 8 - Passwords for level 1 - not implemented */
1378
1379 /* 7.3.15.2 a) 9 - Passwords for level 2 - not implemented */
1380
1381 memset (&tlvs, 0, sizeof (struct tlvs));
1382
1383 /* parse the SNP */
1384 expected |= TLVFLAG_LSP_ENTRIES;
1385 expected |= TLVFLAG_AUTH_INFO;
1386 retval = parse_tlvs (circuit->area->area_tag,
hassof390d2c2004-09-10 20:48:21 +00001387 STREAM_PNT (circuit->rcv_stream),
jardineb5d44e2003-12-23 08:09:43 +00001388 len - circuit->rcv_stream->getp,
hassof390d2c2004-09-10 20:48:21 +00001389 &expected, &found, &tlvs);
jardineb5d44e2003-12-23 08:09:43 +00001390
hassof390d2c2004-09-10 20:48:21 +00001391 if (retval > ISIS_WARNING)
1392 {
1393 zlog_warn ("something went very wrong processing SNP");
1394 free_tlvs (&tlvs);
1395 return retval;
1396 }
jardineb5d44e2003-12-23 08:09:43 +00001397
hasso1cbc5622005-01-01 10:29:51 +00001398 if (level == 1)
1399 passwd = &circuit->area->area_passwd;
1400 else
1401 passwd = &circuit->area->domain_passwd;
1402
1403 if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_RECV))
hassof390d2c2004-09-10 20:48:21 +00001404 {
hasso1cbc5622005-01-01 10:29:51 +00001405 if (passwd->type)
hassof390d2c2004-09-10 20:48:21 +00001406 {
hasso1cbc5622005-01-01 10:29:51 +00001407 if (!(found & TLVFLAG_AUTH_INFO) ||
1408 authentication_check (passwd, &tlvs.auth_info))
1409 {
1410 isis_event_auth_failure (circuit->area->area_tag,
1411 "SNP authentication" " failure",
1412 phdr ? phdr->source_id : chdr->source_id);
1413 return ISIS_OK;
1414 }
hassof390d2c2004-09-10 20:48:21 +00001415 }
1416 }
jardineb5d44e2003-12-23 08:09:43 +00001417
1418 /* debug isis snp-packets */
hassof390d2c2004-09-10 20:48:21 +00001419 if (isis->debugs & DEBUG_SNP_PACKETS)
1420 {
hasso529d65b2004-12-24 00:14:50 +00001421 zlog_debug ("ISIS-Snp (%s): Rcvd L%d %cSNP from %s on %s",
1422 circuit->area->area_tag,
1423 level,
1424 typechar, snpa_print (ssnpa), circuit->interface->name);
hassof390d2c2004-09-10 20:48:21 +00001425 if (tlvs.lsp_entries)
1426 {
1427 LIST_LOOP (tlvs.lsp_entries, entry, node)
1428 {
hasso529d65b2004-12-24 00:14:50 +00001429 zlog_debug ("ISIS-Snp (%s): %cSNP entry %s, seq 0x%08x,"
1430 " cksum 0x%04x, lifetime %us",
1431 circuit->area->area_tag,
1432 typechar,
1433 rawlspid_print (entry->lsp_id),
1434 ntohl (entry->seq_num),
1435 ntohs (entry->checksum), ntohs (entry->rem_lifetime));
hassof390d2c2004-09-10 20:48:21 +00001436 }
1437 }
jardineb5d44e2003-12-23 08:09:43 +00001438 }
jardineb5d44e2003-12-23 08:09:43 +00001439
1440 /* 7.3.15.2 b) Actions on LSP_ENTRIES reported */
hassof390d2c2004-09-10 20:48:21 +00001441 if (tlvs.lsp_entries)
1442 {
1443 LIST_LOOP (tlvs.lsp_entries, entry, node)
1444 {
1445 lsp = lsp_search (entry->lsp_id, circuit->area->lspdb[level - 1]);
1446 own_lsp = !memcmp (entry->lsp_id, isis->sysid, ISIS_SYS_ID_LEN);
1447 if (lsp)
1448 {
1449 /* 7.3.15.2 b) 1) is this LSP newer */
1450 cmp = lsp_compare (circuit->area->area_tag, lsp, entry->seq_num,
1451 entry->checksum, entry->rem_lifetime);
1452 /* 7.3.15.2 b) 2) if it equals, clear SRM on p2p */
1453 if (cmp == LSP_EQUAL)
1454 {
1455 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1456 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
1457 /* 7.3.15.2 b) 3) if it is older, clear SSN and set SRM */
1458 }
1459 else if (cmp == LSP_OLDER)
1460 {
1461 ISIS_CLEAR_FLAG (lsp->SSNflags, circuit);
1462 ISIS_SET_FLAG (lsp->SRMflags, circuit);
1463 }
1464 else
1465 {
1466 /* 7.3.15.2 b) 4) if it is newer, set SSN and clear SRM
1467 * on p2p */
1468 if (own_lsp)
1469 {
1470 lsp_inc_seqnum (lsp, ntohl (entry->seq_num));
1471 ISIS_SET_FLAG (lsp->SRMflags, circuit);
1472 }
1473 else
1474 {
1475 ISIS_SET_FLAG (lsp->SSNflags, circuit);
1476 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1477 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
1478 }
1479 }
1480 }
1481 else
1482 {
1483 /* 7.3.15.2 b) 5) if it was not found, and all of those are not 0,
1484 * insert it and set SSN on it */
1485 if (entry->rem_lifetime && entry->checksum && entry->seq_num &&
1486 memcmp (entry->lsp_id, isis->sysid, ISIS_SYS_ID_LEN))
1487 {
1488 lsp = lsp_new (entry->lsp_id, ntohs (entry->rem_lifetime),
1489 0, 0, entry->checksum, level);
1490 lsp_insert (lsp, circuit->area->lspdb[level - 1]);
1491 ISIS_SET_FLAG (lsp->SSNflags, circuit);
1492 }
1493 }
jardineb5d44e2003-12-23 08:09:43 +00001494 }
1495 }
jardineb5d44e2003-12-23 08:09:43 +00001496
1497 /* 7.3.15.2 c) on CSNP set SRM for all in range which were not reported */
hassof390d2c2004-09-10 20:48:21 +00001498 if (snp_type == ISIS_SNP_CSNP_FLAG)
1499 {
1500 /*
1501 * Build a list from our own LSP db bounded with start_ and stop_lsp_id
1502 */
1503 lsp_list = list_new ();
1504 lsp_build_list_nonzero_ht (chdr->start_lsp_id, chdr->stop_lsp_id,
1505 lsp_list, circuit->area->lspdb[level - 1]);
jardineb5d44e2003-12-23 08:09:43 +00001506
hassof390d2c2004-09-10 20:48:21 +00001507 /* Fixme: Find a better solution */
1508 if (tlvs.lsp_entries)
1509 {
1510 LIST_LOOP (tlvs.lsp_entries, entry, node)
1511 {
1512 LIST_LOOP (lsp_list, lsp, node2)
1513 {
1514 if (lsp_id_cmp (lsp->lsp_header->lsp_id, entry->lsp_id) == 0)
1515 {
1516 list_delete_node (lsp_list, node2);
1517 break;
1518 }
1519 }
1520 }
1521 }
1522 /* on remaining LSPs we set SRM (neighbor knew not of) */
1523 LIST_LOOP (lsp_list, lsp, node2)
1524 {
1525 ISIS_SET_FLAG (lsp->SRMflags, circuit);
jardineb5d44e2003-12-23 08:09:43 +00001526 }
hassof390d2c2004-09-10 20:48:21 +00001527 /* lets free it */
1528 list_free (lsp_list);
jardineb5d44e2003-12-23 08:09:43 +00001529 }
jardineb5d44e2003-12-23 08:09:43 +00001530
1531 free_tlvs (&tlvs);
1532 return retval;
1533}
1534
hasso92365882005-01-18 13:53:33 +00001535static int
hassof390d2c2004-09-10 20:48:21 +00001536process_csnp (int level, struct isis_circuit *circuit, u_char * ssnpa)
jardineb5d44e2003-12-23 08:09:43 +00001537{
jardineb5d44e2003-12-23 08:09:43 +00001538 /* Sanity check - FIXME: move to correct place */
hassof390d2c2004-09-10 20:48:21 +00001539 if ((stream_get_endp (circuit->rcv_stream) -
1540 stream_get_getp (circuit->rcv_stream)) < ISIS_CSNP_HDRLEN)
1541 {
1542 zlog_warn ("Packet too short ( < %d)", ISIS_CSNP_HDRLEN);
1543 return ISIS_WARNING;
1544 }
jardineb5d44e2003-12-23 08:09:43 +00001545
1546 return process_snp (ISIS_SNP_CSNP_FLAG, level, circuit, ssnpa);
1547}
1548
hasso92365882005-01-18 13:53:33 +00001549static int
hassof390d2c2004-09-10 20:48:21 +00001550process_psnp (int level, struct isis_circuit *circuit, u_char * ssnpa)
jardineb5d44e2003-12-23 08:09:43 +00001551{
hassof390d2c2004-09-10 20:48:21 +00001552 if ((stream_get_endp (circuit->rcv_stream) -
1553 stream_get_getp (circuit->rcv_stream)) < ISIS_PSNP_HDRLEN)
1554 {
1555 zlog_warn ("Packet too short");
1556 return ISIS_WARNING;
1557 }
jardineb5d44e2003-12-23 08:09:43 +00001558
1559 return process_snp (ISIS_SNP_PSNP_FLAG, level, circuit, ssnpa);
1560}
1561
jardineb5d44e2003-12-23 08:09:43 +00001562/*
1563 * Process ISH
1564 * ISO - 10589
1565 * Section 8.2.2 - Receiving ISH PDUs by an intermediate system
1566 * FIXME: sample packet dump, need to figure 0x81 - looks like NLPid
hassof390d2c2004-09-10 20:48:21 +00001567 * 0x82 0x15 0x01 0x00 0x04 0x01 0x2c 0x59
1568 * 0x38 0x08 0x47 0x00 0x01 0x00 0x02 0x00
1569 * 0x03 0x00 0x81 0x01 0xcc
jardineb5d44e2003-12-23 08:09:43 +00001570 */
hasso92365882005-01-18 13:53:33 +00001571static int
jardineb5d44e2003-12-23 08:09:43 +00001572process_is_hello (struct isis_circuit *circuit)
1573{
1574 struct isis_adjacency *adj;
1575 int retval = ISIS_OK;
1576 u_char neigh_len;
1577 u_char *sysid;
1578
1579 /* In this point in time we are not yet able to handle is_hellos
1580 * on lan - Sorry juniper...
1581 */
1582 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
1583 return retval;
1584
1585 neigh_len = stream_getc (circuit->rcv_stream);
hassof390d2c2004-09-10 20:48:21 +00001586 sysid = STREAM_PNT (circuit->rcv_stream) + neigh_len - 1 - ISIS_SYS_ID_LEN;
jardineb5d44e2003-12-23 08:09:43 +00001587 adj = circuit->u.p2p.neighbor;
hassof390d2c2004-09-10 20:48:21 +00001588 if (!adj)
1589 {
1590 /* 8.2.2 */
hassof7c43dc2004-09-26 16:24:14 +00001591 adj = isis_new_adj (sysid, (u_char *) " ", 0, circuit);
hassof390d2c2004-09-10 20:48:21 +00001592 if (adj == NULL)
1593 return ISIS_ERROR;
jardineb5d44e2003-12-23 08:09:43 +00001594
hassof390d2c2004-09-10 20:48:21 +00001595 isis_adj_state_change (adj, ISIS_ADJ_INITIALIZING, NULL);
1596 adj->sys_type = ISIS_SYSTYPE_UNKNOWN;
1597 circuit->u.p2p.neighbor = adj;
1598 }
1599 /* 8.2.2 a) */
1600 if ((adj->adj_state == ISIS_ADJ_UP) && memcmp (adj->sysid, sysid,
1601 ISIS_SYS_ID_LEN))
1602 {
1603 /* 8.2.2 a) 1) FIXME: adjStateChange(down) event */
1604 /* 8.2.2 a) 2) delete the adj */
1605 XFREE (MTYPE_ISIS_ADJACENCY, adj);
1606 /* 8.2.2 a) 3) create a new adj */
hassof7c43dc2004-09-26 16:24:14 +00001607 adj = isis_new_adj (sysid, (u_char *) " ", 0, circuit);
hassof390d2c2004-09-10 20:48:21 +00001608 if (adj == NULL)
1609 return ISIS_ERROR;
jardineb5d44e2003-12-23 08:09:43 +00001610
hassof390d2c2004-09-10 20:48:21 +00001611 /* 8.2.2 a) 3) i */
1612 isis_adj_state_change (adj, ISIS_ADJ_INITIALIZING, NULL);
1613 /* 8.2.2 a) 3) ii */
1614 adj->sys_type = ISIS_SYSTYPE_UNKNOWN;
1615 /* 8.2.2 a) 4) quite meaningless */
1616 }
jardineb5d44e2003-12-23 08:09:43 +00001617 /* 8.2.2 b) ignore on condition */
hassof390d2c2004-09-10 20:48:21 +00001618 if ((adj->adj_state == ISIS_ADJ_INITIALIZING) &&
1619 (adj->sys_type == ISIS_SYSTYPE_IS))
1620 {
1621 /* do nothing */
1622 }
1623 else
1624 {
1625 /* 8.2.2 c) respond with a p2p IIH */
1626 send_hello (circuit, 1);
1627 }
jardineb5d44e2003-12-23 08:09:43 +00001628 /* 8.2.2 d) type is IS */
hassof390d2c2004-09-10 20:48:21 +00001629 adj->sys_type = ISIS_SYSTYPE_IS;
jardineb5d44e2003-12-23 08:09:43 +00001630 /* 8.2.2 e) FIXME: Circuit type of? */
1631
jardineb5d44e2003-12-23 08:09:43 +00001632 return retval;
1633}
1634
jardineb5d44e2003-12-23 08:09:43 +00001635/*
1636 * PDU Dispatcher
1637 */
1638
hasso92365882005-01-18 13:53:33 +00001639static int
hassof390d2c2004-09-10 20:48:21 +00001640isis_handle_pdu (struct isis_circuit *circuit, u_char * ssnpa)
jardineb5d44e2003-12-23 08:09:43 +00001641{
jardineb5d44e2003-12-23 08:09:43 +00001642 struct isis_fixed_hdr *hdr;
1643 struct esis_fixed_hdr *esis_hdr;
1644
hassof390d2c2004-09-10 20:48:21 +00001645 int retval = ISIS_OK;
jardineb5d44e2003-12-23 08:09:43 +00001646
1647 /*
1648 * Let's first read data from stream to the header
1649 */
hassof390d2c2004-09-10 20:48:21 +00001650 hdr = (struct isis_fixed_hdr *) STREAM_DATA (circuit->rcv_stream);
jardineb5d44e2003-12-23 08:09:43 +00001651
hassof390d2c2004-09-10 20:48:21 +00001652 if ((hdr->idrp != ISO10589_ISIS) && (hdr->idrp != ISO9542_ESIS))
1653 {
1654 zlog_warn ("Not an IS-IS or ES-IS packet IDRP=%02x", hdr->idrp);
1655 return ISIS_ERROR;
1656 }
jardineb5d44e2003-12-23 08:09:43 +00001657
1658 /* now we need to know if this is an ISO 9542 packet and
1659 * take real good care of it, waaa!
1660 */
hassof390d2c2004-09-10 20:48:21 +00001661 if (hdr->idrp == ISO9542_ESIS)
1662 {
1663 esis_hdr = (struct esis_fixed_hdr *) STREAM_DATA (circuit->rcv_stream);
1664 stream_set_getp (circuit->rcv_stream, ESIS_FIXED_HDR_LEN);
1665 /* FIXME: Need to do some acceptence tests */
1666 /* example length... */
1667 switch (esis_hdr->pdu_type)
1668 {
1669 case ESH_PDU:
1670 /* FIXME */
1671 break;
1672 case ISH_PDU:
hasso529d65b2004-12-24 00:14:50 +00001673 zlog_debug ("AN ISH PDU!!");
hassof390d2c2004-09-10 20:48:21 +00001674 retval = process_is_hello (circuit);
1675 break;
1676 default:
1677 return ISIS_ERROR;
1678 }
1679 return retval;
1680 }
1681 else
1682 {
1683 stream_set_getp (circuit->rcv_stream, ISIS_FIXED_HDR_LEN);
1684 }
jardineb5d44e2003-12-23 08:09:43 +00001685 /*
1686 * and then process it
1687 */
1688
hassof390d2c2004-09-10 20:48:21 +00001689 if (hdr->length < ISIS_MINIMUM_FIXED_HDR_LEN)
1690 {
1691 zlog_err ("Fixed header length = %d", hdr->length);
1692 return ISIS_ERROR;
1693 }
jardineb5d44e2003-12-23 08:09:43 +00001694
hassof390d2c2004-09-10 20:48:21 +00001695 if (hdr->version1 != 1)
1696 {
1697 zlog_warn ("Unsupported ISIS version %u", hdr->version1);
1698 return ISIS_WARNING;
1699 }
jardineb5d44e2003-12-23 08:09:43 +00001700 /* either 6 or 0 */
hassof390d2c2004-09-10 20:48:21 +00001701 if ((hdr->id_len != 0) && (hdr->id_len != ISIS_SYS_ID_LEN))
1702 {
1703 zlog_err
1704 ("IDFieldLengthMismatch: ID Length field in a received PDU %u, "
1705 "while the parameter for this IS is %u", hdr->id_len,
1706 ISIS_SYS_ID_LEN);
1707 return ISIS_ERROR;
1708 }
jardineb5d44e2003-12-23 08:09:43 +00001709
hassof390d2c2004-09-10 20:48:21 +00001710 if (hdr->version2 != 1)
1711 {
1712 zlog_warn ("Unsupported ISIS version %u", hdr->version2);
1713 return ISIS_WARNING;
1714 }
jardineb5d44e2003-12-23 08:09:43 +00001715 /* either 3 or 0 */
hassof390d2c2004-09-10 20:48:21 +00001716 if ((hdr->max_area_addrs != 0)
1717 && (hdr->max_area_addrs != isis->max_area_addrs))
1718 {
1719 zlog_err ("maximumAreaAddressesMismatch: maximumAreaAdresses in a "
1720 "received PDU %u while the parameter for this IS is %u",
1721 hdr->max_area_addrs, isis->max_area_addrs);
1722 return ISIS_ERROR;
1723 }
jardineb5d44e2003-12-23 08:09:43 +00001724
hassof390d2c2004-09-10 20:48:21 +00001725 switch (hdr->pdu_type)
1726 {
1727 case L1_LAN_HELLO:
1728 retval = process_lan_hello (ISIS_LEVEL1, circuit, ssnpa);
1729 break;
1730 case L2_LAN_HELLO:
1731 retval = process_lan_hello (ISIS_LEVEL2, circuit, ssnpa);
1732 break;
1733 case P2P_HELLO:
1734 retval = process_p2p_hello (circuit);
1735 break;
1736 case L1_LINK_STATE:
1737 retval = process_lsp (ISIS_LEVEL1, circuit, ssnpa);
1738 break;
1739 case L2_LINK_STATE:
1740 retval = process_lsp (ISIS_LEVEL2, circuit, ssnpa);
1741 break;
1742 case L1_COMPLETE_SEQ_NUM:
1743 retval = process_csnp (ISIS_LEVEL1, circuit, ssnpa);
1744 break;
1745 case L2_COMPLETE_SEQ_NUM:
1746 retval = process_csnp (ISIS_LEVEL2, circuit, ssnpa);
1747 break;
1748 case L1_PARTIAL_SEQ_NUM:
1749 retval = process_psnp (ISIS_LEVEL1, circuit, ssnpa);
1750 break;
1751 case L2_PARTIAL_SEQ_NUM:
1752 retval = process_psnp (ISIS_LEVEL2, circuit, ssnpa);
1753 break;
1754 default:
1755 return ISIS_ERROR;
1756 }
jardineb5d44e2003-12-23 08:09:43 +00001757
1758 return retval;
1759}
1760
jardineb5d44e2003-12-23 08:09:43 +00001761#ifdef GNU_LINUX
1762int
1763isis_receive (struct thread *thread)
1764{
jardineb5d44e2003-12-23 08:09:43 +00001765 struct isis_circuit *circuit;
1766 u_char ssnpa[ETH_ALEN];
1767 int retval;
1768
1769 /*
1770 * Get the circuit
1771 */
1772 circuit = THREAD_ARG (thread);
1773 assert (circuit);
1774
1775 if (circuit->rcv_stream == NULL)
hassof390d2c2004-09-10 20:48:21 +00001776 circuit->rcv_stream = stream_new (ISO_MTU (circuit));
jardineb5d44e2003-12-23 08:09:43 +00001777 else
1778 stream_reset (circuit->rcv_stream);
1779
1780 retval = circuit->rx (circuit, ssnpa);
hassof390d2c2004-09-10 20:48:21 +00001781 circuit->t_read = NULL;
jardineb5d44e2003-12-23 08:09:43 +00001782
1783 if (retval == ISIS_OK)
1784 retval = isis_handle_pdu (circuit, ssnpa);
1785
1786 /*
1787 * prepare for next packet.
1788 */
hassof390d2c2004-09-10 20:48:21 +00001789 THREAD_READ_ON (master, circuit->t_read, isis_receive, circuit,
1790 circuit->fd);
jardineb5d44e2003-12-23 08:09:43 +00001791
1792 return retval;
1793}
1794
1795#else
1796int
1797isis_receive (struct thread *thread)
1798{
jardineb5d44e2003-12-23 08:09:43 +00001799 struct isis_circuit *circuit;
1800 u_char ssnpa[ETH_ALEN];
1801 int retval;
1802
1803 /*
1804 * Get the circuit
1805 */
1806 circuit = THREAD_ARG (thread);
1807 assert (circuit);
1808
hassof390d2c2004-09-10 20:48:21 +00001809 circuit->t_read = NULL;
jardineb5d44e2003-12-23 08:09:43 +00001810
1811 if (circuit->rcv_stream == NULL)
hassof390d2c2004-09-10 20:48:21 +00001812 circuit->rcv_stream = stream_new (ISO_MTU (circuit));
jardineb5d44e2003-12-23 08:09:43 +00001813 else
1814 stream_reset (circuit->rcv_stream);
1815
1816 retval = circuit->rx (circuit, ssnpa);
1817
1818 if (retval == ISIS_OK)
1819 retval = isis_handle_pdu (circuit, ssnpa);
1820
1821 /*
1822 * prepare for next packet.
1823 */
hassof390d2c2004-09-10 20:48:21 +00001824 circuit->t_read = thread_add_timer_msec (master, isis_receive, circuit,
1825 listcount
1826 (circuit->area->circuit_list) *
1827 100);
jardineb5d44e2003-12-23 08:09:43 +00001828
1829 return retval;
1830}
1831
1832#endif
1833
1834 /* filling of the fixed isis header */
1835void
1836fill_fixed_hdr (struct isis_fixed_hdr *hdr, u_char pdu_type)
1837{
1838 memset (hdr, 0, sizeof (struct isis_fixed_hdr));
1839
1840 hdr->idrp = ISO10589_ISIS;
1841
hassof390d2c2004-09-10 20:48:21 +00001842 switch (pdu_type)
1843 {
1844 case L1_LAN_HELLO:
1845 case L2_LAN_HELLO:
1846 hdr->length = ISIS_LANHELLO_HDRLEN;
1847 break;
1848 case P2P_HELLO:
1849 hdr->length = ISIS_P2PHELLO_HDRLEN;
1850 break;
1851 case L1_LINK_STATE:
1852 case L2_LINK_STATE:
1853 hdr->length = ISIS_LSP_HDR_LEN;
1854 break;
1855 case L1_COMPLETE_SEQ_NUM:
1856 case L2_COMPLETE_SEQ_NUM:
1857 hdr->length = ISIS_CSNP_HDRLEN;
1858 break;
1859 case L1_PARTIAL_SEQ_NUM:
1860 case L2_PARTIAL_SEQ_NUM:
1861 hdr->length = ISIS_PSNP_HDRLEN;
1862 break;
1863 default:
1864 zlog_warn ("fill_fixed_hdr(): unknown pdu type %d", pdu_type);
1865 return;
1866 }
jardineb5d44e2003-12-23 08:09:43 +00001867 hdr->length += ISIS_FIXED_HDR_LEN;
1868 hdr->pdu_type = pdu_type;
1869 hdr->version1 = 1;
hassof390d2c2004-09-10 20:48:21 +00001870 hdr->id_len = 0; /* ISIS_SYS_ID_LEN - 0==6 */
jardineb5d44e2003-12-23 08:09:43 +00001871 hdr->version2 = 1;
hassof390d2c2004-09-10 20:48:21 +00001872 hdr->max_area_addrs = 0; /* isis->max_area_addrs - 0==3 */
jardineb5d44e2003-12-23 08:09:43 +00001873}
1874
jardineb5d44e2003-12-23 08:09:43 +00001875/*
1876 * SEND SIDE
1877 */
hasso92365882005-01-18 13:53:33 +00001878static void
jardineb5d44e2003-12-23 08:09:43 +00001879fill_fixed_hdr_andstream (struct isis_fixed_hdr *hdr, u_char pdu_type,
hassof390d2c2004-09-10 20:48:21 +00001880 struct stream *stream)
jardineb5d44e2003-12-23 08:09:43 +00001881{
hassof390d2c2004-09-10 20:48:21 +00001882 fill_fixed_hdr (hdr, pdu_type);
jardineb5d44e2003-12-23 08:09:43 +00001883
1884 stream_putc (stream, hdr->idrp);
1885 stream_putc (stream, hdr->length);
1886 stream_putc (stream, hdr->version1);
1887 stream_putc (stream, hdr->id_len);
1888 stream_putc (stream, hdr->pdu_type);
1889 stream_putc (stream, hdr->version2);
1890 stream_putc (stream, hdr->reserved);
1891 stream_putc (stream, hdr->max_area_addrs);
1892
1893 return;
1894}
1895
jardineb5d44e2003-12-23 08:09:43 +00001896int
1897send_hello (struct isis_circuit *circuit, int level)
1898{
1899 struct isis_fixed_hdr fixed_hdr;
1900 struct isis_lan_hello_hdr hello_hdr;
1901 struct isis_p2p_hello_hdr p2p_hello_hdr;
1902
1903 u_int32_t interval;
1904 unsigned long len_pointer, length;
1905 int retval;
1906
hassof390d2c2004-09-10 20:48:21 +00001907 if (circuit->interface->mtu == 0)
1908 {
1909 zlog_warn ("circuit has zero MTU");
1910 return ISIS_WARNING;
1911 }
jardineb5d44e2003-12-23 08:09:43 +00001912
1913 if (!circuit->snd_stream)
hassof390d2c2004-09-10 20:48:21 +00001914 circuit->snd_stream = stream_new (ISO_MTU (circuit));
jardineb5d44e2003-12-23 08:09:43 +00001915 else
1916 stream_reset (circuit->snd_stream);
1917
1918 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
1919 if (level == 1)
hassof390d2c2004-09-10 20:48:21 +00001920 fill_fixed_hdr_andstream (&fixed_hdr, L1_LAN_HELLO,
1921 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00001922 else
hassof390d2c2004-09-10 20:48:21 +00001923 fill_fixed_hdr_andstream (&fixed_hdr, L2_LAN_HELLO,
1924 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00001925 else
hassof390d2c2004-09-10 20:48:21 +00001926 fill_fixed_hdr_andstream (&fixed_hdr, P2P_HELLO, circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00001927
1928 /*
1929 * Fill LAN Level 1 or 2 Hello PDU header
1930 */
1931 memset (&hello_hdr, 0, sizeof (struct isis_lan_hello_hdr));
hassof390d2c2004-09-10 20:48:21 +00001932 interval = circuit->hello_multiplier[level - 1] *
jardineb5d44e2003-12-23 08:09:43 +00001933 circuit->hello_interval[level - 1];
1934 if (interval > USHRT_MAX)
1935 interval = USHRT_MAX;
1936 hello_hdr.circuit_t = circuit->circuit_is_type;
1937 memcpy (hello_hdr.source_id, isis->sysid, ISIS_SYS_ID_LEN);
hassof390d2c2004-09-10 20:48:21 +00001938 hello_hdr.hold_time = htons ((u_int16_t) interval);
jardineb5d44e2003-12-23 08:09:43 +00001939
hassof390d2c2004-09-10 20:48:21 +00001940 hello_hdr.pdu_len = 0; /* Update the PDU Length later */
paul9985f832005-02-09 15:51:56 +00001941 len_pointer = stream_get_endp (circuit->snd_stream) + 3 + ISIS_SYS_ID_LEN;
jardineb5d44e2003-12-23 08:09:43 +00001942
1943 /* copy the shared part of the hello to the p2p hello if needed */
hassof390d2c2004-09-10 20:48:21 +00001944 if (circuit->circ_type == CIRCUIT_T_P2P)
1945 {
1946 memcpy (&p2p_hello_hdr, &hello_hdr, 5 + ISIS_SYS_ID_LEN);
1947 p2p_hello_hdr.local_id = circuit->circuit_id;
1948 /* FIXME: need better understanding */
1949 stream_put (circuit->snd_stream, &p2p_hello_hdr, ISIS_P2PHELLO_HDRLEN);
jardineb5d44e2003-12-23 08:09:43 +00001950 }
hassof390d2c2004-09-10 20:48:21 +00001951 else
1952 {
1953 hello_hdr.prio = circuit->u.bc.priority[level - 1];
1954 if (level == 1 && circuit->u.bc.l1_desig_is)
1955 {
1956 memcpy (hello_hdr.lan_id, circuit->u.bc.l1_desig_is,
1957 ISIS_SYS_ID_LEN + 1);
1958 }
1959 else if (level == 2 && circuit->u.bc.l2_desig_is)
1960 {
1961 memcpy (hello_hdr.lan_id, circuit->u.bc.l2_desig_is,
1962 ISIS_SYS_ID_LEN + 1);
1963 }
1964 stream_put (circuit->snd_stream, &hello_hdr, ISIS_LANHELLO_HDRLEN);
1965 }
jardineb5d44e2003-12-23 08:09:43 +00001966
1967 /*
1968 * Then the variable length part
1969 */
1970 /* add circuit password */
1971 if (circuit->passwd.type)
1972 if (tlv_add_authinfo (circuit->passwd.type, circuit->passwd.len,
1973 circuit->passwd.passwd, circuit->snd_stream))
1974 return ISIS_WARNING;
1975 /* Area Addresses TLV */
1976 assert (circuit->area);
1977 if (circuit->area->area_addrs && circuit->area->area_addrs->count > 0)
1978 if (tlv_add_area_addrs (circuit->area->area_addrs, circuit->snd_stream))
1979 return ISIS_WARNING;
1980
1981 /* LAN Neighbors TLV */
hassof390d2c2004-09-10 20:48:21 +00001982 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
1983 {
1984 if (level == 1 && circuit->u.bc.lan_neighs[0]->count > 0)
1985 if (tlv_add_lan_neighs (circuit->u.bc.lan_neighs[0],
1986 circuit->snd_stream))
1987 return ISIS_WARNING;
1988 if (level == 2 && circuit->u.bc.lan_neighs[1]->count > 0)
1989 if (tlv_add_lan_neighs (circuit->u.bc.lan_neighs[1],
1990 circuit->snd_stream))
1991 return ISIS_WARNING;
1992 }
jardineb5d44e2003-12-23 08:09:43 +00001993
1994 /* Protocols Supported TLV */
hassof390d2c2004-09-10 20:48:21 +00001995 if (circuit->nlpids.count > 0)
jardineb5d44e2003-12-23 08:09:43 +00001996 if (tlv_add_nlpid (&circuit->nlpids, circuit->snd_stream))
1997 return ISIS_WARNING;
1998 /* IP interface Address TLV */
1999 if (circuit->ip_router && circuit->ip_addrs && circuit->ip_addrs->count > 0)
2000 if (tlv_add_ip_addrs (circuit->ip_addrs, circuit->snd_stream))
2001 return ISIS_WARNING;
2002
hassof390d2c2004-09-10 20:48:21 +00002003#ifdef HAVE_IPV6
jardineb5d44e2003-12-23 08:09:43 +00002004 /* IPv6 Interface Address TLV */
hassof390d2c2004-09-10 20:48:21 +00002005 if (circuit->ipv6_router && circuit->ipv6_link &&
jardineb5d44e2003-12-23 08:09:43 +00002006 circuit->ipv6_link->count > 0)
2007 if (tlv_add_ipv6_addrs (circuit->ipv6_link, circuit->snd_stream))
2008 return ISIS_WARNING;
2009#endif /* HAVE_IPV6 */
2010
2011 if (circuit->u.bc.pad_hellos)
2012 if (tlv_add_padding (circuit->snd_stream))
2013 return ISIS_WARNING;
2014
paul9985f832005-02-09 15:51:56 +00002015 length = stream_get_endp (circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002016 /* Update PDU length */
hassof390d2c2004-09-10 20:48:21 +00002017 stream_putw_at (circuit->snd_stream, len_pointer, (u_int16_t) length);
jardineb5d44e2003-12-23 08:09:43 +00002018
2019 retval = circuit->tx (circuit, level);
2020 if (retval)
2021 zlog_warn ("sending of LAN Level %d Hello failed", level);
2022
2023 /* DEBUG_ADJ_PACKETS */
hassof390d2c2004-09-10 20:48:21 +00002024 if (isis->debugs & DEBUG_ADJ_PACKETS)
2025 {
2026 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
2027 {
hasso529d65b2004-12-24 00:14:50 +00002028 zlog_debug ("ISIS-Adj (%s): Sent L%d LAN IIH on %s, length %ld",
2029 circuit->area->area_tag, level, circuit->interface->name,
2030 STREAM_SIZE (circuit->snd_stream));
hassof390d2c2004-09-10 20:48:21 +00002031 }
2032 else
2033 {
hasso529d65b2004-12-24 00:14:50 +00002034 zlog_debug ("ISIS-Adj (%s): Sent P2P IIH on %s, length %ld",
2035 circuit->area->area_tag, circuit->interface->name,
2036 STREAM_SIZE (circuit->snd_stream));
hassof390d2c2004-09-10 20:48:21 +00002037 }
jardineb5d44e2003-12-23 08:09:43 +00002038 }
jardineb5d44e2003-12-23 08:09:43 +00002039
2040 return retval;
2041}
2042
hasso92365882005-01-18 13:53:33 +00002043static int
jardineb5d44e2003-12-23 08:09:43 +00002044send_lan_hello (struct isis_circuit *circuit, int level)
2045{
hassof390d2c2004-09-10 20:48:21 +00002046 return send_hello (circuit, level);
jardineb5d44e2003-12-23 08:09:43 +00002047}
2048
2049int
2050send_lan_l1_hello (struct thread *thread)
2051{
jardineb5d44e2003-12-23 08:09:43 +00002052 struct isis_circuit *circuit;
2053 int retval;
2054
2055 circuit = THREAD_ARG (thread);
2056 assert (circuit);
2057 circuit->u.bc.t_send_lan_hello[0] = NULL;
2058
2059 if (circuit->u.bc.run_dr_elect[0])
hassof390d2c2004-09-10 20:48:21 +00002060 retval = isis_dr_elect (circuit, 1);
jardineb5d44e2003-12-23 08:09:43 +00002061
2062 retval = send_lan_hello (circuit, 1);
2063
2064 /* set next timer thread */
hassof390d2c2004-09-10 20:48:21 +00002065 THREAD_TIMER_ON (master, circuit->u.bc.t_send_lan_hello[0],
2066 send_lan_l1_hello, circuit,
2067 isis_jitter (circuit->hello_interval[0], IIH_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002068
2069 return retval;
2070}
2071
2072int
2073send_lan_l2_hello (struct thread *thread)
2074{
2075 struct isis_circuit *circuit;
2076 int retval;
2077
2078 circuit = THREAD_ARG (thread);
2079 assert (circuit);
2080 circuit->u.bc.t_send_lan_hello[1] = NULL;
2081
2082 if (circuit->u.bc.run_dr_elect[1])
2083 retval = isis_dr_elect (circuit, 2);
2084
2085 retval = send_lan_hello (circuit, 2);
2086
hassof390d2c2004-09-10 20:48:21 +00002087 /* set next timer thread */
2088 THREAD_TIMER_ON (master, circuit->u.bc.t_send_lan_hello[1],
2089 send_lan_l2_hello, circuit,
2090 isis_jitter (circuit->hello_interval[1], IIH_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002091
2092 return retval;
2093}
2094
2095int
2096send_p2p_hello (struct thread *thread)
2097{
2098 struct isis_circuit *circuit;
2099
2100 circuit = THREAD_ARG (thread);
2101 assert (circuit);
2102 circuit->u.p2p.t_send_p2p_hello = NULL;
2103
hassof390d2c2004-09-10 20:48:21 +00002104 send_hello (circuit, 1);
jardineb5d44e2003-12-23 08:09:43 +00002105
hassof390d2c2004-09-10 20:48:21 +00002106 /* set next timer thread */
2107 THREAD_TIMER_ON (master, circuit->u.p2p.t_send_p2p_hello, send_p2p_hello,
2108 circuit, isis_jitter (circuit->hello_interval[1],
2109 IIH_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002110
2111 return ISIS_OK;
2112}
2113
hasso92365882005-01-18 13:53:33 +00002114static int
hassof390d2c2004-09-10 20:48:21 +00002115build_csnp (int level, u_char * start, u_char * stop, struct list *lsps,
2116 struct isis_circuit *circuit)
jardineb5d44e2003-12-23 08:09:43 +00002117{
2118 struct isis_fixed_hdr fixed_hdr;
2119 struct isis_passwd *passwd;
2120 int retval = ISIS_OK;
2121 unsigned long lenp;
2122 u_int16_t length;
2123
hassof390d2c2004-09-10 20:48:21 +00002124 if (level == 1)
2125 fill_fixed_hdr_andstream (&fixed_hdr, L1_COMPLETE_SEQ_NUM,
2126 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002127 else
hassof390d2c2004-09-10 20:48:21 +00002128 fill_fixed_hdr_andstream (&fixed_hdr, L2_COMPLETE_SEQ_NUM,
2129 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002130
2131 /*
2132 * Fill Level 1 or 2 Complete Sequence Numbers header
2133 */
2134
paul9985f832005-02-09 15:51:56 +00002135 lenp = stream_get_endp (circuit->snd_stream);
hassof390d2c2004-09-10 20:48:21 +00002136 stream_putw (circuit->snd_stream, 0); /* PDU length - when we know it */
jardineb5d44e2003-12-23 08:09:43 +00002137 /* no need to send the source here, it is always us if we csnp */
2138 stream_put (circuit->snd_stream, isis->sysid, ISIS_SYS_ID_LEN);
2139 /* with zero circuit id - ref 9.10, 9.11 */
2140 stream_putc (circuit->snd_stream, 0x00);
2141
2142 stream_put (circuit->snd_stream, start, ISIS_SYS_ID_LEN + 2);
2143 stream_put (circuit->snd_stream, stop, ISIS_SYS_ID_LEN + 2);
2144
2145 /*
2146 * And TLVs
2147 */
2148 if (level == 1)
2149 passwd = &circuit->area->area_passwd;
2150 else
2151 passwd = &circuit->area->domain_passwd;
2152
hasso1cbc5622005-01-01 10:29:51 +00002153 if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_SEND))
2154 if (passwd->type)
2155 retval = tlv_add_authinfo (passwd->type, passwd->len,
2156 passwd->passwd, circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002157
hassof390d2c2004-09-10 20:48:21 +00002158 if (!retval && lsps)
2159 {
2160 retval = tlv_add_lsp_entries (lsps, circuit->snd_stream);
2161 }
paul9985f832005-02-09 15:51:56 +00002162 length = (u_int16_t) stream_get_endp (circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002163 assert (length >= ISIS_CSNP_HDRLEN);
2164 /* Update PU length */
2165 stream_putw_at (circuit->snd_stream, lenp, length);
2166
2167 return retval;
2168}
2169
2170/*
2171 * FIXME: support multiple CSNPs
2172 */
2173
2174int
2175send_csnp (struct isis_circuit *circuit, int level)
2176{
2177 int retval = ISIS_OK;
2178 u_char start[ISIS_SYS_ID_LEN + 2];
2179 u_char stop[ISIS_SYS_ID_LEN + 2];
2180 struct list *list = NULL;
2181 struct listnode *node;
2182 struct isis_lsp *lsp;
2183
hassof390d2c2004-09-10 20:48:21 +00002184 memset (start, 0x00, ISIS_SYS_ID_LEN + 2);
jardineb5d44e2003-12-23 08:09:43 +00002185 memset (stop, 0xff, ISIS_SYS_ID_LEN + 2);
2186
hassof390d2c2004-09-10 20:48:21 +00002187 if (circuit->area->lspdb[level - 1] &&
2188 dict_count (circuit->area->lspdb[level - 1]) > 0)
2189 {
2190 list = list_new ();
2191 lsp_build_list (start, stop, list, circuit->area->lspdb[level - 1]);
jardineb5d44e2003-12-23 08:09:43 +00002192
hassof390d2c2004-09-10 20:48:21 +00002193 if (circuit->snd_stream == NULL)
2194 circuit->snd_stream = stream_new (ISO_MTU (circuit));
2195 else
2196 stream_reset (circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002197
hassof390d2c2004-09-10 20:48:21 +00002198 retval = build_csnp (level, start, stop, list, circuit);
jardineb5d44e2003-12-23 08:09:43 +00002199
hassof390d2c2004-09-10 20:48:21 +00002200 if (isis->debugs & DEBUG_SNP_PACKETS)
2201 {
hasso529d65b2004-12-24 00:14:50 +00002202 zlog_debug ("ISIS-Snp (%s): Sent L%d CSNP on %s, length %ld",
2203 circuit->area->area_tag, level, circuit->interface->name,
2204 STREAM_SIZE (circuit->snd_stream));
hassof390d2c2004-09-10 20:48:21 +00002205 LIST_LOOP (list, lsp, node)
2206 {
hasso529d65b2004-12-24 00:14:50 +00002207 zlog_debug ("ISIS-Snp (%s): CSNP entry %s, seq 0x%08x,"
2208 " cksum 0x%04x, lifetime %us",
2209 circuit->area->area_tag,
2210 rawlspid_print (lsp->lsp_header->lsp_id),
2211 ntohl (lsp->lsp_header->seq_num),
2212 ntohs (lsp->lsp_header->checksum),
2213 ntohs (lsp->lsp_header->rem_lifetime));
hassof390d2c2004-09-10 20:48:21 +00002214 }
2215 }
2216
2217 list_delete (list);
2218
2219 if (retval == ISIS_OK)
2220 retval = circuit->tx (circuit, level);
jardineb5d44e2003-12-23 08:09:43 +00002221 }
jardineb5d44e2003-12-23 08:09:43 +00002222 return retval;
2223}
2224
2225int
2226send_l1_csnp (struct thread *thread)
2227{
2228 struct isis_circuit *circuit;
2229 int retval = ISIS_OK;
2230
2231 circuit = THREAD_ARG (thread);
2232 assert (circuit);
2233
2234 circuit->t_send_csnp[0] = NULL;
2235
hassof390d2c2004-09-10 20:48:21 +00002236 if (circuit->circ_type == CIRCUIT_T_BROADCAST && circuit->u.bc.is_dr[0])
2237 {
2238 send_csnp (circuit, 1);
2239 }
jardineb5d44e2003-12-23 08:09:43 +00002240 /* set next timer thread */
hassof390d2c2004-09-10 20:48:21 +00002241 THREAD_TIMER_ON (master, circuit->t_send_csnp[0], send_l1_csnp, circuit,
2242 isis_jitter (circuit->csnp_interval[0], CSNP_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002243
2244 return retval;
2245}
2246
2247int
2248send_l2_csnp (struct thread *thread)
2249{
2250 struct isis_circuit *circuit;
2251 int retval = ISIS_OK;
2252
2253 circuit = THREAD_ARG (thread);
2254 assert (circuit);
2255
2256 circuit->t_send_csnp[1] = NULL;
2257
hassof390d2c2004-09-10 20:48:21 +00002258 if (circuit->circ_type == CIRCUIT_T_BROADCAST && circuit->u.bc.is_dr[1])
2259 {
2260 send_csnp (circuit, 2);
2261 }
jardineb5d44e2003-12-23 08:09:43 +00002262 /* set next timer thread */
hassof390d2c2004-09-10 20:48:21 +00002263 THREAD_TIMER_ON (master, circuit->t_send_csnp[1], send_l2_csnp, circuit,
2264 isis_jitter (circuit->csnp_interval[1], CSNP_JITTER));
hassod70f99e2004-02-11 20:26:31 +00002265
jardineb5d44e2003-12-23 08:09:43 +00002266 return retval;
2267}
2268
hasso92365882005-01-18 13:53:33 +00002269static int
jardineb5d44e2003-12-23 08:09:43 +00002270build_psnp (int level, struct isis_circuit *circuit, struct list *lsps)
2271{
2272 struct isis_fixed_hdr fixed_hdr;
2273 unsigned long lenp;
2274 u_int16_t length;
2275 int retval = 0;
2276 struct isis_lsp *lsp;
2277 struct isis_passwd *passwd;
2278 struct listnode *node;
2279
2280 if (level == 1)
hassof390d2c2004-09-10 20:48:21 +00002281 fill_fixed_hdr_andstream (&fixed_hdr, L1_PARTIAL_SEQ_NUM,
2282 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002283 else
2284 fill_fixed_hdr_andstream (&fixed_hdr, L2_PARTIAL_SEQ_NUM,
hassof390d2c2004-09-10 20:48:21 +00002285 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002286
2287 /*
2288 * Fill Level 1 or 2 Partial Sequence Numbers header
2289 */
paul9985f832005-02-09 15:51:56 +00002290 lenp = stream_get_endp (circuit->snd_stream);
hassof390d2c2004-09-10 20:48:21 +00002291 stream_putw (circuit->snd_stream, 0); /* PDU length - when we know it */
jardineb5d44e2003-12-23 08:09:43 +00002292 stream_put (circuit->snd_stream, isis->sysid, ISIS_SYS_ID_LEN);
2293 stream_putc (circuit->snd_stream, circuit->idx);
2294
2295 /*
2296 * And TLVs
2297 */
2298
2299 if (level == 1)
2300 passwd = &circuit->area->area_passwd;
2301 else
2302 passwd = &circuit->area->domain_passwd;
2303
hasso1cbc5622005-01-01 10:29:51 +00002304 if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_SEND))
2305 if (passwd->type)
2306 retval = tlv_add_authinfo (passwd->type, passwd->len,
2307 passwd->passwd, circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002308
hassof390d2c2004-09-10 20:48:21 +00002309 if (!retval && lsps)
2310 {
2311 retval = tlv_add_lsp_entries (lsps, circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002312 }
jardineb5d44e2003-12-23 08:09:43 +00002313
hassof390d2c2004-09-10 20:48:21 +00002314 if (isis->debugs & DEBUG_SNP_PACKETS)
2315 {
2316 LIST_LOOP (lsps, lsp, node)
2317 {
hasso529d65b2004-12-24 00:14:50 +00002318 zlog_debug ("ISIS-Snp (%s): PSNP entry %s, seq 0x%08x,"
2319 " cksum 0x%04x, lifetime %us",
2320 circuit->area->area_tag,
2321 rawlspid_print (lsp->lsp_header->lsp_id),
2322 ntohl (lsp->lsp_header->seq_num),
2323 ntohs (lsp->lsp_header->checksum),
2324 ntohs (lsp->lsp_header->rem_lifetime));
hassof390d2c2004-09-10 20:48:21 +00002325 }
2326 }
2327
paul9985f832005-02-09 15:51:56 +00002328 length = (u_int16_t) stream_get_endp (circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002329 assert (length >= ISIS_PSNP_HDRLEN);
2330 /* Update PDU length */
2331 stream_putw_at (circuit->snd_stream, lenp, length);
2332
2333 return ISIS_OK;
2334}
2335
2336/*
2337 * 7.3.15.4 action on expiration of partial SNP interval
2338 * level 1
2339 */
hasso92365882005-01-18 13:53:33 +00002340static int
jardineb5d44e2003-12-23 08:09:43 +00002341send_psnp (int level, struct isis_circuit *circuit)
2342{
2343 int retval = ISIS_OK;
2344 struct isis_lsp *lsp;
2345 struct list *list = NULL;
2346 struct listnode *node;
2347
hassof390d2c2004-09-10 20:48:21 +00002348 if ((circuit->circ_type == CIRCUIT_T_BROADCAST &&
jardineb5d44e2003-12-23 08:09:43 +00002349 !circuit->u.bc.is_dr[level - 1]) ||
hassof390d2c2004-09-10 20:48:21 +00002350 circuit->circ_type != CIRCUIT_T_BROADCAST)
2351 {
jardineb5d44e2003-12-23 08:09:43 +00002352
hassof390d2c2004-09-10 20:48:21 +00002353 if (circuit->area->lspdb[level - 1] &&
2354 dict_count (circuit->area->lspdb[level - 1]) > 0)
2355 {
2356 list = list_new ();
2357 lsp_build_list_ssn (circuit, list, circuit->area->lspdb[level - 1]);
jardineb5d44e2003-12-23 08:09:43 +00002358
hassof390d2c2004-09-10 20:48:21 +00002359 if (listcount (list) > 0)
2360 {
2361 if (circuit->snd_stream == NULL)
2362 circuit->snd_stream = stream_new (ISO_MTU (circuit));
2363 else
2364 stream_reset (circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002365
2366
hassof390d2c2004-09-10 20:48:21 +00002367 if (isis->debugs & DEBUG_SNP_PACKETS)
hasso529d65b2004-12-24 00:14:50 +00002368 zlog_debug ("ISIS-Snp (%s): Sent L%d PSNP on %s, length %ld",
2369 circuit->area->area_tag, level,
2370 circuit->interface->name,
2371 STREAM_SIZE (circuit->snd_stream));
jardineb5d44e2003-12-23 08:09:43 +00002372
hassof390d2c2004-09-10 20:48:21 +00002373 retval = build_psnp (level, circuit, list);
2374 if (retval == ISIS_OK)
2375 retval = circuit->tx (circuit, level);
jardineb5d44e2003-12-23 08:09:43 +00002376
hassof390d2c2004-09-10 20:48:21 +00002377 if (retval == ISIS_OK)
2378 {
2379 /*
2380 * sending succeeded, we can clear SSN flags of this circuit
2381 * for the LSPs in list
2382 */
2383 for (node = listhead (list); node; nextnode (node))
2384 {
2385 lsp = getdata (node);
2386 ISIS_CLEAR_FLAG (lsp->SSNflags, circuit);
2387 }
2388 }
2389 }
2390 list_delete (list);
2391 }
jardineb5d44e2003-12-23 08:09:43 +00002392 }
jardineb5d44e2003-12-23 08:09:43 +00002393
2394 return retval;
2395}
2396
2397int
2398send_l1_psnp (struct thread *thread)
2399{
2400
2401 struct isis_circuit *circuit;
2402 int retval = ISIS_OK;
2403
2404 circuit = THREAD_ARG (thread);
2405 assert (circuit);
2406
2407 circuit->t_send_psnp[0] = NULL;
2408
2409 send_psnp (1, circuit);
2410 /* set next timer thread */
hassof390d2c2004-09-10 20:48:21 +00002411 THREAD_TIMER_ON (master, circuit->t_send_psnp[0], send_l1_psnp, circuit,
2412 isis_jitter (circuit->psnp_interval[0], PSNP_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002413
2414 return retval;
2415}
2416
2417/*
2418 * 7.3.15.4 action on expiration of partial SNP interval
2419 * level 2
2420 */
2421int
2422send_l2_psnp (struct thread *thread)
2423{
jardineb5d44e2003-12-23 08:09:43 +00002424 struct isis_circuit *circuit;
2425 int retval = ISIS_OK;
2426
2427 circuit = THREAD_ARG (thread);
2428 assert (circuit);
2429
2430 circuit->t_send_psnp[1] = NULL;
2431
2432 send_psnp (2, circuit);
2433
2434 /* set next timer thread */
hassof390d2c2004-09-10 20:48:21 +00002435 THREAD_TIMER_ON (master, circuit->t_send_psnp[1], send_l2_psnp, circuit,
2436 isis_jitter (circuit->psnp_interval[1], PSNP_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002437
2438 return retval;
2439}
2440
hasso92365882005-01-18 13:53:33 +00002441/* FIXME: Not used any more? */
2442/* static void
jardineb5d44e2003-12-23 08:09:43 +00002443build_link_state (struct isis_lsp *lsp, struct isis_circuit *circuit,
hassof390d2c2004-09-10 20:48:21 +00002444 struct stream *stream)
jardineb5d44e2003-12-23 08:09:43 +00002445{
2446 unsigned long length;
2447
hassof390d2c2004-09-10 20:48:21 +00002448 stream_put (stream, lsp->pdu, ntohs (lsp->lsp_header->pdu_len));
paul9985f832005-02-09 15:51:56 +00002449 length = stream_get_endp (stream);
jardineb5d44e2003-12-23 08:09:43 +00002450
2451 return;
hasso92365882005-01-18 13:53:33 +00002452} */
jardineb5d44e2003-12-23 08:09:43 +00002453
jardineb5d44e2003-12-23 08:09:43 +00002454/*
2455 * ISO 10589 - 7.3.14.3
2456 */
2457int
2458send_lsp (struct thread *thread)
2459{
2460 struct isis_circuit *circuit;
2461 struct isis_lsp *lsp;
2462 struct listnode *node;
2463 int retval = 0;
2464
2465 circuit = THREAD_ARG (thread);
2466 assert (circuit);
2467
hassof390d2c2004-09-10 20:48:21 +00002468 if (circuit->state == C_STATE_UP)
2469 {
2470 node = listhead (circuit->lsp_queue);
2471 assert (node);
jardineb5d44e2003-12-23 08:09:43 +00002472
hassof390d2c2004-09-10 20:48:21 +00002473 lsp = getdata (node);
jardineb5d44e2003-12-23 08:09:43 +00002474
2475 /*
hassof390d2c2004-09-10 20:48:21 +00002476 * Do not send if levels do not match
jardineb5d44e2003-12-23 08:09:43 +00002477 */
hassof390d2c2004-09-10 20:48:21 +00002478 if (!(lsp->level & circuit->circuit_is_type))
2479 goto dontsend;
jardineb5d44e2003-12-23 08:09:43 +00002480
hassof390d2c2004-09-10 20:48:21 +00002481 /*
2482 * Do not send if we do not have adjacencies in state up on the circuit
2483 */
2484 if (circuit->upadjcount[lsp->level - 1] == 0)
2485 goto dontsend;
2486 /* only send if it needs sending */
2487 if ((time (NULL) - lsp->last_sent) >=
2488 circuit->area->lsp_gen_interval[lsp->level - 1])
2489 {
jardineb5d44e2003-12-23 08:09:43 +00002490
hassof390d2c2004-09-10 20:48:21 +00002491 if (isis->debugs & DEBUG_UPDATE_PACKETS)
2492 {
hasso529d65b2004-12-24 00:14:50 +00002493 zlog_debug
hassof390d2c2004-09-10 20:48:21 +00002494 ("ISIS-Upd (%s): Sent L%d LSP %s, seq 0x%08x, cksum 0x%04x,"
2495 " lifetime %us on %s", circuit->area->area_tag, lsp->level,
2496 rawlspid_print (lsp->lsp_header->lsp_id),
2497 ntohl (lsp->lsp_header->seq_num),
2498 ntohs (lsp->lsp_header->checksum),
2499 ntohs (lsp->lsp_header->rem_lifetime),
2500 circuit->interface->name);
2501 }
2502 /* copy our lsp to the send buffer */
2503 circuit->snd_stream->getp = lsp->pdu->getp;
hassof390d2c2004-09-10 20:48:21 +00002504 circuit->snd_stream->endp = lsp->pdu->endp;
2505 memcpy (circuit->snd_stream->data, lsp->pdu->data, lsp->pdu->endp);
2506
2507 retval = circuit->tx (circuit, lsp->level);
2508
jardineb5d44e2003-12-23 08:09:43 +00002509 /*
hassof390d2c2004-09-10 20:48:21 +00002510 * If the sending succeeded, we can del the lsp from circuits
2511 * lsp_queue
jardineb5d44e2003-12-23 08:09:43 +00002512 */
hassof390d2c2004-09-10 20:48:21 +00002513 if (retval == ISIS_OK)
2514 {
2515 list_delete_node (circuit->lsp_queue, node);
2516
2517 /*
2518 * On broadcast circuits also the SRMflag can be cleared
2519 */
2520 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
2521 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
2522
2523 if (flags_any_set (lsp->SRMflags) == 0)
2524 {
2525 /*
2526 * need to remember when we were last sent
2527 */
2528 lsp->last_sent = time (NULL);
2529 }
2530 }
2531 else
2532 {
hasso529d65b2004-12-24 00:14:50 +00002533 zlog_debug ("sending of level %d link state failed", lsp->level);
hassof390d2c2004-09-10 20:48:21 +00002534 }
jardineb5d44e2003-12-23 08:09:43 +00002535 }
hassof390d2c2004-09-10 20:48:21 +00002536 else
2537 {
2538 /* my belief is that if it wasn't his time, the lsp can be removed
2539 * from the queue
2540 */
2541 dontsend:
2542 list_delete_node (circuit->lsp_queue, node);
2543 }
jardineb5d44e2003-12-23 08:09:43 +00002544#if 0
hassof390d2c2004-09-10 20:48:21 +00002545 /*
2546 * If there are still LSPs send next one after lsp-interval (33 msecs)
2547 */
2548 if (listcount (circuit->lsp_queue) > 0)
2549 thread_add_timer (master, send_lsp, circuit, 1);
jardineb5d44e2003-12-23 08:09:43 +00002550#endif
hassof390d2c2004-09-10 20:48:21 +00002551 }
jardineb5d44e2003-12-23 08:09:43 +00002552
2553 return retval;
hassof390d2c2004-09-10 20:48:21 +00002554}
jardineb5d44e2003-12-23 08:09:43 +00002555
2556int
hassof390d2c2004-09-10 20:48:21 +00002557ack_lsp (struct isis_link_state_hdr *hdr, struct isis_circuit *circuit,
2558 int level)
jardineb5d44e2003-12-23 08:09:43 +00002559{
2560 unsigned long lenp;
2561 int retval;
2562 u_int16_t length;
2563 struct isis_fixed_hdr fixed_hdr;
2564
2565 if (!circuit->snd_stream)
hassof390d2c2004-09-10 20:48:21 +00002566 circuit->snd_stream = stream_new (ISO_MTU (circuit));
jardineb5d44e2003-12-23 08:09:43 +00002567 else
2568 stream_reset (circuit->snd_stream);
2569
2570// fill_llc_hdr (stream);
2571 if (level == 1)
hassof390d2c2004-09-10 20:48:21 +00002572 fill_fixed_hdr_andstream (&fixed_hdr, L1_PARTIAL_SEQ_NUM,
2573 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002574 else
hassof390d2c2004-09-10 20:48:21 +00002575 fill_fixed_hdr_andstream (&fixed_hdr, L2_PARTIAL_SEQ_NUM,
2576 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002577
2578
paul9985f832005-02-09 15:51:56 +00002579 lenp = stream_get_endp (circuit->snd_stream);
hassof390d2c2004-09-10 20:48:21 +00002580 stream_putw (circuit->snd_stream, 0); /* PDU length */
2581 stream_put (circuit->snd_stream, isis->sysid, ISIS_SYS_ID_LEN);
jardineb5d44e2003-12-23 08:09:43 +00002582 stream_putc (circuit->snd_stream, circuit->idx);
hassof390d2c2004-09-10 20:48:21 +00002583 stream_putc (circuit->snd_stream, 9); /* code */
2584 stream_putc (circuit->snd_stream, 16); /* len */
jardineb5d44e2003-12-23 08:09:43 +00002585
hassof390d2c2004-09-10 20:48:21 +00002586 stream_putw (circuit->snd_stream, ntohs (hdr->rem_lifetime));
2587 stream_put (circuit->snd_stream, hdr->lsp_id, ISIS_SYS_ID_LEN + 2);
2588 stream_putl (circuit->snd_stream, ntohl (hdr->seq_num));
2589 stream_putw (circuit->snd_stream, ntohs (hdr->checksum));
jardineb5d44e2003-12-23 08:09:43 +00002590
paul9985f832005-02-09 15:51:56 +00002591 length = (u_int16_t) stream_get_endp (circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002592 /* Update PDU length */
2593 stream_putw_at (circuit->snd_stream, lenp, length);
2594
2595 retval = circuit->tx (circuit, level);
2596
2597 return retval;
2598}
2599
2600#if 0
2601/*
2602 * ISH PDU Processing
2603 */
2604
jardineb5d44e2003-12-23 08:09:43 +00002605 /*
2606 * Let's first check if the local and remote system have any common area
2607 * addresses
2608 */
hassof390d2c2004-09-10 20:48:21 +00002609if (area_match (tlvs.area_addrs, isis->man_area_addrs) == 0)
2610 {
2611 if (circuit->circuit_t == IS_LEVEL_2)
2612 {
2613 /* do as in table 8 (p. 40) */
2614 switch (circuit_type)
2615 {
2616 case IS_LEVEL_1:
2617 if (adj->adj_state != ISIS_ADJ_UP)
2618 {
2619 /* Reject */
2620 zlog_warn ("areaMismatch");
2621 retval = ISIS_WARNING;
2622 }
2623 else if (adj->adj_usage == ISIS_ADJ_LEVEL1)
2624 {
2625 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Area Mismatch",
2626 circuit->adjdb);
2627 }
2628 else if (adj->adj_usage == ISIS_ADJ_LEVEL1AND2 ||
2629 adj->adj_usage == ISIS_ADJ_LEVEL2)
2630 {
2631 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System",
2632 circuit->adjdb);
2633 }
2634 break;
2635 case IS_LEVEL_2:
2636 if (adj->adj_state != ISIS_ADJ_UP)
2637 {
2638 isis_adj_state_change (adj, ISIS_ADJ_UP, NULL,
2639 circuit->adjdb);
2640 adj->adj_usage = ISIS_ADJ_LEVEL2;
2641 }
2642 else if (adj->adj_usage == ISIS_ADJ_LEVEL1 ||
2643 adj->adj_usage == ISIS_ADJ_LEVEL1AND2)
2644 {
2645 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System",
2646 circuit->adjdb);
2647 }
2648 else if (adj->adj_usage == ISIS_ADJ_LEVEL2)
2649 {
2650 ; /* Accept */
2651 }
2652 break;
2653 case IS_LEVEL_1_AND_2:
2654 if (adj->adj_state != ISIS_ADJ_UP)
2655 {
2656 isis_adj_state_change (adj, ISIS_ADJ_UP, NULL,
2657 circuit->adjdb);
2658 adj->adj_usage = ISIS_ADJ_LEVEL2;
2659 }
2660 else if (adj->adj_usage == ISIS_ADJ_LEVEL1)
2661 {
2662 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System",
2663 circuit->adjdb);
2664 }
2665 else if (adj->adj_usage == ISIS_ADJ_LEVEL1AND2)
2666 {
2667 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Area Mismatch",
2668 circuit->adjdb);
2669 }
2670 else if (adj->adj_usage == ISIS_ADJ_LEVEL2)
2671 {
2672 ; /* Accept */
2673 }
2674 break;
2675 }
2676 goto mismatch;
jardineb5d44e2003-12-23 08:09:43 +00002677 }
hassof390d2c2004-09-10 20:48:21 +00002678 else
2679 {
2680 isis_delete_adj (adj, circuit->adjdb);
2681 zlog_warn ("areaMismatch");
2682 return ISIS_WARNING;
2683 }
jardineb5d44e2003-12-23 08:09:43 +00002684 }
2685
2686mismatch:
2687#endif