blob: b15d4551cd9900529543df57f95dfe044933956b [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;
paul1eb8ef22005-04-07 07:30:20 +000083 struct listnode *node1, *nnode1;
84 struct listnode *node2, *nnode2;
jardineb5d44e2003-12-23 08:09:43 +000085
paul1eb8ef22005-04-07 07:30:20 +000086 for (ALL_LIST_ELEMENTS (left, node1, nnode1, addr1))
hassof390d2c2004-09-10 20:48:21 +000087 {
paul1eb8ef22005-04-07 07:30:20 +000088 for (ALL_LIST_ELEMENTS (right, node2, nnode2, addr2))
hassof390d2c2004-09-10 20:48:21 +000089 {
90 if (addr1->addr_len == addr2->addr_len &&
91 !memcmp (addr1->area_addr, addr2->area_addr, (int) addr1->addr_len))
92 return 1; /* match */
jardineb5d44e2003-12-23 08:09:43 +000093 }
94 }
95
hassof390d2c2004-09-10 20:48:21 +000096 return 0; /* mismatch */
jardineb5d44e2003-12-23 08:09:43 +000097}
98
99/*
100 * Check if ip2 is in the ip1's network (function like Prefix.h:prefix_match() )
101 * param ip1 the IS interface ip address structure
102 * param ip2 the IIH's ip address
103 * return 0 the IIH's IP is not in the IS's subnetwork
104 * 1 the IIH's IP is in the IS's subnetwork
105 */
hasso92365882005-01-18 13:53:33 +0000106static int
hassof390d2c2004-09-10 20:48:21 +0000107ip_same_subnet (struct prefix_ipv4 *ip1, struct in_addr *ip2)
jardineb5d44e2003-12-23 08:09:43 +0000108{
109 u_char *addr1, *addr2;
hasso53c997c2004-09-15 16:21:59 +0000110 int shift, offset, offsetloop;
jardineb5d44e2003-12-23 08:09:43 +0000111 int len;
hassof390d2c2004-09-10 20:48:21 +0000112
113 addr1 = (u_char *) & ip1->prefix.s_addr;
114 addr2 = (u_char *) & ip2->s_addr;
jardineb5d44e2003-12-23 08:09:43 +0000115 len = ip1->prefixlen;
116
117 shift = len % PNBBY;
hasso53c997c2004-09-15 16:21:59 +0000118 offsetloop = offset = len / PNBBY;
jardineb5d44e2003-12-23 08:09:43 +0000119
hasso53c997c2004-09-15 16:21:59 +0000120 while (offsetloop--)
121 if (addr1[offsetloop] != addr2[offsetloop])
122 return 0;
jardineb5d44e2003-12-23 08:09:43 +0000123
hassof390d2c2004-09-10 20:48:21 +0000124 if (shift)
hasso53c997c2004-09-15 16:21:59 +0000125 if (maskbit[shift] & (addr1[offset] ^ addr2[offset]))
126 return 0;
hassof390d2c2004-09-10 20:48:21 +0000127
128 return 1; /* match */
jardineb5d44e2003-12-23 08:09:43 +0000129}
130
jardineb5d44e2003-12-23 08:09:43 +0000131/*
132 * Compares two set of ip addresses
133 * param left the local interface's ip addresses
134 * param right the iih interface's ip address
135 * return 0 no match;
136 * 1 match;
137 */
hassof390d2c2004-09-10 20:48:21 +0000138static int
jardineb5d44e2003-12-23 08:09:43 +0000139ip_match (struct list *left, struct list *right)
140{
141 struct prefix_ipv4 *ip1;
142 struct in_addr *ip2;
paul1eb8ef22005-04-07 07:30:20 +0000143 struct listnode *node1, *nnode1;
144 struct listnode *node2, *nnode2;
jardineb5d44e2003-12-23 08:09:43 +0000145
hassoe082ac12004-09-27 18:13:57 +0000146 if ((left == NULL) || (right == NULL))
147 return 0;
148
paul1eb8ef22005-04-07 07:30:20 +0000149 for (ALL_LIST_ELEMENTS (left, node1, nnode1, ip1))
hassof390d2c2004-09-10 20:48:21 +0000150 {
paul1eb8ef22005-04-07 07:30:20 +0000151 for (ALL_LIST_ELEMENTS (right, node2, nnode2, ip2))
hassof390d2c2004-09-10 20:48:21 +0000152 {
153 if (ip_same_subnet (ip1, ip2))
154 {
155 return 1; /* match */
156 }
jardineb5d44e2003-12-23 08:09:43 +0000157 }
hassof390d2c2004-09-10 20:48:21 +0000158
jardineb5d44e2003-12-23 08:09:43 +0000159 }
160 return 0;
161}
162
163/*
164 * Checks whether we should accept a PDU of given level
165 */
166static int
167accept_level (int level, int circuit_t)
168{
hassof390d2c2004-09-10 20:48:21 +0000169 int retval = ((circuit_t & level) == level); /* simple approach */
jardineb5d44e2003-12-23 08:09:43 +0000170
171 return retval;
172}
173
hassof390d2c2004-09-10 20:48:21 +0000174int
jardineb5d44e2003-12-23 08:09:43 +0000175authentication_check (struct isis_passwd *one, struct isis_passwd *theother)
176{
hassof390d2c2004-09-10 20:48:21 +0000177 if (one->type != theother->type)
178 {
179 zlog_warn ("Unsupported authentication type %d", theother->type);
180 return 1; /* Auth fail (different authentication types) */
181 }
182 switch (one->type)
183 {
184 case ISIS_PASSWD_TYPE_CLEARTXT:
185 if (one->len != theother->len)
186 return 1; /* Auth fail () - passwd len mismatch */
187 return memcmp (one->passwd, theother->passwd, one->len);
188 break;
189 default:
190 zlog_warn ("Unsupported authentication type");
191 break;
192 }
193 return 0; /* Auth pass */
jardineb5d44e2003-12-23 08:09:43 +0000194}
195
196/*
197 * Processing helper functions
198 */
hasso92365882005-01-18 13:53:33 +0000199static void
hassof390d2c2004-09-10 20:48:21 +0000200tlvs_to_adj_nlpids (struct tlvs *tlvs, struct isis_adjacency *adj)
jardineb5d44e2003-12-23 08:09:43 +0000201{
202 int i;
203 struct nlpids *tlv_nlpids;
204
hassof390d2c2004-09-10 20:48:21 +0000205 if (tlvs->nlpids)
206 {
jardineb5d44e2003-12-23 08:09:43 +0000207
hassof390d2c2004-09-10 20:48:21 +0000208 tlv_nlpids = tlvs->nlpids;
jardineb5d44e2003-12-23 08:09:43 +0000209
hassof390d2c2004-09-10 20:48:21 +0000210 adj->nlpids.count = tlv_nlpids->count;
jardineb5d44e2003-12-23 08:09:43 +0000211
hassof390d2c2004-09-10 20:48:21 +0000212 for (i = 0; i < tlv_nlpids->count; i++)
213 {
214 adj->nlpids.nlpids[i] = tlv_nlpids->nlpids[i];
215 }
jardineb5d44e2003-12-23 08:09:43 +0000216 }
jardineb5d44e2003-12-23 08:09:43 +0000217}
218
hasso92365882005-01-18 13:53:33 +0000219static void
jardineb5d44e2003-12-23 08:09:43 +0000220del_ip_addr (void *val)
221{
222 XFREE (MTYPE_ISIS_TMP, val);
223}
224
hasso92365882005-01-18 13:53:33 +0000225static void
hassof390d2c2004-09-10 20:48:21 +0000226tlvs_to_adj_ipv4_addrs (struct tlvs *tlvs, struct isis_adjacency *adj)
jardineb5d44e2003-12-23 08:09:43 +0000227{
paul1eb8ef22005-04-07 07:30:20 +0000228 struct listnode *node, *nnode;
jardineb5d44e2003-12-23 08:09:43 +0000229 struct in_addr *ipv4_addr, *malloced;
230
hassof390d2c2004-09-10 20:48:21 +0000231 if (adj->ipv4_addrs)
232 {
233 adj->ipv4_addrs->del = del_ip_addr;
234 list_delete (adj->ipv4_addrs);
jardineb5d44e2003-12-23 08:09:43 +0000235 }
hassof390d2c2004-09-10 20:48:21 +0000236 adj->ipv4_addrs = list_new ();
237 if (tlvs->ipv4_addrs)
238 {
paul1eb8ef22005-04-07 07:30:20 +0000239 for (ALL_LIST_ELEMENTS (tlvs->ipv4_addrs, node, nnode, ipv4_addr))
hassof390d2c2004-09-10 20:48:21 +0000240 {
241 malloced = XMALLOC (MTYPE_ISIS_TMP, sizeof (struct in_addr));
242 memcpy (malloced, ipv4_addr, sizeof (struct in_addr));
243 listnode_add (adj->ipv4_addrs, malloced);
244 }
245 }
jardineb5d44e2003-12-23 08:09:43 +0000246}
247
248#ifdef HAVE_IPV6
hasso92365882005-01-18 13:53:33 +0000249static void
hassof390d2c2004-09-10 20:48:21 +0000250tlvs_to_adj_ipv6_addrs (struct tlvs *tlvs, struct isis_adjacency *adj)
jardineb5d44e2003-12-23 08:09:43 +0000251{
paul1eb8ef22005-04-07 07:30:20 +0000252 struct listnode *node, *nnode;
jardineb5d44e2003-12-23 08:09:43 +0000253 struct in6_addr *ipv6_addr, *malloced;
254
hassof390d2c2004-09-10 20:48:21 +0000255 if (adj->ipv6_addrs)
256 {
257 adj->ipv6_addrs->del = del_ip_addr;
258 list_delete (adj->ipv6_addrs);
jardineb5d44e2003-12-23 08:09:43 +0000259 }
hassof390d2c2004-09-10 20:48:21 +0000260 adj->ipv6_addrs = list_new ();
261 if (tlvs->ipv6_addrs)
262 {
paul1eb8ef22005-04-07 07:30:20 +0000263 for (ALL_LIST_ELEMENTS (tlvs->ipv6_addrs, node, nnode, ipv6_addr))
hassof390d2c2004-09-10 20:48:21 +0000264 {
265 malloced = XMALLOC (MTYPE_ISIS_TMP, sizeof (struct in6_addr));
266 memcpy (malloced, ipv6_addr, sizeof (struct in6_addr));
267 listnode_add (adj->ipv6_addrs, malloced);
268 }
269 }
jardineb5d44e2003-12-23 08:09:43 +0000270
271}
272#endif /* HAVE_IPV6 */
273
jardineb5d44e2003-12-23 08:09:43 +0000274/*
275 * RECEIVE SIDE
276 */
277
278/*
279 * Process P2P IIH
280 * ISO - 10589
281 * Section 8.2.5 - Receiving point-to-point IIH PDUs
282 *
283 */
284static int
285process_p2p_hello (struct isis_circuit *circuit)
286{
287 int retval = ISIS_OK;
288 struct isis_p2p_hello_hdr *hdr;
289 struct isis_adjacency *adj;
290 u_int32_t expected = 0, found;
291 struct tlvs tlvs;
292
hassof390d2c2004-09-10 20:48:21 +0000293 if ((stream_get_endp (circuit->rcv_stream) -
294 stream_get_getp (circuit->rcv_stream)) < ISIS_P2PHELLO_HDRLEN)
295 {
296 zlog_warn ("Packet too short");
297 return ISIS_WARNING;
298 }
jardineb5d44e2003-12-23 08:09:43 +0000299
300 /* 8.2.5.1 PDU acceptance tests */
301
302 /* 8.2.5.1 a) external domain untrue */
303 /* FIXME: not useful at all? */
304
305 /* 8.2.5.1 b) ID Length mismatch */
306 /* checked at the handle_pdu */
307
308 /* 8.2.5.2 IIH PDU Processing */
309
310 /* 8.2.5.2 a) 1) Maximum Area Addresses */
311 /* Already checked, and can also be ommited */
312
313 /*
314 * Get the header
315 */
hassof390d2c2004-09-10 20:48:21 +0000316 hdr = (struct isis_p2p_hello_hdr *) STREAM_PNT (circuit->rcv_stream);
jardineb5d44e2003-12-23 08:09:43 +0000317 circuit->rcv_stream->getp += ISIS_P2PHELLO_HDRLEN;
318
319 /* hdr.circuit_t = stream_getc (stream);
hassof390d2c2004-09-10 20:48:21 +0000320 stream_get (hdr.source_id, stream, ISIS_SYS_ID_LEN);
321 hdr.hold_time = stream_getw (stream);
322 hdr.pdu_len = stream_getw (stream);
323 hdr.local_id = stream_getc (stream); */
jardineb5d44e2003-12-23 08:09:43 +0000324
325 /*
326 * My interpertation of the ISO, if no adj exists we will create one for
327 * the circuit
328 */
329
hassof390d2c2004-09-10 20:48:21 +0000330 if (isis->debugs & DEBUG_ADJ_PACKETS)
331 {
hasso529d65b2004-12-24 00:14:50 +0000332 zlog_debug ("ISIS-Adj (%s): Rcvd P2P IIH from (%s), cir type %s,"
333 " cir id %02d, length %d",
334 circuit->area->area_tag, circuit->interface->name,
335 circuit_t2string (circuit->circuit_is_type),
336 circuit->circuit_id, ntohs (hdr->pdu_len));
hassof390d2c2004-09-10 20:48:21 +0000337 }
jardineb5d44e2003-12-23 08:09:43 +0000338
339 adj = circuit->u.p2p.neighbor;
hassof390d2c2004-09-10 20:48:21 +0000340 if (!adj)
341 {
hassof7c43dc2004-09-26 16:24:14 +0000342 adj = isis_new_adj (hdr->source_id, (u_char *) " ", 0, circuit);
hassof390d2c2004-09-10 20:48:21 +0000343 if (adj == NULL)
344 return ISIS_ERROR;
345 circuit->u.p2p.neighbor = adj;
346 isis_adj_state_change (adj, ISIS_ADJ_INITIALIZING, NULL);
347 adj->sys_type = ISIS_SYSTYPE_UNKNOWN;
348 }
jardineb5d44e2003-12-23 08:09:43 +0000349
350 /* 8.2.6 Monitoring point-to-point adjacencies */
351 adj->hold_time = ntohs (hdr->hold_time);
hassof390d2c2004-09-10 20:48:21 +0000352 adj->last_upd = time (NULL);
jardineb5d44e2003-12-23 08:09:43 +0000353
354 /*
355 * Lets get the TLVS now
356 */
357 expected |= TLVFLAG_AREA_ADDRS;
358 expected |= TLVFLAG_AUTH_INFO;
359 expected |= TLVFLAG_NLPID;
360 expected |= TLVFLAG_IPV4_ADDR;
361 expected |= TLVFLAG_IPV6_ADDR;
362
363 retval = parse_tlvs (circuit->area->area_tag,
364 STREAM_PNT (circuit->rcv_stream),
hassof390d2c2004-09-10 20:48:21 +0000365 ntohs (hdr->pdu_len) - ISIS_P2PHELLO_HDRLEN
366 - ISIS_FIXED_HDR_LEN, &expected, &found, &tlvs);
jardineb5d44e2003-12-23 08:09:43 +0000367
hassof390d2c2004-09-10 20:48:21 +0000368 if (retval > ISIS_WARNING)
369 {
370 free_tlvs (&tlvs);
371 return retval;
372 };
jardineb5d44e2003-12-23 08:09:43 +0000373
374 /* 8.2.5.1 c) Authentication */
hassof390d2c2004-09-10 20:48:21 +0000375 if (circuit->passwd.type)
376 {
377 if (!(found & TLVFLAG_AUTH_INFO) ||
378 authentication_check (&circuit->passwd, &tlvs.auth_info))
379 {
380 isis_event_auth_failure (circuit->area->area_tag,
381 "P2P hello authentication failure",
382 hdr->source_id);
383 return ISIS_OK;
384 }
jardineb5d44e2003-12-23 08:09:43 +0000385 }
jardineb5d44e2003-12-23 08:09:43 +0000386
387 /* we do this now because the adj may not survive till the end... */
388
389 /* we need to copy addresses to the adj */
hassof390d2c2004-09-10 20:48:21 +0000390 tlvs_to_adj_ipv4_addrs (&tlvs, adj);
jardineb5d44e2003-12-23 08:09:43 +0000391
392#ifdef HAVE_IPV6
hassof390d2c2004-09-10 20:48:21 +0000393 tlvs_to_adj_ipv6_addrs (&tlvs, adj);
jardineb5d44e2003-12-23 08:09:43 +0000394#endif /* HAVE_IPV6 */
395
396 /* lets take care of the expiry */
hassof390d2c2004-09-10 20:48:21 +0000397 THREAD_TIMER_OFF (adj->t_expire);
398 THREAD_TIMER_ON (master, adj->t_expire, isis_adj_expire, adj,
399 (long) adj->hold_time);
jardineb5d44e2003-12-23 08:09:43 +0000400
401 /* 8.2.5.2 a) a match was detected */
hassof390d2c2004-09-10 20:48:21 +0000402 if (area_match (circuit->area->area_addrs, tlvs.area_addrs))
403 {
404 /* 8.2.5.2 a) 2) If the system is L1 - table 5 */
405 if (circuit->area->is_type == IS_LEVEL_1)
406 {
407 switch (hdr->circuit_t)
408 {
409 case IS_LEVEL_1:
410 case IS_LEVEL_1_AND_2:
411 if (adj->adj_state != ISIS_ADJ_UP)
412 {
413 /* (4) adj state up */
414 isis_adj_state_change (adj, ISIS_ADJ_UP, NULL);
415 /* (5) adj usage level 1 */
416 adj->adj_usage = ISIS_ADJ_LEVEL1;
417 }
418 else if (adj->adj_usage == ISIS_ADJ_LEVEL1)
419 {
420 ; /* accept */
421 }
422 break;
423 case IS_LEVEL_2:
424 if (adj->adj_state != ISIS_ADJ_UP)
425 {
426 /* (7) reject - wrong system type event */
427 zlog_warn ("wrongSystemType");
428 return ISIS_WARNING; /* Reject */
429 }
430 else if (adj->adj_usage == ISIS_ADJ_LEVEL1)
431 {
432 /* (6) down - wrong system */
433 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
434 }
435 break;
436 }
437 }
jardineb5d44e2003-12-23 08:09:43 +0000438
hassof390d2c2004-09-10 20:48:21 +0000439 /* 8.2.5.2 a) 3) If the system is L1L2 - table 6 */
440 if (circuit->area->is_type == IS_LEVEL_1_AND_2)
441 {
442 switch (hdr->circuit_t)
443 {
444 case IS_LEVEL_1:
445 if (adj->adj_state != ISIS_ADJ_UP)
446 {
447 /* (6) adj state up */
448 isis_adj_state_change (adj, ISIS_ADJ_UP, NULL);
449 /* (7) adj usage level 1 */
450 adj->adj_usage = ISIS_ADJ_LEVEL1;
451 }
452 else if (adj->adj_usage == ISIS_ADJ_LEVEL1)
453 {
454 ; /* accept */
455 }
456 else if ((adj->adj_usage == ISIS_ADJ_LEVEL1AND2) ||
457 (adj->adj_usage == ISIS_ADJ_LEVEL2))
458 {
459 /* (8) down - wrong system */
460 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
461 }
462 break;
463 case IS_LEVEL_2:
464 if (adj->adj_state != ISIS_ADJ_UP)
465 {
466 /* (6) adj state up */
467 isis_adj_state_change (adj, ISIS_ADJ_UP, NULL);
468 /* (9) adj usage level 2 */
469 adj->adj_usage = ISIS_ADJ_LEVEL2;
470 }
471 else if ((adj->adj_usage == ISIS_ADJ_LEVEL1) ||
472 (adj->adj_usage == ISIS_ADJ_LEVEL1AND2))
473 {
474 /* (8) down - wrong system */
475 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
476 }
477 else if (adj->adj_usage == ISIS_ADJ_LEVEL2)
478 {
479 ; /* Accept */
480 }
481 break;
482 case IS_LEVEL_1_AND_2:
483 if (adj->adj_state != ISIS_ADJ_UP)
484 {
485 /* (6) adj state up */
486 isis_adj_state_change (adj, ISIS_ADJ_UP, NULL);
487 /* (10) adj usage level 1 */
488 adj->adj_usage = ISIS_ADJ_LEVEL1AND2;
489 }
490 else if ((adj->adj_usage == ISIS_ADJ_LEVEL1) ||
491 (adj->adj_usage == ISIS_ADJ_LEVEL2))
492 {
493 /* (8) down - wrong system */
494 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
495 }
496 else if (adj->adj_usage == ISIS_ADJ_LEVEL1AND2)
497 {
498 ; /* Accept */
499 }
500 break;
501 }
502 }
jardineb5d44e2003-12-23 08:09:43 +0000503
hassof390d2c2004-09-10 20:48:21 +0000504 /* 8.2.5.2 a) 4) If the system is L2 - table 7 */
505 if (circuit->area->is_type == IS_LEVEL_2)
506 {
507 switch (hdr->circuit_t)
508 {
509 case IS_LEVEL_1:
510 if (adj->adj_state != ISIS_ADJ_UP)
511 {
512 /* (5) reject - wrong system type event */
513 zlog_warn ("wrongSystemType");
514 return ISIS_WARNING; /* Reject */
515 }
516 else if ((adj->adj_usage == ISIS_ADJ_LEVEL1AND2) ||
517 (adj->adj_usage == ISIS_ADJ_LEVEL2))
518 {
519 /* (6) down - wrong system */
520 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
521 }
522 break;
523 case IS_LEVEL_1_AND_2:
524 case IS_LEVEL_2:
525 if (adj->adj_state != ISIS_ADJ_UP)
526 {
527 /* (7) adj state up */
528 isis_adj_state_change (adj, ISIS_ADJ_UP, NULL);
529 /* (8) adj usage level 2 */
530 adj->adj_usage = ISIS_ADJ_LEVEL2;
531 }
532 else if (adj->adj_usage == ISIS_ADJ_LEVEL1AND2)
533 {
534 /* (6) down - wrong system */
535 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
536 }
537 else if (adj->adj_usage == ISIS_ADJ_LEVEL2)
538 {
539 ; /* Accept */
540 }
541 break;
542 }
543 }
jardineb5d44e2003-12-23 08:09:43 +0000544 }
jardineb5d44e2003-12-23 08:09:43 +0000545 /* 8.2.5.2 b) if no match was detected */
546 else
jardineb5d44e2003-12-23 08:09:43 +0000547 {
hassof390d2c2004-09-10 20:48:21 +0000548 if (circuit->area->is_type == IS_LEVEL_1)
549 {
550 /* 8.2.5.2 b) 1) is_type L1 and adj is not up */
551 if (adj->adj_state != ISIS_ADJ_UP)
552 {
553 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Area Mismatch");
554 /* 8.2.5.2 b) 2)is_type L1 and adj is up */
555 }
556 else
557 {
558 isis_adj_state_change (adj, ISIS_ADJ_DOWN,
559 "Down - Area Mismatch");
560 }
561 }
562 /* 8.2.5.2 b 3 If the system is L2 or L1L2 - table 8 */
563 else
564 {
565 switch (hdr->circuit_t)
566 {
567 case IS_LEVEL_1:
568 if (adj->adj_state != ISIS_ADJ_UP)
569 {
570 /* (6) reject - Area Mismatch event */
571 zlog_warn ("AreaMismatch");
572 return ISIS_WARNING; /* Reject */
573 }
574 else if (adj->adj_usage == ISIS_ADJ_LEVEL1)
575 {
576 /* (7) down - area mismatch */
577 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Area Mismatch");
jardineb5d44e2003-12-23 08:09:43 +0000578
hassof390d2c2004-09-10 20:48:21 +0000579 }
580 else if ((adj->adj_usage == ISIS_ADJ_LEVEL1AND2) ||
581 (adj->adj_usage == ISIS_ADJ_LEVEL2))
582 {
583 /* (7) down - wrong system */
584 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
585 }
586 break;
587 case IS_LEVEL_1_AND_2:
588 case IS_LEVEL_2:
589 if (adj->adj_state != ISIS_ADJ_UP)
590 {
591 /* (8) adj state up */
592 isis_adj_state_change (adj, ISIS_ADJ_UP, NULL);
593 /* (9) adj usage level 2 */
594 adj->adj_usage = ISIS_ADJ_LEVEL2;
595 }
596 else if (adj->adj_usage == ISIS_ADJ_LEVEL1)
597 {
598 /* (7) down - wrong system */
599 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
600 }
601 else if (adj->adj_usage == ISIS_ADJ_LEVEL1AND2)
602 {
603 if (hdr->circuit_t == IS_LEVEL_2)
604 {
605 /* (7) down - wrong system */
606 isis_adj_state_change (adj, ISIS_ADJ_DOWN,
607 "Wrong System");
608 }
609 else
610 {
611 /* (7) down - area mismatch */
612 isis_adj_state_change (adj, ISIS_ADJ_DOWN,
613 "Area Mismatch");
614 }
615 }
616 else if (adj->adj_usage == ISIS_ADJ_LEVEL2)
617 {
618 ; /* Accept */
619 }
620 break;
621 }
622 }
jardineb5d44e2003-12-23 08:09:43 +0000623 }
jardineb5d44e2003-12-23 08:09:43 +0000624 /* 8.2.5.2 c) if the action was up - comparing circuit IDs */
625 /* FIXME - Missing parts */
626
jardineb5d44e2003-12-23 08:09:43 +0000627 /* some of my own understanding of the ISO, why the heck does
628 * it not say what should I change the system_type to...
629 */
hassof390d2c2004-09-10 20:48:21 +0000630 switch (adj->adj_usage)
631 {
jardineb5d44e2003-12-23 08:09:43 +0000632 case ISIS_ADJ_LEVEL1:
633 adj->sys_type = ISIS_SYSTYPE_L1_IS;
634 break;
635 case ISIS_ADJ_LEVEL2:
636 adj->sys_type = ISIS_SYSTYPE_L2_IS;
637 break;
638 case ISIS_ADJ_LEVEL1AND2:
639 adj->sys_type = ISIS_SYSTYPE_L2_IS;
640 break;
641 case ISIS_ADJ_NONE:
642 adj->sys_type = ISIS_SYSTYPE_UNKNOWN;
643 break;
hassof390d2c2004-09-10 20:48:21 +0000644 }
jardineb5d44e2003-12-23 08:09:43 +0000645
646 adj->circuit_t = hdr->circuit_t;
647 adj->level = hdr->circuit_t;
648
649 free_tlvs (&tlvs);
650
651 return retval;
652}
653
jardineb5d44e2003-12-23 08:09:43 +0000654/*
655 * Process IS-IS LAN Level 1/2 Hello PDU
656 */
hassof390d2c2004-09-10 20:48:21 +0000657static int
658process_lan_hello (int level, struct isis_circuit *circuit, u_char * ssnpa)
jardineb5d44e2003-12-23 08:09:43 +0000659{
660 int retval = ISIS_OK;
661 struct isis_lan_hello_hdr hdr;
662 struct isis_adjacency *adj;
663 u_int32_t expected = 0, found;
664 struct tlvs tlvs;
665 u_char *snpa;
paul1eb8ef22005-04-07 07:30:20 +0000666 struct listnode *node, *nnode;
jardineb5d44e2003-12-23 08:09:43 +0000667
hassof390d2c2004-09-10 20:48:21 +0000668 if ((stream_get_endp (circuit->rcv_stream) -
669 stream_get_getp (circuit->rcv_stream)) < ISIS_LANHELLO_HDRLEN)
670 {
671 zlog_warn ("Packet too short");
672 return ISIS_WARNING;
jardineb5d44e2003-12-23 08:09:43 +0000673 }
hassof390d2c2004-09-10 20:48:21 +0000674
675 if (circuit->ext_domain)
676 {
hasso529d65b2004-12-24 00:14:50 +0000677 zlog_debug ("level %d LAN Hello received over circuit with "
678 "externalDomain = true", level);
hassof390d2c2004-09-10 20:48:21 +0000679 return ISIS_WARNING;
680 }
681
682 if (!accept_level (level, circuit->circuit_is_type))
683 {
684 if (isis->debugs & DEBUG_ADJ_PACKETS)
685 {
hasso529d65b2004-12-24 00:14:50 +0000686 zlog_debug ("ISIS-Adj (%s): Interface level mismatch, %s",
687 circuit->area->area_tag, circuit->interface->name);
hassof390d2c2004-09-10 20:48:21 +0000688 }
689 return ISIS_WARNING;
690 }
jardineb5d44e2003-12-23 08:09:43 +0000691
692#if 0
693 /* Cisco's debug message compatability */
hassof390d2c2004-09-10 20:48:21 +0000694 if (!accept_level (level, circuit->area->is_type))
695 {
696 if (isis->debugs & DEBUG_ADJ_PACKETS)
697 {
hasso529d65b2004-12-24 00:14:50 +0000698 zlog_debug ("ISIS-Adj (%s): is type mismatch",
699 circuit->area->area_tag);
hassof390d2c2004-09-10 20:48:21 +0000700 }
701 return ISIS_WARNING;
jardineb5d44e2003-12-23 08:09:43 +0000702 }
jardineb5d44e2003-12-23 08:09:43 +0000703#endif
704 /*
705 * Fill the header
706 */
707 hdr.circuit_t = stream_getc (circuit->rcv_stream);
708 stream_get (hdr.source_id, circuit->rcv_stream, ISIS_SYS_ID_LEN);
709 hdr.hold_time = stream_getw (circuit->rcv_stream);
hassof390d2c2004-09-10 20:48:21 +0000710 hdr.pdu_len = stream_getw (circuit->rcv_stream);
711 hdr.prio = stream_getc (circuit->rcv_stream);
jardineb5d44e2003-12-23 08:09:43 +0000712 stream_get (hdr.lan_id, circuit->rcv_stream, ISIS_SYS_ID_LEN + 1);
713
714 if (hdr.circuit_t != IS_LEVEL_1 && hdr.circuit_t != IS_LEVEL_2 &&
hassof390d2c2004-09-10 20:48:21 +0000715 hdr.circuit_t != IS_LEVEL_1_AND_2)
716 {
717 zlog_warn ("Level %d LAN Hello with Circuit Type %d", level,
718 hdr.circuit_t);
719 return ISIS_ERROR;
720 }
jardineb5d44e2003-12-23 08:09:43 +0000721 /*
722 * Then get the tlvs
723 */
724 expected |= TLVFLAG_AUTH_INFO;
725 expected |= TLVFLAG_AREA_ADDRS;
726 expected |= TLVFLAG_LAN_NEIGHS;
727 expected |= TLVFLAG_NLPID;
728 expected |= TLVFLAG_IPV4_ADDR;
729 expected |= TLVFLAG_IPV6_ADDR;
730
731 retval = parse_tlvs (circuit->area->area_tag,
hassof390d2c2004-09-10 20:48:21 +0000732 STREAM_PNT (circuit->rcv_stream),
733 hdr.pdu_len - ISIS_LANHELLO_HDRLEN -
734 ISIS_FIXED_HDR_LEN, &expected, &found, &tlvs);
jardineb5d44e2003-12-23 08:09:43 +0000735
hassof390d2c2004-09-10 20:48:21 +0000736 if (retval > ISIS_WARNING)
737 {
738 zlog_warn ("parse_tlvs() failed");
739 goto out;
740 }
jardineb5d44e2003-12-23 08:09:43 +0000741
hassof390d2c2004-09-10 20:48:21 +0000742 if (!(found & TLVFLAG_AREA_ADDRS))
743 {
744 zlog_warn ("No Area addresses TLV in Level %d LAN IS to IS hello",
745 level);
jardineb5d44e2003-12-23 08:09:43 +0000746 retval = ISIS_WARNING;
747 goto out;
748 }
hassof390d2c2004-09-10 20:48:21 +0000749
750 if (circuit->passwd.type)
751 {
752 if (!(found & TLVFLAG_AUTH_INFO) ||
753 authentication_check (&circuit->passwd, &tlvs.auth_info))
754 {
755 isis_event_auth_failure (circuit->area->area_tag,
756 "LAN hello authentication failure",
757 hdr.source_id);
758 retval = ISIS_WARNING;
759 goto out;
760 }
761 }
jardineb5d44e2003-12-23 08:09:43 +0000762
763 /*
764 * Accept the level 1 adjacency only if a match between local and
765 * remote area addresses is found
766 */
hassof390d2c2004-09-10 20:48:21 +0000767 if (level == 1 && !area_match (circuit->area->area_addrs, tlvs.area_addrs))
768 {
769 if (isis->debugs & DEBUG_ADJ_PACKETS)
770 {
hasso529d65b2004-12-24 00:14:50 +0000771 zlog_debug ("ISIS-Adj (%s): Area mismatch, level %d IIH on %s",
772 circuit->area->area_tag, level,
773 circuit->interface->name);
hassof390d2c2004-09-10 20:48:21 +0000774 }
775 retval = ISIS_OK;
776 goto out;
jardineb5d44e2003-12-23 08:09:43 +0000777 }
jardineb5d44e2003-12-23 08:09:43 +0000778
779 /*
780 * it's own IIH PDU - discard silently
hassof390d2c2004-09-10 20:48:21 +0000781 */
782 if (!memcmp (circuit->u.bc.snpa, ssnpa, ETH_ALEN))
783 {
hasso529d65b2004-12-24 00:14:50 +0000784 zlog_debug ("ISIS-Adj (%s): it's own IIH PDU - discarded",
785 circuit->area->area_tag);
jardineb5d44e2003-12-23 08:09:43 +0000786
hassof390d2c2004-09-10 20:48:21 +0000787 retval = ISIS_OK;
788 goto out;
789 }
jardineb5d44e2003-12-23 08:09:43 +0000790
791 /*
792 * check if it's own interface ip match iih ip addrs
793 */
hassof390d2c2004-09-10 20:48:21 +0000794 if (!(found & TLVFLAG_IPV4_ADDR)
795 || !ip_match (circuit->ip_addrs, tlvs.ipv4_addrs))
796 {
hasso529d65b2004-12-24 00:14:50 +0000797 zlog_debug
hassof390d2c2004-09-10 20:48:21 +0000798 ("ISIS-Adj: No usable IP interface addresses in LAN IIH from %s\n",
799 circuit->interface->name);
800 retval = ISIS_WARNING;
801 goto out;
802 }
jardineb5d44e2003-12-23 08:09:43 +0000803
804 adj = isis_adj_lookup (hdr.source_id, circuit->u.bc.adjdb[level - 1]);
hassof390d2c2004-09-10 20:48:21 +0000805 if (!adj)
806 {
807 /*
808 * Do as in 8.4.2.5
809 */
810 adj = isis_new_adj (hdr.source_id, ssnpa, level, circuit);
811 if (adj == NULL)
hasso13c48f72004-09-10 21:19:13 +0000812 {
813 retval = ISIS_ERROR;
814 goto out;
815 }
jardineb5d44e2003-12-23 08:09:43 +0000816
hassof390d2c2004-09-10 20:48:21 +0000817 adj->level = level;
818 isis_adj_state_change (adj, ISIS_ADJ_INITIALIZING, NULL);
jardineb5d44e2003-12-23 08:09:43 +0000819
hassof390d2c2004-09-10 20:48:21 +0000820 if (level == 1)
821 {
822 adj->sys_type = ISIS_SYSTYPE_L1_IS;
823 }
824 else
825 {
826 adj->sys_type = ISIS_SYSTYPE_L2_IS;
827 }
828 list_delete_all_node (circuit->u.bc.lan_neighs[level - 1]);
829 isis_adj_build_neigh_list (circuit->u.bc.adjdb[level - 1],
830 circuit->u.bc.lan_neighs[level - 1]);
jardineb5d44e2003-12-23 08:09:43 +0000831 }
jardineb5d44e2003-12-23 08:09:43 +0000832
hassoa211d652004-09-20 14:55:29 +0000833 if(adj->dis_record[level-1].dis==ISIS_IS_DIS)
834 switch (level)
835 {
836 case 1:
837 if (memcmp (circuit->u.bc.l1_desig_is, hdr.lan_id, ISIS_SYS_ID_LEN + 1))
838 {
839 thread_add_event (master, isis_event_dis_status_change, circuit, 0);
hasso64a7afd2004-09-14 11:05:13 +0000840 memcpy (&circuit->u.bc.l1_desig_is, hdr.lan_id,
841 ISIS_SYS_ID_LEN + 1);
hassoa211d652004-09-20 14:55:29 +0000842 }
843 break;
844 case 2:
845 if (memcmp (circuit->u.bc.l2_desig_is, hdr.lan_id, ISIS_SYS_ID_LEN + 1))
846 {
847 thread_add_event (master, isis_event_dis_status_change, circuit, 0);
hasso64a7afd2004-09-14 11:05:13 +0000848 memcpy (&circuit->u.bc.l2_desig_is, hdr.lan_id,
849 ISIS_SYS_ID_LEN + 1);
hassoa211d652004-09-20 14:55:29 +0000850 }
851 break;
852 }
jardineb5d44e2003-12-23 08:09:43 +0000853
854 adj->hold_time = hdr.hold_time;
hassof390d2c2004-09-10 20:48:21 +0000855 adj->last_upd = time (NULL);
856 adj->prio[level - 1] = hdr.prio;
jardineb5d44e2003-12-23 08:09:43 +0000857
858 memcpy (adj->lanid, hdr.lan_id, ISIS_SYS_ID_LEN + 1);
859
860 /* which protocol are spoken ??? */
hassof390d2c2004-09-10 20:48:21 +0000861 if (found & TLVFLAG_NLPID)
jardineb5d44e2003-12-23 08:09:43 +0000862 tlvs_to_adj_nlpids (&tlvs, adj);
863
864 /* we need to copy addresses to the adj */
hassof390d2c2004-09-10 20:48:21 +0000865 if (found & TLVFLAG_IPV4_ADDR)
jardineb5d44e2003-12-23 08:09:43 +0000866 tlvs_to_adj_ipv4_addrs (&tlvs, adj);
867
868#ifdef HAVE_IPV6
hassof390d2c2004-09-10 20:48:21 +0000869 if (found & TLVFLAG_IPV6_ADDR)
jardineb5d44e2003-12-23 08:09:43 +0000870 tlvs_to_adj_ipv6_addrs (&tlvs, adj);
871#endif /* HAVE_IPV6 */
872
873 adj->circuit_t = hdr.circuit_t;
874
875 /* lets take care of the expiry */
hassof390d2c2004-09-10 20:48:21 +0000876 THREAD_TIMER_OFF (adj->t_expire);
877 THREAD_TIMER_ON (master, adj->t_expire, isis_adj_expire, adj,
878 (long) adj->hold_time);
jardineb5d44e2003-12-23 08:09:43 +0000879
880 /*
881 * If the snpa for this circuit is found from LAN Neighbours TLV
882 * we have two-way communication -> adjacency can be put to state "up"
883 */
884
hassof390d2c2004-09-10 20:48:21 +0000885 if (found & TLVFLAG_LAN_NEIGHS)
886 {
887 if (adj->adj_state != ISIS_ADJ_UP)
888 {
paul1eb8ef22005-04-07 07:30:20 +0000889 for (ALL_LIST_ELEMENTS (tlvs.lan_neighs, node, nnode, snpa))
hassof390d2c2004-09-10 20:48:21 +0000890 if (!memcmp (snpa, circuit->u.bc.snpa, ETH_ALEN))
891 {
892 isis_adj_state_change (adj, ISIS_ADJ_UP,
893 "own SNPA found in LAN Neighbours TLV");
894 }
895 }
jardineb5d44e2003-12-23 08:09:43 +0000896 }
jardineb5d44e2003-12-23 08:09:43 +0000897
hassof390d2c2004-09-10 20:48:21 +0000898out:
jardineb5d44e2003-12-23 08:09:43 +0000899 /* DEBUG_ADJ_PACKETS */
hassof390d2c2004-09-10 20:48:21 +0000900 if (isis->debugs & DEBUG_ADJ_PACKETS)
901 {
902 /* FIXME: is this place right? fix missing info */
hasso529d65b2004-12-24 00:14:50 +0000903 zlog_debug ("ISIS-Adj (%s): Rcvd L%d LAN IIH from %s on %s, cirType %s, "
904 "cirID %u, length %ld",
905 circuit->area->area_tag,
906 level, snpa_print (ssnpa), circuit->interface->name,
907 circuit_t2string (circuit->circuit_is_type),
hasso29e50b22005-09-01 18:18:47 +0000908 circuit->circuit_id,
909 /* FIXME: use %z when we stop supporting old compilers. */
910 (unsigned long) stream_get_endp (circuit->rcv_stream));
hassof390d2c2004-09-10 20:48:21 +0000911 }
jardineb5d44e2003-12-23 08:09:43 +0000912
913 free_tlvs (&tlvs);
914
915 return retval;
916}
917
918/*
919 * Process Level 1/2 Link State
920 * ISO - 10589
921 * Section 7.3.15.1 - Action on receipt of a link state PDU
hassof390d2c2004-09-10 20:48:21 +0000922 */
923static int
924process_lsp (int level, struct isis_circuit *circuit, u_char * ssnpa)
jardineb5d44e2003-12-23 08:09:43 +0000925{
926 struct isis_link_state_hdr *hdr;
927 struct isis_adjacency *adj = NULL;
928 struct isis_lsp *lsp, *lsp0 = NULL;
929 int retval = ISIS_OK, comp = 0;
930 u_char lspid[ISIS_SYS_ID_LEN + 2];
931 struct isis_passwd *passwd;
932
933 /* Sanity check - FIXME: move to correct place */
hassof390d2c2004-09-10 20:48:21 +0000934 if ((stream_get_endp (circuit->rcv_stream) -
935 stream_get_getp (circuit->rcv_stream)) < ISIS_LSP_HDR_LEN)
936 {
937 zlog_warn ("Packet too short");
938 return ISIS_WARNING;
939 }
jardineb5d44e2003-12-23 08:09:43 +0000940
941 /* Reference the header */
hassof390d2c2004-09-10 20:48:21 +0000942 hdr = (struct isis_link_state_hdr *) STREAM_PNT (circuit->rcv_stream);
jardineb5d44e2003-12-23 08:09:43 +0000943
hassof390d2c2004-09-10 20:48:21 +0000944 if (isis->debugs & DEBUG_UPDATE_PACKETS)
945 {
hasso529d65b2004-12-24 00:14:50 +0000946 zlog_debug ("ISIS-Upd (%s): Rcvd L%d LSP %s, seq 0x%08x, cksum 0x%04x, "
947 "lifetime %us, len %lu, on %s",
948 circuit->area->area_tag,
949 level,
950 rawlspid_print (hdr->lsp_id),
951 ntohl (hdr->seq_num),
952 ntohs (hdr->checksum),
953 ntohs (hdr->rem_lifetime),
hasso29e50b22005-09-01 18:18:47 +0000954 /* FIXME: use %z when we stop supporting old compilers. */
955 (unsigned long) stream_get_endp (circuit->rcv_stream),
paul15935e92005-05-03 09:27:23 +0000956 circuit->interface->name);
hassof390d2c2004-09-10 20:48:21 +0000957 }
jardineb5d44e2003-12-23 08:09:43 +0000958
959 assert (ntohs (hdr->pdu_len) > ISIS_LSP_HDR_LEN);
960
961 /* Checksum sanity check - FIXME: move to correct place */
962 /* 12 = sysid+pdu+remtime */
hassof390d2c2004-09-10 20:48:21 +0000963 if (iso_csum_verify (STREAM_PNT (circuit->rcv_stream) + 4,
964 ntohs (hdr->pdu_len) - 12, &hdr->checksum))
965 {
hasso529d65b2004-12-24 00:14:50 +0000966 zlog_debug ("ISIS-Upd (%s): LSP %s invalid LSP checksum 0x%04x",
967 circuit->area->area_tag,
968 rawlspid_print (hdr->lsp_id), ntohs (hdr->checksum));
jardineb5d44e2003-12-23 08:09:43 +0000969
hassof390d2c2004-09-10 20:48:21 +0000970 return ISIS_WARNING;
971 }
jardineb5d44e2003-12-23 08:09:43 +0000972
973 /* 7.3.15.1 a) 1 - external domain circuit will discard lsps */
hassof390d2c2004-09-10 20:48:21 +0000974 if (circuit->ext_domain)
975 {
hasso529d65b2004-12-24 00:14:50 +0000976 zlog_debug
hassof390d2c2004-09-10 20:48:21 +0000977 ("ISIS-Upd (%s): LSP %s received at level %d over circuit with "
978 "externalDomain = true", circuit->area->area_tag,
979 rawlspid_print (hdr->lsp_id), level);
jardineb5d44e2003-12-23 08:09:43 +0000980
hassof390d2c2004-09-10 20:48:21 +0000981 return ISIS_WARNING;
982 }
jardineb5d44e2003-12-23 08:09:43 +0000983
984 /* 7.3.15.1 a) 2,3 - manualL2OnlyMode not implemented */
hassof390d2c2004-09-10 20:48:21 +0000985 if (!accept_level (level, circuit->circuit_is_type))
986 {
hasso529d65b2004-12-24 00:14:50 +0000987 zlog_debug ("ISIS-Upd (%s): LSP %s received at level %d over circuit of"
988 " type %s",
989 circuit->area->area_tag,
990 rawlspid_print (hdr->lsp_id),
991 level, circuit_t2string (circuit->circuit_is_type));
jardineb5d44e2003-12-23 08:09:43 +0000992
hassof390d2c2004-09-10 20:48:21 +0000993 return ISIS_WARNING;
994 }
jardineb5d44e2003-12-23 08:09:43 +0000995
996 /* 7.3.15.1 a) 4 - need to make sure IDLength matches */
997
998 /* 7.3.15.1 a) 5 - maximum area match, can be ommited since we only use 3 */
999
1000 /* 7.3.15.1 a) 7 - password check */
1001 (level == ISIS_LEVEL1) ? (passwd = &circuit->area->area_passwd) :
1002 (passwd = &circuit->area->domain_passwd);
hassof390d2c2004-09-10 20:48:21 +00001003 if (passwd->type)
1004 {
1005 if (isis_lsp_authinfo_check (circuit->rcv_stream, circuit->area,
1006 ntohs (hdr->pdu_len), passwd))
1007 {
1008 isis_event_auth_failure (circuit->area->area_tag,
1009 "LSP authentication failure", hdr->lsp_id);
1010 return ISIS_WARNING;
1011 }
jardineb5d44e2003-12-23 08:09:43 +00001012 }
jardineb5d44e2003-12-23 08:09:43 +00001013 /* Find the LSP in our database and compare it to this Link State header */
1014 lsp = lsp_search (hdr->lsp_id, circuit->area->lspdb[level - 1]);
1015 if (lsp)
hassof390d2c2004-09-10 20:48:21 +00001016 comp = lsp_compare (circuit->area->area_tag, lsp, hdr->seq_num,
1017 hdr->checksum, hdr->rem_lifetime);
1018 if (lsp && (lsp->own_lsp
jardineb5d44e2003-12-23 08:09:43 +00001019#ifdef TOPOLOGY_GENERATE
hassof390d2c2004-09-10 20:48:21 +00001020 || lsp->from_topology
jardineb5d44e2003-12-23 08:09:43 +00001021#endif /* TOPOLOGY_GENERATE */
hassof390d2c2004-09-10 20:48:21 +00001022 ))
jardineb5d44e2003-12-23 08:09:43 +00001023 goto dontcheckadj;
1024
1025 /* 7.3.15.1 a) 6 - Must check that we have an adjacency of the same level */
1026 /* for broadcast circuits, snpa should be compared */
1027 /* FIXME : Point To Point */
1028
hassof390d2c2004-09-10 20:48:21 +00001029 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
1030 {
1031 adj = isis_adj_lookup_snpa (ssnpa, circuit->u.bc.adjdb[level - 1]);
1032 if (!adj)
1033 {
hasso529d65b2004-12-24 00:14:50 +00001034 zlog_debug ("(%s): DS ======= LSP %s, seq 0x%08x, cksum 0x%04x, "
1035 "lifetime %us on %s",
1036 circuit->area->area_tag,
1037 rawlspid_print (hdr->lsp_id),
1038 ntohl (hdr->seq_num),
1039 ntohs (hdr->checksum),
1040 ntohs (hdr->rem_lifetime), circuit->interface->name);
hassof390d2c2004-09-10 20:48:21 +00001041 return ISIS_WARNING; /* Silently discard */
1042 }
jardineb5d44e2003-12-23 08:09:43 +00001043 }
jardineb5d44e2003-12-23 08:09:43 +00001044
1045 /* for non broadcast, we just need to find same level adj */
hassof390d2c2004-09-10 20:48:21 +00001046 else
1047 {
1048 /* If no adj, or no sharing of level */
1049 if (!circuit->u.p2p.neighbor)
1050 {
1051 return ISIS_OK; /* Silently discard */
1052 }
1053 else
1054 {
1055 if (((level == 1) &&
1056 (circuit->u.p2p.neighbor->adj_usage == ISIS_ADJ_LEVEL2)) ||
1057 ((level == 2) &&
1058 (circuit->u.p2p.neighbor->adj_usage == ISIS_ADJ_LEVEL1)))
1059 return ISIS_WARNING; /* Silently discard */
1060 }
jardineb5d44e2003-12-23 08:09:43 +00001061 }
hassof390d2c2004-09-10 20:48:21 +00001062dontcheckadj:
jardineb5d44e2003-12-23 08:09:43 +00001063 /* 7.3.15.1 a) 7 - Passwords for level 1 - not implemented */
1064
1065 /* 7.3.15.1 a) 8 - Passwords for level 2 - not implemented */
1066
hassof390d2c2004-09-10 20:48:21 +00001067 /* 7.3.15.1 a) 9 - OriginatingLSPBufferSize - not implemented FIXME: do it */
jardineb5d44e2003-12-23 08:09:43 +00001068
hassof390d2c2004-09-10 20:48:21 +00001069 /* 7.3.15.1 b) - If the remaining life time is 0, we perform 7.3.16.4 */
1070 if (hdr->rem_lifetime == 0)
1071 {
1072 if (!lsp)
1073 {
1074 /* 7.3.16.4 a) 1) No LSP in db -> send an ack, but don't save */
1075 /* only needed on explicit update, eg - p2p */
1076 if (circuit->circ_type == CIRCUIT_T_P2P)
1077 ack_lsp (hdr, circuit, level);
1078 return retval; /* FIXME: do we need a purge? */
1079 }
1080 else
1081 {
1082 if (memcmp (hdr->lsp_id, isis->sysid, ISIS_SYS_ID_LEN))
1083 {
1084 /* LSP by some other system -> do 7.3.16.4 b) */
1085 /* 7.3.16.4 b) 1) */
1086 if (comp == LSP_NEWER)
1087 {
1088 lsp_update (lsp, hdr, circuit->rcv_stream, circuit->area);
1089 /* ii */
1090 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
1091 /* iii */
1092 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
1093 /* v */
1094 ISIS_FLAGS_CLEAR_ALL (lsp->SSNflags); /* FIXME: OTHER than c */
1095 /* iv */
1096 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1097 ISIS_SET_FLAG (lsp->SSNflags, circuit);
jardineb5d44e2003-12-23 08:09:43 +00001098
hassof390d2c2004-09-10 20:48:21 +00001099 } /* 7.3.16.4 b) 2) */
1100 else if (comp == LSP_EQUAL)
1101 {
1102 /* i */
1103 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
1104 /* ii */
1105 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1106 ISIS_SET_FLAG (lsp->SSNflags, circuit);
1107 } /* 7.3.16.4 b) 3) */
1108 else
1109 {
1110 ISIS_SET_FLAG (lsp->SRMflags, circuit);
1111 ISIS_CLEAR_FLAG (lsp->SSNflags, circuit);
1112 }
1113 }
1114 else
1115 {
1116 /* our own LSP -> 7.3.16.4 c) */
1117 if (LSP_PSEUDO_ID (lsp->lsp_header->lsp_id) !=
1118 circuit->circuit_id
1119 || (LSP_PSEUDO_ID (lsp->lsp_header->lsp_id) ==
1120 circuit->circuit_id
1121 && circuit->u.bc.is_dr[level - 1] == 1))
1122 {
1123 lsp->lsp_header->seq_num = htonl (ntohl (hdr->seq_num) + 1);
hassoc89c05d2005-09-04 21:36:36 +00001124 if (isis->debugs & DEBUG_UPDATE_PACKETS)
1125 zlog_debug ("LSP LEN: %d",
1126 ntohs (lsp->lsp_header->pdu_len));
hassof390d2c2004-09-10 20:48:21 +00001127 iso_csum_create (STREAM_DATA (lsp->pdu) + 12,
1128 ntohs (lsp->lsp_header->pdu_len) - 12, 12);
1129 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
hassoc89c05d2005-09-04 21:36:36 +00001130 if (isis->debugs & DEBUG_UPDATE_PACKETS)
1131 zlog_debug ("ISIS-Upd (%s): (1) re-originating LSP %s new "
1132 "seq 0x%08x", circuit->area->area_tag,
1133 rawlspid_print (hdr->lsp_id),
1134 ntohl (lsp->lsp_header->seq_num));
hassof390d2c2004-09-10 20:48:21 +00001135 lsp->lsp_header->rem_lifetime =
1136 htons (isis_jitter
1137 (circuit->area->max_lsp_lifetime[level - 1],
1138 MAX_AGE_JITTER));
1139 }
1140 else
1141 {
1142 /* Got purge for own pseudo-lsp, and we are not DR */
1143 lsp_purge_dr (lsp->lsp_header->lsp_id, circuit, level);
1144 }
1145 }
1146 }
1147 return retval;
jardineb5d44e2003-12-23 08:09:43 +00001148 }
jardineb5d44e2003-12-23 08:09:43 +00001149 /* 7.3.15.1 c) - If this is our own lsp and we don't have it initiate a
1150 * purge */
hassof390d2c2004-09-10 20:48:21 +00001151 if (memcmp (hdr->lsp_id, isis->sysid, ISIS_SYS_ID_LEN) == 0)
1152 {
1153 if (!lsp)
1154 {
1155 /* 7.3.16.4: initiate a purge */
1156 lsp_purge_non_exist (hdr, circuit->area);
1157 return ISIS_OK;
1158 }
1159 /* 7.3.15.1 d) - If this is our own lsp and we have it */
1160
1161 /* In 7.3.16.1, If an Intermediate system R somewhere in the domain
1162 * has information that the current sequence number for source S is
1163 * "greater" than that held by S, ... */
1164
1165 else if (ntohl (hdr->seq_num) > ntohl (lsp->lsp_header->seq_num))
1166 {
1167 /* 7.3.16.1 */
1168 lsp->lsp_header->seq_num = htonl (ntohl (hdr->seq_num) + 1);
1169
1170 iso_csum_create (STREAM_DATA (lsp->pdu) + 12,
1171 ntohs (lsp->lsp_header->pdu_len) - 12, 12);
1172
1173 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
hassoc89c05d2005-09-04 21:36:36 +00001174 if (isis->debugs & DEBUG_UPDATE_PACKETS)
1175 zlog_debug ("ISIS-Upd (%s): (2) re-originating LSP %s new seq "
1176 "0x%08x", circuit->area->area_tag,
1177 rawlspid_print (hdr->lsp_id),
1178 ntohl (lsp->lsp_header->seq_num));
hassof390d2c2004-09-10 20:48:21 +00001179 lsp->lsp_header->rem_lifetime =
1180 htons (isis_jitter
1181 (circuit->area->max_lsp_lifetime[level - 1],
1182 MAX_AGE_JITTER));
1183 }
jardineb5d44e2003-12-23 08:09:43 +00001184 }
hassof390d2c2004-09-10 20:48:21 +00001185 else
1186 {
1187 /* 7.3.15.1 e) - This lsp originated on another system */
jardineb5d44e2003-12-23 08:09:43 +00001188
hassof390d2c2004-09-10 20:48:21 +00001189 /* 7.3.15.1 e) 1) LSP newer than the one in db or no LSP in db */
1190 if ((!lsp || comp == LSP_NEWER))
1191 {
1192 /* i */
1193 if (lsp)
1194 {
jardineb5d44e2003-12-23 08:09:43 +00001195#ifdef EXTREME_DEBUG
hasso529d65b2004-12-24 00:14:50 +00001196 zlog_debug ("level %d number is - %ld", level,
1197 circuit->area->lspdb[level - 1]->dict_nodecount);
jardineb5d44e2003-12-23 08:09:43 +00001198#endif /* EXTREME DEBUG */
hassof390d2c2004-09-10 20:48:21 +00001199 lsp_search_and_destroy (hdr->lsp_id,
1200 circuit->area->lspdb[level - 1]);
1201 /* exists, so we overwrite */
jardineb5d44e2003-12-23 08:09:43 +00001202#ifdef EXTREME_DEBUG
hasso529d65b2004-12-24 00:14:50 +00001203 zlog_debug ("level %d number is - %ld", level,
1204 circuit->area->lspdb[level - 1]->dict_nodecount);
jardineb5d44e2003-12-23 08:09:43 +00001205#endif /* EXTREME DEBUG */
hassof390d2c2004-09-10 20:48:21 +00001206 }
1207 /*
1208 * If this lsp is a frag, need to see if we have zero lsp present
1209 */
1210 if (LSP_FRAGMENT (hdr->lsp_id) != 0)
1211 {
1212 memcpy (lspid, hdr->lsp_id, ISIS_SYS_ID_LEN + 1);
1213 LSP_FRAGMENT (lspid) = 0;
1214 lsp0 = lsp_search (lspid, circuit->area->lspdb[level - 1]);
1215 if (!lsp0)
1216 {
hasso529d65b2004-12-24 00:14:50 +00001217 zlog_debug ("Got lsp frag, while zero lsp not database");
hassof390d2c2004-09-10 20:48:21 +00001218 return ISIS_OK;
1219 }
1220 }
1221 lsp =
1222 lsp_new_from_stream_ptr (circuit->rcv_stream,
1223 ntohs (hdr->pdu_len), lsp0,
1224 circuit->area);
1225 lsp->level = level;
1226 lsp->adj = adj;
1227 lsp_insert (lsp, circuit->area->lspdb[level - 1]);
1228 /* ii */
1229 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
1230 /* iii */
1231 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
jardineb5d44e2003-12-23 08:09:43 +00001232
hassof390d2c2004-09-10 20:48:21 +00001233 /* iv */
1234 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1235 ISIS_SET_FLAG (lsp->SSNflags, circuit);
1236 /* FIXME: v) */
1237 }
1238 /* 7.3.15.1 e) 2) LSP equal to the one in db */
1239 else if (comp == LSP_EQUAL)
1240 {
1241 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
1242 lsp_update (lsp, hdr, circuit->rcv_stream, circuit->area);
1243 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1244 {
1245 ISIS_SET_FLAG (lsp->SSNflags, circuit);
1246 }
1247 }
1248 /* 7.3.15.1 e) 3) LSP older than the one in db */
1249 else
1250 {
1251 ISIS_SET_FLAG (lsp->SRMflags, circuit);
1252 ISIS_CLEAR_FLAG (lsp->SSNflags, circuit);
1253 }
jardineb5d44e2003-12-23 08:09:43 +00001254 }
jardineb5d44e2003-12-23 08:09:43 +00001255 if (lsp)
1256 lsp->adj = adj;
1257 return retval;
1258}
1259
1260/*
1261 * Process Sequence Numbers
1262 * ISO - 10589
1263 * Section 7.3.15.2 - Action on receipt of a sequence numbers PDU
1264 */
1265
hasso92365882005-01-18 13:53:33 +00001266static int
hassof390d2c2004-09-10 20:48:21 +00001267process_snp (int snp_type, int level, struct isis_circuit *circuit,
1268 u_char * ssnpa)
jardineb5d44e2003-12-23 08:09:43 +00001269{
1270 int retval = ISIS_OK;
1271 int cmp, own_lsp;
1272 char typechar = ' ';
1273 int len;
1274 struct isis_adjacency *adj;
1275 struct isis_complete_seqnum_hdr *chdr = NULL;
1276 struct isis_partial_seqnum_hdr *phdr = NULL;
1277 uint32_t found = 0, expected = 0;
1278 struct isis_lsp *lsp;
1279 struct lsp_entry *entry;
paul1eb8ef22005-04-07 07:30:20 +00001280 struct listnode *node, *nnode;
1281 struct listnode *node2, *nnode2;
jardineb5d44e2003-12-23 08:09:43 +00001282 struct tlvs tlvs;
1283 struct list *lsp_list = NULL;
1284 struct isis_passwd *passwd;
1285
hassof390d2c2004-09-10 20:48:21 +00001286 if (snp_type == ISIS_SNP_CSNP_FLAG)
1287 {
1288 /* getting the header info */
1289 typechar = 'C';
1290 chdr =
1291 (struct isis_complete_seqnum_hdr *) STREAM_PNT (circuit->rcv_stream);
1292 circuit->rcv_stream->getp += ISIS_CSNP_HDRLEN;
1293 len = ntohs (chdr->pdu_len);
1294 if (len < ISIS_CSNP_HDRLEN)
1295 {
1296 zlog_warn ("Received a CSNP with bogus length!");
1297 return ISIS_OK;
1298 }
jardineb5d44e2003-12-23 08:09:43 +00001299 }
hassof390d2c2004-09-10 20:48:21 +00001300 else
1301 {
1302 typechar = 'P';
1303 phdr =
1304 (struct isis_partial_seqnum_hdr *) STREAM_PNT (circuit->rcv_stream);
1305 circuit->rcv_stream->getp += ISIS_PSNP_HDRLEN;
1306 len = ntohs (phdr->pdu_len);
1307 if (len < ISIS_PSNP_HDRLEN)
1308 {
1309 zlog_warn ("Received a CSNP with bogus length!");
1310 return ISIS_OK;
1311 }
jardineb5d44e2003-12-23 08:09:43 +00001312 }
jardineb5d44e2003-12-23 08:09:43 +00001313
1314 /* 7.3.15.2 a) 1 - external domain circuit will discard snp pdu */
hassof390d2c2004-09-10 20:48:21 +00001315 if (circuit->ext_domain)
1316 {
jardineb5d44e2003-12-23 08:09:43 +00001317
hasso529d65b2004-12-24 00:14:50 +00001318 zlog_debug ("ISIS-Snp (%s): Rcvd L%d %cSNP on %s, "
1319 "skipping: circuit externalDomain = true",
1320 circuit->area->area_tag,
1321 level, typechar, circuit->interface->name);
jardineb5d44e2003-12-23 08:09:43 +00001322
1323 return ISIS_OK;
1324 }
hassof390d2c2004-09-10 20:48:21 +00001325
1326 /* 7.3.15.2 a) 2,3 - manualL2OnlyMode not implemented */
1327 if (!accept_level (level, circuit->circuit_is_type))
1328 {
1329
hasso529d65b2004-12-24 00:14:50 +00001330 zlog_debug ("ISIS-Snp (%s): Rcvd L%d %cSNP on %s, "
1331 "skipping: circuit type %s does not match level %d",
1332 circuit->area->area_tag,
1333 level,
1334 typechar,
1335 circuit->interface->name,
1336 circuit_t2string (circuit->circuit_is_type), level);
hassof390d2c2004-09-10 20:48:21 +00001337
1338 return ISIS_OK;
1339 }
1340
1341 /* 7.3.15.2 a) 4 - not applicable for CSNP only PSNPs on broadcast */
1342 if ((snp_type == ISIS_SNP_PSNP_FLAG) &&
1343 (circuit->circ_type == CIRCUIT_T_BROADCAST))
1344 {
1345 if (!circuit->u.bc.is_dr[level - 1])
1346 {
1347
hasso529d65b2004-12-24 00:14:50 +00001348 zlog_debug ("ISIS-Snp (%s): Rcvd L%d %cSNP from %s on %s, "
1349 "skipping: we are not the DIS",
1350 circuit->area->area_tag,
1351 level,
1352 typechar, snpa_print (ssnpa), circuit->interface->name);
hassof390d2c2004-09-10 20:48:21 +00001353
1354 return ISIS_OK;
1355 }
1356 }
jardineb5d44e2003-12-23 08:09:43 +00001357
1358 /* 7.3.15.2 a) 5 - need to make sure IDLength matches - already checked */
1359
1360 /* 7.3.15.2 a) 6 - maximum area match, can be ommited since we only use 3
1361 * - already checked */
1362
1363 /* 7.3.15.2 a) 7 - Must check that we have an adjacency of the same level */
1364 /* for broadcast circuits, snpa should be compared */
1365 /* FIXME : Do we need to check SNPA? */
hassof390d2c2004-09-10 20:48:21 +00001366 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
1367 {
1368 if (snp_type == ISIS_SNP_CSNP_FLAG)
1369 {
1370 adj =
1371 isis_adj_lookup (chdr->source_id, circuit->u.bc.adjdb[level - 1]);
1372 }
1373 else
1374 {
1375 /* a psnp on a broadcast, how lovely of Juniper :) */
1376 adj =
1377 isis_adj_lookup (phdr->source_id, circuit->u.bc.adjdb[level - 1]);
1378 }
1379 if (!adj)
1380 return ISIS_OK; /* Silently discard */
jardineb5d44e2003-12-23 08:09:43 +00001381 }
hassof390d2c2004-09-10 20:48:21 +00001382 else
1383 {
1384 if (!circuit->u.p2p.neighbor)
1385 return ISIS_OK; /* Silently discard */
1386 }
jardineb5d44e2003-12-23 08:09:43 +00001387
1388 /* 7.3.15.2 a) 8 - Passwords for level 1 - not implemented */
1389
1390 /* 7.3.15.2 a) 9 - Passwords for level 2 - not implemented */
1391
1392 memset (&tlvs, 0, sizeof (struct tlvs));
1393
1394 /* parse the SNP */
1395 expected |= TLVFLAG_LSP_ENTRIES;
1396 expected |= TLVFLAG_AUTH_INFO;
1397 retval = parse_tlvs (circuit->area->area_tag,
hassof390d2c2004-09-10 20:48:21 +00001398 STREAM_PNT (circuit->rcv_stream),
jardineb5d44e2003-12-23 08:09:43 +00001399 len - circuit->rcv_stream->getp,
hassof390d2c2004-09-10 20:48:21 +00001400 &expected, &found, &tlvs);
jardineb5d44e2003-12-23 08:09:43 +00001401
hassof390d2c2004-09-10 20:48:21 +00001402 if (retval > ISIS_WARNING)
1403 {
1404 zlog_warn ("something went very wrong processing SNP");
1405 free_tlvs (&tlvs);
1406 return retval;
1407 }
jardineb5d44e2003-12-23 08:09:43 +00001408
hasso1cbc5622005-01-01 10:29:51 +00001409 if (level == 1)
1410 passwd = &circuit->area->area_passwd;
1411 else
1412 passwd = &circuit->area->domain_passwd;
1413
1414 if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_RECV))
hassof390d2c2004-09-10 20:48:21 +00001415 {
hasso1cbc5622005-01-01 10:29:51 +00001416 if (passwd->type)
hassof390d2c2004-09-10 20:48:21 +00001417 {
hasso1cbc5622005-01-01 10:29:51 +00001418 if (!(found & TLVFLAG_AUTH_INFO) ||
1419 authentication_check (passwd, &tlvs.auth_info))
1420 {
1421 isis_event_auth_failure (circuit->area->area_tag,
1422 "SNP authentication" " failure",
1423 phdr ? phdr->source_id : chdr->source_id);
1424 return ISIS_OK;
1425 }
hassof390d2c2004-09-10 20:48:21 +00001426 }
1427 }
jardineb5d44e2003-12-23 08:09:43 +00001428
1429 /* debug isis snp-packets */
hassof390d2c2004-09-10 20:48:21 +00001430 if (isis->debugs & DEBUG_SNP_PACKETS)
1431 {
hasso529d65b2004-12-24 00:14:50 +00001432 zlog_debug ("ISIS-Snp (%s): Rcvd L%d %cSNP from %s on %s",
1433 circuit->area->area_tag,
1434 level,
1435 typechar, snpa_print (ssnpa), circuit->interface->name);
hassof390d2c2004-09-10 20:48:21 +00001436 if (tlvs.lsp_entries)
1437 {
paul1eb8ef22005-04-07 07:30:20 +00001438 for (ALL_LIST_ELEMENTS (tlvs.lsp_entries, node, nnode, entry))
hassof390d2c2004-09-10 20:48:21 +00001439 {
hasso529d65b2004-12-24 00:14:50 +00001440 zlog_debug ("ISIS-Snp (%s): %cSNP entry %s, seq 0x%08x,"
1441 " cksum 0x%04x, lifetime %us",
1442 circuit->area->area_tag,
1443 typechar,
1444 rawlspid_print (entry->lsp_id),
1445 ntohl (entry->seq_num),
1446 ntohs (entry->checksum), ntohs (entry->rem_lifetime));
hassof390d2c2004-09-10 20:48:21 +00001447 }
1448 }
jardineb5d44e2003-12-23 08:09:43 +00001449 }
jardineb5d44e2003-12-23 08:09:43 +00001450
1451 /* 7.3.15.2 b) Actions on LSP_ENTRIES reported */
hassof390d2c2004-09-10 20:48:21 +00001452 if (tlvs.lsp_entries)
1453 {
paul1eb8ef22005-04-07 07:30:20 +00001454 for (ALL_LIST_ELEMENTS (tlvs.lsp_entries, node, nnode, entry))
hassof390d2c2004-09-10 20:48:21 +00001455 {
1456 lsp = lsp_search (entry->lsp_id, circuit->area->lspdb[level - 1]);
1457 own_lsp = !memcmp (entry->lsp_id, isis->sysid, ISIS_SYS_ID_LEN);
1458 if (lsp)
1459 {
1460 /* 7.3.15.2 b) 1) is this LSP newer */
1461 cmp = lsp_compare (circuit->area->area_tag, lsp, entry->seq_num,
1462 entry->checksum, entry->rem_lifetime);
1463 /* 7.3.15.2 b) 2) if it equals, clear SRM on p2p */
1464 if (cmp == LSP_EQUAL)
1465 {
1466 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1467 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
1468 /* 7.3.15.2 b) 3) if it is older, clear SSN and set SRM */
1469 }
1470 else if (cmp == LSP_OLDER)
1471 {
1472 ISIS_CLEAR_FLAG (lsp->SSNflags, circuit);
1473 ISIS_SET_FLAG (lsp->SRMflags, circuit);
1474 }
1475 else
1476 {
1477 /* 7.3.15.2 b) 4) if it is newer, set SSN and clear SRM
1478 * on p2p */
1479 if (own_lsp)
1480 {
1481 lsp_inc_seqnum (lsp, ntohl (entry->seq_num));
1482 ISIS_SET_FLAG (lsp->SRMflags, circuit);
1483 }
1484 else
1485 {
1486 ISIS_SET_FLAG (lsp->SSNflags, circuit);
1487 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1488 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
1489 }
1490 }
1491 }
1492 else
1493 {
1494 /* 7.3.15.2 b) 5) if it was not found, and all of those are not 0,
1495 * insert it and set SSN on it */
1496 if (entry->rem_lifetime && entry->checksum && entry->seq_num &&
1497 memcmp (entry->lsp_id, isis->sysid, ISIS_SYS_ID_LEN))
1498 {
1499 lsp = lsp_new (entry->lsp_id, ntohs (entry->rem_lifetime),
1500 0, 0, entry->checksum, level);
1501 lsp_insert (lsp, circuit->area->lspdb[level - 1]);
1502 ISIS_SET_FLAG (lsp->SSNflags, circuit);
1503 }
1504 }
jardineb5d44e2003-12-23 08:09:43 +00001505 }
1506 }
jardineb5d44e2003-12-23 08:09:43 +00001507
1508 /* 7.3.15.2 c) on CSNP set SRM for all in range which were not reported */
hassof390d2c2004-09-10 20:48:21 +00001509 if (snp_type == ISIS_SNP_CSNP_FLAG)
1510 {
1511 /*
1512 * Build a list from our own LSP db bounded with start_ and stop_lsp_id
1513 */
1514 lsp_list = list_new ();
1515 lsp_build_list_nonzero_ht (chdr->start_lsp_id, chdr->stop_lsp_id,
1516 lsp_list, circuit->area->lspdb[level - 1]);
jardineb5d44e2003-12-23 08:09:43 +00001517
hassof390d2c2004-09-10 20:48:21 +00001518 /* Fixme: Find a better solution */
1519 if (tlvs.lsp_entries)
1520 {
paul1eb8ef22005-04-07 07:30:20 +00001521 for (ALL_LIST_ELEMENTS (tlvs.lsp_entries, node, nnode, entry))
hassof390d2c2004-09-10 20:48:21 +00001522 {
paul1eb8ef22005-04-07 07:30:20 +00001523 for (ALL_LIST_ELEMENTS (lsp_list, node2, nnode2, lsp))
hassof390d2c2004-09-10 20:48:21 +00001524 {
1525 if (lsp_id_cmp (lsp->lsp_header->lsp_id, entry->lsp_id) == 0)
1526 {
1527 list_delete_node (lsp_list, node2);
1528 break;
1529 }
1530 }
1531 }
1532 }
1533 /* on remaining LSPs we set SRM (neighbor knew not of) */
paul1eb8ef22005-04-07 07:30:20 +00001534 for (ALL_LIST_ELEMENTS (lsp_list, node2, nnode2, lsp))
hassof390d2c2004-09-10 20:48:21 +00001535 {
1536 ISIS_SET_FLAG (lsp->SRMflags, circuit);
jardineb5d44e2003-12-23 08:09:43 +00001537 }
hassof390d2c2004-09-10 20:48:21 +00001538 /* lets free it */
1539 list_free (lsp_list);
jardineb5d44e2003-12-23 08:09:43 +00001540 }
jardineb5d44e2003-12-23 08:09:43 +00001541
1542 free_tlvs (&tlvs);
1543 return retval;
1544}
1545
hasso92365882005-01-18 13:53:33 +00001546static int
hassof390d2c2004-09-10 20:48:21 +00001547process_csnp (int level, struct isis_circuit *circuit, u_char * ssnpa)
jardineb5d44e2003-12-23 08:09:43 +00001548{
jardineb5d44e2003-12-23 08:09:43 +00001549 /* Sanity check - FIXME: move to correct place */
hassof390d2c2004-09-10 20:48:21 +00001550 if ((stream_get_endp (circuit->rcv_stream) -
1551 stream_get_getp (circuit->rcv_stream)) < ISIS_CSNP_HDRLEN)
1552 {
1553 zlog_warn ("Packet too short ( < %d)", ISIS_CSNP_HDRLEN);
1554 return ISIS_WARNING;
1555 }
jardineb5d44e2003-12-23 08:09:43 +00001556
1557 return process_snp (ISIS_SNP_CSNP_FLAG, level, circuit, ssnpa);
1558}
1559
hasso92365882005-01-18 13:53:33 +00001560static int
hassof390d2c2004-09-10 20:48:21 +00001561process_psnp (int level, struct isis_circuit *circuit, u_char * ssnpa)
jardineb5d44e2003-12-23 08:09:43 +00001562{
hassof390d2c2004-09-10 20:48:21 +00001563 if ((stream_get_endp (circuit->rcv_stream) -
1564 stream_get_getp (circuit->rcv_stream)) < ISIS_PSNP_HDRLEN)
1565 {
1566 zlog_warn ("Packet too short");
1567 return ISIS_WARNING;
1568 }
jardineb5d44e2003-12-23 08:09:43 +00001569
1570 return process_snp (ISIS_SNP_PSNP_FLAG, level, circuit, ssnpa);
1571}
1572
jardineb5d44e2003-12-23 08:09:43 +00001573/*
1574 * Process ISH
1575 * ISO - 10589
1576 * Section 8.2.2 - Receiving ISH PDUs by an intermediate system
1577 * FIXME: sample packet dump, need to figure 0x81 - looks like NLPid
hassof390d2c2004-09-10 20:48:21 +00001578 * 0x82 0x15 0x01 0x00 0x04 0x01 0x2c 0x59
1579 * 0x38 0x08 0x47 0x00 0x01 0x00 0x02 0x00
1580 * 0x03 0x00 0x81 0x01 0xcc
jardineb5d44e2003-12-23 08:09:43 +00001581 */
hasso92365882005-01-18 13:53:33 +00001582static int
jardineb5d44e2003-12-23 08:09:43 +00001583process_is_hello (struct isis_circuit *circuit)
1584{
1585 struct isis_adjacency *adj;
1586 int retval = ISIS_OK;
1587 u_char neigh_len;
1588 u_char *sysid;
1589
1590 /* In this point in time we are not yet able to handle is_hellos
1591 * on lan - Sorry juniper...
1592 */
1593 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
1594 return retval;
1595
1596 neigh_len = stream_getc (circuit->rcv_stream);
hassof390d2c2004-09-10 20:48:21 +00001597 sysid = STREAM_PNT (circuit->rcv_stream) + neigh_len - 1 - ISIS_SYS_ID_LEN;
jardineb5d44e2003-12-23 08:09:43 +00001598 adj = circuit->u.p2p.neighbor;
hassof390d2c2004-09-10 20:48:21 +00001599 if (!adj)
1600 {
1601 /* 8.2.2 */
hassof7c43dc2004-09-26 16:24:14 +00001602 adj = isis_new_adj (sysid, (u_char *) " ", 0, circuit);
hassof390d2c2004-09-10 20:48:21 +00001603 if (adj == NULL)
1604 return ISIS_ERROR;
jardineb5d44e2003-12-23 08:09:43 +00001605
hassof390d2c2004-09-10 20:48:21 +00001606 isis_adj_state_change (adj, ISIS_ADJ_INITIALIZING, NULL);
1607 adj->sys_type = ISIS_SYSTYPE_UNKNOWN;
1608 circuit->u.p2p.neighbor = adj;
1609 }
1610 /* 8.2.2 a) */
1611 if ((adj->adj_state == ISIS_ADJ_UP) && memcmp (adj->sysid, sysid,
1612 ISIS_SYS_ID_LEN))
1613 {
1614 /* 8.2.2 a) 1) FIXME: adjStateChange(down) event */
1615 /* 8.2.2 a) 2) delete the adj */
1616 XFREE (MTYPE_ISIS_ADJACENCY, adj);
1617 /* 8.2.2 a) 3) create a new adj */
hassof7c43dc2004-09-26 16:24:14 +00001618 adj = isis_new_adj (sysid, (u_char *) " ", 0, circuit);
hassof390d2c2004-09-10 20:48:21 +00001619 if (adj == NULL)
1620 return ISIS_ERROR;
jardineb5d44e2003-12-23 08:09:43 +00001621
hassof390d2c2004-09-10 20:48:21 +00001622 /* 8.2.2 a) 3) i */
1623 isis_adj_state_change (adj, ISIS_ADJ_INITIALIZING, NULL);
1624 /* 8.2.2 a) 3) ii */
1625 adj->sys_type = ISIS_SYSTYPE_UNKNOWN;
1626 /* 8.2.2 a) 4) quite meaningless */
1627 }
jardineb5d44e2003-12-23 08:09:43 +00001628 /* 8.2.2 b) ignore on condition */
hassof390d2c2004-09-10 20:48:21 +00001629 if ((adj->adj_state == ISIS_ADJ_INITIALIZING) &&
1630 (adj->sys_type == ISIS_SYSTYPE_IS))
1631 {
1632 /* do nothing */
1633 }
1634 else
1635 {
1636 /* 8.2.2 c) respond with a p2p IIH */
1637 send_hello (circuit, 1);
1638 }
jardineb5d44e2003-12-23 08:09:43 +00001639 /* 8.2.2 d) type is IS */
hassof390d2c2004-09-10 20:48:21 +00001640 adj->sys_type = ISIS_SYSTYPE_IS;
jardineb5d44e2003-12-23 08:09:43 +00001641 /* 8.2.2 e) FIXME: Circuit type of? */
1642
jardineb5d44e2003-12-23 08:09:43 +00001643 return retval;
1644}
1645
jardineb5d44e2003-12-23 08:09:43 +00001646/*
1647 * PDU Dispatcher
1648 */
1649
hasso92365882005-01-18 13:53:33 +00001650static int
hassof390d2c2004-09-10 20:48:21 +00001651isis_handle_pdu (struct isis_circuit *circuit, u_char * ssnpa)
jardineb5d44e2003-12-23 08:09:43 +00001652{
jardineb5d44e2003-12-23 08:09:43 +00001653 struct isis_fixed_hdr *hdr;
1654 struct esis_fixed_hdr *esis_hdr;
1655
hassof390d2c2004-09-10 20:48:21 +00001656 int retval = ISIS_OK;
jardineb5d44e2003-12-23 08:09:43 +00001657
1658 /*
1659 * Let's first read data from stream to the header
1660 */
hassof390d2c2004-09-10 20:48:21 +00001661 hdr = (struct isis_fixed_hdr *) STREAM_DATA (circuit->rcv_stream);
jardineb5d44e2003-12-23 08:09:43 +00001662
hassof390d2c2004-09-10 20:48:21 +00001663 if ((hdr->idrp != ISO10589_ISIS) && (hdr->idrp != ISO9542_ESIS))
1664 {
1665 zlog_warn ("Not an IS-IS or ES-IS packet IDRP=%02x", hdr->idrp);
1666 return ISIS_ERROR;
1667 }
jardineb5d44e2003-12-23 08:09:43 +00001668
1669 /* now we need to know if this is an ISO 9542 packet and
1670 * take real good care of it, waaa!
1671 */
hassof390d2c2004-09-10 20:48:21 +00001672 if (hdr->idrp == ISO9542_ESIS)
1673 {
1674 esis_hdr = (struct esis_fixed_hdr *) STREAM_DATA (circuit->rcv_stream);
1675 stream_set_getp (circuit->rcv_stream, ESIS_FIXED_HDR_LEN);
1676 /* FIXME: Need to do some acceptence tests */
1677 /* example length... */
1678 switch (esis_hdr->pdu_type)
1679 {
1680 case ESH_PDU:
1681 /* FIXME */
1682 break;
1683 case ISH_PDU:
hasso529d65b2004-12-24 00:14:50 +00001684 zlog_debug ("AN ISH PDU!!");
hassof390d2c2004-09-10 20:48:21 +00001685 retval = process_is_hello (circuit);
1686 break;
1687 default:
1688 return ISIS_ERROR;
1689 }
1690 return retval;
1691 }
1692 else
1693 {
1694 stream_set_getp (circuit->rcv_stream, ISIS_FIXED_HDR_LEN);
1695 }
jardineb5d44e2003-12-23 08:09:43 +00001696 /*
1697 * and then process it
1698 */
1699
hassof390d2c2004-09-10 20:48:21 +00001700 if (hdr->length < ISIS_MINIMUM_FIXED_HDR_LEN)
1701 {
1702 zlog_err ("Fixed header length = %d", hdr->length);
1703 return ISIS_ERROR;
1704 }
jardineb5d44e2003-12-23 08:09:43 +00001705
hassof390d2c2004-09-10 20:48:21 +00001706 if (hdr->version1 != 1)
1707 {
1708 zlog_warn ("Unsupported ISIS version %u", hdr->version1);
1709 return ISIS_WARNING;
1710 }
jardineb5d44e2003-12-23 08:09:43 +00001711 /* either 6 or 0 */
hassof390d2c2004-09-10 20:48:21 +00001712 if ((hdr->id_len != 0) && (hdr->id_len != ISIS_SYS_ID_LEN))
1713 {
1714 zlog_err
1715 ("IDFieldLengthMismatch: ID Length field in a received PDU %u, "
1716 "while the parameter for this IS is %u", hdr->id_len,
1717 ISIS_SYS_ID_LEN);
1718 return ISIS_ERROR;
1719 }
jardineb5d44e2003-12-23 08:09:43 +00001720
hassof390d2c2004-09-10 20:48:21 +00001721 if (hdr->version2 != 1)
1722 {
1723 zlog_warn ("Unsupported ISIS version %u", hdr->version2);
1724 return ISIS_WARNING;
1725 }
jardineb5d44e2003-12-23 08:09:43 +00001726 /* either 3 or 0 */
hassof390d2c2004-09-10 20:48:21 +00001727 if ((hdr->max_area_addrs != 0)
1728 && (hdr->max_area_addrs != isis->max_area_addrs))
1729 {
1730 zlog_err ("maximumAreaAddressesMismatch: maximumAreaAdresses in a "
1731 "received PDU %u while the parameter for this IS is %u",
1732 hdr->max_area_addrs, isis->max_area_addrs);
1733 return ISIS_ERROR;
1734 }
jardineb5d44e2003-12-23 08:09:43 +00001735
hassof390d2c2004-09-10 20:48:21 +00001736 switch (hdr->pdu_type)
1737 {
1738 case L1_LAN_HELLO:
1739 retval = process_lan_hello (ISIS_LEVEL1, circuit, ssnpa);
1740 break;
1741 case L2_LAN_HELLO:
1742 retval = process_lan_hello (ISIS_LEVEL2, circuit, ssnpa);
1743 break;
1744 case P2P_HELLO:
1745 retval = process_p2p_hello (circuit);
1746 break;
1747 case L1_LINK_STATE:
1748 retval = process_lsp (ISIS_LEVEL1, circuit, ssnpa);
1749 break;
1750 case L2_LINK_STATE:
1751 retval = process_lsp (ISIS_LEVEL2, circuit, ssnpa);
1752 break;
1753 case L1_COMPLETE_SEQ_NUM:
1754 retval = process_csnp (ISIS_LEVEL1, circuit, ssnpa);
1755 break;
1756 case L2_COMPLETE_SEQ_NUM:
1757 retval = process_csnp (ISIS_LEVEL2, circuit, ssnpa);
1758 break;
1759 case L1_PARTIAL_SEQ_NUM:
1760 retval = process_psnp (ISIS_LEVEL1, circuit, ssnpa);
1761 break;
1762 case L2_PARTIAL_SEQ_NUM:
1763 retval = process_psnp (ISIS_LEVEL2, circuit, ssnpa);
1764 break;
1765 default:
1766 return ISIS_ERROR;
1767 }
jardineb5d44e2003-12-23 08:09:43 +00001768
1769 return retval;
1770}
1771
jardineb5d44e2003-12-23 08:09:43 +00001772#ifdef GNU_LINUX
1773int
1774isis_receive (struct thread *thread)
1775{
jardineb5d44e2003-12-23 08:09:43 +00001776 struct isis_circuit *circuit;
1777 u_char ssnpa[ETH_ALEN];
1778 int retval;
1779
1780 /*
1781 * Get the circuit
1782 */
1783 circuit = THREAD_ARG (thread);
1784 assert (circuit);
1785
1786 if (circuit->rcv_stream == NULL)
hassof390d2c2004-09-10 20:48:21 +00001787 circuit->rcv_stream = stream_new (ISO_MTU (circuit));
jardineb5d44e2003-12-23 08:09:43 +00001788 else
1789 stream_reset (circuit->rcv_stream);
1790
1791 retval = circuit->rx (circuit, ssnpa);
hassof390d2c2004-09-10 20:48:21 +00001792 circuit->t_read = NULL;
jardineb5d44e2003-12-23 08:09:43 +00001793
1794 if (retval == ISIS_OK)
1795 retval = isis_handle_pdu (circuit, ssnpa);
1796
1797 /*
1798 * prepare for next packet.
1799 */
hassof390d2c2004-09-10 20:48:21 +00001800 THREAD_READ_ON (master, circuit->t_read, isis_receive, circuit,
1801 circuit->fd);
jardineb5d44e2003-12-23 08:09:43 +00001802
1803 return retval;
1804}
1805
1806#else
1807int
1808isis_receive (struct thread *thread)
1809{
jardineb5d44e2003-12-23 08:09:43 +00001810 struct isis_circuit *circuit;
1811 u_char ssnpa[ETH_ALEN];
1812 int retval;
1813
1814 /*
1815 * Get the circuit
1816 */
1817 circuit = THREAD_ARG (thread);
1818 assert (circuit);
1819
hassof390d2c2004-09-10 20:48:21 +00001820 circuit->t_read = NULL;
jardineb5d44e2003-12-23 08:09:43 +00001821
1822 if (circuit->rcv_stream == NULL)
hassof390d2c2004-09-10 20:48:21 +00001823 circuit->rcv_stream = stream_new (ISO_MTU (circuit));
jardineb5d44e2003-12-23 08:09:43 +00001824 else
1825 stream_reset (circuit->rcv_stream);
1826
1827 retval = circuit->rx (circuit, ssnpa);
1828
1829 if (retval == ISIS_OK)
1830 retval = isis_handle_pdu (circuit, ssnpa);
1831
1832 /*
1833 * prepare for next packet.
1834 */
hassof390d2c2004-09-10 20:48:21 +00001835 circuit->t_read = thread_add_timer_msec (master, isis_receive, circuit,
1836 listcount
1837 (circuit->area->circuit_list) *
1838 100);
jardineb5d44e2003-12-23 08:09:43 +00001839
1840 return retval;
1841}
1842
1843#endif
1844
1845 /* filling of the fixed isis header */
1846void
1847fill_fixed_hdr (struct isis_fixed_hdr *hdr, u_char pdu_type)
1848{
1849 memset (hdr, 0, sizeof (struct isis_fixed_hdr));
1850
1851 hdr->idrp = ISO10589_ISIS;
1852
hassof390d2c2004-09-10 20:48:21 +00001853 switch (pdu_type)
1854 {
1855 case L1_LAN_HELLO:
1856 case L2_LAN_HELLO:
1857 hdr->length = ISIS_LANHELLO_HDRLEN;
1858 break;
1859 case P2P_HELLO:
1860 hdr->length = ISIS_P2PHELLO_HDRLEN;
1861 break;
1862 case L1_LINK_STATE:
1863 case L2_LINK_STATE:
1864 hdr->length = ISIS_LSP_HDR_LEN;
1865 break;
1866 case L1_COMPLETE_SEQ_NUM:
1867 case L2_COMPLETE_SEQ_NUM:
1868 hdr->length = ISIS_CSNP_HDRLEN;
1869 break;
1870 case L1_PARTIAL_SEQ_NUM:
1871 case L2_PARTIAL_SEQ_NUM:
1872 hdr->length = ISIS_PSNP_HDRLEN;
1873 break;
1874 default:
1875 zlog_warn ("fill_fixed_hdr(): unknown pdu type %d", pdu_type);
1876 return;
1877 }
jardineb5d44e2003-12-23 08:09:43 +00001878 hdr->length += ISIS_FIXED_HDR_LEN;
1879 hdr->pdu_type = pdu_type;
1880 hdr->version1 = 1;
hassof390d2c2004-09-10 20:48:21 +00001881 hdr->id_len = 0; /* ISIS_SYS_ID_LEN - 0==6 */
jardineb5d44e2003-12-23 08:09:43 +00001882 hdr->version2 = 1;
hassof390d2c2004-09-10 20:48:21 +00001883 hdr->max_area_addrs = 0; /* isis->max_area_addrs - 0==3 */
jardineb5d44e2003-12-23 08:09:43 +00001884}
1885
jardineb5d44e2003-12-23 08:09:43 +00001886/*
1887 * SEND SIDE
1888 */
hasso92365882005-01-18 13:53:33 +00001889static void
jardineb5d44e2003-12-23 08:09:43 +00001890fill_fixed_hdr_andstream (struct isis_fixed_hdr *hdr, u_char pdu_type,
hassof390d2c2004-09-10 20:48:21 +00001891 struct stream *stream)
jardineb5d44e2003-12-23 08:09:43 +00001892{
hassof390d2c2004-09-10 20:48:21 +00001893 fill_fixed_hdr (hdr, pdu_type);
jardineb5d44e2003-12-23 08:09:43 +00001894
1895 stream_putc (stream, hdr->idrp);
1896 stream_putc (stream, hdr->length);
1897 stream_putc (stream, hdr->version1);
1898 stream_putc (stream, hdr->id_len);
1899 stream_putc (stream, hdr->pdu_type);
1900 stream_putc (stream, hdr->version2);
1901 stream_putc (stream, hdr->reserved);
1902 stream_putc (stream, hdr->max_area_addrs);
1903
1904 return;
1905}
1906
jardineb5d44e2003-12-23 08:09:43 +00001907int
1908send_hello (struct isis_circuit *circuit, int level)
1909{
1910 struct isis_fixed_hdr fixed_hdr;
1911 struct isis_lan_hello_hdr hello_hdr;
1912 struct isis_p2p_hello_hdr p2p_hello_hdr;
1913
1914 u_int32_t interval;
1915 unsigned long len_pointer, length;
1916 int retval;
1917
hassof390d2c2004-09-10 20:48:21 +00001918 if (circuit->interface->mtu == 0)
1919 {
1920 zlog_warn ("circuit has zero MTU");
1921 return ISIS_WARNING;
1922 }
jardineb5d44e2003-12-23 08:09:43 +00001923
1924 if (!circuit->snd_stream)
hassof390d2c2004-09-10 20:48:21 +00001925 circuit->snd_stream = stream_new (ISO_MTU (circuit));
jardineb5d44e2003-12-23 08:09:43 +00001926 else
1927 stream_reset (circuit->snd_stream);
1928
1929 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
1930 if (level == 1)
hassof390d2c2004-09-10 20:48:21 +00001931 fill_fixed_hdr_andstream (&fixed_hdr, L1_LAN_HELLO,
1932 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00001933 else
hassof390d2c2004-09-10 20:48:21 +00001934 fill_fixed_hdr_andstream (&fixed_hdr, L2_LAN_HELLO,
1935 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00001936 else
hassof390d2c2004-09-10 20:48:21 +00001937 fill_fixed_hdr_andstream (&fixed_hdr, P2P_HELLO, circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00001938
1939 /*
1940 * Fill LAN Level 1 or 2 Hello PDU header
1941 */
1942 memset (&hello_hdr, 0, sizeof (struct isis_lan_hello_hdr));
hassof390d2c2004-09-10 20:48:21 +00001943 interval = circuit->hello_multiplier[level - 1] *
jardineb5d44e2003-12-23 08:09:43 +00001944 circuit->hello_interval[level - 1];
1945 if (interval > USHRT_MAX)
1946 interval = USHRT_MAX;
1947 hello_hdr.circuit_t = circuit->circuit_is_type;
1948 memcpy (hello_hdr.source_id, isis->sysid, ISIS_SYS_ID_LEN);
hassof390d2c2004-09-10 20:48:21 +00001949 hello_hdr.hold_time = htons ((u_int16_t) interval);
jardineb5d44e2003-12-23 08:09:43 +00001950
hassof390d2c2004-09-10 20:48:21 +00001951 hello_hdr.pdu_len = 0; /* Update the PDU Length later */
paul9985f832005-02-09 15:51:56 +00001952 len_pointer = stream_get_endp (circuit->snd_stream) + 3 + ISIS_SYS_ID_LEN;
jardineb5d44e2003-12-23 08:09:43 +00001953
1954 /* copy the shared part of the hello to the p2p hello if needed */
hassof390d2c2004-09-10 20:48:21 +00001955 if (circuit->circ_type == CIRCUIT_T_P2P)
1956 {
1957 memcpy (&p2p_hello_hdr, &hello_hdr, 5 + ISIS_SYS_ID_LEN);
1958 p2p_hello_hdr.local_id = circuit->circuit_id;
1959 /* FIXME: need better understanding */
1960 stream_put (circuit->snd_stream, &p2p_hello_hdr, ISIS_P2PHELLO_HDRLEN);
jardineb5d44e2003-12-23 08:09:43 +00001961 }
hassof390d2c2004-09-10 20:48:21 +00001962 else
1963 {
1964 hello_hdr.prio = circuit->u.bc.priority[level - 1];
1965 if (level == 1 && circuit->u.bc.l1_desig_is)
1966 {
1967 memcpy (hello_hdr.lan_id, circuit->u.bc.l1_desig_is,
1968 ISIS_SYS_ID_LEN + 1);
1969 }
1970 else if (level == 2 && circuit->u.bc.l2_desig_is)
1971 {
1972 memcpy (hello_hdr.lan_id, circuit->u.bc.l2_desig_is,
1973 ISIS_SYS_ID_LEN + 1);
1974 }
1975 stream_put (circuit->snd_stream, &hello_hdr, ISIS_LANHELLO_HDRLEN);
1976 }
jardineb5d44e2003-12-23 08:09:43 +00001977
1978 /*
1979 * Then the variable length part
1980 */
1981 /* add circuit password */
1982 if (circuit->passwd.type)
1983 if (tlv_add_authinfo (circuit->passwd.type, circuit->passwd.len,
1984 circuit->passwd.passwd, circuit->snd_stream))
1985 return ISIS_WARNING;
1986 /* Area Addresses TLV */
1987 assert (circuit->area);
1988 if (circuit->area->area_addrs && circuit->area->area_addrs->count > 0)
1989 if (tlv_add_area_addrs (circuit->area->area_addrs, circuit->snd_stream))
1990 return ISIS_WARNING;
1991
1992 /* LAN Neighbors TLV */
hassof390d2c2004-09-10 20:48:21 +00001993 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
1994 {
1995 if (level == 1 && circuit->u.bc.lan_neighs[0]->count > 0)
1996 if (tlv_add_lan_neighs (circuit->u.bc.lan_neighs[0],
1997 circuit->snd_stream))
1998 return ISIS_WARNING;
1999 if (level == 2 && circuit->u.bc.lan_neighs[1]->count > 0)
2000 if (tlv_add_lan_neighs (circuit->u.bc.lan_neighs[1],
2001 circuit->snd_stream))
2002 return ISIS_WARNING;
2003 }
jardineb5d44e2003-12-23 08:09:43 +00002004
2005 /* Protocols Supported TLV */
hassof390d2c2004-09-10 20:48:21 +00002006 if (circuit->nlpids.count > 0)
jardineb5d44e2003-12-23 08:09:43 +00002007 if (tlv_add_nlpid (&circuit->nlpids, circuit->snd_stream))
2008 return ISIS_WARNING;
2009 /* IP interface Address TLV */
2010 if (circuit->ip_router && circuit->ip_addrs && circuit->ip_addrs->count > 0)
2011 if (tlv_add_ip_addrs (circuit->ip_addrs, circuit->snd_stream))
2012 return ISIS_WARNING;
2013
hassof390d2c2004-09-10 20:48:21 +00002014#ifdef HAVE_IPV6
jardineb5d44e2003-12-23 08:09:43 +00002015 /* IPv6 Interface Address TLV */
hassof390d2c2004-09-10 20:48:21 +00002016 if (circuit->ipv6_router && circuit->ipv6_link &&
jardineb5d44e2003-12-23 08:09:43 +00002017 circuit->ipv6_link->count > 0)
2018 if (tlv_add_ipv6_addrs (circuit->ipv6_link, circuit->snd_stream))
2019 return ISIS_WARNING;
2020#endif /* HAVE_IPV6 */
2021
2022 if (circuit->u.bc.pad_hellos)
2023 if (tlv_add_padding (circuit->snd_stream))
2024 return ISIS_WARNING;
2025
paul9985f832005-02-09 15:51:56 +00002026 length = stream_get_endp (circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002027 /* Update PDU length */
hassof390d2c2004-09-10 20:48:21 +00002028 stream_putw_at (circuit->snd_stream, len_pointer, (u_int16_t) length);
jardineb5d44e2003-12-23 08:09:43 +00002029
2030 retval = circuit->tx (circuit, level);
2031 if (retval)
2032 zlog_warn ("sending of LAN Level %d Hello failed", level);
2033
2034 /* DEBUG_ADJ_PACKETS */
hassof390d2c2004-09-10 20:48:21 +00002035 if (isis->debugs & DEBUG_ADJ_PACKETS)
2036 {
2037 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
2038 {
hasso529d65b2004-12-24 00:14:50 +00002039 zlog_debug ("ISIS-Adj (%s): Sent L%d LAN IIH on %s, length %ld",
2040 circuit->area->area_tag, level, circuit->interface->name,
hasso29e50b22005-09-01 18:18:47 +00002041 /* FIXME: use %z when we stop supporting old compilers. */
2042 (unsigned long) STREAM_SIZE (circuit->snd_stream));
hassof390d2c2004-09-10 20:48:21 +00002043 }
2044 else
2045 {
hasso529d65b2004-12-24 00:14:50 +00002046 zlog_debug ("ISIS-Adj (%s): Sent P2P IIH on %s, length %ld",
2047 circuit->area->area_tag, circuit->interface->name,
hasso29e50b22005-09-01 18:18:47 +00002048 /* FIXME: use %z when we stop supporting old compilers. */
2049 (unsigned long) STREAM_SIZE (circuit->snd_stream));
hassof390d2c2004-09-10 20:48:21 +00002050 }
jardineb5d44e2003-12-23 08:09:43 +00002051 }
jardineb5d44e2003-12-23 08:09:43 +00002052
2053 return retval;
2054}
2055
hasso92365882005-01-18 13:53:33 +00002056static int
jardineb5d44e2003-12-23 08:09:43 +00002057send_lan_hello (struct isis_circuit *circuit, int level)
2058{
hassof390d2c2004-09-10 20:48:21 +00002059 return send_hello (circuit, level);
jardineb5d44e2003-12-23 08:09:43 +00002060}
2061
2062int
2063send_lan_l1_hello (struct thread *thread)
2064{
jardineb5d44e2003-12-23 08:09:43 +00002065 struct isis_circuit *circuit;
2066 int retval;
2067
2068 circuit = THREAD_ARG (thread);
2069 assert (circuit);
2070 circuit->u.bc.t_send_lan_hello[0] = NULL;
2071
2072 if (circuit->u.bc.run_dr_elect[0])
hassof390d2c2004-09-10 20:48:21 +00002073 retval = isis_dr_elect (circuit, 1);
jardineb5d44e2003-12-23 08:09:43 +00002074
2075 retval = send_lan_hello (circuit, 1);
2076
2077 /* set next timer thread */
hassof390d2c2004-09-10 20:48:21 +00002078 THREAD_TIMER_ON (master, circuit->u.bc.t_send_lan_hello[0],
2079 send_lan_l1_hello, circuit,
2080 isis_jitter (circuit->hello_interval[0], IIH_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002081
2082 return retval;
2083}
2084
2085int
2086send_lan_l2_hello (struct thread *thread)
2087{
2088 struct isis_circuit *circuit;
2089 int retval;
2090
2091 circuit = THREAD_ARG (thread);
2092 assert (circuit);
2093 circuit->u.bc.t_send_lan_hello[1] = NULL;
2094
2095 if (circuit->u.bc.run_dr_elect[1])
2096 retval = isis_dr_elect (circuit, 2);
2097
2098 retval = send_lan_hello (circuit, 2);
2099
hassof390d2c2004-09-10 20:48:21 +00002100 /* set next timer thread */
2101 THREAD_TIMER_ON (master, circuit->u.bc.t_send_lan_hello[1],
2102 send_lan_l2_hello, circuit,
2103 isis_jitter (circuit->hello_interval[1], IIH_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002104
2105 return retval;
2106}
2107
2108int
2109send_p2p_hello (struct thread *thread)
2110{
2111 struct isis_circuit *circuit;
2112
2113 circuit = THREAD_ARG (thread);
2114 assert (circuit);
2115 circuit->u.p2p.t_send_p2p_hello = NULL;
2116
hassof390d2c2004-09-10 20:48:21 +00002117 send_hello (circuit, 1);
jardineb5d44e2003-12-23 08:09:43 +00002118
hassof390d2c2004-09-10 20:48:21 +00002119 /* set next timer thread */
2120 THREAD_TIMER_ON (master, circuit->u.p2p.t_send_p2p_hello, send_p2p_hello,
2121 circuit, isis_jitter (circuit->hello_interval[1],
2122 IIH_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002123
2124 return ISIS_OK;
2125}
2126
hasso92365882005-01-18 13:53:33 +00002127static int
hassof390d2c2004-09-10 20:48:21 +00002128build_csnp (int level, u_char * start, u_char * stop, struct list *lsps,
2129 struct isis_circuit *circuit)
jardineb5d44e2003-12-23 08:09:43 +00002130{
2131 struct isis_fixed_hdr fixed_hdr;
2132 struct isis_passwd *passwd;
2133 int retval = ISIS_OK;
2134 unsigned long lenp;
2135 u_int16_t length;
2136
hassof390d2c2004-09-10 20:48:21 +00002137 if (level == 1)
2138 fill_fixed_hdr_andstream (&fixed_hdr, L1_COMPLETE_SEQ_NUM,
2139 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002140 else
hassof390d2c2004-09-10 20:48:21 +00002141 fill_fixed_hdr_andstream (&fixed_hdr, L2_COMPLETE_SEQ_NUM,
2142 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002143
2144 /*
2145 * Fill Level 1 or 2 Complete Sequence Numbers header
2146 */
2147
paul9985f832005-02-09 15:51:56 +00002148 lenp = stream_get_endp (circuit->snd_stream);
hassof390d2c2004-09-10 20:48:21 +00002149 stream_putw (circuit->snd_stream, 0); /* PDU length - when we know it */
jardineb5d44e2003-12-23 08:09:43 +00002150 /* no need to send the source here, it is always us if we csnp */
2151 stream_put (circuit->snd_stream, isis->sysid, ISIS_SYS_ID_LEN);
2152 /* with zero circuit id - ref 9.10, 9.11 */
2153 stream_putc (circuit->snd_stream, 0x00);
2154
2155 stream_put (circuit->snd_stream, start, ISIS_SYS_ID_LEN + 2);
2156 stream_put (circuit->snd_stream, stop, ISIS_SYS_ID_LEN + 2);
2157
2158 /*
2159 * And TLVs
2160 */
2161 if (level == 1)
2162 passwd = &circuit->area->area_passwd;
2163 else
2164 passwd = &circuit->area->domain_passwd;
2165
hasso1cbc5622005-01-01 10:29:51 +00002166 if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_SEND))
2167 if (passwd->type)
2168 retval = tlv_add_authinfo (passwd->type, passwd->len,
2169 passwd->passwd, circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002170
hassof390d2c2004-09-10 20:48:21 +00002171 if (!retval && lsps)
2172 {
2173 retval = tlv_add_lsp_entries (lsps, circuit->snd_stream);
2174 }
paul9985f832005-02-09 15:51:56 +00002175 length = (u_int16_t) stream_get_endp (circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002176 assert (length >= ISIS_CSNP_HDRLEN);
2177 /* Update PU length */
2178 stream_putw_at (circuit->snd_stream, lenp, length);
2179
2180 return retval;
2181}
2182
2183/*
2184 * FIXME: support multiple CSNPs
2185 */
2186
2187int
2188send_csnp (struct isis_circuit *circuit, int level)
2189{
2190 int retval = ISIS_OK;
2191 u_char start[ISIS_SYS_ID_LEN + 2];
2192 u_char stop[ISIS_SYS_ID_LEN + 2];
2193 struct list *list = NULL;
paul1eb8ef22005-04-07 07:30:20 +00002194 struct listnode *node, *nnode;
jardineb5d44e2003-12-23 08:09:43 +00002195 struct isis_lsp *lsp;
2196
hassof390d2c2004-09-10 20:48:21 +00002197 memset (start, 0x00, ISIS_SYS_ID_LEN + 2);
jardineb5d44e2003-12-23 08:09:43 +00002198 memset (stop, 0xff, ISIS_SYS_ID_LEN + 2);
2199
hassof390d2c2004-09-10 20:48:21 +00002200 if (circuit->area->lspdb[level - 1] &&
2201 dict_count (circuit->area->lspdb[level - 1]) > 0)
2202 {
2203 list = list_new ();
2204 lsp_build_list (start, stop, list, circuit->area->lspdb[level - 1]);
jardineb5d44e2003-12-23 08:09:43 +00002205
hassof390d2c2004-09-10 20:48:21 +00002206 if (circuit->snd_stream == NULL)
2207 circuit->snd_stream = stream_new (ISO_MTU (circuit));
2208 else
2209 stream_reset (circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002210
hassof390d2c2004-09-10 20:48:21 +00002211 retval = build_csnp (level, start, stop, list, circuit);
jardineb5d44e2003-12-23 08:09:43 +00002212
hassof390d2c2004-09-10 20:48:21 +00002213 if (isis->debugs & DEBUG_SNP_PACKETS)
2214 {
hasso529d65b2004-12-24 00:14:50 +00002215 zlog_debug ("ISIS-Snp (%s): Sent L%d CSNP on %s, length %ld",
paul1eb8ef22005-04-07 07:30:20 +00002216 circuit->area->area_tag, level, circuit->interface->name,
hasso29e50b22005-09-01 18:18:47 +00002217 /* FIXME: use %z when we stop supporting old compilers. */
2218 (unsigned long) STREAM_SIZE (circuit->snd_stream));
paul1eb8ef22005-04-07 07:30:20 +00002219 for (ALL_LIST_ELEMENTS (list, node, nnode, lsp))
hassof390d2c2004-09-10 20:48:21 +00002220 {
hasso529d65b2004-12-24 00:14:50 +00002221 zlog_debug ("ISIS-Snp (%s): CSNP entry %s, seq 0x%08x,"
2222 " cksum 0x%04x, lifetime %us",
2223 circuit->area->area_tag,
2224 rawlspid_print (lsp->lsp_header->lsp_id),
2225 ntohl (lsp->lsp_header->seq_num),
2226 ntohs (lsp->lsp_header->checksum),
2227 ntohs (lsp->lsp_header->rem_lifetime));
hassof390d2c2004-09-10 20:48:21 +00002228 }
2229 }
2230
2231 list_delete (list);
2232
2233 if (retval == ISIS_OK)
2234 retval = circuit->tx (circuit, level);
jardineb5d44e2003-12-23 08:09:43 +00002235 }
jardineb5d44e2003-12-23 08:09:43 +00002236 return retval;
2237}
2238
2239int
2240send_l1_csnp (struct thread *thread)
2241{
2242 struct isis_circuit *circuit;
2243 int retval = ISIS_OK;
2244
2245 circuit = THREAD_ARG (thread);
2246 assert (circuit);
2247
2248 circuit->t_send_csnp[0] = NULL;
2249
hassof390d2c2004-09-10 20:48:21 +00002250 if (circuit->circ_type == CIRCUIT_T_BROADCAST && circuit->u.bc.is_dr[0])
2251 {
2252 send_csnp (circuit, 1);
2253 }
jardineb5d44e2003-12-23 08:09:43 +00002254 /* set next timer thread */
hassof390d2c2004-09-10 20:48:21 +00002255 THREAD_TIMER_ON (master, circuit->t_send_csnp[0], send_l1_csnp, circuit,
2256 isis_jitter (circuit->csnp_interval[0], CSNP_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002257
2258 return retval;
2259}
2260
2261int
2262send_l2_csnp (struct thread *thread)
2263{
2264 struct isis_circuit *circuit;
2265 int retval = ISIS_OK;
2266
2267 circuit = THREAD_ARG (thread);
2268 assert (circuit);
2269
2270 circuit->t_send_csnp[1] = NULL;
2271
hassof390d2c2004-09-10 20:48:21 +00002272 if (circuit->circ_type == CIRCUIT_T_BROADCAST && circuit->u.bc.is_dr[1])
2273 {
2274 send_csnp (circuit, 2);
2275 }
jardineb5d44e2003-12-23 08:09:43 +00002276 /* set next timer thread */
hassof390d2c2004-09-10 20:48:21 +00002277 THREAD_TIMER_ON (master, circuit->t_send_csnp[1], send_l2_csnp, circuit,
2278 isis_jitter (circuit->csnp_interval[1], CSNP_JITTER));
hassod70f99e2004-02-11 20:26:31 +00002279
jardineb5d44e2003-12-23 08:09:43 +00002280 return retval;
2281}
2282
hasso92365882005-01-18 13:53:33 +00002283static int
jardineb5d44e2003-12-23 08:09:43 +00002284build_psnp (int level, struct isis_circuit *circuit, struct list *lsps)
2285{
2286 struct isis_fixed_hdr fixed_hdr;
2287 unsigned long lenp;
2288 u_int16_t length;
2289 int retval = 0;
2290 struct isis_lsp *lsp;
2291 struct isis_passwd *passwd;
paul1eb8ef22005-04-07 07:30:20 +00002292 struct listnode *node, *nnode;
jardineb5d44e2003-12-23 08:09:43 +00002293
2294 if (level == 1)
hassof390d2c2004-09-10 20:48:21 +00002295 fill_fixed_hdr_andstream (&fixed_hdr, L1_PARTIAL_SEQ_NUM,
2296 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002297 else
2298 fill_fixed_hdr_andstream (&fixed_hdr, L2_PARTIAL_SEQ_NUM,
hassof390d2c2004-09-10 20:48:21 +00002299 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002300
2301 /*
2302 * Fill Level 1 or 2 Partial Sequence Numbers header
2303 */
paul9985f832005-02-09 15:51:56 +00002304 lenp = stream_get_endp (circuit->snd_stream);
hassof390d2c2004-09-10 20:48:21 +00002305 stream_putw (circuit->snd_stream, 0); /* PDU length - when we know it */
jardineb5d44e2003-12-23 08:09:43 +00002306 stream_put (circuit->snd_stream, isis->sysid, ISIS_SYS_ID_LEN);
2307 stream_putc (circuit->snd_stream, circuit->idx);
2308
2309 /*
2310 * And TLVs
2311 */
2312
2313 if (level == 1)
2314 passwd = &circuit->area->area_passwd;
2315 else
2316 passwd = &circuit->area->domain_passwd;
2317
hasso1cbc5622005-01-01 10:29:51 +00002318 if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_SEND))
2319 if (passwd->type)
2320 retval = tlv_add_authinfo (passwd->type, passwd->len,
2321 passwd->passwd, circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002322
hassof390d2c2004-09-10 20:48:21 +00002323 if (!retval && lsps)
2324 {
2325 retval = tlv_add_lsp_entries (lsps, circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002326 }
jardineb5d44e2003-12-23 08:09:43 +00002327
hassof390d2c2004-09-10 20:48:21 +00002328 if (isis->debugs & DEBUG_SNP_PACKETS)
2329 {
paul1eb8ef22005-04-07 07:30:20 +00002330 for (ALL_LIST_ELEMENTS (lsps, node, nnode, lsp))
hassof390d2c2004-09-10 20:48:21 +00002331 {
hasso529d65b2004-12-24 00:14:50 +00002332 zlog_debug ("ISIS-Snp (%s): PSNP entry %s, seq 0x%08x,"
2333 " cksum 0x%04x, lifetime %us",
2334 circuit->area->area_tag,
2335 rawlspid_print (lsp->lsp_header->lsp_id),
2336 ntohl (lsp->lsp_header->seq_num),
2337 ntohs (lsp->lsp_header->checksum),
2338 ntohs (lsp->lsp_header->rem_lifetime));
hassof390d2c2004-09-10 20:48:21 +00002339 }
2340 }
2341
paul9985f832005-02-09 15:51:56 +00002342 length = (u_int16_t) stream_get_endp (circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002343 assert (length >= ISIS_PSNP_HDRLEN);
2344 /* Update PDU length */
2345 stream_putw_at (circuit->snd_stream, lenp, length);
2346
2347 return ISIS_OK;
2348}
2349
2350/*
2351 * 7.3.15.4 action on expiration of partial SNP interval
2352 * level 1
2353 */
hasso92365882005-01-18 13:53:33 +00002354static int
jardineb5d44e2003-12-23 08:09:43 +00002355send_psnp (int level, struct isis_circuit *circuit)
2356{
2357 int retval = ISIS_OK;
2358 struct isis_lsp *lsp;
2359 struct list *list = NULL;
paul1eb8ef22005-04-07 07:30:20 +00002360 struct listnode *node, *nnode;
jardineb5d44e2003-12-23 08:09:43 +00002361
hassof390d2c2004-09-10 20:48:21 +00002362 if ((circuit->circ_type == CIRCUIT_T_BROADCAST &&
jardineb5d44e2003-12-23 08:09:43 +00002363 !circuit->u.bc.is_dr[level - 1]) ||
hassof390d2c2004-09-10 20:48:21 +00002364 circuit->circ_type != CIRCUIT_T_BROADCAST)
2365 {
jardineb5d44e2003-12-23 08:09:43 +00002366
hassof390d2c2004-09-10 20:48:21 +00002367 if (circuit->area->lspdb[level - 1] &&
2368 dict_count (circuit->area->lspdb[level - 1]) > 0)
2369 {
2370 list = list_new ();
2371 lsp_build_list_ssn (circuit, list, circuit->area->lspdb[level - 1]);
jardineb5d44e2003-12-23 08:09:43 +00002372
hassof390d2c2004-09-10 20:48:21 +00002373 if (listcount (list) > 0)
2374 {
2375 if (circuit->snd_stream == NULL)
2376 circuit->snd_stream = stream_new (ISO_MTU (circuit));
2377 else
2378 stream_reset (circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002379
2380
hassof390d2c2004-09-10 20:48:21 +00002381 if (isis->debugs & DEBUG_SNP_PACKETS)
hasso529d65b2004-12-24 00:14:50 +00002382 zlog_debug ("ISIS-Snp (%s): Sent L%d PSNP on %s, length %ld",
2383 circuit->area->area_tag, level,
2384 circuit->interface->name,
hasso29e50b22005-09-01 18:18:47 +00002385 /* FIXME: use %z when we stop supporting old
2386 * compilers. */
2387 (unsigned long) STREAM_SIZE (circuit->snd_stream));
jardineb5d44e2003-12-23 08:09:43 +00002388
hassof390d2c2004-09-10 20:48:21 +00002389 retval = build_psnp (level, circuit, list);
2390 if (retval == ISIS_OK)
2391 retval = circuit->tx (circuit, level);
jardineb5d44e2003-12-23 08:09:43 +00002392
hassof390d2c2004-09-10 20:48:21 +00002393 if (retval == ISIS_OK)
2394 {
2395 /*
2396 * sending succeeded, we can clear SSN flags of this circuit
2397 * for the LSPs in list
2398 */
paul1eb8ef22005-04-07 07:30:20 +00002399 for (ALL_LIST_ELEMENTS (list, node, nnode, lsp))
2400 ISIS_CLEAR_FLAG (lsp->SSNflags, circuit);
hassof390d2c2004-09-10 20:48:21 +00002401 }
2402 }
2403 list_delete (list);
2404 }
jardineb5d44e2003-12-23 08:09:43 +00002405 }
jardineb5d44e2003-12-23 08:09:43 +00002406
2407 return retval;
2408}
2409
2410int
2411send_l1_psnp (struct thread *thread)
2412{
2413
2414 struct isis_circuit *circuit;
2415 int retval = ISIS_OK;
2416
2417 circuit = THREAD_ARG (thread);
2418 assert (circuit);
2419
2420 circuit->t_send_psnp[0] = NULL;
2421
2422 send_psnp (1, circuit);
2423 /* set next timer thread */
hassof390d2c2004-09-10 20:48:21 +00002424 THREAD_TIMER_ON (master, circuit->t_send_psnp[0], send_l1_psnp, circuit,
2425 isis_jitter (circuit->psnp_interval[0], PSNP_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002426
2427 return retval;
2428}
2429
2430/*
2431 * 7.3.15.4 action on expiration of partial SNP interval
2432 * level 2
2433 */
2434int
2435send_l2_psnp (struct thread *thread)
2436{
jardineb5d44e2003-12-23 08:09:43 +00002437 struct isis_circuit *circuit;
2438 int retval = ISIS_OK;
2439
2440 circuit = THREAD_ARG (thread);
2441 assert (circuit);
2442
2443 circuit->t_send_psnp[1] = NULL;
2444
2445 send_psnp (2, circuit);
2446
2447 /* set next timer thread */
hassof390d2c2004-09-10 20:48:21 +00002448 THREAD_TIMER_ON (master, circuit->t_send_psnp[1], send_l2_psnp, circuit,
2449 isis_jitter (circuit->psnp_interval[1], PSNP_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002450
2451 return retval;
2452}
2453
hasso92365882005-01-18 13:53:33 +00002454/* FIXME: Not used any more? */
2455/* static void
jardineb5d44e2003-12-23 08:09:43 +00002456build_link_state (struct isis_lsp *lsp, struct isis_circuit *circuit,
hassof390d2c2004-09-10 20:48:21 +00002457 struct stream *stream)
jardineb5d44e2003-12-23 08:09:43 +00002458{
2459 unsigned long length;
2460
hassof390d2c2004-09-10 20:48:21 +00002461 stream_put (stream, lsp->pdu, ntohs (lsp->lsp_header->pdu_len));
paul9985f832005-02-09 15:51:56 +00002462 length = stream_get_endp (stream);
jardineb5d44e2003-12-23 08:09:43 +00002463
2464 return;
hasso92365882005-01-18 13:53:33 +00002465} */
jardineb5d44e2003-12-23 08:09:43 +00002466
jardineb5d44e2003-12-23 08:09:43 +00002467/*
2468 * ISO 10589 - 7.3.14.3
2469 */
2470int
2471send_lsp (struct thread *thread)
2472{
2473 struct isis_circuit *circuit;
2474 struct isis_lsp *lsp;
2475 struct listnode *node;
2476 int retval = 0;
2477
2478 circuit = THREAD_ARG (thread);
2479 assert (circuit);
2480
hassof390d2c2004-09-10 20:48:21 +00002481 if (circuit->state == C_STATE_UP)
2482 {
paul1eb8ef22005-04-07 07:30:20 +00002483 lsp = listgetdata ((node = listhead (circuit->lsp_queue)));
jardineb5d44e2003-12-23 08:09:43 +00002484
2485 /*
hassof390d2c2004-09-10 20:48:21 +00002486 * Do not send if levels do not match
jardineb5d44e2003-12-23 08:09:43 +00002487 */
hassof390d2c2004-09-10 20:48:21 +00002488 if (!(lsp->level & circuit->circuit_is_type))
2489 goto dontsend;
jardineb5d44e2003-12-23 08:09:43 +00002490
hassof390d2c2004-09-10 20:48:21 +00002491 /*
2492 * Do not send if we do not have adjacencies in state up on the circuit
2493 */
2494 if (circuit->upadjcount[lsp->level - 1] == 0)
2495 goto dontsend;
2496 /* only send if it needs sending */
2497 if ((time (NULL) - lsp->last_sent) >=
2498 circuit->area->lsp_gen_interval[lsp->level - 1])
2499 {
jardineb5d44e2003-12-23 08:09:43 +00002500
hassof390d2c2004-09-10 20:48:21 +00002501 if (isis->debugs & DEBUG_UPDATE_PACKETS)
2502 {
hasso529d65b2004-12-24 00:14:50 +00002503 zlog_debug
hassof390d2c2004-09-10 20:48:21 +00002504 ("ISIS-Upd (%s): Sent L%d LSP %s, seq 0x%08x, cksum 0x%04x,"
2505 " lifetime %us on %s", circuit->area->area_tag, lsp->level,
2506 rawlspid_print (lsp->lsp_header->lsp_id),
2507 ntohl (lsp->lsp_header->seq_num),
2508 ntohs (lsp->lsp_header->checksum),
2509 ntohs (lsp->lsp_header->rem_lifetime),
2510 circuit->interface->name);
2511 }
2512 /* copy our lsp to the send buffer */
paul15935e92005-05-03 09:27:23 +00002513 stream_copy (circuit->snd_stream, lsp->pdu);
hassof390d2c2004-09-10 20:48:21 +00002514
2515 retval = circuit->tx (circuit, lsp->level);
2516
jardineb5d44e2003-12-23 08:09:43 +00002517 /*
hassof390d2c2004-09-10 20:48:21 +00002518 * If the sending succeeded, we can del the lsp from circuits
2519 * lsp_queue
jardineb5d44e2003-12-23 08:09:43 +00002520 */
hassof390d2c2004-09-10 20:48:21 +00002521 if (retval == ISIS_OK)
2522 {
2523 list_delete_node (circuit->lsp_queue, node);
2524
2525 /*
2526 * On broadcast circuits also the SRMflag can be cleared
2527 */
2528 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
2529 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
2530
2531 if (flags_any_set (lsp->SRMflags) == 0)
2532 {
2533 /*
2534 * need to remember when we were last sent
2535 */
2536 lsp->last_sent = time (NULL);
2537 }
2538 }
2539 else
2540 {
hasso529d65b2004-12-24 00:14:50 +00002541 zlog_debug ("sending of level %d link state failed", lsp->level);
hassof390d2c2004-09-10 20:48:21 +00002542 }
jardineb5d44e2003-12-23 08:09:43 +00002543 }
hassof390d2c2004-09-10 20:48:21 +00002544 else
2545 {
2546 /* my belief is that if it wasn't his time, the lsp can be removed
2547 * from the queue
2548 */
2549 dontsend:
2550 list_delete_node (circuit->lsp_queue, node);
2551 }
jardineb5d44e2003-12-23 08:09:43 +00002552#if 0
hassof390d2c2004-09-10 20:48:21 +00002553 /*
2554 * If there are still LSPs send next one after lsp-interval (33 msecs)
2555 */
2556 if (listcount (circuit->lsp_queue) > 0)
2557 thread_add_timer (master, send_lsp, circuit, 1);
jardineb5d44e2003-12-23 08:09:43 +00002558#endif
hassof390d2c2004-09-10 20:48:21 +00002559 }
jardineb5d44e2003-12-23 08:09:43 +00002560
2561 return retval;
hassof390d2c2004-09-10 20:48:21 +00002562}
jardineb5d44e2003-12-23 08:09:43 +00002563
2564int
hassof390d2c2004-09-10 20:48:21 +00002565ack_lsp (struct isis_link_state_hdr *hdr, struct isis_circuit *circuit,
2566 int level)
jardineb5d44e2003-12-23 08:09:43 +00002567{
2568 unsigned long lenp;
2569 int retval;
2570 u_int16_t length;
2571 struct isis_fixed_hdr fixed_hdr;
2572
2573 if (!circuit->snd_stream)
hassof390d2c2004-09-10 20:48:21 +00002574 circuit->snd_stream = stream_new (ISO_MTU (circuit));
jardineb5d44e2003-12-23 08:09:43 +00002575 else
2576 stream_reset (circuit->snd_stream);
2577
2578// fill_llc_hdr (stream);
2579 if (level == 1)
hassof390d2c2004-09-10 20:48:21 +00002580 fill_fixed_hdr_andstream (&fixed_hdr, L1_PARTIAL_SEQ_NUM,
2581 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002582 else
hassof390d2c2004-09-10 20:48:21 +00002583 fill_fixed_hdr_andstream (&fixed_hdr, L2_PARTIAL_SEQ_NUM,
2584 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002585
2586
paul9985f832005-02-09 15:51:56 +00002587 lenp = stream_get_endp (circuit->snd_stream);
hassof390d2c2004-09-10 20:48:21 +00002588 stream_putw (circuit->snd_stream, 0); /* PDU length */
2589 stream_put (circuit->snd_stream, isis->sysid, ISIS_SYS_ID_LEN);
jardineb5d44e2003-12-23 08:09:43 +00002590 stream_putc (circuit->snd_stream, circuit->idx);
hassof390d2c2004-09-10 20:48:21 +00002591 stream_putc (circuit->snd_stream, 9); /* code */
2592 stream_putc (circuit->snd_stream, 16); /* len */
jardineb5d44e2003-12-23 08:09:43 +00002593
hassof390d2c2004-09-10 20:48:21 +00002594 stream_putw (circuit->snd_stream, ntohs (hdr->rem_lifetime));
2595 stream_put (circuit->snd_stream, hdr->lsp_id, ISIS_SYS_ID_LEN + 2);
2596 stream_putl (circuit->snd_stream, ntohl (hdr->seq_num));
2597 stream_putw (circuit->snd_stream, ntohs (hdr->checksum));
jardineb5d44e2003-12-23 08:09:43 +00002598
paul9985f832005-02-09 15:51:56 +00002599 length = (u_int16_t) stream_get_endp (circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002600 /* Update PDU length */
2601 stream_putw_at (circuit->snd_stream, lenp, length);
2602
2603 retval = circuit->tx (circuit, level);
2604
2605 return retval;
2606}
2607
2608#if 0
2609/*
2610 * ISH PDU Processing
2611 */
2612
jardineb5d44e2003-12-23 08:09:43 +00002613 /*
2614 * Let's first check if the local and remote system have any common area
2615 * addresses
2616 */
hassof390d2c2004-09-10 20:48:21 +00002617if (area_match (tlvs.area_addrs, isis->man_area_addrs) == 0)
2618 {
2619 if (circuit->circuit_t == IS_LEVEL_2)
2620 {
2621 /* do as in table 8 (p. 40) */
2622 switch (circuit_type)
2623 {
2624 case IS_LEVEL_1:
2625 if (adj->adj_state != ISIS_ADJ_UP)
2626 {
2627 /* Reject */
2628 zlog_warn ("areaMismatch");
2629 retval = ISIS_WARNING;
2630 }
2631 else if (adj->adj_usage == ISIS_ADJ_LEVEL1)
2632 {
2633 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Area Mismatch",
2634 circuit->adjdb);
2635 }
2636 else if (adj->adj_usage == ISIS_ADJ_LEVEL1AND2 ||
2637 adj->adj_usage == ISIS_ADJ_LEVEL2)
2638 {
2639 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System",
2640 circuit->adjdb);
2641 }
2642 break;
2643 case IS_LEVEL_2:
2644 if (adj->adj_state != ISIS_ADJ_UP)
2645 {
2646 isis_adj_state_change (adj, ISIS_ADJ_UP, NULL,
2647 circuit->adjdb);
2648 adj->adj_usage = ISIS_ADJ_LEVEL2;
2649 }
2650 else if (adj->adj_usage == ISIS_ADJ_LEVEL1 ||
2651 adj->adj_usage == ISIS_ADJ_LEVEL1AND2)
2652 {
2653 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System",
2654 circuit->adjdb);
2655 }
2656 else if (adj->adj_usage == ISIS_ADJ_LEVEL2)
2657 {
2658 ; /* Accept */
2659 }
2660 break;
2661 case IS_LEVEL_1_AND_2:
2662 if (adj->adj_state != ISIS_ADJ_UP)
2663 {
2664 isis_adj_state_change (adj, ISIS_ADJ_UP, NULL,
2665 circuit->adjdb);
2666 adj->adj_usage = ISIS_ADJ_LEVEL2;
2667 }
2668 else if (adj->adj_usage == ISIS_ADJ_LEVEL1)
2669 {
2670 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System",
2671 circuit->adjdb);
2672 }
2673 else if (adj->adj_usage == ISIS_ADJ_LEVEL1AND2)
2674 {
2675 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Area Mismatch",
2676 circuit->adjdb);
2677 }
2678 else if (adj->adj_usage == ISIS_ADJ_LEVEL2)
2679 {
2680 ; /* Accept */
2681 }
2682 break;
2683 }
2684 goto mismatch;
jardineb5d44e2003-12-23 08:09:43 +00002685 }
hassof390d2c2004-09-10 20:48:21 +00002686 else
2687 {
2688 isis_delete_adj (adj, circuit->adjdb);
2689 zlog_warn ("areaMismatch");
2690 return ISIS_WARNING;
2691 }
jardineb5d44e2003-12-23 08:09:43 +00002692 }
2693
2694mismatch:
2695#endif