blob: 591b49127874b7c478ea8e308937f6f0bc440482 [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 {
hassoa96d8d12005-09-16 14:44:23 +00001088 lsp_update (lsp, hdr, circuit->rcv_stream, circuit->area,
1089 level);
hassof390d2c2004-09-10 20:48:21 +00001090 /* ii */
1091 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
1092 /* iii */
1093 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
1094 /* v */
1095 ISIS_FLAGS_CLEAR_ALL (lsp->SSNflags); /* FIXME: OTHER than c */
1096 /* iv */
1097 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1098 ISIS_SET_FLAG (lsp->SSNflags, circuit);
jardineb5d44e2003-12-23 08:09:43 +00001099
hassof390d2c2004-09-10 20:48:21 +00001100 } /* 7.3.16.4 b) 2) */
1101 else if (comp == LSP_EQUAL)
1102 {
1103 /* i */
1104 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
1105 /* ii */
1106 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1107 ISIS_SET_FLAG (lsp->SSNflags, circuit);
1108 } /* 7.3.16.4 b) 3) */
1109 else
1110 {
1111 ISIS_SET_FLAG (lsp->SRMflags, circuit);
1112 ISIS_CLEAR_FLAG (lsp->SSNflags, circuit);
1113 }
1114 }
1115 else
1116 {
1117 /* our own LSP -> 7.3.16.4 c) */
1118 if (LSP_PSEUDO_ID (lsp->lsp_header->lsp_id) !=
1119 circuit->circuit_id
1120 || (LSP_PSEUDO_ID (lsp->lsp_header->lsp_id) ==
1121 circuit->circuit_id
1122 && circuit->u.bc.is_dr[level - 1] == 1))
1123 {
1124 lsp->lsp_header->seq_num = htonl (ntohl (hdr->seq_num) + 1);
hassoc89c05d2005-09-04 21:36:36 +00001125 if (isis->debugs & DEBUG_UPDATE_PACKETS)
1126 zlog_debug ("LSP LEN: %d",
1127 ntohs (lsp->lsp_header->pdu_len));
hassof390d2c2004-09-10 20:48:21 +00001128 iso_csum_create (STREAM_DATA (lsp->pdu) + 12,
1129 ntohs (lsp->lsp_header->pdu_len) - 12, 12);
1130 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
hassoc89c05d2005-09-04 21:36:36 +00001131 if (isis->debugs & DEBUG_UPDATE_PACKETS)
1132 zlog_debug ("ISIS-Upd (%s): (1) re-originating LSP %s new "
1133 "seq 0x%08x", circuit->area->area_tag,
1134 rawlspid_print (hdr->lsp_id),
1135 ntohl (lsp->lsp_header->seq_num));
hassof390d2c2004-09-10 20:48:21 +00001136 lsp->lsp_header->rem_lifetime =
1137 htons (isis_jitter
1138 (circuit->area->max_lsp_lifetime[level - 1],
1139 MAX_AGE_JITTER));
1140 }
1141 else
1142 {
1143 /* Got purge for own pseudo-lsp, and we are not DR */
1144 lsp_purge_dr (lsp->lsp_header->lsp_id, circuit, level);
1145 }
1146 }
1147 }
1148 return retval;
jardineb5d44e2003-12-23 08:09:43 +00001149 }
jardineb5d44e2003-12-23 08:09:43 +00001150 /* 7.3.15.1 c) - If this is our own lsp and we don't have it initiate a
1151 * purge */
hassof390d2c2004-09-10 20:48:21 +00001152 if (memcmp (hdr->lsp_id, isis->sysid, ISIS_SYS_ID_LEN) == 0)
1153 {
1154 if (!lsp)
1155 {
1156 /* 7.3.16.4: initiate a purge */
1157 lsp_purge_non_exist (hdr, circuit->area);
1158 return ISIS_OK;
1159 }
1160 /* 7.3.15.1 d) - If this is our own lsp and we have it */
1161
1162 /* In 7.3.16.1, If an Intermediate system R somewhere in the domain
1163 * has information that the current sequence number for source S is
1164 * "greater" than that held by S, ... */
1165
1166 else if (ntohl (hdr->seq_num) > ntohl (lsp->lsp_header->seq_num))
1167 {
1168 /* 7.3.16.1 */
1169 lsp->lsp_header->seq_num = htonl (ntohl (hdr->seq_num) + 1);
1170
1171 iso_csum_create (STREAM_DATA (lsp->pdu) + 12,
1172 ntohs (lsp->lsp_header->pdu_len) - 12, 12);
1173
1174 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
hassoc89c05d2005-09-04 21:36:36 +00001175 if (isis->debugs & DEBUG_UPDATE_PACKETS)
1176 zlog_debug ("ISIS-Upd (%s): (2) re-originating LSP %s new seq "
1177 "0x%08x", circuit->area->area_tag,
1178 rawlspid_print (hdr->lsp_id),
1179 ntohl (lsp->lsp_header->seq_num));
hassof390d2c2004-09-10 20:48:21 +00001180 lsp->lsp_header->rem_lifetime =
1181 htons (isis_jitter
1182 (circuit->area->max_lsp_lifetime[level - 1],
1183 MAX_AGE_JITTER));
1184 }
jardineb5d44e2003-12-23 08:09:43 +00001185 }
hassof390d2c2004-09-10 20:48:21 +00001186 else
1187 {
1188 /* 7.3.15.1 e) - This lsp originated on another system */
jardineb5d44e2003-12-23 08:09:43 +00001189
hassof390d2c2004-09-10 20:48:21 +00001190 /* 7.3.15.1 e) 1) LSP newer than the one in db or no LSP in db */
1191 if ((!lsp || comp == LSP_NEWER))
1192 {
1193 /* i */
1194 if (lsp)
1195 {
jardineb5d44e2003-12-23 08:09:43 +00001196#ifdef EXTREME_DEBUG
hasso529d65b2004-12-24 00:14:50 +00001197 zlog_debug ("level %d number is - %ld", level,
1198 circuit->area->lspdb[level - 1]->dict_nodecount);
jardineb5d44e2003-12-23 08:09:43 +00001199#endif /* EXTREME DEBUG */
hassof390d2c2004-09-10 20:48:21 +00001200 lsp_search_and_destroy (hdr->lsp_id,
1201 circuit->area->lspdb[level - 1]);
1202 /* exists, so we overwrite */
jardineb5d44e2003-12-23 08:09:43 +00001203#ifdef EXTREME_DEBUG
hasso529d65b2004-12-24 00:14:50 +00001204 zlog_debug ("level %d number is - %ld", level,
1205 circuit->area->lspdb[level - 1]->dict_nodecount);
jardineb5d44e2003-12-23 08:09:43 +00001206#endif /* EXTREME DEBUG */
hassof390d2c2004-09-10 20:48:21 +00001207 }
1208 /*
1209 * If this lsp is a frag, need to see if we have zero lsp present
1210 */
1211 if (LSP_FRAGMENT (hdr->lsp_id) != 0)
1212 {
1213 memcpy (lspid, hdr->lsp_id, ISIS_SYS_ID_LEN + 1);
1214 LSP_FRAGMENT (lspid) = 0;
1215 lsp0 = lsp_search (lspid, circuit->area->lspdb[level - 1]);
1216 if (!lsp0)
1217 {
hasso529d65b2004-12-24 00:14:50 +00001218 zlog_debug ("Got lsp frag, while zero lsp not database");
hassof390d2c2004-09-10 20:48:21 +00001219 return ISIS_OK;
1220 }
1221 }
1222 lsp =
1223 lsp_new_from_stream_ptr (circuit->rcv_stream,
1224 ntohs (hdr->pdu_len), lsp0,
1225 circuit->area);
1226 lsp->level = level;
1227 lsp->adj = adj;
1228 lsp_insert (lsp, circuit->area->lspdb[level - 1]);
1229 /* ii */
1230 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
1231 /* iii */
1232 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
jardineb5d44e2003-12-23 08:09:43 +00001233
hassof390d2c2004-09-10 20:48:21 +00001234 /* iv */
1235 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1236 ISIS_SET_FLAG (lsp->SSNflags, circuit);
1237 /* FIXME: v) */
1238 }
1239 /* 7.3.15.1 e) 2) LSP equal to the one in db */
1240 else if (comp == LSP_EQUAL)
1241 {
1242 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
hassoa96d8d12005-09-16 14:44:23 +00001243 lsp_update (lsp, hdr, circuit->rcv_stream, circuit->area, level);
hassof390d2c2004-09-10 20:48:21 +00001244 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1245 {
1246 ISIS_SET_FLAG (lsp->SSNflags, circuit);
1247 }
1248 }
1249 /* 7.3.15.1 e) 3) LSP older than the one in db */
1250 else
1251 {
1252 ISIS_SET_FLAG (lsp->SRMflags, circuit);
1253 ISIS_CLEAR_FLAG (lsp->SSNflags, circuit);
1254 }
jardineb5d44e2003-12-23 08:09:43 +00001255 }
jardineb5d44e2003-12-23 08:09:43 +00001256 if (lsp)
1257 lsp->adj = adj;
1258 return retval;
1259}
1260
1261/*
1262 * Process Sequence Numbers
1263 * ISO - 10589
1264 * Section 7.3.15.2 - Action on receipt of a sequence numbers PDU
1265 */
1266
hasso92365882005-01-18 13:53:33 +00001267static int
hassof390d2c2004-09-10 20:48:21 +00001268process_snp (int snp_type, int level, struct isis_circuit *circuit,
1269 u_char * ssnpa)
jardineb5d44e2003-12-23 08:09:43 +00001270{
1271 int retval = ISIS_OK;
1272 int cmp, own_lsp;
1273 char typechar = ' ';
1274 int len;
1275 struct isis_adjacency *adj;
1276 struct isis_complete_seqnum_hdr *chdr = NULL;
1277 struct isis_partial_seqnum_hdr *phdr = NULL;
1278 uint32_t found = 0, expected = 0;
1279 struct isis_lsp *lsp;
1280 struct lsp_entry *entry;
paul1eb8ef22005-04-07 07:30:20 +00001281 struct listnode *node, *nnode;
1282 struct listnode *node2, *nnode2;
jardineb5d44e2003-12-23 08:09:43 +00001283 struct tlvs tlvs;
1284 struct list *lsp_list = NULL;
1285 struct isis_passwd *passwd;
1286
hassof390d2c2004-09-10 20:48:21 +00001287 if (snp_type == ISIS_SNP_CSNP_FLAG)
1288 {
1289 /* getting the header info */
1290 typechar = 'C';
1291 chdr =
1292 (struct isis_complete_seqnum_hdr *) STREAM_PNT (circuit->rcv_stream);
1293 circuit->rcv_stream->getp += ISIS_CSNP_HDRLEN;
1294 len = ntohs (chdr->pdu_len);
1295 if (len < ISIS_CSNP_HDRLEN)
1296 {
1297 zlog_warn ("Received a CSNP with bogus length!");
1298 return ISIS_OK;
1299 }
jardineb5d44e2003-12-23 08:09:43 +00001300 }
hassof390d2c2004-09-10 20:48:21 +00001301 else
1302 {
1303 typechar = 'P';
1304 phdr =
1305 (struct isis_partial_seqnum_hdr *) STREAM_PNT (circuit->rcv_stream);
1306 circuit->rcv_stream->getp += ISIS_PSNP_HDRLEN;
1307 len = ntohs (phdr->pdu_len);
1308 if (len < ISIS_PSNP_HDRLEN)
1309 {
1310 zlog_warn ("Received a CSNP with bogus length!");
1311 return ISIS_OK;
1312 }
jardineb5d44e2003-12-23 08:09:43 +00001313 }
jardineb5d44e2003-12-23 08:09:43 +00001314
1315 /* 7.3.15.2 a) 1 - external domain circuit will discard snp pdu */
hassof390d2c2004-09-10 20:48:21 +00001316 if (circuit->ext_domain)
1317 {
jardineb5d44e2003-12-23 08:09:43 +00001318
hasso529d65b2004-12-24 00:14:50 +00001319 zlog_debug ("ISIS-Snp (%s): Rcvd L%d %cSNP on %s, "
1320 "skipping: circuit externalDomain = true",
1321 circuit->area->area_tag,
1322 level, typechar, circuit->interface->name);
jardineb5d44e2003-12-23 08:09:43 +00001323
1324 return ISIS_OK;
1325 }
hassof390d2c2004-09-10 20:48:21 +00001326
1327 /* 7.3.15.2 a) 2,3 - manualL2OnlyMode not implemented */
1328 if (!accept_level (level, circuit->circuit_is_type))
1329 {
1330
hasso529d65b2004-12-24 00:14:50 +00001331 zlog_debug ("ISIS-Snp (%s): Rcvd L%d %cSNP on %s, "
1332 "skipping: circuit type %s does not match level %d",
1333 circuit->area->area_tag,
1334 level,
1335 typechar,
1336 circuit->interface->name,
1337 circuit_t2string (circuit->circuit_is_type), level);
hassof390d2c2004-09-10 20:48:21 +00001338
1339 return ISIS_OK;
1340 }
1341
1342 /* 7.3.15.2 a) 4 - not applicable for CSNP only PSNPs on broadcast */
1343 if ((snp_type == ISIS_SNP_PSNP_FLAG) &&
1344 (circuit->circ_type == CIRCUIT_T_BROADCAST))
1345 {
1346 if (!circuit->u.bc.is_dr[level - 1])
1347 {
1348
hasso529d65b2004-12-24 00:14:50 +00001349 zlog_debug ("ISIS-Snp (%s): Rcvd L%d %cSNP from %s on %s, "
1350 "skipping: we are not the DIS",
1351 circuit->area->area_tag,
1352 level,
1353 typechar, snpa_print (ssnpa), circuit->interface->name);
hassof390d2c2004-09-10 20:48:21 +00001354
1355 return ISIS_OK;
1356 }
1357 }
jardineb5d44e2003-12-23 08:09:43 +00001358
1359 /* 7.3.15.2 a) 5 - need to make sure IDLength matches - already checked */
1360
1361 /* 7.3.15.2 a) 6 - maximum area match, can be ommited since we only use 3
1362 * - already checked */
1363
1364 /* 7.3.15.2 a) 7 - Must check that we have an adjacency of the same level */
1365 /* for broadcast circuits, snpa should be compared */
1366 /* FIXME : Do we need to check SNPA? */
hassof390d2c2004-09-10 20:48:21 +00001367 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
1368 {
1369 if (snp_type == ISIS_SNP_CSNP_FLAG)
1370 {
1371 adj =
1372 isis_adj_lookup (chdr->source_id, circuit->u.bc.adjdb[level - 1]);
1373 }
1374 else
1375 {
1376 /* a psnp on a broadcast, how lovely of Juniper :) */
1377 adj =
1378 isis_adj_lookup (phdr->source_id, circuit->u.bc.adjdb[level - 1]);
1379 }
1380 if (!adj)
1381 return ISIS_OK; /* Silently discard */
jardineb5d44e2003-12-23 08:09:43 +00001382 }
hassof390d2c2004-09-10 20:48:21 +00001383 else
1384 {
1385 if (!circuit->u.p2p.neighbor)
1386 return ISIS_OK; /* Silently discard */
1387 }
jardineb5d44e2003-12-23 08:09:43 +00001388
1389 /* 7.3.15.2 a) 8 - Passwords for level 1 - not implemented */
1390
1391 /* 7.3.15.2 a) 9 - Passwords for level 2 - not implemented */
1392
1393 memset (&tlvs, 0, sizeof (struct tlvs));
1394
1395 /* parse the SNP */
1396 expected |= TLVFLAG_LSP_ENTRIES;
1397 expected |= TLVFLAG_AUTH_INFO;
1398 retval = parse_tlvs (circuit->area->area_tag,
hassof390d2c2004-09-10 20:48:21 +00001399 STREAM_PNT (circuit->rcv_stream),
jardineb5d44e2003-12-23 08:09:43 +00001400 len - circuit->rcv_stream->getp,
hassof390d2c2004-09-10 20:48:21 +00001401 &expected, &found, &tlvs);
jardineb5d44e2003-12-23 08:09:43 +00001402
hassof390d2c2004-09-10 20:48:21 +00001403 if (retval > ISIS_WARNING)
1404 {
1405 zlog_warn ("something went very wrong processing SNP");
1406 free_tlvs (&tlvs);
1407 return retval;
1408 }
jardineb5d44e2003-12-23 08:09:43 +00001409
hasso1cbc5622005-01-01 10:29:51 +00001410 if (level == 1)
1411 passwd = &circuit->area->area_passwd;
1412 else
1413 passwd = &circuit->area->domain_passwd;
1414
1415 if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_RECV))
hassof390d2c2004-09-10 20:48:21 +00001416 {
hasso1cbc5622005-01-01 10:29:51 +00001417 if (passwd->type)
hassof390d2c2004-09-10 20:48:21 +00001418 {
hasso1cbc5622005-01-01 10:29:51 +00001419 if (!(found & TLVFLAG_AUTH_INFO) ||
1420 authentication_check (passwd, &tlvs.auth_info))
1421 {
1422 isis_event_auth_failure (circuit->area->area_tag,
1423 "SNP authentication" " failure",
1424 phdr ? phdr->source_id : chdr->source_id);
1425 return ISIS_OK;
1426 }
hassof390d2c2004-09-10 20:48:21 +00001427 }
1428 }
jardineb5d44e2003-12-23 08:09:43 +00001429
1430 /* debug isis snp-packets */
hassof390d2c2004-09-10 20:48:21 +00001431 if (isis->debugs & DEBUG_SNP_PACKETS)
1432 {
hasso529d65b2004-12-24 00:14:50 +00001433 zlog_debug ("ISIS-Snp (%s): Rcvd L%d %cSNP from %s on %s",
1434 circuit->area->area_tag,
1435 level,
1436 typechar, snpa_print (ssnpa), circuit->interface->name);
hassof390d2c2004-09-10 20:48:21 +00001437 if (tlvs.lsp_entries)
1438 {
paul1eb8ef22005-04-07 07:30:20 +00001439 for (ALL_LIST_ELEMENTS (tlvs.lsp_entries, node, nnode, entry))
hassof390d2c2004-09-10 20:48:21 +00001440 {
hasso529d65b2004-12-24 00:14:50 +00001441 zlog_debug ("ISIS-Snp (%s): %cSNP entry %s, seq 0x%08x,"
1442 " cksum 0x%04x, lifetime %us",
1443 circuit->area->area_tag,
1444 typechar,
1445 rawlspid_print (entry->lsp_id),
1446 ntohl (entry->seq_num),
1447 ntohs (entry->checksum), ntohs (entry->rem_lifetime));
hassof390d2c2004-09-10 20:48:21 +00001448 }
1449 }
jardineb5d44e2003-12-23 08:09:43 +00001450 }
jardineb5d44e2003-12-23 08:09:43 +00001451
1452 /* 7.3.15.2 b) Actions on LSP_ENTRIES reported */
hassof390d2c2004-09-10 20:48:21 +00001453 if (tlvs.lsp_entries)
1454 {
paul1eb8ef22005-04-07 07:30:20 +00001455 for (ALL_LIST_ELEMENTS (tlvs.lsp_entries, node, nnode, entry))
hassof390d2c2004-09-10 20:48:21 +00001456 {
1457 lsp = lsp_search (entry->lsp_id, circuit->area->lspdb[level - 1]);
1458 own_lsp = !memcmp (entry->lsp_id, isis->sysid, ISIS_SYS_ID_LEN);
1459 if (lsp)
1460 {
1461 /* 7.3.15.2 b) 1) is this LSP newer */
1462 cmp = lsp_compare (circuit->area->area_tag, lsp, entry->seq_num,
1463 entry->checksum, entry->rem_lifetime);
1464 /* 7.3.15.2 b) 2) if it equals, clear SRM on p2p */
1465 if (cmp == LSP_EQUAL)
1466 {
1467 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1468 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
1469 /* 7.3.15.2 b) 3) if it is older, clear SSN and set SRM */
1470 }
1471 else if (cmp == LSP_OLDER)
1472 {
1473 ISIS_CLEAR_FLAG (lsp->SSNflags, circuit);
1474 ISIS_SET_FLAG (lsp->SRMflags, circuit);
1475 }
1476 else
1477 {
1478 /* 7.3.15.2 b) 4) if it is newer, set SSN and clear SRM
1479 * on p2p */
1480 if (own_lsp)
1481 {
1482 lsp_inc_seqnum (lsp, ntohl (entry->seq_num));
1483 ISIS_SET_FLAG (lsp->SRMflags, circuit);
1484 }
1485 else
1486 {
1487 ISIS_SET_FLAG (lsp->SSNflags, circuit);
1488 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1489 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
1490 }
1491 }
1492 }
1493 else
1494 {
1495 /* 7.3.15.2 b) 5) if it was not found, and all of those are not 0,
1496 * insert it and set SSN on it */
1497 if (entry->rem_lifetime && entry->checksum && entry->seq_num &&
1498 memcmp (entry->lsp_id, isis->sysid, ISIS_SYS_ID_LEN))
1499 {
1500 lsp = lsp_new (entry->lsp_id, ntohs (entry->rem_lifetime),
1501 0, 0, entry->checksum, level);
1502 lsp_insert (lsp, circuit->area->lspdb[level - 1]);
1503 ISIS_SET_FLAG (lsp->SSNflags, circuit);
1504 }
1505 }
jardineb5d44e2003-12-23 08:09:43 +00001506 }
1507 }
jardineb5d44e2003-12-23 08:09:43 +00001508
1509 /* 7.3.15.2 c) on CSNP set SRM for all in range which were not reported */
hassof390d2c2004-09-10 20:48:21 +00001510 if (snp_type == ISIS_SNP_CSNP_FLAG)
1511 {
1512 /*
1513 * Build a list from our own LSP db bounded with start_ and stop_lsp_id
1514 */
1515 lsp_list = list_new ();
1516 lsp_build_list_nonzero_ht (chdr->start_lsp_id, chdr->stop_lsp_id,
1517 lsp_list, circuit->area->lspdb[level - 1]);
jardineb5d44e2003-12-23 08:09:43 +00001518
hassof390d2c2004-09-10 20:48:21 +00001519 /* Fixme: Find a better solution */
1520 if (tlvs.lsp_entries)
1521 {
paul1eb8ef22005-04-07 07:30:20 +00001522 for (ALL_LIST_ELEMENTS (tlvs.lsp_entries, node, nnode, entry))
hassof390d2c2004-09-10 20:48:21 +00001523 {
paul1eb8ef22005-04-07 07:30:20 +00001524 for (ALL_LIST_ELEMENTS (lsp_list, node2, nnode2, lsp))
hassof390d2c2004-09-10 20:48:21 +00001525 {
1526 if (lsp_id_cmp (lsp->lsp_header->lsp_id, entry->lsp_id) == 0)
1527 {
1528 list_delete_node (lsp_list, node2);
1529 break;
1530 }
1531 }
1532 }
1533 }
1534 /* on remaining LSPs we set SRM (neighbor knew not of) */
paul1eb8ef22005-04-07 07:30:20 +00001535 for (ALL_LIST_ELEMENTS (lsp_list, node2, nnode2, lsp))
hassof390d2c2004-09-10 20:48:21 +00001536 {
1537 ISIS_SET_FLAG (lsp->SRMflags, circuit);
jardineb5d44e2003-12-23 08:09:43 +00001538 }
hassof390d2c2004-09-10 20:48:21 +00001539 /* lets free it */
1540 list_free (lsp_list);
jardineb5d44e2003-12-23 08:09:43 +00001541 }
jardineb5d44e2003-12-23 08:09:43 +00001542
1543 free_tlvs (&tlvs);
1544 return retval;
1545}
1546
hasso92365882005-01-18 13:53:33 +00001547static int
hassof390d2c2004-09-10 20:48:21 +00001548process_csnp (int level, struct isis_circuit *circuit, u_char * ssnpa)
jardineb5d44e2003-12-23 08:09:43 +00001549{
jardineb5d44e2003-12-23 08:09:43 +00001550 /* Sanity check - FIXME: move to correct place */
hassof390d2c2004-09-10 20:48:21 +00001551 if ((stream_get_endp (circuit->rcv_stream) -
1552 stream_get_getp (circuit->rcv_stream)) < ISIS_CSNP_HDRLEN)
1553 {
1554 zlog_warn ("Packet too short ( < %d)", ISIS_CSNP_HDRLEN);
1555 return ISIS_WARNING;
1556 }
jardineb5d44e2003-12-23 08:09:43 +00001557
1558 return process_snp (ISIS_SNP_CSNP_FLAG, level, circuit, ssnpa);
1559}
1560
hasso92365882005-01-18 13:53:33 +00001561static int
hassof390d2c2004-09-10 20:48:21 +00001562process_psnp (int level, struct isis_circuit *circuit, u_char * ssnpa)
jardineb5d44e2003-12-23 08:09:43 +00001563{
hassof390d2c2004-09-10 20:48:21 +00001564 if ((stream_get_endp (circuit->rcv_stream) -
1565 stream_get_getp (circuit->rcv_stream)) < ISIS_PSNP_HDRLEN)
1566 {
1567 zlog_warn ("Packet too short");
1568 return ISIS_WARNING;
1569 }
jardineb5d44e2003-12-23 08:09:43 +00001570
1571 return process_snp (ISIS_SNP_PSNP_FLAG, level, circuit, ssnpa);
1572}
1573
jardineb5d44e2003-12-23 08:09:43 +00001574/*
1575 * Process ISH
1576 * ISO - 10589
1577 * Section 8.2.2 - Receiving ISH PDUs by an intermediate system
1578 * FIXME: sample packet dump, need to figure 0x81 - looks like NLPid
hassof390d2c2004-09-10 20:48:21 +00001579 * 0x82 0x15 0x01 0x00 0x04 0x01 0x2c 0x59
1580 * 0x38 0x08 0x47 0x00 0x01 0x00 0x02 0x00
1581 * 0x03 0x00 0x81 0x01 0xcc
jardineb5d44e2003-12-23 08:09:43 +00001582 */
hasso92365882005-01-18 13:53:33 +00001583static int
jardineb5d44e2003-12-23 08:09:43 +00001584process_is_hello (struct isis_circuit *circuit)
1585{
1586 struct isis_adjacency *adj;
1587 int retval = ISIS_OK;
1588 u_char neigh_len;
1589 u_char *sysid;
1590
1591 /* In this point in time we are not yet able to handle is_hellos
1592 * on lan - Sorry juniper...
1593 */
1594 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
1595 return retval;
1596
1597 neigh_len = stream_getc (circuit->rcv_stream);
hassof390d2c2004-09-10 20:48:21 +00001598 sysid = STREAM_PNT (circuit->rcv_stream) + neigh_len - 1 - ISIS_SYS_ID_LEN;
jardineb5d44e2003-12-23 08:09:43 +00001599 adj = circuit->u.p2p.neighbor;
hassof390d2c2004-09-10 20:48:21 +00001600 if (!adj)
1601 {
1602 /* 8.2.2 */
hassof7c43dc2004-09-26 16:24:14 +00001603 adj = isis_new_adj (sysid, (u_char *) " ", 0, circuit);
hassof390d2c2004-09-10 20:48:21 +00001604 if (adj == NULL)
1605 return ISIS_ERROR;
jardineb5d44e2003-12-23 08:09:43 +00001606
hassof390d2c2004-09-10 20:48:21 +00001607 isis_adj_state_change (adj, ISIS_ADJ_INITIALIZING, NULL);
1608 adj->sys_type = ISIS_SYSTYPE_UNKNOWN;
1609 circuit->u.p2p.neighbor = adj;
1610 }
1611 /* 8.2.2 a) */
1612 if ((adj->adj_state == ISIS_ADJ_UP) && memcmp (adj->sysid, sysid,
1613 ISIS_SYS_ID_LEN))
1614 {
1615 /* 8.2.2 a) 1) FIXME: adjStateChange(down) event */
1616 /* 8.2.2 a) 2) delete the adj */
1617 XFREE (MTYPE_ISIS_ADJACENCY, adj);
1618 /* 8.2.2 a) 3) create a new adj */
hassof7c43dc2004-09-26 16:24:14 +00001619 adj = isis_new_adj (sysid, (u_char *) " ", 0, circuit);
hassof390d2c2004-09-10 20:48:21 +00001620 if (adj == NULL)
1621 return ISIS_ERROR;
jardineb5d44e2003-12-23 08:09:43 +00001622
hassof390d2c2004-09-10 20:48:21 +00001623 /* 8.2.2 a) 3) i */
1624 isis_adj_state_change (adj, ISIS_ADJ_INITIALIZING, NULL);
1625 /* 8.2.2 a) 3) ii */
1626 adj->sys_type = ISIS_SYSTYPE_UNKNOWN;
1627 /* 8.2.2 a) 4) quite meaningless */
1628 }
jardineb5d44e2003-12-23 08:09:43 +00001629 /* 8.2.2 b) ignore on condition */
hassof390d2c2004-09-10 20:48:21 +00001630 if ((adj->adj_state == ISIS_ADJ_INITIALIZING) &&
1631 (adj->sys_type == ISIS_SYSTYPE_IS))
1632 {
1633 /* do nothing */
1634 }
1635 else
1636 {
1637 /* 8.2.2 c) respond with a p2p IIH */
1638 send_hello (circuit, 1);
1639 }
jardineb5d44e2003-12-23 08:09:43 +00001640 /* 8.2.2 d) type is IS */
hassof390d2c2004-09-10 20:48:21 +00001641 adj->sys_type = ISIS_SYSTYPE_IS;
jardineb5d44e2003-12-23 08:09:43 +00001642 /* 8.2.2 e) FIXME: Circuit type of? */
1643
jardineb5d44e2003-12-23 08:09:43 +00001644 return retval;
1645}
1646
jardineb5d44e2003-12-23 08:09:43 +00001647/*
1648 * PDU Dispatcher
1649 */
1650
hasso92365882005-01-18 13:53:33 +00001651static int
hassof390d2c2004-09-10 20:48:21 +00001652isis_handle_pdu (struct isis_circuit *circuit, u_char * ssnpa)
jardineb5d44e2003-12-23 08:09:43 +00001653{
jardineb5d44e2003-12-23 08:09:43 +00001654 struct isis_fixed_hdr *hdr;
1655 struct esis_fixed_hdr *esis_hdr;
1656
hassof390d2c2004-09-10 20:48:21 +00001657 int retval = ISIS_OK;
jardineb5d44e2003-12-23 08:09:43 +00001658
1659 /*
1660 * Let's first read data from stream to the header
1661 */
hassof390d2c2004-09-10 20:48:21 +00001662 hdr = (struct isis_fixed_hdr *) STREAM_DATA (circuit->rcv_stream);
jardineb5d44e2003-12-23 08:09:43 +00001663
hassof390d2c2004-09-10 20:48:21 +00001664 if ((hdr->idrp != ISO10589_ISIS) && (hdr->idrp != ISO9542_ESIS))
1665 {
1666 zlog_warn ("Not an IS-IS or ES-IS packet IDRP=%02x", hdr->idrp);
1667 return ISIS_ERROR;
1668 }
jardineb5d44e2003-12-23 08:09:43 +00001669
1670 /* now we need to know if this is an ISO 9542 packet and
1671 * take real good care of it, waaa!
1672 */
hassof390d2c2004-09-10 20:48:21 +00001673 if (hdr->idrp == ISO9542_ESIS)
1674 {
1675 esis_hdr = (struct esis_fixed_hdr *) STREAM_DATA (circuit->rcv_stream);
1676 stream_set_getp (circuit->rcv_stream, ESIS_FIXED_HDR_LEN);
1677 /* FIXME: Need to do some acceptence tests */
1678 /* example length... */
1679 switch (esis_hdr->pdu_type)
1680 {
1681 case ESH_PDU:
1682 /* FIXME */
1683 break;
1684 case ISH_PDU:
hasso529d65b2004-12-24 00:14:50 +00001685 zlog_debug ("AN ISH PDU!!");
hassof390d2c2004-09-10 20:48:21 +00001686 retval = process_is_hello (circuit);
1687 break;
1688 default:
1689 return ISIS_ERROR;
1690 }
1691 return retval;
1692 }
1693 else
1694 {
1695 stream_set_getp (circuit->rcv_stream, ISIS_FIXED_HDR_LEN);
1696 }
jardineb5d44e2003-12-23 08:09:43 +00001697 /*
1698 * and then process it
1699 */
1700
hassof390d2c2004-09-10 20:48:21 +00001701 if (hdr->length < ISIS_MINIMUM_FIXED_HDR_LEN)
1702 {
1703 zlog_err ("Fixed header length = %d", hdr->length);
1704 return ISIS_ERROR;
1705 }
jardineb5d44e2003-12-23 08:09:43 +00001706
hassof390d2c2004-09-10 20:48:21 +00001707 if (hdr->version1 != 1)
1708 {
1709 zlog_warn ("Unsupported ISIS version %u", hdr->version1);
1710 return ISIS_WARNING;
1711 }
jardineb5d44e2003-12-23 08:09:43 +00001712 /* either 6 or 0 */
hassof390d2c2004-09-10 20:48:21 +00001713 if ((hdr->id_len != 0) && (hdr->id_len != ISIS_SYS_ID_LEN))
1714 {
1715 zlog_err
1716 ("IDFieldLengthMismatch: ID Length field in a received PDU %u, "
1717 "while the parameter for this IS is %u", hdr->id_len,
1718 ISIS_SYS_ID_LEN);
1719 return ISIS_ERROR;
1720 }
jardineb5d44e2003-12-23 08:09:43 +00001721
hassof390d2c2004-09-10 20:48:21 +00001722 if (hdr->version2 != 1)
1723 {
1724 zlog_warn ("Unsupported ISIS version %u", hdr->version2);
1725 return ISIS_WARNING;
1726 }
jardineb5d44e2003-12-23 08:09:43 +00001727 /* either 3 or 0 */
hassof390d2c2004-09-10 20:48:21 +00001728 if ((hdr->max_area_addrs != 0)
1729 && (hdr->max_area_addrs != isis->max_area_addrs))
1730 {
1731 zlog_err ("maximumAreaAddressesMismatch: maximumAreaAdresses in a "
1732 "received PDU %u while the parameter for this IS is %u",
1733 hdr->max_area_addrs, isis->max_area_addrs);
1734 return ISIS_ERROR;
1735 }
jardineb5d44e2003-12-23 08:09:43 +00001736
hassof390d2c2004-09-10 20:48:21 +00001737 switch (hdr->pdu_type)
1738 {
1739 case L1_LAN_HELLO:
1740 retval = process_lan_hello (ISIS_LEVEL1, circuit, ssnpa);
1741 break;
1742 case L2_LAN_HELLO:
1743 retval = process_lan_hello (ISIS_LEVEL2, circuit, ssnpa);
1744 break;
1745 case P2P_HELLO:
1746 retval = process_p2p_hello (circuit);
1747 break;
1748 case L1_LINK_STATE:
1749 retval = process_lsp (ISIS_LEVEL1, circuit, ssnpa);
1750 break;
1751 case L2_LINK_STATE:
1752 retval = process_lsp (ISIS_LEVEL2, circuit, ssnpa);
1753 break;
1754 case L1_COMPLETE_SEQ_NUM:
1755 retval = process_csnp (ISIS_LEVEL1, circuit, ssnpa);
1756 break;
1757 case L2_COMPLETE_SEQ_NUM:
1758 retval = process_csnp (ISIS_LEVEL2, circuit, ssnpa);
1759 break;
1760 case L1_PARTIAL_SEQ_NUM:
1761 retval = process_psnp (ISIS_LEVEL1, circuit, ssnpa);
1762 break;
1763 case L2_PARTIAL_SEQ_NUM:
1764 retval = process_psnp (ISIS_LEVEL2, circuit, ssnpa);
1765 break;
1766 default:
1767 return ISIS_ERROR;
1768 }
jardineb5d44e2003-12-23 08:09:43 +00001769
1770 return retval;
1771}
1772
jardineb5d44e2003-12-23 08:09:43 +00001773#ifdef GNU_LINUX
1774int
1775isis_receive (struct thread *thread)
1776{
jardineb5d44e2003-12-23 08:09:43 +00001777 struct isis_circuit *circuit;
1778 u_char ssnpa[ETH_ALEN];
1779 int retval;
1780
1781 /*
1782 * Get the circuit
1783 */
1784 circuit = THREAD_ARG (thread);
1785 assert (circuit);
1786
1787 if (circuit->rcv_stream == NULL)
hassof390d2c2004-09-10 20:48:21 +00001788 circuit->rcv_stream = stream_new (ISO_MTU (circuit));
jardineb5d44e2003-12-23 08:09:43 +00001789 else
1790 stream_reset (circuit->rcv_stream);
1791
1792 retval = circuit->rx (circuit, ssnpa);
hassof390d2c2004-09-10 20:48:21 +00001793 circuit->t_read = NULL;
jardineb5d44e2003-12-23 08:09:43 +00001794
1795 if (retval == ISIS_OK)
1796 retval = isis_handle_pdu (circuit, ssnpa);
1797
1798 /*
1799 * prepare for next packet.
1800 */
hassof390d2c2004-09-10 20:48:21 +00001801 THREAD_READ_ON (master, circuit->t_read, isis_receive, circuit,
1802 circuit->fd);
jardineb5d44e2003-12-23 08:09:43 +00001803
1804 return retval;
1805}
1806
1807#else
1808int
1809isis_receive (struct thread *thread)
1810{
jardineb5d44e2003-12-23 08:09:43 +00001811 struct isis_circuit *circuit;
1812 u_char ssnpa[ETH_ALEN];
1813 int retval;
1814
1815 /*
1816 * Get the circuit
1817 */
1818 circuit = THREAD_ARG (thread);
1819 assert (circuit);
1820
hassof390d2c2004-09-10 20:48:21 +00001821 circuit->t_read = NULL;
jardineb5d44e2003-12-23 08:09:43 +00001822
1823 if (circuit->rcv_stream == NULL)
hassof390d2c2004-09-10 20:48:21 +00001824 circuit->rcv_stream = stream_new (ISO_MTU (circuit));
jardineb5d44e2003-12-23 08:09:43 +00001825 else
1826 stream_reset (circuit->rcv_stream);
1827
1828 retval = circuit->rx (circuit, ssnpa);
1829
1830 if (retval == ISIS_OK)
1831 retval = isis_handle_pdu (circuit, ssnpa);
1832
1833 /*
1834 * prepare for next packet.
1835 */
hassof390d2c2004-09-10 20:48:21 +00001836 circuit->t_read = thread_add_timer_msec (master, isis_receive, circuit,
1837 listcount
1838 (circuit->area->circuit_list) *
1839 100);
jardineb5d44e2003-12-23 08:09:43 +00001840
1841 return retval;
1842}
1843
1844#endif
1845
1846 /* filling of the fixed isis header */
1847void
1848fill_fixed_hdr (struct isis_fixed_hdr *hdr, u_char pdu_type)
1849{
1850 memset (hdr, 0, sizeof (struct isis_fixed_hdr));
1851
1852 hdr->idrp = ISO10589_ISIS;
1853
hassof390d2c2004-09-10 20:48:21 +00001854 switch (pdu_type)
1855 {
1856 case L1_LAN_HELLO:
1857 case L2_LAN_HELLO:
1858 hdr->length = ISIS_LANHELLO_HDRLEN;
1859 break;
1860 case P2P_HELLO:
1861 hdr->length = ISIS_P2PHELLO_HDRLEN;
1862 break;
1863 case L1_LINK_STATE:
1864 case L2_LINK_STATE:
1865 hdr->length = ISIS_LSP_HDR_LEN;
1866 break;
1867 case L1_COMPLETE_SEQ_NUM:
1868 case L2_COMPLETE_SEQ_NUM:
1869 hdr->length = ISIS_CSNP_HDRLEN;
1870 break;
1871 case L1_PARTIAL_SEQ_NUM:
1872 case L2_PARTIAL_SEQ_NUM:
1873 hdr->length = ISIS_PSNP_HDRLEN;
1874 break;
1875 default:
1876 zlog_warn ("fill_fixed_hdr(): unknown pdu type %d", pdu_type);
1877 return;
1878 }
jardineb5d44e2003-12-23 08:09:43 +00001879 hdr->length += ISIS_FIXED_HDR_LEN;
1880 hdr->pdu_type = pdu_type;
1881 hdr->version1 = 1;
hassof390d2c2004-09-10 20:48:21 +00001882 hdr->id_len = 0; /* ISIS_SYS_ID_LEN - 0==6 */
jardineb5d44e2003-12-23 08:09:43 +00001883 hdr->version2 = 1;
hassof390d2c2004-09-10 20:48:21 +00001884 hdr->max_area_addrs = 0; /* isis->max_area_addrs - 0==3 */
jardineb5d44e2003-12-23 08:09:43 +00001885}
1886
jardineb5d44e2003-12-23 08:09:43 +00001887/*
1888 * SEND SIDE
1889 */
hasso92365882005-01-18 13:53:33 +00001890static void
jardineb5d44e2003-12-23 08:09:43 +00001891fill_fixed_hdr_andstream (struct isis_fixed_hdr *hdr, u_char pdu_type,
hassof390d2c2004-09-10 20:48:21 +00001892 struct stream *stream)
jardineb5d44e2003-12-23 08:09:43 +00001893{
hassof390d2c2004-09-10 20:48:21 +00001894 fill_fixed_hdr (hdr, pdu_type);
jardineb5d44e2003-12-23 08:09:43 +00001895
1896 stream_putc (stream, hdr->idrp);
1897 stream_putc (stream, hdr->length);
1898 stream_putc (stream, hdr->version1);
1899 stream_putc (stream, hdr->id_len);
1900 stream_putc (stream, hdr->pdu_type);
1901 stream_putc (stream, hdr->version2);
1902 stream_putc (stream, hdr->reserved);
1903 stream_putc (stream, hdr->max_area_addrs);
1904
1905 return;
1906}
1907
jardineb5d44e2003-12-23 08:09:43 +00001908int
1909send_hello (struct isis_circuit *circuit, int level)
1910{
1911 struct isis_fixed_hdr fixed_hdr;
1912 struct isis_lan_hello_hdr hello_hdr;
1913 struct isis_p2p_hello_hdr p2p_hello_hdr;
1914
1915 u_int32_t interval;
1916 unsigned long len_pointer, length;
1917 int retval;
1918
hassof390d2c2004-09-10 20:48:21 +00001919 if (circuit->interface->mtu == 0)
1920 {
1921 zlog_warn ("circuit has zero MTU");
1922 return ISIS_WARNING;
1923 }
jardineb5d44e2003-12-23 08:09:43 +00001924
1925 if (!circuit->snd_stream)
hassof390d2c2004-09-10 20:48:21 +00001926 circuit->snd_stream = stream_new (ISO_MTU (circuit));
jardineb5d44e2003-12-23 08:09:43 +00001927 else
1928 stream_reset (circuit->snd_stream);
1929
1930 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
1931 if (level == 1)
hassof390d2c2004-09-10 20:48:21 +00001932 fill_fixed_hdr_andstream (&fixed_hdr, L1_LAN_HELLO,
1933 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00001934 else
hassof390d2c2004-09-10 20:48:21 +00001935 fill_fixed_hdr_andstream (&fixed_hdr, L2_LAN_HELLO,
1936 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00001937 else
hassof390d2c2004-09-10 20:48:21 +00001938 fill_fixed_hdr_andstream (&fixed_hdr, P2P_HELLO, circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00001939
1940 /*
1941 * Fill LAN Level 1 or 2 Hello PDU header
1942 */
1943 memset (&hello_hdr, 0, sizeof (struct isis_lan_hello_hdr));
hassof390d2c2004-09-10 20:48:21 +00001944 interval = circuit->hello_multiplier[level - 1] *
jardineb5d44e2003-12-23 08:09:43 +00001945 circuit->hello_interval[level - 1];
1946 if (interval > USHRT_MAX)
1947 interval = USHRT_MAX;
1948 hello_hdr.circuit_t = circuit->circuit_is_type;
1949 memcpy (hello_hdr.source_id, isis->sysid, ISIS_SYS_ID_LEN);
hassof390d2c2004-09-10 20:48:21 +00001950 hello_hdr.hold_time = htons ((u_int16_t) interval);
jardineb5d44e2003-12-23 08:09:43 +00001951
hassof390d2c2004-09-10 20:48:21 +00001952 hello_hdr.pdu_len = 0; /* Update the PDU Length later */
paul9985f832005-02-09 15:51:56 +00001953 len_pointer = stream_get_endp (circuit->snd_stream) + 3 + ISIS_SYS_ID_LEN;
jardineb5d44e2003-12-23 08:09:43 +00001954
1955 /* copy the shared part of the hello to the p2p hello if needed */
hassof390d2c2004-09-10 20:48:21 +00001956 if (circuit->circ_type == CIRCUIT_T_P2P)
1957 {
1958 memcpy (&p2p_hello_hdr, &hello_hdr, 5 + ISIS_SYS_ID_LEN);
1959 p2p_hello_hdr.local_id = circuit->circuit_id;
1960 /* FIXME: need better understanding */
1961 stream_put (circuit->snd_stream, &p2p_hello_hdr, ISIS_P2PHELLO_HDRLEN);
jardineb5d44e2003-12-23 08:09:43 +00001962 }
hassof390d2c2004-09-10 20:48:21 +00001963 else
1964 {
1965 hello_hdr.prio = circuit->u.bc.priority[level - 1];
1966 if (level == 1 && circuit->u.bc.l1_desig_is)
1967 {
1968 memcpy (hello_hdr.lan_id, circuit->u.bc.l1_desig_is,
1969 ISIS_SYS_ID_LEN + 1);
1970 }
1971 else if (level == 2 && circuit->u.bc.l2_desig_is)
1972 {
1973 memcpy (hello_hdr.lan_id, circuit->u.bc.l2_desig_is,
1974 ISIS_SYS_ID_LEN + 1);
1975 }
1976 stream_put (circuit->snd_stream, &hello_hdr, ISIS_LANHELLO_HDRLEN);
1977 }
jardineb5d44e2003-12-23 08:09:43 +00001978
1979 /*
1980 * Then the variable length part
1981 */
1982 /* add circuit password */
1983 if (circuit->passwd.type)
1984 if (tlv_add_authinfo (circuit->passwd.type, circuit->passwd.len,
1985 circuit->passwd.passwd, circuit->snd_stream))
1986 return ISIS_WARNING;
1987 /* Area Addresses TLV */
1988 assert (circuit->area);
1989 if (circuit->area->area_addrs && circuit->area->area_addrs->count > 0)
1990 if (tlv_add_area_addrs (circuit->area->area_addrs, circuit->snd_stream))
1991 return ISIS_WARNING;
1992
1993 /* LAN Neighbors TLV */
hassof390d2c2004-09-10 20:48:21 +00001994 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
1995 {
1996 if (level == 1 && circuit->u.bc.lan_neighs[0]->count > 0)
1997 if (tlv_add_lan_neighs (circuit->u.bc.lan_neighs[0],
1998 circuit->snd_stream))
1999 return ISIS_WARNING;
2000 if (level == 2 && circuit->u.bc.lan_neighs[1]->count > 0)
2001 if (tlv_add_lan_neighs (circuit->u.bc.lan_neighs[1],
2002 circuit->snd_stream))
2003 return ISIS_WARNING;
2004 }
jardineb5d44e2003-12-23 08:09:43 +00002005
2006 /* Protocols Supported TLV */
hassof390d2c2004-09-10 20:48:21 +00002007 if (circuit->nlpids.count > 0)
jardineb5d44e2003-12-23 08:09:43 +00002008 if (tlv_add_nlpid (&circuit->nlpids, circuit->snd_stream))
2009 return ISIS_WARNING;
2010 /* IP interface Address TLV */
2011 if (circuit->ip_router && circuit->ip_addrs && circuit->ip_addrs->count > 0)
2012 if (tlv_add_ip_addrs (circuit->ip_addrs, circuit->snd_stream))
2013 return ISIS_WARNING;
2014
hassof390d2c2004-09-10 20:48:21 +00002015#ifdef HAVE_IPV6
jardineb5d44e2003-12-23 08:09:43 +00002016 /* IPv6 Interface Address TLV */
hassof390d2c2004-09-10 20:48:21 +00002017 if (circuit->ipv6_router && circuit->ipv6_link &&
jardineb5d44e2003-12-23 08:09:43 +00002018 circuit->ipv6_link->count > 0)
2019 if (tlv_add_ipv6_addrs (circuit->ipv6_link, circuit->snd_stream))
2020 return ISIS_WARNING;
2021#endif /* HAVE_IPV6 */
2022
2023 if (circuit->u.bc.pad_hellos)
2024 if (tlv_add_padding (circuit->snd_stream))
2025 return ISIS_WARNING;
2026
paul9985f832005-02-09 15:51:56 +00002027 length = stream_get_endp (circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002028 /* Update PDU length */
hassof390d2c2004-09-10 20:48:21 +00002029 stream_putw_at (circuit->snd_stream, len_pointer, (u_int16_t) length);
jardineb5d44e2003-12-23 08:09:43 +00002030
2031 retval = circuit->tx (circuit, level);
2032 if (retval)
2033 zlog_warn ("sending of LAN Level %d Hello failed", level);
2034
2035 /* DEBUG_ADJ_PACKETS */
hassof390d2c2004-09-10 20:48:21 +00002036 if (isis->debugs & DEBUG_ADJ_PACKETS)
2037 {
2038 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
2039 {
hasso529d65b2004-12-24 00:14:50 +00002040 zlog_debug ("ISIS-Adj (%s): Sent L%d LAN IIH on %s, length %ld",
2041 circuit->area->area_tag, level, circuit->interface->name,
hasso29e50b22005-09-01 18:18:47 +00002042 /* FIXME: use %z when we stop supporting old compilers. */
2043 (unsigned long) STREAM_SIZE (circuit->snd_stream));
hassof390d2c2004-09-10 20:48:21 +00002044 }
2045 else
2046 {
hasso529d65b2004-12-24 00:14:50 +00002047 zlog_debug ("ISIS-Adj (%s): Sent P2P IIH on %s, length %ld",
2048 circuit->area->area_tag, circuit->interface->name,
hasso29e50b22005-09-01 18:18:47 +00002049 /* FIXME: use %z when we stop supporting old compilers. */
2050 (unsigned long) STREAM_SIZE (circuit->snd_stream));
hassof390d2c2004-09-10 20:48:21 +00002051 }
jardineb5d44e2003-12-23 08:09:43 +00002052 }
jardineb5d44e2003-12-23 08:09:43 +00002053
2054 return retval;
2055}
2056
hasso92365882005-01-18 13:53:33 +00002057static int
jardineb5d44e2003-12-23 08:09:43 +00002058send_lan_hello (struct isis_circuit *circuit, int level)
2059{
hassof390d2c2004-09-10 20:48:21 +00002060 return send_hello (circuit, level);
jardineb5d44e2003-12-23 08:09:43 +00002061}
2062
2063int
2064send_lan_l1_hello (struct thread *thread)
2065{
jardineb5d44e2003-12-23 08:09:43 +00002066 struct isis_circuit *circuit;
2067 int retval;
2068
2069 circuit = THREAD_ARG (thread);
2070 assert (circuit);
2071 circuit->u.bc.t_send_lan_hello[0] = NULL;
2072
2073 if (circuit->u.bc.run_dr_elect[0])
hassof390d2c2004-09-10 20:48:21 +00002074 retval = isis_dr_elect (circuit, 1);
jardineb5d44e2003-12-23 08:09:43 +00002075
2076 retval = send_lan_hello (circuit, 1);
2077
2078 /* set next timer thread */
hassof390d2c2004-09-10 20:48:21 +00002079 THREAD_TIMER_ON (master, circuit->u.bc.t_send_lan_hello[0],
2080 send_lan_l1_hello, circuit,
2081 isis_jitter (circuit->hello_interval[0], IIH_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002082
2083 return retval;
2084}
2085
2086int
2087send_lan_l2_hello (struct thread *thread)
2088{
2089 struct isis_circuit *circuit;
2090 int retval;
2091
2092 circuit = THREAD_ARG (thread);
2093 assert (circuit);
2094 circuit->u.bc.t_send_lan_hello[1] = NULL;
2095
2096 if (circuit->u.bc.run_dr_elect[1])
2097 retval = isis_dr_elect (circuit, 2);
2098
2099 retval = send_lan_hello (circuit, 2);
2100
hassof390d2c2004-09-10 20:48:21 +00002101 /* set next timer thread */
2102 THREAD_TIMER_ON (master, circuit->u.bc.t_send_lan_hello[1],
2103 send_lan_l2_hello, circuit,
2104 isis_jitter (circuit->hello_interval[1], IIH_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002105
2106 return retval;
2107}
2108
2109int
2110send_p2p_hello (struct thread *thread)
2111{
2112 struct isis_circuit *circuit;
2113
2114 circuit = THREAD_ARG (thread);
2115 assert (circuit);
2116 circuit->u.p2p.t_send_p2p_hello = NULL;
2117
hassof390d2c2004-09-10 20:48:21 +00002118 send_hello (circuit, 1);
jardineb5d44e2003-12-23 08:09:43 +00002119
hassof390d2c2004-09-10 20:48:21 +00002120 /* set next timer thread */
2121 THREAD_TIMER_ON (master, circuit->u.p2p.t_send_p2p_hello, send_p2p_hello,
2122 circuit, isis_jitter (circuit->hello_interval[1],
2123 IIH_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002124
2125 return ISIS_OK;
2126}
2127
hasso92365882005-01-18 13:53:33 +00002128static int
hassof390d2c2004-09-10 20:48:21 +00002129build_csnp (int level, u_char * start, u_char * stop, struct list *lsps,
2130 struct isis_circuit *circuit)
jardineb5d44e2003-12-23 08:09:43 +00002131{
2132 struct isis_fixed_hdr fixed_hdr;
2133 struct isis_passwd *passwd;
2134 int retval = ISIS_OK;
2135 unsigned long lenp;
2136 u_int16_t length;
2137
hassof390d2c2004-09-10 20:48:21 +00002138 if (level == 1)
2139 fill_fixed_hdr_andstream (&fixed_hdr, L1_COMPLETE_SEQ_NUM,
2140 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002141 else
hassof390d2c2004-09-10 20:48:21 +00002142 fill_fixed_hdr_andstream (&fixed_hdr, L2_COMPLETE_SEQ_NUM,
2143 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002144
2145 /*
2146 * Fill Level 1 or 2 Complete Sequence Numbers header
2147 */
2148
paul9985f832005-02-09 15:51:56 +00002149 lenp = stream_get_endp (circuit->snd_stream);
hassof390d2c2004-09-10 20:48:21 +00002150 stream_putw (circuit->snd_stream, 0); /* PDU length - when we know it */
jardineb5d44e2003-12-23 08:09:43 +00002151 /* no need to send the source here, it is always us if we csnp */
2152 stream_put (circuit->snd_stream, isis->sysid, ISIS_SYS_ID_LEN);
2153 /* with zero circuit id - ref 9.10, 9.11 */
2154 stream_putc (circuit->snd_stream, 0x00);
2155
2156 stream_put (circuit->snd_stream, start, ISIS_SYS_ID_LEN + 2);
2157 stream_put (circuit->snd_stream, stop, ISIS_SYS_ID_LEN + 2);
2158
2159 /*
2160 * And TLVs
2161 */
2162 if (level == 1)
2163 passwd = &circuit->area->area_passwd;
2164 else
2165 passwd = &circuit->area->domain_passwd;
2166
hasso1cbc5622005-01-01 10:29:51 +00002167 if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_SEND))
2168 if (passwd->type)
2169 retval = tlv_add_authinfo (passwd->type, passwd->len,
2170 passwd->passwd, circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002171
hassof390d2c2004-09-10 20:48:21 +00002172 if (!retval && lsps)
2173 {
2174 retval = tlv_add_lsp_entries (lsps, circuit->snd_stream);
2175 }
paul9985f832005-02-09 15:51:56 +00002176 length = (u_int16_t) stream_get_endp (circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002177 assert (length >= ISIS_CSNP_HDRLEN);
2178 /* Update PU length */
2179 stream_putw_at (circuit->snd_stream, lenp, length);
2180
2181 return retval;
2182}
2183
2184/*
2185 * FIXME: support multiple CSNPs
2186 */
2187
2188int
2189send_csnp (struct isis_circuit *circuit, int level)
2190{
2191 int retval = ISIS_OK;
2192 u_char start[ISIS_SYS_ID_LEN + 2];
2193 u_char stop[ISIS_SYS_ID_LEN + 2];
2194 struct list *list = NULL;
paul1eb8ef22005-04-07 07:30:20 +00002195 struct listnode *node, *nnode;
jardineb5d44e2003-12-23 08:09:43 +00002196 struct isis_lsp *lsp;
2197
hassof390d2c2004-09-10 20:48:21 +00002198 memset (start, 0x00, ISIS_SYS_ID_LEN + 2);
jardineb5d44e2003-12-23 08:09:43 +00002199 memset (stop, 0xff, ISIS_SYS_ID_LEN + 2);
2200
hassof390d2c2004-09-10 20:48:21 +00002201 if (circuit->area->lspdb[level - 1] &&
2202 dict_count (circuit->area->lspdb[level - 1]) > 0)
2203 {
2204 list = list_new ();
2205 lsp_build_list (start, stop, list, circuit->area->lspdb[level - 1]);
jardineb5d44e2003-12-23 08:09:43 +00002206
hassof390d2c2004-09-10 20:48:21 +00002207 if (circuit->snd_stream == NULL)
2208 circuit->snd_stream = stream_new (ISO_MTU (circuit));
2209 else
2210 stream_reset (circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002211
hassof390d2c2004-09-10 20:48:21 +00002212 retval = build_csnp (level, start, stop, list, circuit);
jardineb5d44e2003-12-23 08:09:43 +00002213
hassof390d2c2004-09-10 20:48:21 +00002214 if (isis->debugs & DEBUG_SNP_PACKETS)
2215 {
hasso529d65b2004-12-24 00:14:50 +00002216 zlog_debug ("ISIS-Snp (%s): Sent L%d CSNP on %s, length %ld",
paul1eb8ef22005-04-07 07:30:20 +00002217 circuit->area->area_tag, level, circuit->interface->name,
hasso29e50b22005-09-01 18:18:47 +00002218 /* FIXME: use %z when we stop supporting old compilers. */
2219 (unsigned long) STREAM_SIZE (circuit->snd_stream));
paul1eb8ef22005-04-07 07:30:20 +00002220 for (ALL_LIST_ELEMENTS (list, node, nnode, lsp))
hassof390d2c2004-09-10 20:48:21 +00002221 {
hasso529d65b2004-12-24 00:14:50 +00002222 zlog_debug ("ISIS-Snp (%s): CSNP entry %s, seq 0x%08x,"
2223 " cksum 0x%04x, lifetime %us",
2224 circuit->area->area_tag,
2225 rawlspid_print (lsp->lsp_header->lsp_id),
2226 ntohl (lsp->lsp_header->seq_num),
2227 ntohs (lsp->lsp_header->checksum),
2228 ntohs (lsp->lsp_header->rem_lifetime));
hassof390d2c2004-09-10 20:48:21 +00002229 }
2230 }
2231
2232 list_delete (list);
2233
2234 if (retval == ISIS_OK)
2235 retval = circuit->tx (circuit, level);
jardineb5d44e2003-12-23 08:09:43 +00002236 }
jardineb5d44e2003-12-23 08:09:43 +00002237 return retval;
2238}
2239
2240int
2241send_l1_csnp (struct thread *thread)
2242{
2243 struct isis_circuit *circuit;
2244 int retval = ISIS_OK;
2245
2246 circuit = THREAD_ARG (thread);
2247 assert (circuit);
2248
2249 circuit->t_send_csnp[0] = NULL;
2250
hassof390d2c2004-09-10 20:48:21 +00002251 if (circuit->circ_type == CIRCUIT_T_BROADCAST && circuit->u.bc.is_dr[0])
2252 {
2253 send_csnp (circuit, 1);
2254 }
jardineb5d44e2003-12-23 08:09:43 +00002255 /* set next timer thread */
hassof390d2c2004-09-10 20:48:21 +00002256 THREAD_TIMER_ON (master, circuit->t_send_csnp[0], send_l1_csnp, circuit,
2257 isis_jitter (circuit->csnp_interval[0], CSNP_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002258
2259 return retval;
2260}
2261
2262int
2263send_l2_csnp (struct thread *thread)
2264{
2265 struct isis_circuit *circuit;
2266 int retval = ISIS_OK;
2267
2268 circuit = THREAD_ARG (thread);
2269 assert (circuit);
2270
2271 circuit->t_send_csnp[1] = NULL;
2272
hassof390d2c2004-09-10 20:48:21 +00002273 if (circuit->circ_type == CIRCUIT_T_BROADCAST && circuit->u.bc.is_dr[1])
2274 {
2275 send_csnp (circuit, 2);
2276 }
jardineb5d44e2003-12-23 08:09:43 +00002277 /* set next timer thread */
hassof390d2c2004-09-10 20:48:21 +00002278 THREAD_TIMER_ON (master, circuit->t_send_csnp[1], send_l2_csnp, circuit,
2279 isis_jitter (circuit->csnp_interval[1], CSNP_JITTER));
hassod70f99e2004-02-11 20:26:31 +00002280
jardineb5d44e2003-12-23 08:09:43 +00002281 return retval;
2282}
2283
hasso92365882005-01-18 13:53:33 +00002284static int
jardineb5d44e2003-12-23 08:09:43 +00002285build_psnp (int level, struct isis_circuit *circuit, struct list *lsps)
2286{
2287 struct isis_fixed_hdr fixed_hdr;
2288 unsigned long lenp;
2289 u_int16_t length;
2290 int retval = 0;
2291 struct isis_lsp *lsp;
2292 struct isis_passwd *passwd;
paul1eb8ef22005-04-07 07:30:20 +00002293 struct listnode *node, *nnode;
jardineb5d44e2003-12-23 08:09:43 +00002294
2295 if (level == 1)
hassof390d2c2004-09-10 20:48:21 +00002296 fill_fixed_hdr_andstream (&fixed_hdr, L1_PARTIAL_SEQ_NUM,
2297 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002298 else
2299 fill_fixed_hdr_andstream (&fixed_hdr, L2_PARTIAL_SEQ_NUM,
hassof390d2c2004-09-10 20:48:21 +00002300 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002301
2302 /*
2303 * Fill Level 1 or 2 Partial Sequence Numbers header
2304 */
paul9985f832005-02-09 15:51:56 +00002305 lenp = stream_get_endp (circuit->snd_stream);
hassof390d2c2004-09-10 20:48:21 +00002306 stream_putw (circuit->snd_stream, 0); /* PDU length - when we know it */
jardineb5d44e2003-12-23 08:09:43 +00002307 stream_put (circuit->snd_stream, isis->sysid, ISIS_SYS_ID_LEN);
2308 stream_putc (circuit->snd_stream, circuit->idx);
2309
2310 /*
2311 * And TLVs
2312 */
2313
2314 if (level == 1)
2315 passwd = &circuit->area->area_passwd;
2316 else
2317 passwd = &circuit->area->domain_passwd;
2318
hasso1cbc5622005-01-01 10:29:51 +00002319 if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_SEND))
2320 if (passwd->type)
2321 retval = tlv_add_authinfo (passwd->type, passwd->len,
2322 passwd->passwd, circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002323
hassof390d2c2004-09-10 20:48:21 +00002324 if (!retval && lsps)
2325 {
2326 retval = tlv_add_lsp_entries (lsps, circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002327 }
jardineb5d44e2003-12-23 08:09:43 +00002328
hassof390d2c2004-09-10 20:48:21 +00002329 if (isis->debugs & DEBUG_SNP_PACKETS)
2330 {
paul1eb8ef22005-04-07 07:30:20 +00002331 for (ALL_LIST_ELEMENTS (lsps, node, nnode, lsp))
hassof390d2c2004-09-10 20:48:21 +00002332 {
hasso529d65b2004-12-24 00:14:50 +00002333 zlog_debug ("ISIS-Snp (%s): PSNP entry %s, seq 0x%08x,"
2334 " cksum 0x%04x, lifetime %us",
2335 circuit->area->area_tag,
2336 rawlspid_print (lsp->lsp_header->lsp_id),
2337 ntohl (lsp->lsp_header->seq_num),
2338 ntohs (lsp->lsp_header->checksum),
2339 ntohs (lsp->lsp_header->rem_lifetime));
hassof390d2c2004-09-10 20:48:21 +00002340 }
2341 }
2342
paul9985f832005-02-09 15:51:56 +00002343 length = (u_int16_t) stream_get_endp (circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002344 assert (length >= ISIS_PSNP_HDRLEN);
2345 /* Update PDU length */
2346 stream_putw_at (circuit->snd_stream, lenp, length);
2347
2348 return ISIS_OK;
2349}
2350
2351/*
2352 * 7.3.15.4 action on expiration of partial SNP interval
2353 * level 1
2354 */
hasso92365882005-01-18 13:53:33 +00002355static int
jardineb5d44e2003-12-23 08:09:43 +00002356send_psnp (int level, struct isis_circuit *circuit)
2357{
2358 int retval = ISIS_OK;
2359 struct isis_lsp *lsp;
2360 struct list *list = NULL;
paul1eb8ef22005-04-07 07:30:20 +00002361 struct listnode *node, *nnode;
jardineb5d44e2003-12-23 08:09:43 +00002362
hassof390d2c2004-09-10 20:48:21 +00002363 if ((circuit->circ_type == CIRCUIT_T_BROADCAST &&
jardineb5d44e2003-12-23 08:09:43 +00002364 !circuit->u.bc.is_dr[level - 1]) ||
hassof390d2c2004-09-10 20:48:21 +00002365 circuit->circ_type != CIRCUIT_T_BROADCAST)
2366 {
jardineb5d44e2003-12-23 08:09:43 +00002367
hassof390d2c2004-09-10 20:48:21 +00002368 if (circuit->area->lspdb[level - 1] &&
2369 dict_count (circuit->area->lspdb[level - 1]) > 0)
2370 {
2371 list = list_new ();
2372 lsp_build_list_ssn (circuit, list, circuit->area->lspdb[level - 1]);
jardineb5d44e2003-12-23 08:09:43 +00002373
hassof390d2c2004-09-10 20:48:21 +00002374 if (listcount (list) > 0)
2375 {
2376 if (circuit->snd_stream == NULL)
2377 circuit->snd_stream = stream_new (ISO_MTU (circuit));
2378 else
2379 stream_reset (circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002380
2381
hassof390d2c2004-09-10 20:48:21 +00002382 if (isis->debugs & DEBUG_SNP_PACKETS)
hasso529d65b2004-12-24 00:14:50 +00002383 zlog_debug ("ISIS-Snp (%s): Sent L%d PSNP on %s, length %ld",
2384 circuit->area->area_tag, level,
2385 circuit->interface->name,
hasso29e50b22005-09-01 18:18:47 +00002386 /* FIXME: use %z when we stop supporting old
2387 * compilers. */
2388 (unsigned long) STREAM_SIZE (circuit->snd_stream));
jardineb5d44e2003-12-23 08:09:43 +00002389
hassof390d2c2004-09-10 20:48:21 +00002390 retval = build_psnp (level, circuit, list);
2391 if (retval == ISIS_OK)
2392 retval = circuit->tx (circuit, level);
jardineb5d44e2003-12-23 08:09:43 +00002393
hassof390d2c2004-09-10 20:48:21 +00002394 if (retval == ISIS_OK)
2395 {
2396 /*
2397 * sending succeeded, we can clear SSN flags of this circuit
2398 * for the LSPs in list
2399 */
paul1eb8ef22005-04-07 07:30:20 +00002400 for (ALL_LIST_ELEMENTS (list, node, nnode, lsp))
2401 ISIS_CLEAR_FLAG (lsp->SSNflags, circuit);
hassof390d2c2004-09-10 20:48:21 +00002402 }
2403 }
2404 list_delete (list);
2405 }
jardineb5d44e2003-12-23 08:09:43 +00002406 }
jardineb5d44e2003-12-23 08:09:43 +00002407
2408 return retval;
2409}
2410
2411int
2412send_l1_psnp (struct thread *thread)
2413{
2414
2415 struct isis_circuit *circuit;
2416 int retval = ISIS_OK;
2417
2418 circuit = THREAD_ARG (thread);
2419 assert (circuit);
2420
2421 circuit->t_send_psnp[0] = NULL;
2422
2423 send_psnp (1, circuit);
2424 /* set next timer thread */
hassof390d2c2004-09-10 20:48:21 +00002425 THREAD_TIMER_ON (master, circuit->t_send_psnp[0], send_l1_psnp, circuit,
2426 isis_jitter (circuit->psnp_interval[0], PSNP_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002427
2428 return retval;
2429}
2430
2431/*
2432 * 7.3.15.4 action on expiration of partial SNP interval
2433 * level 2
2434 */
2435int
2436send_l2_psnp (struct thread *thread)
2437{
jardineb5d44e2003-12-23 08:09:43 +00002438 struct isis_circuit *circuit;
2439 int retval = ISIS_OK;
2440
2441 circuit = THREAD_ARG (thread);
2442 assert (circuit);
2443
2444 circuit->t_send_psnp[1] = NULL;
2445
2446 send_psnp (2, circuit);
2447
2448 /* set next timer thread */
hassof390d2c2004-09-10 20:48:21 +00002449 THREAD_TIMER_ON (master, circuit->t_send_psnp[1], send_l2_psnp, circuit,
2450 isis_jitter (circuit->psnp_interval[1], PSNP_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002451
2452 return retval;
2453}
2454
jardineb5d44e2003-12-23 08:09:43 +00002455/*
2456 * ISO 10589 - 7.3.14.3
2457 */
2458int
2459send_lsp (struct thread *thread)
2460{
2461 struct isis_circuit *circuit;
2462 struct isis_lsp *lsp;
2463 struct listnode *node;
2464 int retval = 0;
2465
2466 circuit = THREAD_ARG (thread);
2467 assert (circuit);
2468
hassof390d2c2004-09-10 20:48:21 +00002469 if (circuit->state == C_STATE_UP)
2470 {
paul1eb8ef22005-04-07 07:30:20 +00002471 lsp = listgetdata ((node = listhead (circuit->lsp_queue)));
jardineb5d44e2003-12-23 08:09:43 +00002472
2473 /*
hassof390d2c2004-09-10 20:48:21 +00002474 * Do not send if levels do not match
jardineb5d44e2003-12-23 08:09:43 +00002475 */
hassof390d2c2004-09-10 20:48:21 +00002476 if (!(lsp->level & circuit->circuit_is_type))
2477 goto dontsend;
jardineb5d44e2003-12-23 08:09:43 +00002478
hassof390d2c2004-09-10 20:48:21 +00002479 /*
2480 * Do not send if we do not have adjacencies in state up on the circuit
2481 */
2482 if (circuit->upadjcount[lsp->level - 1] == 0)
2483 goto dontsend;
2484 /* only send if it needs sending */
2485 if ((time (NULL) - lsp->last_sent) >=
2486 circuit->area->lsp_gen_interval[lsp->level - 1])
2487 {
jardineb5d44e2003-12-23 08:09:43 +00002488
hassof390d2c2004-09-10 20:48:21 +00002489 if (isis->debugs & DEBUG_UPDATE_PACKETS)
2490 {
hasso529d65b2004-12-24 00:14:50 +00002491 zlog_debug
hassof390d2c2004-09-10 20:48:21 +00002492 ("ISIS-Upd (%s): Sent L%d LSP %s, seq 0x%08x, cksum 0x%04x,"
2493 " lifetime %us on %s", circuit->area->area_tag, lsp->level,
2494 rawlspid_print (lsp->lsp_header->lsp_id),
2495 ntohl (lsp->lsp_header->seq_num),
2496 ntohs (lsp->lsp_header->checksum),
2497 ntohs (lsp->lsp_header->rem_lifetime),
2498 circuit->interface->name);
2499 }
2500 /* copy our lsp to the send buffer */
paul15935e92005-05-03 09:27:23 +00002501 stream_copy (circuit->snd_stream, lsp->pdu);
hassof390d2c2004-09-10 20:48:21 +00002502
2503 retval = circuit->tx (circuit, lsp->level);
2504
jardineb5d44e2003-12-23 08:09:43 +00002505 /*
hassof390d2c2004-09-10 20:48:21 +00002506 * If the sending succeeded, we can del the lsp from circuits
2507 * lsp_queue
jardineb5d44e2003-12-23 08:09:43 +00002508 */
hassof390d2c2004-09-10 20:48:21 +00002509 if (retval == ISIS_OK)
2510 {
2511 list_delete_node (circuit->lsp_queue, node);
2512
2513 /*
2514 * On broadcast circuits also the SRMflag can be cleared
2515 */
2516 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
2517 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
2518
2519 if (flags_any_set (lsp->SRMflags) == 0)
2520 {
2521 /*
2522 * need to remember when we were last sent
2523 */
2524 lsp->last_sent = time (NULL);
2525 }
2526 }
2527 else
2528 {
hasso529d65b2004-12-24 00:14:50 +00002529 zlog_debug ("sending of level %d link state failed", lsp->level);
hassof390d2c2004-09-10 20:48:21 +00002530 }
jardineb5d44e2003-12-23 08:09:43 +00002531 }
hassof390d2c2004-09-10 20:48:21 +00002532 else
2533 {
2534 /* my belief is that if it wasn't his time, the lsp can be removed
2535 * from the queue
2536 */
2537 dontsend:
2538 list_delete_node (circuit->lsp_queue, node);
2539 }
jardineb5d44e2003-12-23 08:09:43 +00002540#if 0
hassof390d2c2004-09-10 20:48:21 +00002541 /*
2542 * If there are still LSPs send next one after lsp-interval (33 msecs)
2543 */
2544 if (listcount (circuit->lsp_queue) > 0)
2545 thread_add_timer (master, send_lsp, circuit, 1);
jardineb5d44e2003-12-23 08:09:43 +00002546#endif
hassof390d2c2004-09-10 20:48:21 +00002547 }
jardineb5d44e2003-12-23 08:09:43 +00002548
2549 return retval;
hassof390d2c2004-09-10 20:48:21 +00002550}
jardineb5d44e2003-12-23 08:09:43 +00002551
2552int
hassof390d2c2004-09-10 20:48:21 +00002553ack_lsp (struct isis_link_state_hdr *hdr, struct isis_circuit *circuit,
2554 int level)
jardineb5d44e2003-12-23 08:09:43 +00002555{
2556 unsigned long lenp;
2557 int retval;
2558 u_int16_t length;
2559 struct isis_fixed_hdr fixed_hdr;
2560
2561 if (!circuit->snd_stream)
hassof390d2c2004-09-10 20:48:21 +00002562 circuit->snd_stream = stream_new (ISO_MTU (circuit));
jardineb5d44e2003-12-23 08:09:43 +00002563 else
2564 stream_reset (circuit->snd_stream);
2565
2566// fill_llc_hdr (stream);
2567 if (level == 1)
hassof390d2c2004-09-10 20:48:21 +00002568 fill_fixed_hdr_andstream (&fixed_hdr, L1_PARTIAL_SEQ_NUM,
2569 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002570 else
hassof390d2c2004-09-10 20:48:21 +00002571 fill_fixed_hdr_andstream (&fixed_hdr, L2_PARTIAL_SEQ_NUM,
2572 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002573
2574
paul9985f832005-02-09 15:51:56 +00002575 lenp = stream_get_endp (circuit->snd_stream);
hassof390d2c2004-09-10 20:48:21 +00002576 stream_putw (circuit->snd_stream, 0); /* PDU length */
2577 stream_put (circuit->snd_stream, isis->sysid, ISIS_SYS_ID_LEN);
jardineb5d44e2003-12-23 08:09:43 +00002578 stream_putc (circuit->snd_stream, circuit->idx);
hassof390d2c2004-09-10 20:48:21 +00002579 stream_putc (circuit->snd_stream, 9); /* code */
2580 stream_putc (circuit->snd_stream, 16); /* len */
jardineb5d44e2003-12-23 08:09:43 +00002581
hassof390d2c2004-09-10 20:48:21 +00002582 stream_putw (circuit->snd_stream, ntohs (hdr->rem_lifetime));
2583 stream_put (circuit->snd_stream, hdr->lsp_id, ISIS_SYS_ID_LEN + 2);
2584 stream_putl (circuit->snd_stream, ntohl (hdr->seq_num));
2585 stream_putw (circuit->snd_stream, ntohs (hdr->checksum));
jardineb5d44e2003-12-23 08:09:43 +00002586
paul9985f832005-02-09 15:51:56 +00002587 length = (u_int16_t) stream_get_endp (circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002588 /* Update PDU length */
2589 stream_putw_at (circuit->snd_stream, lenp, length);
2590
2591 retval = circuit->tx (circuit, level);
2592
2593 return retval;
2594}
2595