blob: e6a1e0382d300297397c093e4df880c5de820bf1 [file] [log] [blame]
jardineb5d44e2003-12-23 08:09:43 +00001/*
2 * IS-IS Rout(e)ing protocol - isis_pdu.c
3 * PDU processing
4 *
5 * Copyright (C) 2001,2002 Sampo Saaristo
6 * Tampere University of Technology
7 * Institute of Communications Engineering
8 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public Licenseas published by the Free
11 * Software Foundation; either version 2 of the License, or (at your option)
12 * any later version.
13 *
14 * This program is distributed in the hope that it will be useful,but WITHOUT
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * more details.
18
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 */
23
24#include <stdio.h>
25#include <string.h>
26#include <zebra.h>
jardineb5d44e2003-12-23 08:09:43 +000027
28#include "memory.h"
29#include "thread.h"
30#include "linklist.h"
31#include "log.h"
32#include "stream.h"
33#include "vty.h"
34#include "hash.c"
35#include "prefix.h"
36#include "if.h"
37
38#include "isisd/dict.h"
39#include "isisd/include-netbsd/iso.h"
40#include "isisd/isis_constants.h"
41#include "isisd/isis_common.h"
42#include "isisd/isis_adjacency.h"
43#include "isisd/isis_circuit.h"
44#include "isisd/isis_network.h"
45#include "isisd/isis_misc.h"
46#include "isisd/isis_dr.h"
47#include "isisd/isis_flags.h"
48#include "isisd/isis_tlv.h"
49#include "isisd/isisd.h"
50#include "isisd/isis_dynhn.h"
51#include "isisd/isis_lsp.h"
52#include "isisd/isis_pdu.h"
53#include "isisd/iso_checksum.h"
54#include "isisd/isis_csm.h"
55#include "isisd/isis_events.h"
56
57extern struct thread_master *master;
58extern struct isis *isis;
59
60#define ISIS_MINIMUM_FIXED_HDR_LEN 15
hassof390d2c2004-09-10 20:48:21 +000061#define ISIS_MIN_PDU_LEN 13 /* partial seqnum pdu with id_len=2 */
jardineb5d44e2003-12-23 08:09:43 +000062
63#ifndef PNBBY
64#define PNBBY 8
65#endif /* PNBBY */
66
67/* Utility mask array. */
hassof390d2c2004-09-10 20:48:21 +000068static u_char maskbit[] = {
jardineb5d44e2003-12-23 08:09:43 +000069 0x00, 0x80, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc, 0xfe, 0xff
70};
71
72/*
73 * HELPER FUNCS
74 */
75
76/*
77 * Compares two sets of area addresses
78 */
hassof390d2c2004-09-10 20:48:21 +000079static int
jardineb5d44e2003-12-23 08:09:43 +000080area_match (struct list *left, struct list *right)
81{
82 struct area_addr *addr1, *addr2;
paul1eb8ef22005-04-07 07:30:20 +000083 struct listnode *node1, *nnode1;
84 struct listnode *node2, *nnode2;
jardineb5d44e2003-12-23 08:09:43 +000085
paul1eb8ef22005-04-07 07:30:20 +000086 for (ALL_LIST_ELEMENTS (left, node1, nnode1, addr1))
hassof390d2c2004-09-10 20:48:21 +000087 {
paul1eb8ef22005-04-07 07:30:20 +000088 for (ALL_LIST_ELEMENTS (right, node2, nnode2, addr2))
hassof390d2c2004-09-10 20:48:21 +000089 {
90 if (addr1->addr_len == addr2->addr_len &&
91 !memcmp (addr1->area_addr, addr2->area_addr, (int) addr1->addr_len))
92 return 1; /* match */
jardineb5d44e2003-12-23 08:09:43 +000093 }
94 }
95
hassof390d2c2004-09-10 20:48:21 +000096 return 0; /* mismatch */
jardineb5d44e2003-12-23 08:09:43 +000097}
98
99/*
100 * Check if ip2 is in the ip1's network (function like Prefix.h:prefix_match() )
101 * param ip1 the IS interface ip address structure
102 * param ip2 the IIH's ip address
103 * return 0 the IIH's IP is not in the IS's subnetwork
104 * 1 the IIH's IP is in the IS's subnetwork
105 */
hasso92365882005-01-18 13:53:33 +0000106static int
hassof390d2c2004-09-10 20:48:21 +0000107ip_same_subnet (struct prefix_ipv4 *ip1, struct in_addr *ip2)
jardineb5d44e2003-12-23 08:09:43 +0000108{
109 u_char *addr1, *addr2;
hasso53c997c2004-09-15 16:21:59 +0000110 int shift, offset, offsetloop;
jardineb5d44e2003-12-23 08:09:43 +0000111 int len;
hassof390d2c2004-09-10 20:48:21 +0000112
113 addr1 = (u_char *) & ip1->prefix.s_addr;
114 addr2 = (u_char *) & ip2->s_addr;
jardineb5d44e2003-12-23 08:09:43 +0000115 len = ip1->prefixlen;
116
117 shift = len % PNBBY;
hasso53c997c2004-09-15 16:21:59 +0000118 offsetloop = offset = len / PNBBY;
jardineb5d44e2003-12-23 08:09:43 +0000119
hasso53c997c2004-09-15 16:21:59 +0000120 while (offsetloop--)
121 if (addr1[offsetloop] != addr2[offsetloop])
122 return 0;
jardineb5d44e2003-12-23 08:09:43 +0000123
hassof390d2c2004-09-10 20:48:21 +0000124 if (shift)
hasso53c997c2004-09-15 16:21:59 +0000125 if (maskbit[shift] & (addr1[offset] ^ addr2[offset]))
126 return 0;
hassof390d2c2004-09-10 20:48:21 +0000127
128 return 1; /* match */
jardineb5d44e2003-12-23 08:09:43 +0000129}
130
jardineb5d44e2003-12-23 08:09:43 +0000131/*
132 * Compares two set of ip addresses
133 * param left the local interface's ip addresses
134 * param right the iih interface's ip address
135 * return 0 no match;
136 * 1 match;
137 */
hassof390d2c2004-09-10 20:48:21 +0000138static int
jardineb5d44e2003-12-23 08:09:43 +0000139ip_match (struct list *left, struct list *right)
140{
141 struct prefix_ipv4 *ip1;
142 struct in_addr *ip2;
paul1eb8ef22005-04-07 07:30:20 +0000143 struct listnode *node1, *nnode1;
144 struct listnode *node2, *nnode2;
jardineb5d44e2003-12-23 08:09:43 +0000145
hassoe082ac12004-09-27 18:13:57 +0000146 if ((left == NULL) || (right == NULL))
147 return 0;
148
paul1eb8ef22005-04-07 07:30:20 +0000149 for (ALL_LIST_ELEMENTS (left, node1, nnode1, ip1))
hassof390d2c2004-09-10 20:48:21 +0000150 {
paul1eb8ef22005-04-07 07:30:20 +0000151 for (ALL_LIST_ELEMENTS (right, node2, nnode2, ip2))
hassof390d2c2004-09-10 20:48:21 +0000152 {
153 if (ip_same_subnet (ip1, ip2))
154 {
155 return 1; /* match */
156 }
jardineb5d44e2003-12-23 08:09:43 +0000157 }
hassof390d2c2004-09-10 20:48:21 +0000158
jardineb5d44e2003-12-23 08:09:43 +0000159 }
160 return 0;
161}
162
163/*
164 * Checks whether we should accept a PDU of given level
165 */
166static int
167accept_level (int level, int circuit_t)
168{
hassof390d2c2004-09-10 20:48:21 +0000169 int retval = ((circuit_t & level) == level); /* simple approach */
jardineb5d44e2003-12-23 08:09:43 +0000170
171 return retval;
172}
173
hassof390d2c2004-09-10 20:48:21 +0000174int
jardineb5d44e2003-12-23 08:09:43 +0000175authentication_check (struct isis_passwd *one, struct isis_passwd *theother)
176{
hassof390d2c2004-09-10 20:48:21 +0000177 if (one->type != theother->type)
178 {
179 zlog_warn ("Unsupported authentication type %d", theother->type);
180 return 1; /* Auth fail (different authentication types) */
181 }
182 switch (one->type)
183 {
184 case ISIS_PASSWD_TYPE_CLEARTXT:
185 if (one->len != theother->len)
186 return 1; /* Auth fail () - passwd len mismatch */
187 return memcmp (one->passwd, theother->passwd, one->len);
188 break;
189 default:
190 zlog_warn ("Unsupported authentication type");
191 break;
192 }
193 return 0; /* Auth pass */
jardineb5d44e2003-12-23 08:09:43 +0000194}
195
196/*
197 * Processing helper functions
198 */
hasso92365882005-01-18 13:53:33 +0000199static void
hassof390d2c2004-09-10 20:48:21 +0000200tlvs_to_adj_nlpids (struct tlvs *tlvs, struct isis_adjacency *adj)
jardineb5d44e2003-12-23 08:09:43 +0000201{
202 int i;
203 struct nlpids *tlv_nlpids;
204
hassof390d2c2004-09-10 20:48:21 +0000205 if (tlvs->nlpids)
206 {
jardineb5d44e2003-12-23 08:09:43 +0000207
hassof390d2c2004-09-10 20:48:21 +0000208 tlv_nlpids = tlvs->nlpids;
jardineb5d44e2003-12-23 08:09:43 +0000209
hassof390d2c2004-09-10 20:48:21 +0000210 adj->nlpids.count = tlv_nlpids->count;
jardineb5d44e2003-12-23 08:09:43 +0000211
hassof390d2c2004-09-10 20:48:21 +0000212 for (i = 0; i < tlv_nlpids->count; i++)
213 {
214 adj->nlpids.nlpids[i] = tlv_nlpids->nlpids[i];
215 }
jardineb5d44e2003-12-23 08:09:43 +0000216 }
jardineb5d44e2003-12-23 08:09:43 +0000217}
218
hasso92365882005-01-18 13:53:33 +0000219static void
jardineb5d44e2003-12-23 08:09:43 +0000220del_ip_addr (void *val)
221{
222 XFREE (MTYPE_ISIS_TMP, val);
223}
224
hasso92365882005-01-18 13:53:33 +0000225static void
hassof390d2c2004-09-10 20:48:21 +0000226tlvs_to_adj_ipv4_addrs (struct tlvs *tlvs, struct isis_adjacency *adj)
jardineb5d44e2003-12-23 08:09:43 +0000227{
paul1eb8ef22005-04-07 07:30:20 +0000228 struct listnode *node, *nnode;
jardineb5d44e2003-12-23 08:09:43 +0000229 struct in_addr *ipv4_addr, *malloced;
230
hassof390d2c2004-09-10 20:48:21 +0000231 if (adj->ipv4_addrs)
232 {
233 adj->ipv4_addrs->del = del_ip_addr;
234 list_delete (adj->ipv4_addrs);
jardineb5d44e2003-12-23 08:09:43 +0000235 }
hassof390d2c2004-09-10 20:48:21 +0000236 adj->ipv4_addrs = list_new ();
237 if (tlvs->ipv4_addrs)
238 {
paul1eb8ef22005-04-07 07:30:20 +0000239 for (ALL_LIST_ELEMENTS (tlvs->ipv4_addrs, node, nnode, ipv4_addr))
hassof390d2c2004-09-10 20:48:21 +0000240 {
241 malloced = XMALLOC (MTYPE_ISIS_TMP, sizeof (struct in_addr));
242 memcpy (malloced, ipv4_addr, sizeof (struct in_addr));
243 listnode_add (adj->ipv4_addrs, malloced);
244 }
245 }
jardineb5d44e2003-12-23 08:09:43 +0000246}
247
248#ifdef HAVE_IPV6
hasso92365882005-01-18 13:53:33 +0000249static void
hassof390d2c2004-09-10 20:48:21 +0000250tlvs_to_adj_ipv6_addrs (struct tlvs *tlvs, struct isis_adjacency *adj)
jardineb5d44e2003-12-23 08:09:43 +0000251{
paul1eb8ef22005-04-07 07:30:20 +0000252 struct listnode *node, *nnode;
jardineb5d44e2003-12-23 08:09:43 +0000253 struct in6_addr *ipv6_addr, *malloced;
254
hassof390d2c2004-09-10 20:48:21 +0000255 if (adj->ipv6_addrs)
256 {
257 adj->ipv6_addrs->del = del_ip_addr;
258 list_delete (adj->ipv6_addrs);
jardineb5d44e2003-12-23 08:09:43 +0000259 }
hassof390d2c2004-09-10 20:48:21 +0000260 adj->ipv6_addrs = list_new ();
261 if (tlvs->ipv6_addrs)
262 {
paul1eb8ef22005-04-07 07:30:20 +0000263 for (ALL_LIST_ELEMENTS (tlvs->ipv6_addrs, node, nnode, ipv6_addr))
hassof390d2c2004-09-10 20:48:21 +0000264 {
265 malloced = XMALLOC (MTYPE_ISIS_TMP, sizeof (struct in6_addr));
266 memcpy (malloced, ipv6_addr, sizeof (struct in6_addr));
267 listnode_add (adj->ipv6_addrs, malloced);
268 }
269 }
jardineb5d44e2003-12-23 08:09:43 +0000270
271}
272#endif /* HAVE_IPV6 */
273
jardineb5d44e2003-12-23 08:09:43 +0000274/*
275 * RECEIVE SIDE
276 */
277
278/*
279 * Process P2P IIH
280 * ISO - 10589
281 * Section 8.2.5 - Receiving point-to-point IIH PDUs
282 *
283 */
284static int
285process_p2p_hello (struct isis_circuit *circuit)
286{
287 int retval = ISIS_OK;
288 struct isis_p2p_hello_hdr *hdr;
289 struct isis_adjacency *adj;
290 u_int32_t expected = 0, found;
291 struct tlvs tlvs;
292
hassof390d2c2004-09-10 20:48:21 +0000293 if ((stream_get_endp (circuit->rcv_stream) -
294 stream_get_getp (circuit->rcv_stream)) < ISIS_P2PHELLO_HDRLEN)
295 {
296 zlog_warn ("Packet too short");
297 return ISIS_WARNING;
298 }
jardineb5d44e2003-12-23 08:09:43 +0000299
300 /* 8.2.5.1 PDU acceptance tests */
301
302 /* 8.2.5.1 a) external domain untrue */
303 /* FIXME: not useful at all? */
304
305 /* 8.2.5.1 b) ID Length mismatch */
306 /* checked at the handle_pdu */
307
308 /* 8.2.5.2 IIH PDU Processing */
309
310 /* 8.2.5.2 a) 1) Maximum Area Addresses */
311 /* Already checked, and can also be ommited */
312
313 /*
314 * Get the header
315 */
hassof390d2c2004-09-10 20:48:21 +0000316 hdr = (struct isis_p2p_hello_hdr *) STREAM_PNT (circuit->rcv_stream);
jardineb5d44e2003-12-23 08:09:43 +0000317 circuit->rcv_stream->getp += ISIS_P2PHELLO_HDRLEN;
318
319 /* hdr.circuit_t = stream_getc (stream);
hassof390d2c2004-09-10 20:48:21 +0000320 stream_get (hdr.source_id, stream, ISIS_SYS_ID_LEN);
321 hdr.hold_time = stream_getw (stream);
322 hdr.pdu_len = stream_getw (stream);
323 hdr.local_id = stream_getc (stream); */
jardineb5d44e2003-12-23 08:09:43 +0000324
325 /*
326 * My interpertation of the ISO, if no adj exists we will create one for
327 * the circuit
328 */
329
hassof390d2c2004-09-10 20:48:21 +0000330 if (isis->debugs & DEBUG_ADJ_PACKETS)
331 {
hasso529d65b2004-12-24 00:14:50 +0000332 zlog_debug ("ISIS-Adj (%s): Rcvd P2P IIH from (%s), cir type %s,"
333 " cir id %02d, length %d",
334 circuit->area->area_tag, circuit->interface->name,
335 circuit_t2string (circuit->circuit_is_type),
336 circuit->circuit_id, ntohs (hdr->pdu_len));
hassof390d2c2004-09-10 20:48:21 +0000337 }
jardineb5d44e2003-12-23 08:09:43 +0000338
339 adj = circuit->u.p2p.neighbor;
hassof390d2c2004-09-10 20:48:21 +0000340 if (!adj)
341 {
hassof7c43dc2004-09-26 16:24:14 +0000342 adj = isis_new_adj (hdr->source_id, (u_char *) " ", 0, circuit);
hassof390d2c2004-09-10 20:48:21 +0000343 if (adj == NULL)
344 return ISIS_ERROR;
345 circuit->u.p2p.neighbor = adj;
346 isis_adj_state_change (adj, ISIS_ADJ_INITIALIZING, NULL);
347 adj->sys_type = ISIS_SYSTYPE_UNKNOWN;
348 }
jardineb5d44e2003-12-23 08:09:43 +0000349
350 /* 8.2.6 Monitoring point-to-point adjacencies */
351 adj->hold_time = ntohs (hdr->hold_time);
hassof390d2c2004-09-10 20:48:21 +0000352 adj->last_upd = time (NULL);
jardineb5d44e2003-12-23 08:09:43 +0000353
354 /*
355 * Lets get the TLVS now
356 */
357 expected |= TLVFLAG_AREA_ADDRS;
358 expected |= TLVFLAG_AUTH_INFO;
359 expected |= TLVFLAG_NLPID;
360 expected |= TLVFLAG_IPV4_ADDR;
361 expected |= TLVFLAG_IPV6_ADDR;
362
363 retval = parse_tlvs (circuit->area->area_tag,
364 STREAM_PNT (circuit->rcv_stream),
hassof390d2c2004-09-10 20:48:21 +0000365 ntohs (hdr->pdu_len) - ISIS_P2PHELLO_HDRLEN
366 - ISIS_FIXED_HDR_LEN, &expected, &found, &tlvs);
jardineb5d44e2003-12-23 08:09:43 +0000367
hassof390d2c2004-09-10 20:48:21 +0000368 if (retval > ISIS_WARNING)
369 {
370 free_tlvs (&tlvs);
371 return retval;
372 };
jardineb5d44e2003-12-23 08:09:43 +0000373
374 /* 8.2.5.1 c) Authentication */
hassof390d2c2004-09-10 20:48:21 +0000375 if (circuit->passwd.type)
376 {
377 if (!(found & TLVFLAG_AUTH_INFO) ||
378 authentication_check (&circuit->passwd, &tlvs.auth_info))
379 {
380 isis_event_auth_failure (circuit->area->area_tag,
381 "P2P hello authentication failure",
382 hdr->source_id);
383 return ISIS_OK;
384 }
jardineb5d44e2003-12-23 08:09:43 +0000385 }
jardineb5d44e2003-12-23 08:09:43 +0000386
387 /* we do this now because the adj may not survive till the end... */
388
389 /* we need to copy addresses to the adj */
hassof390d2c2004-09-10 20:48:21 +0000390 tlvs_to_adj_ipv4_addrs (&tlvs, adj);
jardineb5d44e2003-12-23 08:09:43 +0000391
392#ifdef HAVE_IPV6
hassof390d2c2004-09-10 20:48:21 +0000393 tlvs_to_adj_ipv6_addrs (&tlvs, adj);
jardineb5d44e2003-12-23 08:09:43 +0000394#endif /* HAVE_IPV6 */
395
396 /* lets take care of the expiry */
hassof390d2c2004-09-10 20:48:21 +0000397 THREAD_TIMER_OFF (adj->t_expire);
398 THREAD_TIMER_ON (master, adj->t_expire, isis_adj_expire, adj,
399 (long) adj->hold_time);
jardineb5d44e2003-12-23 08:09:43 +0000400
401 /* 8.2.5.2 a) a match was detected */
hassof390d2c2004-09-10 20:48:21 +0000402 if (area_match (circuit->area->area_addrs, tlvs.area_addrs))
403 {
404 /* 8.2.5.2 a) 2) If the system is L1 - table 5 */
405 if (circuit->area->is_type == IS_LEVEL_1)
406 {
407 switch (hdr->circuit_t)
408 {
409 case IS_LEVEL_1:
410 case IS_LEVEL_1_AND_2:
411 if (adj->adj_state != ISIS_ADJ_UP)
412 {
413 /* (4) adj state up */
414 isis_adj_state_change (adj, ISIS_ADJ_UP, NULL);
415 /* (5) adj usage level 1 */
416 adj->adj_usage = ISIS_ADJ_LEVEL1;
417 }
418 else if (adj->adj_usage == ISIS_ADJ_LEVEL1)
419 {
420 ; /* accept */
421 }
422 break;
423 case IS_LEVEL_2:
424 if (adj->adj_state != ISIS_ADJ_UP)
425 {
426 /* (7) reject - wrong system type event */
427 zlog_warn ("wrongSystemType");
428 return ISIS_WARNING; /* Reject */
429 }
430 else if (adj->adj_usage == ISIS_ADJ_LEVEL1)
431 {
432 /* (6) down - wrong system */
433 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
434 }
435 break;
436 }
437 }
jardineb5d44e2003-12-23 08:09:43 +0000438
hassof390d2c2004-09-10 20:48:21 +0000439 /* 8.2.5.2 a) 3) If the system is L1L2 - table 6 */
440 if (circuit->area->is_type == IS_LEVEL_1_AND_2)
441 {
442 switch (hdr->circuit_t)
443 {
444 case IS_LEVEL_1:
445 if (adj->adj_state != ISIS_ADJ_UP)
446 {
447 /* (6) adj state up */
448 isis_adj_state_change (adj, ISIS_ADJ_UP, NULL);
449 /* (7) adj usage level 1 */
450 adj->adj_usage = ISIS_ADJ_LEVEL1;
451 }
452 else if (adj->adj_usage == ISIS_ADJ_LEVEL1)
453 {
454 ; /* accept */
455 }
456 else if ((adj->adj_usage == ISIS_ADJ_LEVEL1AND2) ||
457 (adj->adj_usage == ISIS_ADJ_LEVEL2))
458 {
459 /* (8) down - wrong system */
460 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
461 }
462 break;
463 case IS_LEVEL_2:
464 if (adj->adj_state != ISIS_ADJ_UP)
465 {
466 /* (6) adj state up */
467 isis_adj_state_change (adj, ISIS_ADJ_UP, NULL);
468 /* (9) adj usage level 2 */
469 adj->adj_usage = ISIS_ADJ_LEVEL2;
470 }
471 else if ((adj->adj_usage == ISIS_ADJ_LEVEL1) ||
472 (adj->adj_usage == ISIS_ADJ_LEVEL1AND2))
473 {
474 /* (8) down - wrong system */
475 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
476 }
477 else if (adj->adj_usage == ISIS_ADJ_LEVEL2)
478 {
479 ; /* Accept */
480 }
481 break;
482 case IS_LEVEL_1_AND_2:
483 if (adj->adj_state != ISIS_ADJ_UP)
484 {
485 /* (6) adj state up */
486 isis_adj_state_change (adj, ISIS_ADJ_UP, NULL);
487 /* (10) adj usage level 1 */
488 adj->adj_usage = ISIS_ADJ_LEVEL1AND2;
489 }
490 else if ((adj->adj_usage == ISIS_ADJ_LEVEL1) ||
491 (adj->adj_usage == ISIS_ADJ_LEVEL2))
492 {
493 /* (8) down - wrong system */
494 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
495 }
496 else if (adj->adj_usage == ISIS_ADJ_LEVEL1AND2)
497 {
498 ; /* Accept */
499 }
500 break;
501 }
502 }
jardineb5d44e2003-12-23 08:09:43 +0000503
hassof390d2c2004-09-10 20:48:21 +0000504 /* 8.2.5.2 a) 4) If the system is L2 - table 7 */
505 if (circuit->area->is_type == IS_LEVEL_2)
506 {
507 switch (hdr->circuit_t)
508 {
509 case IS_LEVEL_1:
510 if (adj->adj_state != ISIS_ADJ_UP)
511 {
512 /* (5) reject - wrong system type event */
513 zlog_warn ("wrongSystemType");
514 return ISIS_WARNING; /* Reject */
515 }
516 else if ((adj->adj_usage == ISIS_ADJ_LEVEL1AND2) ||
517 (adj->adj_usage == ISIS_ADJ_LEVEL2))
518 {
519 /* (6) down - wrong system */
520 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
521 }
522 break;
523 case IS_LEVEL_1_AND_2:
524 case IS_LEVEL_2:
525 if (adj->adj_state != ISIS_ADJ_UP)
526 {
527 /* (7) adj state up */
528 isis_adj_state_change (adj, ISIS_ADJ_UP, NULL);
529 /* (8) adj usage level 2 */
530 adj->adj_usage = ISIS_ADJ_LEVEL2;
531 }
532 else if (adj->adj_usage == ISIS_ADJ_LEVEL1AND2)
533 {
534 /* (6) down - wrong system */
535 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
536 }
537 else if (adj->adj_usage == ISIS_ADJ_LEVEL2)
538 {
539 ; /* Accept */
540 }
541 break;
542 }
543 }
jardineb5d44e2003-12-23 08:09:43 +0000544 }
jardineb5d44e2003-12-23 08:09:43 +0000545 /* 8.2.5.2 b) if no match was detected */
546 else
jardineb5d44e2003-12-23 08:09:43 +0000547 {
hassof390d2c2004-09-10 20:48:21 +0000548 if (circuit->area->is_type == IS_LEVEL_1)
549 {
550 /* 8.2.5.2 b) 1) is_type L1 and adj is not up */
551 if (adj->adj_state != ISIS_ADJ_UP)
552 {
553 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Area Mismatch");
554 /* 8.2.5.2 b) 2)is_type L1 and adj is up */
555 }
556 else
557 {
558 isis_adj_state_change (adj, ISIS_ADJ_DOWN,
559 "Down - Area Mismatch");
560 }
561 }
562 /* 8.2.5.2 b 3 If the system is L2 or L1L2 - table 8 */
563 else
564 {
565 switch (hdr->circuit_t)
566 {
567 case IS_LEVEL_1:
568 if (adj->adj_state != ISIS_ADJ_UP)
569 {
570 /* (6) reject - Area Mismatch event */
571 zlog_warn ("AreaMismatch");
572 return ISIS_WARNING; /* Reject */
573 }
574 else if (adj->adj_usage == ISIS_ADJ_LEVEL1)
575 {
576 /* (7) down - area mismatch */
577 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Area Mismatch");
jardineb5d44e2003-12-23 08:09:43 +0000578
hassof390d2c2004-09-10 20:48:21 +0000579 }
580 else if ((adj->adj_usage == ISIS_ADJ_LEVEL1AND2) ||
581 (adj->adj_usage == ISIS_ADJ_LEVEL2))
582 {
583 /* (7) down - wrong system */
584 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
585 }
586 break;
587 case IS_LEVEL_1_AND_2:
588 case IS_LEVEL_2:
589 if (adj->adj_state != ISIS_ADJ_UP)
590 {
591 /* (8) adj state up */
592 isis_adj_state_change (adj, ISIS_ADJ_UP, NULL);
593 /* (9) adj usage level 2 */
594 adj->adj_usage = ISIS_ADJ_LEVEL2;
595 }
596 else if (adj->adj_usage == ISIS_ADJ_LEVEL1)
597 {
598 /* (7) down - wrong system */
599 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
600 }
601 else if (adj->adj_usage == ISIS_ADJ_LEVEL1AND2)
602 {
603 if (hdr->circuit_t == IS_LEVEL_2)
604 {
605 /* (7) down - wrong system */
606 isis_adj_state_change (adj, ISIS_ADJ_DOWN,
607 "Wrong System");
608 }
609 else
610 {
611 /* (7) down - area mismatch */
612 isis_adj_state_change (adj, ISIS_ADJ_DOWN,
613 "Area Mismatch");
614 }
615 }
616 else if (adj->adj_usage == ISIS_ADJ_LEVEL2)
617 {
618 ; /* Accept */
619 }
620 break;
621 }
622 }
jardineb5d44e2003-12-23 08:09:43 +0000623 }
jardineb5d44e2003-12-23 08:09:43 +0000624 /* 8.2.5.2 c) if the action was up - comparing circuit IDs */
625 /* FIXME - Missing parts */
626
jardineb5d44e2003-12-23 08:09:43 +0000627 /* some of my own understanding of the ISO, why the heck does
628 * it not say what should I change the system_type to...
629 */
hassof390d2c2004-09-10 20:48:21 +0000630 switch (adj->adj_usage)
631 {
jardineb5d44e2003-12-23 08:09:43 +0000632 case ISIS_ADJ_LEVEL1:
633 adj->sys_type = ISIS_SYSTYPE_L1_IS;
634 break;
635 case ISIS_ADJ_LEVEL2:
636 adj->sys_type = ISIS_SYSTYPE_L2_IS;
637 break;
638 case ISIS_ADJ_LEVEL1AND2:
639 adj->sys_type = ISIS_SYSTYPE_L2_IS;
640 break;
641 case ISIS_ADJ_NONE:
642 adj->sys_type = ISIS_SYSTYPE_UNKNOWN;
643 break;
hassof390d2c2004-09-10 20:48:21 +0000644 }
jardineb5d44e2003-12-23 08:09:43 +0000645
646 adj->circuit_t = hdr->circuit_t;
647 adj->level = hdr->circuit_t;
648
649 free_tlvs (&tlvs);
650
651 return retval;
652}
653
jardineb5d44e2003-12-23 08:09:43 +0000654/*
655 * Process IS-IS LAN Level 1/2 Hello PDU
656 */
hassof390d2c2004-09-10 20:48:21 +0000657static int
658process_lan_hello (int level, struct isis_circuit *circuit, u_char * ssnpa)
jardineb5d44e2003-12-23 08:09:43 +0000659{
660 int retval = ISIS_OK;
661 struct isis_lan_hello_hdr hdr;
662 struct isis_adjacency *adj;
663 u_int32_t expected = 0, found;
664 struct tlvs tlvs;
665 u_char *snpa;
paul1eb8ef22005-04-07 07:30:20 +0000666 struct listnode *node, *nnode;
jardineb5d44e2003-12-23 08:09:43 +0000667
hassof390d2c2004-09-10 20:48:21 +0000668 if ((stream_get_endp (circuit->rcv_stream) -
669 stream_get_getp (circuit->rcv_stream)) < ISIS_LANHELLO_HDRLEN)
670 {
671 zlog_warn ("Packet too short");
672 return ISIS_WARNING;
jardineb5d44e2003-12-23 08:09:43 +0000673 }
hassof390d2c2004-09-10 20:48:21 +0000674
675 if (circuit->ext_domain)
676 {
hasso529d65b2004-12-24 00:14:50 +0000677 zlog_debug ("level %d LAN Hello received over circuit with "
678 "externalDomain = true", level);
hassof390d2c2004-09-10 20:48:21 +0000679 return ISIS_WARNING;
680 }
681
682 if (!accept_level (level, circuit->circuit_is_type))
683 {
684 if (isis->debugs & DEBUG_ADJ_PACKETS)
685 {
hasso529d65b2004-12-24 00:14:50 +0000686 zlog_debug ("ISIS-Adj (%s): Interface level mismatch, %s",
687 circuit->area->area_tag, circuit->interface->name);
hassof390d2c2004-09-10 20:48:21 +0000688 }
689 return ISIS_WARNING;
690 }
jardineb5d44e2003-12-23 08:09:43 +0000691
692#if 0
693 /* Cisco's debug message compatability */
hassof390d2c2004-09-10 20:48:21 +0000694 if (!accept_level (level, circuit->area->is_type))
695 {
696 if (isis->debugs & DEBUG_ADJ_PACKETS)
697 {
hasso529d65b2004-12-24 00:14:50 +0000698 zlog_debug ("ISIS-Adj (%s): is type mismatch",
699 circuit->area->area_tag);
hassof390d2c2004-09-10 20:48:21 +0000700 }
701 return ISIS_WARNING;
jardineb5d44e2003-12-23 08:09:43 +0000702 }
jardineb5d44e2003-12-23 08:09:43 +0000703#endif
704 /*
705 * Fill the header
706 */
707 hdr.circuit_t = stream_getc (circuit->rcv_stream);
708 stream_get (hdr.source_id, circuit->rcv_stream, ISIS_SYS_ID_LEN);
709 hdr.hold_time = stream_getw (circuit->rcv_stream);
hassof390d2c2004-09-10 20:48:21 +0000710 hdr.pdu_len = stream_getw (circuit->rcv_stream);
711 hdr.prio = stream_getc (circuit->rcv_stream);
jardineb5d44e2003-12-23 08:09:43 +0000712 stream_get (hdr.lan_id, circuit->rcv_stream, ISIS_SYS_ID_LEN + 1);
713
714 if (hdr.circuit_t != IS_LEVEL_1 && hdr.circuit_t != IS_LEVEL_2 &&
hassof390d2c2004-09-10 20:48:21 +0000715 hdr.circuit_t != IS_LEVEL_1_AND_2)
716 {
717 zlog_warn ("Level %d LAN Hello with Circuit Type %d", level,
718 hdr.circuit_t);
719 return ISIS_ERROR;
720 }
jardineb5d44e2003-12-23 08:09:43 +0000721 /*
722 * Then get the tlvs
723 */
724 expected |= TLVFLAG_AUTH_INFO;
725 expected |= TLVFLAG_AREA_ADDRS;
726 expected |= TLVFLAG_LAN_NEIGHS;
727 expected |= TLVFLAG_NLPID;
728 expected |= TLVFLAG_IPV4_ADDR;
729 expected |= TLVFLAG_IPV6_ADDR;
730
731 retval = parse_tlvs (circuit->area->area_tag,
hassof390d2c2004-09-10 20:48:21 +0000732 STREAM_PNT (circuit->rcv_stream),
733 hdr.pdu_len - ISIS_LANHELLO_HDRLEN -
734 ISIS_FIXED_HDR_LEN, &expected, &found, &tlvs);
jardineb5d44e2003-12-23 08:09:43 +0000735
hassof390d2c2004-09-10 20:48:21 +0000736 if (retval > ISIS_WARNING)
737 {
738 zlog_warn ("parse_tlvs() failed");
739 goto out;
740 }
jardineb5d44e2003-12-23 08:09:43 +0000741
hassof390d2c2004-09-10 20:48:21 +0000742 if (!(found & TLVFLAG_AREA_ADDRS))
743 {
744 zlog_warn ("No Area addresses TLV in Level %d LAN IS to IS hello",
745 level);
jardineb5d44e2003-12-23 08:09:43 +0000746 retval = ISIS_WARNING;
747 goto out;
748 }
hassof390d2c2004-09-10 20:48:21 +0000749
750 if (circuit->passwd.type)
751 {
752 if (!(found & TLVFLAG_AUTH_INFO) ||
753 authentication_check (&circuit->passwd, &tlvs.auth_info))
754 {
755 isis_event_auth_failure (circuit->area->area_tag,
756 "LAN hello authentication failure",
757 hdr.source_id);
758 retval = ISIS_WARNING;
759 goto out;
760 }
761 }
jardineb5d44e2003-12-23 08:09:43 +0000762
763 /*
764 * Accept the level 1 adjacency only if a match between local and
765 * remote area addresses is found
766 */
hassof390d2c2004-09-10 20:48:21 +0000767 if (level == 1 && !area_match (circuit->area->area_addrs, tlvs.area_addrs))
768 {
769 if (isis->debugs & DEBUG_ADJ_PACKETS)
770 {
hasso529d65b2004-12-24 00:14:50 +0000771 zlog_debug ("ISIS-Adj (%s): Area mismatch, level %d IIH on %s",
772 circuit->area->area_tag, level,
773 circuit->interface->name);
hassof390d2c2004-09-10 20:48:21 +0000774 }
775 retval = ISIS_OK;
776 goto out;
jardineb5d44e2003-12-23 08:09:43 +0000777 }
jardineb5d44e2003-12-23 08:09:43 +0000778
779 /*
780 * it's own IIH PDU - discard silently
hassof390d2c2004-09-10 20:48:21 +0000781 */
782 if (!memcmp (circuit->u.bc.snpa, ssnpa, ETH_ALEN))
783 {
hasso529d65b2004-12-24 00:14:50 +0000784 zlog_debug ("ISIS-Adj (%s): it's own IIH PDU - discarded",
785 circuit->area->area_tag);
jardineb5d44e2003-12-23 08:09:43 +0000786
hassof390d2c2004-09-10 20:48:21 +0000787 retval = ISIS_OK;
788 goto out;
789 }
jardineb5d44e2003-12-23 08:09:43 +0000790
791 /*
792 * check if it's own interface ip match iih ip addrs
793 */
hassof390d2c2004-09-10 20:48:21 +0000794 if (!(found & TLVFLAG_IPV4_ADDR)
795 || !ip_match (circuit->ip_addrs, tlvs.ipv4_addrs))
796 {
hasso529d65b2004-12-24 00:14:50 +0000797 zlog_debug
hassof390d2c2004-09-10 20:48:21 +0000798 ("ISIS-Adj: No usable IP interface addresses in LAN IIH from %s\n",
799 circuit->interface->name);
800 retval = ISIS_WARNING;
801 goto out;
802 }
jardineb5d44e2003-12-23 08:09:43 +0000803
804 adj = isis_adj_lookup (hdr.source_id, circuit->u.bc.adjdb[level - 1]);
hassof390d2c2004-09-10 20:48:21 +0000805 if (!adj)
806 {
807 /*
808 * Do as in 8.4.2.5
809 */
810 adj = isis_new_adj (hdr.source_id, ssnpa, level, circuit);
811 if (adj == NULL)
hasso13c48f72004-09-10 21:19:13 +0000812 {
813 retval = ISIS_ERROR;
814 goto out;
815 }
jardineb5d44e2003-12-23 08:09:43 +0000816
hassof390d2c2004-09-10 20:48:21 +0000817 adj->level = level;
818 isis_adj_state_change (adj, ISIS_ADJ_INITIALIZING, NULL);
jardineb5d44e2003-12-23 08:09:43 +0000819
hassof390d2c2004-09-10 20:48:21 +0000820 if (level == 1)
821 {
822 adj->sys_type = ISIS_SYSTYPE_L1_IS;
823 }
824 else
825 {
826 adj->sys_type = ISIS_SYSTYPE_L2_IS;
827 }
828 list_delete_all_node (circuit->u.bc.lan_neighs[level - 1]);
829 isis_adj_build_neigh_list (circuit->u.bc.adjdb[level - 1],
830 circuit->u.bc.lan_neighs[level - 1]);
jardineb5d44e2003-12-23 08:09:43 +0000831 }
jardineb5d44e2003-12-23 08:09:43 +0000832
hassoa211d652004-09-20 14:55:29 +0000833 if(adj->dis_record[level-1].dis==ISIS_IS_DIS)
834 switch (level)
835 {
836 case 1:
837 if (memcmp (circuit->u.bc.l1_desig_is, hdr.lan_id, ISIS_SYS_ID_LEN + 1))
838 {
839 thread_add_event (master, isis_event_dis_status_change, circuit, 0);
hasso64a7afd2004-09-14 11:05:13 +0000840 memcpy (&circuit->u.bc.l1_desig_is, hdr.lan_id,
841 ISIS_SYS_ID_LEN + 1);
hassoa211d652004-09-20 14:55:29 +0000842 }
843 break;
844 case 2:
845 if (memcmp (circuit->u.bc.l2_desig_is, hdr.lan_id, ISIS_SYS_ID_LEN + 1))
846 {
847 thread_add_event (master, isis_event_dis_status_change, circuit, 0);
hasso64a7afd2004-09-14 11:05:13 +0000848 memcpy (&circuit->u.bc.l2_desig_is, hdr.lan_id,
849 ISIS_SYS_ID_LEN + 1);
hassoa211d652004-09-20 14:55:29 +0000850 }
851 break;
852 }
jardineb5d44e2003-12-23 08:09:43 +0000853
854 adj->hold_time = hdr.hold_time;
hassof390d2c2004-09-10 20:48:21 +0000855 adj->last_upd = time (NULL);
856 adj->prio[level - 1] = hdr.prio;
jardineb5d44e2003-12-23 08:09:43 +0000857
858 memcpy (adj->lanid, hdr.lan_id, ISIS_SYS_ID_LEN + 1);
859
860 /* which protocol are spoken ??? */
hassof390d2c2004-09-10 20:48:21 +0000861 if (found & TLVFLAG_NLPID)
jardineb5d44e2003-12-23 08:09:43 +0000862 tlvs_to_adj_nlpids (&tlvs, adj);
863
864 /* we need to copy addresses to the adj */
hassof390d2c2004-09-10 20:48:21 +0000865 if (found & TLVFLAG_IPV4_ADDR)
jardineb5d44e2003-12-23 08:09:43 +0000866 tlvs_to_adj_ipv4_addrs (&tlvs, adj);
867
868#ifdef HAVE_IPV6
hassof390d2c2004-09-10 20:48:21 +0000869 if (found & TLVFLAG_IPV6_ADDR)
jardineb5d44e2003-12-23 08:09:43 +0000870 tlvs_to_adj_ipv6_addrs (&tlvs, adj);
871#endif /* HAVE_IPV6 */
872
873 adj->circuit_t = hdr.circuit_t;
874
875 /* lets take care of the expiry */
hassof390d2c2004-09-10 20:48:21 +0000876 THREAD_TIMER_OFF (adj->t_expire);
877 THREAD_TIMER_ON (master, adj->t_expire, isis_adj_expire, adj,
878 (long) adj->hold_time);
jardineb5d44e2003-12-23 08:09:43 +0000879
880 /*
881 * If the snpa for this circuit is found from LAN Neighbours TLV
882 * we have two-way communication -> adjacency can be put to state "up"
883 */
884
hassof390d2c2004-09-10 20:48:21 +0000885 if (found & TLVFLAG_LAN_NEIGHS)
886 {
887 if (adj->adj_state != ISIS_ADJ_UP)
888 {
paul1eb8ef22005-04-07 07:30:20 +0000889 for (ALL_LIST_ELEMENTS (tlvs.lan_neighs, node, nnode, snpa))
hassof390d2c2004-09-10 20:48:21 +0000890 if (!memcmp (snpa, circuit->u.bc.snpa, ETH_ALEN))
891 {
892 isis_adj_state_change (adj, ISIS_ADJ_UP,
893 "own SNPA found in LAN Neighbours TLV");
894 }
895 }
jardineb5d44e2003-12-23 08:09:43 +0000896 }
jardineb5d44e2003-12-23 08:09:43 +0000897
hassof390d2c2004-09-10 20:48:21 +0000898out:
jardineb5d44e2003-12-23 08:09:43 +0000899 /* DEBUG_ADJ_PACKETS */
hassof390d2c2004-09-10 20:48:21 +0000900 if (isis->debugs & DEBUG_ADJ_PACKETS)
901 {
902 /* FIXME: is this place right? fix missing info */
hasso529d65b2004-12-24 00:14:50 +0000903 zlog_debug ("ISIS-Adj (%s): Rcvd L%d LAN IIH from %s on %s, cirType %s, "
904 "cirID %u, length %ld",
905 circuit->area->area_tag,
906 level, snpa_print (ssnpa), circuit->interface->name,
907 circuit_t2string (circuit->circuit_is_type),
hasso29e50b22005-09-01 18:18:47 +0000908 circuit->circuit_id,
909 /* FIXME: use %z when we stop supporting old compilers. */
910 (unsigned long) stream_get_endp (circuit->rcv_stream));
hassof390d2c2004-09-10 20:48:21 +0000911 }
jardineb5d44e2003-12-23 08:09:43 +0000912
913 free_tlvs (&tlvs);
914
915 return retval;
916}
917
918/*
919 * Process Level 1/2 Link State
920 * ISO - 10589
921 * Section 7.3.15.1 - Action on receipt of a link state PDU
hassof390d2c2004-09-10 20:48:21 +0000922 */
923static int
924process_lsp (int level, struct isis_circuit *circuit, u_char * ssnpa)
jardineb5d44e2003-12-23 08:09:43 +0000925{
926 struct isis_link_state_hdr *hdr;
927 struct isis_adjacency *adj = NULL;
928 struct isis_lsp *lsp, *lsp0 = NULL;
929 int retval = ISIS_OK, comp = 0;
930 u_char lspid[ISIS_SYS_ID_LEN + 2];
931 struct isis_passwd *passwd;
932
933 /* Sanity check - FIXME: move to correct place */
hassof390d2c2004-09-10 20:48:21 +0000934 if ((stream_get_endp (circuit->rcv_stream) -
935 stream_get_getp (circuit->rcv_stream)) < ISIS_LSP_HDR_LEN)
936 {
937 zlog_warn ("Packet too short");
938 return ISIS_WARNING;
939 }
jardineb5d44e2003-12-23 08:09:43 +0000940
941 /* Reference the header */
hassof390d2c2004-09-10 20:48:21 +0000942 hdr = (struct isis_link_state_hdr *) STREAM_PNT (circuit->rcv_stream);
jardineb5d44e2003-12-23 08:09:43 +0000943
hassof390d2c2004-09-10 20:48:21 +0000944 if (isis->debugs & DEBUG_UPDATE_PACKETS)
945 {
hasso529d65b2004-12-24 00:14:50 +0000946 zlog_debug ("ISIS-Upd (%s): Rcvd L%d LSP %s, seq 0x%08x, cksum 0x%04x, "
947 "lifetime %us, len %lu, on %s",
948 circuit->area->area_tag,
949 level,
950 rawlspid_print (hdr->lsp_id),
951 ntohl (hdr->seq_num),
952 ntohs (hdr->checksum),
953 ntohs (hdr->rem_lifetime),
hasso29e50b22005-09-01 18:18:47 +0000954 /* FIXME: use %z when we stop supporting old compilers. */
955 (unsigned long) stream_get_endp (circuit->rcv_stream),
paul15935e92005-05-03 09:27:23 +0000956 circuit->interface->name);
hassof390d2c2004-09-10 20:48:21 +0000957 }
jardineb5d44e2003-12-23 08:09:43 +0000958
959 assert (ntohs (hdr->pdu_len) > ISIS_LSP_HDR_LEN);
960
961 /* Checksum sanity check - FIXME: move to correct place */
962 /* 12 = sysid+pdu+remtime */
hassof390d2c2004-09-10 20:48:21 +0000963 if (iso_csum_verify (STREAM_PNT (circuit->rcv_stream) + 4,
964 ntohs (hdr->pdu_len) - 12, &hdr->checksum))
965 {
hasso529d65b2004-12-24 00:14:50 +0000966 zlog_debug ("ISIS-Upd (%s): LSP %s invalid LSP checksum 0x%04x",
967 circuit->area->area_tag,
968 rawlspid_print (hdr->lsp_id), ntohs (hdr->checksum));
jardineb5d44e2003-12-23 08:09:43 +0000969
hassof390d2c2004-09-10 20:48:21 +0000970 return ISIS_WARNING;
971 }
jardineb5d44e2003-12-23 08:09:43 +0000972
973 /* 7.3.15.1 a) 1 - external domain circuit will discard lsps */
hassof390d2c2004-09-10 20:48:21 +0000974 if (circuit->ext_domain)
975 {
hasso529d65b2004-12-24 00:14:50 +0000976 zlog_debug
hassof390d2c2004-09-10 20:48:21 +0000977 ("ISIS-Upd (%s): LSP %s received at level %d over circuit with "
978 "externalDomain = true", circuit->area->area_tag,
979 rawlspid_print (hdr->lsp_id), level);
jardineb5d44e2003-12-23 08:09:43 +0000980
hassof390d2c2004-09-10 20:48:21 +0000981 return ISIS_WARNING;
982 }
jardineb5d44e2003-12-23 08:09:43 +0000983
984 /* 7.3.15.1 a) 2,3 - manualL2OnlyMode not implemented */
hassof390d2c2004-09-10 20:48:21 +0000985 if (!accept_level (level, circuit->circuit_is_type))
986 {
hasso529d65b2004-12-24 00:14:50 +0000987 zlog_debug ("ISIS-Upd (%s): LSP %s received at level %d over circuit of"
988 " type %s",
989 circuit->area->area_tag,
990 rawlspid_print (hdr->lsp_id),
991 level, circuit_t2string (circuit->circuit_is_type));
jardineb5d44e2003-12-23 08:09:43 +0000992
hassof390d2c2004-09-10 20:48:21 +0000993 return ISIS_WARNING;
994 }
jardineb5d44e2003-12-23 08:09:43 +0000995
996 /* 7.3.15.1 a) 4 - need to make sure IDLength matches */
997
998 /* 7.3.15.1 a) 5 - maximum area match, can be ommited since we only use 3 */
999
1000 /* 7.3.15.1 a) 7 - password check */
1001 (level == ISIS_LEVEL1) ? (passwd = &circuit->area->area_passwd) :
1002 (passwd = &circuit->area->domain_passwd);
hassof390d2c2004-09-10 20:48:21 +00001003 if (passwd->type)
1004 {
1005 if (isis_lsp_authinfo_check (circuit->rcv_stream, circuit->area,
1006 ntohs (hdr->pdu_len), passwd))
1007 {
1008 isis_event_auth_failure (circuit->area->area_tag,
1009 "LSP authentication failure", hdr->lsp_id);
1010 return ISIS_WARNING;
1011 }
jardineb5d44e2003-12-23 08:09:43 +00001012 }
jardineb5d44e2003-12-23 08:09:43 +00001013 /* Find the LSP in our database and compare it to this Link State header */
1014 lsp = lsp_search (hdr->lsp_id, circuit->area->lspdb[level - 1]);
1015 if (lsp)
hassof390d2c2004-09-10 20:48:21 +00001016 comp = lsp_compare (circuit->area->area_tag, lsp, hdr->seq_num,
1017 hdr->checksum, hdr->rem_lifetime);
1018 if (lsp && (lsp->own_lsp
jardineb5d44e2003-12-23 08:09:43 +00001019#ifdef TOPOLOGY_GENERATE
hassof390d2c2004-09-10 20:48:21 +00001020 || lsp->from_topology
jardineb5d44e2003-12-23 08:09:43 +00001021#endif /* TOPOLOGY_GENERATE */
hassof390d2c2004-09-10 20:48:21 +00001022 ))
jardineb5d44e2003-12-23 08:09:43 +00001023 goto dontcheckadj;
1024
1025 /* 7.3.15.1 a) 6 - Must check that we have an adjacency of the same level */
1026 /* for broadcast circuits, snpa should be compared */
1027 /* FIXME : Point To Point */
1028
hassof390d2c2004-09-10 20:48:21 +00001029 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
1030 {
1031 adj = isis_adj_lookup_snpa (ssnpa, circuit->u.bc.adjdb[level - 1]);
1032 if (!adj)
1033 {
hasso529d65b2004-12-24 00:14:50 +00001034 zlog_debug ("(%s): DS ======= LSP %s, seq 0x%08x, cksum 0x%04x, "
1035 "lifetime %us on %s",
1036 circuit->area->area_tag,
1037 rawlspid_print (hdr->lsp_id),
1038 ntohl (hdr->seq_num),
1039 ntohs (hdr->checksum),
1040 ntohs (hdr->rem_lifetime), circuit->interface->name);
hassof390d2c2004-09-10 20:48:21 +00001041 return ISIS_WARNING; /* Silently discard */
1042 }
jardineb5d44e2003-12-23 08:09:43 +00001043 }
jardineb5d44e2003-12-23 08:09:43 +00001044
1045 /* for non broadcast, we just need to find same level adj */
hassof390d2c2004-09-10 20:48:21 +00001046 else
1047 {
1048 /* If no adj, or no sharing of level */
1049 if (!circuit->u.p2p.neighbor)
1050 {
1051 return ISIS_OK; /* Silently discard */
1052 }
1053 else
1054 {
1055 if (((level == 1) &&
1056 (circuit->u.p2p.neighbor->adj_usage == ISIS_ADJ_LEVEL2)) ||
1057 ((level == 2) &&
1058 (circuit->u.p2p.neighbor->adj_usage == ISIS_ADJ_LEVEL1)))
1059 return ISIS_WARNING; /* Silently discard */
1060 }
jardineb5d44e2003-12-23 08:09:43 +00001061 }
hassof390d2c2004-09-10 20:48:21 +00001062dontcheckadj:
jardineb5d44e2003-12-23 08:09:43 +00001063 /* 7.3.15.1 a) 7 - Passwords for level 1 - not implemented */
1064
1065 /* 7.3.15.1 a) 8 - Passwords for level 2 - not implemented */
1066
hassof390d2c2004-09-10 20:48:21 +00001067 /* 7.3.15.1 a) 9 - OriginatingLSPBufferSize - not implemented FIXME: do it */
jardineb5d44e2003-12-23 08:09:43 +00001068
hassof390d2c2004-09-10 20:48:21 +00001069 /* 7.3.15.1 b) - If the remaining life time is 0, we perform 7.3.16.4 */
1070 if (hdr->rem_lifetime == 0)
1071 {
1072 if (!lsp)
1073 {
1074 /* 7.3.16.4 a) 1) No LSP in db -> send an ack, but don't save */
1075 /* only needed on explicit update, eg - p2p */
1076 if (circuit->circ_type == CIRCUIT_T_P2P)
1077 ack_lsp (hdr, circuit, level);
1078 return retval; /* FIXME: do we need a purge? */
1079 }
1080 else
1081 {
1082 if (memcmp (hdr->lsp_id, isis->sysid, ISIS_SYS_ID_LEN))
1083 {
1084 /* LSP by some other system -> do 7.3.16.4 b) */
1085 /* 7.3.16.4 b) 1) */
1086 if (comp == LSP_NEWER)
1087 {
1088 lsp_update (lsp, hdr, circuit->rcv_stream, circuit->area);
1089 /* ii */
1090 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
1091 /* iii */
1092 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
1093 /* v */
1094 ISIS_FLAGS_CLEAR_ALL (lsp->SSNflags); /* FIXME: OTHER than c */
1095 /* iv */
1096 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1097 ISIS_SET_FLAG (lsp->SSNflags, circuit);
jardineb5d44e2003-12-23 08:09:43 +00001098
hassof390d2c2004-09-10 20:48:21 +00001099 } /* 7.3.16.4 b) 2) */
1100 else if (comp == LSP_EQUAL)
1101 {
1102 /* i */
1103 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
1104 /* ii */
1105 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1106 ISIS_SET_FLAG (lsp->SSNflags, circuit);
1107 } /* 7.3.16.4 b) 3) */
1108 else
1109 {
1110 ISIS_SET_FLAG (lsp->SRMflags, circuit);
1111 ISIS_CLEAR_FLAG (lsp->SSNflags, circuit);
1112 }
1113 }
1114 else
1115 {
1116 /* our own LSP -> 7.3.16.4 c) */
1117 if (LSP_PSEUDO_ID (lsp->lsp_header->lsp_id) !=
1118 circuit->circuit_id
1119 || (LSP_PSEUDO_ID (lsp->lsp_header->lsp_id) ==
1120 circuit->circuit_id
1121 && circuit->u.bc.is_dr[level - 1] == 1))
1122 {
1123 lsp->lsp_header->seq_num = htonl (ntohl (hdr->seq_num) + 1);
hasso529d65b2004-12-24 00:14:50 +00001124 zlog_debug ("LSP LEN: %d", ntohs (lsp->lsp_header->pdu_len));
hassof390d2c2004-09-10 20:48:21 +00001125 iso_csum_create (STREAM_DATA (lsp->pdu) + 12,
1126 ntohs (lsp->lsp_header->pdu_len) - 12, 12);
1127 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
hasso529d65b2004-12-24 00:14:50 +00001128 zlog_debug
hassof390d2c2004-09-10 20:48:21 +00001129 ("ISIS-Upd (%s): (1) re-originating LSP %s new seq 0x%08x",
1130 circuit->area->area_tag, rawlspid_print (hdr->lsp_id),
1131 ntohl (lsp->lsp_header->seq_num));
1132 lsp->lsp_header->rem_lifetime =
1133 htons (isis_jitter
1134 (circuit->area->max_lsp_lifetime[level - 1],
1135 MAX_AGE_JITTER));
1136 }
1137 else
1138 {
1139 /* Got purge for own pseudo-lsp, and we are not DR */
1140 lsp_purge_dr (lsp->lsp_header->lsp_id, circuit, level);
1141 }
1142 }
1143 }
1144 return retval;
jardineb5d44e2003-12-23 08:09:43 +00001145 }
jardineb5d44e2003-12-23 08:09:43 +00001146 /* 7.3.15.1 c) - If this is our own lsp and we don't have it initiate a
1147 * purge */
hassof390d2c2004-09-10 20:48:21 +00001148 if (memcmp (hdr->lsp_id, isis->sysid, ISIS_SYS_ID_LEN) == 0)
1149 {
1150 if (!lsp)
1151 {
1152 /* 7.3.16.4: initiate a purge */
1153 lsp_purge_non_exist (hdr, circuit->area);
1154 return ISIS_OK;
1155 }
1156 /* 7.3.15.1 d) - If this is our own lsp and we have it */
1157
1158 /* In 7.3.16.1, If an Intermediate system R somewhere in the domain
1159 * has information that the current sequence number for source S is
1160 * "greater" than that held by S, ... */
1161
1162 else if (ntohl (hdr->seq_num) > ntohl (lsp->lsp_header->seq_num))
1163 {
1164 /* 7.3.16.1 */
1165 lsp->lsp_header->seq_num = htonl (ntohl (hdr->seq_num) + 1);
1166
1167 iso_csum_create (STREAM_DATA (lsp->pdu) + 12,
1168 ntohs (lsp->lsp_header->pdu_len) - 12, 12);
1169
1170 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
hasso529d65b2004-12-24 00:14:50 +00001171 zlog_debug
hassof390d2c2004-09-10 20:48:21 +00001172 ("ISIS-Upd (%s): (2) re-originating LSP %s new seq 0x%08x",
1173 circuit->area->area_tag, rawlspid_print (hdr->lsp_id),
1174 ntohl (lsp->lsp_header->seq_num));
1175 lsp->lsp_header->rem_lifetime =
1176 htons (isis_jitter
1177 (circuit->area->max_lsp_lifetime[level - 1],
1178 MAX_AGE_JITTER));
1179 }
jardineb5d44e2003-12-23 08:09:43 +00001180 }
hassof390d2c2004-09-10 20:48:21 +00001181 else
1182 {
1183 /* 7.3.15.1 e) - This lsp originated on another system */
jardineb5d44e2003-12-23 08:09:43 +00001184
hassof390d2c2004-09-10 20:48:21 +00001185 /* 7.3.15.1 e) 1) LSP newer than the one in db or no LSP in db */
1186 if ((!lsp || comp == LSP_NEWER))
1187 {
1188 /* i */
1189 if (lsp)
1190 {
jardineb5d44e2003-12-23 08:09:43 +00001191#ifdef EXTREME_DEBUG
hasso529d65b2004-12-24 00:14:50 +00001192 zlog_debug ("level %d number is - %ld", level,
1193 circuit->area->lspdb[level - 1]->dict_nodecount);
jardineb5d44e2003-12-23 08:09:43 +00001194#endif /* EXTREME DEBUG */
hassof390d2c2004-09-10 20:48:21 +00001195 lsp_search_and_destroy (hdr->lsp_id,
1196 circuit->area->lspdb[level - 1]);
1197 /* exists, so we overwrite */
jardineb5d44e2003-12-23 08:09:43 +00001198#ifdef EXTREME_DEBUG
hasso529d65b2004-12-24 00:14:50 +00001199 zlog_debug ("level %d number is - %ld", level,
1200 circuit->area->lspdb[level - 1]->dict_nodecount);
jardineb5d44e2003-12-23 08:09:43 +00001201#endif /* EXTREME DEBUG */
hassof390d2c2004-09-10 20:48:21 +00001202 }
1203 /*
1204 * If this lsp is a frag, need to see if we have zero lsp present
1205 */
1206 if (LSP_FRAGMENT (hdr->lsp_id) != 0)
1207 {
1208 memcpy (lspid, hdr->lsp_id, ISIS_SYS_ID_LEN + 1);
1209 LSP_FRAGMENT (lspid) = 0;
1210 lsp0 = lsp_search (lspid, circuit->area->lspdb[level - 1]);
1211 if (!lsp0)
1212 {
hasso529d65b2004-12-24 00:14:50 +00001213 zlog_debug ("Got lsp frag, while zero lsp not database");
hassof390d2c2004-09-10 20:48:21 +00001214 return ISIS_OK;
1215 }
1216 }
1217 lsp =
1218 lsp_new_from_stream_ptr (circuit->rcv_stream,
1219 ntohs (hdr->pdu_len), lsp0,
1220 circuit->area);
1221 lsp->level = level;
1222 lsp->adj = adj;
1223 lsp_insert (lsp, circuit->area->lspdb[level - 1]);
1224 /* ii */
1225 ISIS_FLAGS_SET_ALL (lsp->SRMflags);
1226 /* iii */
1227 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
jardineb5d44e2003-12-23 08:09:43 +00001228
hassof390d2c2004-09-10 20:48:21 +00001229 /* iv */
1230 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1231 ISIS_SET_FLAG (lsp->SSNflags, circuit);
1232 /* FIXME: v) */
1233 }
1234 /* 7.3.15.1 e) 2) LSP equal to the one in db */
1235 else if (comp == LSP_EQUAL)
1236 {
1237 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
1238 lsp_update (lsp, hdr, circuit->rcv_stream, circuit->area);
1239 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1240 {
1241 ISIS_SET_FLAG (lsp->SSNflags, circuit);
1242 }
1243 }
1244 /* 7.3.15.1 e) 3) LSP older than the one in db */
1245 else
1246 {
1247 ISIS_SET_FLAG (lsp->SRMflags, circuit);
1248 ISIS_CLEAR_FLAG (lsp->SSNflags, circuit);
1249 }
jardineb5d44e2003-12-23 08:09:43 +00001250 }
jardineb5d44e2003-12-23 08:09:43 +00001251 if (lsp)
1252 lsp->adj = adj;
1253 return retval;
1254}
1255
1256/*
1257 * Process Sequence Numbers
1258 * ISO - 10589
1259 * Section 7.3.15.2 - Action on receipt of a sequence numbers PDU
1260 */
1261
hasso92365882005-01-18 13:53:33 +00001262static int
hassof390d2c2004-09-10 20:48:21 +00001263process_snp (int snp_type, int level, struct isis_circuit *circuit,
1264 u_char * ssnpa)
jardineb5d44e2003-12-23 08:09:43 +00001265{
1266 int retval = ISIS_OK;
1267 int cmp, own_lsp;
1268 char typechar = ' ';
1269 int len;
1270 struct isis_adjacency *adj;
1271 struct isis_complete_seqnum_hdr *chdr = NULL;
1272 struct isis_partial_seqnum_hdr *phdr = NULL;
1273 uint32_t found = 0, expected = 0;
1274 struct isis_lsp *lsp;
1275 struct lsp_entry *entry;
paul1eb8ef22005-04-07 07:30:20 +00001276 struct listnode *node, *nnode;
1277 struct listnode *node2, *nnode2;
jardineb5d44e2003-12-23 08:09:43 +00001278 struct tlvs tlvs;
1279 struct list *lsp_list = NULL;
1280 struct isis_passwd *passwd;
1281
hassof390d2c2004-09-10 20:48:21 +00001282 if (snp_type == ISIS_SNP_CSNP_FLAG)
1283 {
1284 /* getting the header info */
1285 typechar = 'C';
1286 chdr =
1287 (struct isis_complete_seqnum_hdr *) STREAM_PNT (circuit->rcv_stream);
1288 circuit->rcv_stream->getp += ISIS_CSNP_HDRLEN;
1289 len = ntohs (chdr->pdu_len);
1290 if (len < ISIS_CSNP_HDRLEN)
1291 {
1292 zlog_warn ("Received a CSNP with bogus length!");
1293 return ISIS_OK;
1294 }
jardineb5d44e2003-12-23 08:09:43 +00001295 }
hassof390d2c2004-09-10 20:48:21 +00001296 else
1297 {
1298 typechar = 'P';
1299 phdr =
1300 (struct isis_partial_seqnum_hdr *) STREAM_PNT (circuit->rcv_stream);
1301 circuit->rcv_stream->getp += ISIS_PSNP_HDRLEN;
1302 len = ntohs (phdr->pdu_len);
1303 if (len < ISIS_PSNP_HDRLEN)
1304 {
1305 zlog_warn ("Received a CSNP with bogus length!");
1306 return ISIS_OK;
1307 }
jardineb5d44e2003-12-23 08:09:43 +00001308 }
jardineb5d44e2003-12-23 08:09:43 +00001309
1310 /* 7.3.15.2 a) 1 - external domain circuit will discard snp pdu */
hassof390d2c2004-09-10 20:48:21 +00001311 if (circuit->ext_domain)
1312 {
jardineb5d44e2003-12-23 08:09:43 +00001313
hasso529d65b2004-12-24 00:14:50 +00001314 zlog_debug ("ISIS-Snp (%s): Rcvd L%d %cSNP on %s, "
1315 "skipping: circuit externalDomain = true",
1316 circuit->area->area_tag,
1317 level, typechar, circuit->interface->name);
jardineb5d44e2003-12-23 08:09:43 +00001318
1319 return ISIS_OK;
1320 }
hassof390d2c2004-09-10 20:48:21 +00001321
1322 /* 7.3.15.2 a) 2,3 - manualL2OnlyMode not implemented */
1323 if (!accept_level (level, circuit->circuit_is_type))
1324 {
1325
hasso529d65b2004-12-24 00:14:50 +00001326 zlog_debug ("ISIS-Snp (%s): Rcvd L%d %cSNP on %s, "
1327 "skipping: circuit type %s does not match level %d",
1328 circuit->area->area_tag,
1329 level,
1330 typechar,
1331 circuit->interface->name,
1332 circuit_t2string (circuit->circuit_is_type), level);
hassof390d2c2004-09-10 20:48:21 +00001333
1334 return ISIS_OK;
1335 }
1336
1337 /* 7.3.15.2 a) 4 - not applicable for CSNP only PSNPs on broadcast */
1338 if ((snp_type == ISIS_SNP_PSNP_FLAG) &&
1339 (circuit->circ_type == CIRCUIT_T_BROADCAST))
1340 {
1341 if (!circuit->u.bc.is_dr[level - 1])
1342 {
1343
hasso529d65b2004-12-24 00:14:50 +00001344 zlog_debug ("ISIS-Snp (%s): Rcvd L%d %cSNP from %s on %s, "
1345 "skipping: we are not the DIS",
1346 circuit->area->area_tag,
1347 level,
1348 typechar, snpa_print (ssnpa), circuit->interface->name);
hassof390d2c2004-09-10 20:48:21 +00001349
1350 return ISIS_OK;
1351 }
1352 }
jardineb5d44e2003-12-23 08:09:43 +00001353
1354 /* 7.3.15.2 a) 5 - need to make sure IDLength matches - already checked */
1355
1356 /* 7.3.15.2 a) 6 - maximum area match, can be ommited since we only use 3
1357 * - already checked */
1358
1359 /* 7.3.15.2 a) 7 - Must check that we have an adjacency of the same level */
1360 /* for broadcast circuits, snpa should be compared */
1361 /* FIXME : Do we need to check SNPA? */
hassof390d2c2004-09-10 20:48:21 +00001362 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
1363 {
1364 if (snp_type == ISIS_SNP_CSNP_FLAG)
1365 {
1366 adj =
1367 isis_adj_lookup (chdr->source_id, circuit->u.bc.adjdb[level - 1]);
1368 }
1369 else
1370 {
1371 /* a psnp on a broadcast, how lovely of Juniper :) */
1372 adj =
1373 isis_adj_lookup (phdr->source_id, circuit->u.bc.adjdb[level - 1]);
1374 }
1375 if (!adj)
1376 return ISIS_OK; /* Silently discard */
jardineb5d44e2003-12-23 08:09:43 +00001377 }
hassof390d2c2004-09-10 20:48:21 +00001378 else
1379 {
1380 if (!circuit->u.p2p.neighbor)
1381 return ISIS_OK; /* Silently discard */
1382 }
jardineb5d44e2003-12-23 08:09:43 +00001383
1384 /* 7.3.15.2 a) 8 - Passwords for level 1 - not implemented */
1385
1386 /* 7.3.15.2 a) 9 - Passwords for level 2 - not implemented */
1387
1388 memset (&tlvs, 0, sizeof (struct tlvs));
1389
1390 /* parse the SNP */
1391 expected |= TLVFLAG_LSP_ENTRIES;
1392 expected |= TLVFLAG_AUTH_INFO;
1393 retval = parse_tlvs (circuit->area->area_tag,
hassof390d2c2004-09-10 20:48:21 +00001394 STREAM_PNT (circuit->rcv_stream),
jardineb5d44e2003-12-23 08:09:43 +00001395 len - circuit->rcv_stream->getp,
hassof390d2c2004-09-10 20:48:21 +00001396 &expected, &found, &tlvs);
jardineb5d44e2003-12-23 08:09:43 +00001397
hassof390d2c2004-09-10 20:48:21 +00001398 if (retval > ISIS_WARNING)
1399 {
1400 zlog_warn ("something went very wrong processing SNP");
1401 free_tlvs (&tlvs);
1402 return retval;
1403 }
jardineb5d44e2003-12-23 08:09:43 +00001404
hasso1cbc5622005-01-01 10:29:51 +00001405 if (level == 1)
1406 passwd = &circuit->area->area_passwd;
1407 else
1408 passwd = &circuit->area->domain_passwd;
1409
1410 if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_RECV))
hassof390d2c2004-09-10 20:48:21 +00001411 {
hasso1cbc5622005-01-01 10:29:51 +00001412 if (passwd->type)
hassof390d2c2004-09-10 20:48:21 +00001413 {
hasso1cbc5622005-01-01 10:29:51 +00001414 if (!(found & TLVFLAG_AUTH_INFO) ||
1415 authentication_check (passwd, &tlvs.auth_info))
1416 {
1417 isis_event_auth_failure (circuit->area->area_tag,
1418 "SNP authentication" " failure",
1419 phdr ? phdr->source_id : chdr->source_id);
1420 return ISIS_OK;
1421 }
hassof390d2c2004-09-10 20:48:21 +00001422 }
1423 }
jardineb5d44e2003-12-23 08:09:43 +00001424
1425 /* debug isis snp-packets */
hassof390d2c2004-09-10 20:48:21 +00001426 if (isis->debugs & DEBUG_SNP_PACKETS)
1427 {
hasso529d65b2004-12-24 00:14:50 +00001428 zlog_debug ("ISIS-Snp (%s): Rcvd L%d %cSNP from %s on %s",
1429 circuit->area->area_tag,
1430 level,
1431 typechar, snpa_print (ssnpa), circuit->interface->name);
hassof390d2c2004-09-10 20:48:21 +00001432 if (tlvs.lsp_entries)
1433 {
paul1eb8ef22005-04-07 07:30:20 +00001434 for (ALL_LIST_ELEMENTS (tlvs.lsp_entries, node, nnode, entry))
hassof390d2c2004-09-10 20:48:21 +00001435 {
hasso529d65b2004-12-24 00:14:50 +00001436 zlog_debug ("ISIS-Snp (%s): %cSNP entry %s, seq 0x%08x,"
1437 " cksum 0x%04x, lifetime %us",
1438 circuit->area->area_tag,
1439 typechar,
1440 rawlspid_print (entry->lsp_id),
1441 ntohl (entry->seq_num),
1442 ntohs (entry->checksum), ntohs (entry->rem_lifetime));
hassof390d2c2004-09-10 20:48:21 +00001443 }
1444 }
jardineb5d44e2003-12-23 08:09:43 +00001445 }
jardineb5d44e2003-12-23 08:09:43 +00001446
1447 /* 7.3.15.2 b) Actions on LSP_ENTRIES reported */
hassof390d2c2004-09-10 20:48:21 +00001448 if (tlvs.lsp_entries)
1449 {
paul1eb8ef22005-04-07 07:30:20 +00001450 for (ALL_LIST_ELEMENTS (tlvs.lsp_entries, node, nnode, entry))
hassof390d2c2004-09-10 20:48:21 +00001451 {
1452 lsp = lsp_search (entry->lsp_id, circuit->area->lspdb[level - 1]);
1453 own_lsp = !memcmp (entry->lsp_id, isis->sysid, ISIS_SYS_ID_LEN);
1454 if (lsp)
1455 {
1456 /* 7.3.15.2 b) 1) is this LSP newer */
1457 cmp = lsp_compare (circuit->area->area_tag, lsp, entry->seq_num,
1458 entry->checksum, entry->rem_lifetime);
1459 /* 7.3.15.2 b) 2) if it equals, clear SRM on p2p */
1460 if (cmp == LSP_EQUAL)
1461 {
1462 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1463 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
1464 /* 7.3.15.2 b) 3) if it is older, clear SSN and set SRM */
1465 }
1466 else if (cmp == LSP_OLDER)
1467 {
1468 ISIS_CLEAR_FLAG (lsp->SSNflags, circuit);
1469 ISIS_SET_FLAG (lsp->SRMflags, circuit);
1470 }
1471 else
1472 {
1473 /* 7.3.15.2 b) 4) if it is newer, set SSN and clear SRM
1474 * on p2p */
1475 if (own_lsp)
1476 {
1477 lsp_inc_seqnum (lsp, ntohl (entry->seq_num));
1478 ISIS_SET_FLAG (lsp->SRMflags, circuit);
1479 }
1480 else
1481 {
1482 ISIS_SET_FLAG (lsp->SSNflags, circuit);
1483 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1484 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
1485 }
1486 }
1487 }
1488 else
1489 {
1490 /* 7.3.15.2 b) 5) if it was not found, and all of those are not 0,
1491 * insert it and set SSN on it */
1492 if (entry->rem_lifetime && entry->checksum && entry->seq_num &&
1493 memcmp (entry->lsp_id, isis->sysid, ISIS_SYS_ID_LEN))
1494 {
1495 lsp = lsp_new (entry->lsp_id, ntohs (entry->rem_lifetime),
1496 0, 0, entry->checksum, level);
1497 lsp_insert (lsp, circuit->area->lspdb[level - 1]);
1498 ISIS_SET_FLAG (lsp->SSNflags, circuit);
1499 }
1500 }
jardineb5d44e2003-12-23 08:09:43 +00001501 }
1502 }
jardineb5d44e2003-12-23 08:09:43 +00001503
1504 /* 7.3.15.2 c) on CSNP set SRM for all in range which were not reported */
hassof390d2c2004-09-10 20:48:21 +00001505 if (snp_type == ISIS_SNP_CSNP_FLAG)
1506 {
1507 /*
1508 * Build a list from our own LSP db bounded with start_ and stop_lsp_id
1509 */
1510 lsp_list = list_new ();
1511 lsp_build_list_nonzero_ht (chdr->start_lsp_id, chdr->stop_lsp_id,
1512 lsp_list, circuit->area->lspdb[level - 1]);
jardineb5d44e2003-12-23 08:09:43 +00001513
hassof390d2c2004-09-10 20:48:21 +00001514 /* Fixme: Find a better solution */
1515 if (tlvs.lsp_entries)
1516 {
paul1eb8ef22005-04-07 07:30:20 +00001517 for (ALL_LIST_ELEMENTS (tlvs.lsp_entries, node, nnode, entry))
hassof390d2c2004-09-10 20:48:21 +00001518 {
paul1eb8ef22005-04-07 07:30:20 +00001519 for (ALL_LIST_ELEMENTS (lsp_list, node2, nnode2, lsp))
hassof390d2c2004-09-10 20:48:21 +00001520 {
1521 if (lsp_id_cmp (lsp->lsp_header->lsp_id, entry->lsp_id) == 0)
1522 {
1523 list_delete_node (lsp_list, node2);
1524 break;
1525 }
1526 }
1527 }
1528 }
1529 /* on remaining LSPs we set SRM (neighbor knew not of) */
paul1eb8ef22005-04-07 07:30:20 +00001530 for (ALL_LIST_ELEMENTS (lsp_list, node2, nnode2, lsp))
hassof390d2c2004-09-10 20:48:21 +00001531 {
1532 ISIS_SET_FLAG (lsp->SRMflags, circuit);
jardineb5d44e2003-12-23 08:09:43 +00001533 }
hassof390d2c2004-09-10 20:48:21 +00001534 /* lets free it */
1535 list_free (lsp_list);
jardineb5d44e2003-12-23 08:09:43 +00001536 }
jardineb5d44e2003-12-23 08:09:43 +00001537
1538 free_tlvs (&tlvs);
1539 return retval;
1540}
1541
hasso92365882005-01-18 13:53:33 +00001542static int
hassof390d2c2004-09-10 20:48:21 +00001543process_csnp (int level, struct isis_circuit *circuit, u_char * ssnpa)
jardineb5d44e2003-12-23 08:09:43 +00001544{
jardineb5d44e2003-12-23 08:09:43 +00001545 /* Sanity check - FIXME: move to correct place */
hassof390d2c2004-09-10 20:48:21 +00001546 if ((stream_get_endp (circuit->rcv_stream) -
1547 stream_get_getp (circuit->rcv_stream)) < ISIS_CSNP_HDRLEN)
1548 {
1549 zlog_warn ("Packet too short ( < %d)", ISIS_CSNP_HDRLEN);
1550 return ISIS_WARNING;
1551 }
jardineb5d44e2003-12-23 08:09:43 +00001552
1553 return process_snp (ISIS_SNP_CSNP_FLAG, level, circuit, ssnpa);
1554}
1555
hasso92365882005-01-18 13:53:33 +00001556static int
hassof390d2c2004-09-10 20:48:21 +00001557process_psnp (int level, struct isis_circuit *circuit, u_char * ssnpa)
jardineb5d44e2003-12-23 08:09:43 +00001558{
hassof390d2c2004-09-10 20:48:21 +00001559 if ((stream_get_endp (circuit->rcv_stream) -
1560 stream_get_getp (circuit->rcv_stream)) < ISIS_PSNP_HDRLEN)
1561 {
1562 zlog_warn ("Packet too short");
1563 return ISIS_WARNING;
1564 }
jardineb5d44e2003-12-23 08:09:43 +00001565
1566 return process_snp (ISIS_SNP_PSNP_FLAG, level, circuit, ssnpa);
1567}
1568
jardineb5d44e2003-12-23 08:09:43 +00001569/*
1570 * Process ISH
1571 * ISO - 10589
1572 * Section 8.2.2 - Receiving ISH PDUs by an intermediate system
1573 * FIXME: sample packet dump, need to figure 0x81 - looks like NLPid
hassof390d2c2004-09-10 20:48:21 +00001574 * 0x82 0x15 0x01 0x00 0x04 0x01 0x2c 0x59
1575 * 0x38 0x08 0x47 0x00 0x01 0x00 0x02 0x00
1576 * 0x03 0x00 0x81 0x01 0xcc
jardineb5d44e2003-12-23 08:09:43 +00001577 */
hasso92365882005-01-18 13:53:33 +00001578static int
jardineb5d44e2003-12-23 08:09:43 +00001579process_is_hello (struct isis_circuit *circuit)
1580{
1581 struct isis_adjacency *adj;
1582 int retval = ISIS_OK;
1583 u_char neigh_len;
1584 u_char *sysid;
1585
1586 /* In this point in time we are not yet able to handle is_hellos
1587 * on lan - Sorry juniper...
1588 */
1589 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
1590 return retval;
1591
1592 neigh_len = stream_getc (circuit->rcv_stream);
hassof390d2c2004-09-10 20:48:21 +00001593 sysid = STREAM_PNT (circuit->rcv_stream) + neigh_len - 1 - ISIS_SYS_ID_LEN;
jardineb5d44e2003-12-23 08:09:43 +00001594 adj = circuit->u.p2p.neighbor;
hassof390d2c2004-09-10 20:48:21 +00001595 if (!adj)
1596 {
1597 /* 8.2.2 */
hassof7c43dc2004-09-26 16:24:14 +00001598 adj = isis_new_adj (sysid, (u_char *) " ", 0, circuit);
hassof390d2c2004-09-10 20:48:21 +00001599 if (adj == NULL)
1600 return ISIS_ERROR;
jardineb5d44e2003-12-23 08:09:43 +00001601
hassof390d2c2004-09-10 20:48:21 +00001602 isis_adj_state_change (adj, ISIS_ADJ_INITIALIZING, NULL);
1603 adj->sys_type = ISIS_SYSTYPE_UNKNOWN;
1604 circuit->u.p2p.neighbor = adj;
1605 }
1606 /* 8.2.2 a) */
1607 if ((adj->adj_state == ISIS_ADJ_UP) && memcmp (adj->sysid, sysid,
1608 ISIS_SYS_ID_LEN))
1609 {
1610 /* 8.2.2 a) 1) FIXME: adjStateChange(down) event */
1611 /* 8.2.2 a) 2) delete the adj */
1612 XFREE (MTYPE_ISIS_ADJACENCY, adj);
1613 /* 8.2.2 a) 3) create a new adj */
hassof7c43dc2004-09-26 16:24:14 +00001614 adj = isis_new_adj (sysid, (u_char *) " ", 0, circuit);
hassof390d2c2004-09-10 20:48:21 +00001615 if (adj == NULL)
1616 return ISIS_ERROR;
jardineb5d44e2003-12-23 08:09:43 +00001617
hassof390d2c2004-09-10 20:48:21 +00001618 /* 8.2.2 a) 3) i */
1619 isis_adj_state_change (adj, ISIS_ADJ_INITIALIZING, NULL);
1620 /* 8.2.2 a) 3) ii */
1621 adj->sys_type = ISIS_SYSTYPE_UNKNOWN;
1622 /* 8.2.2 a) 4) quite meaningless */
1623 }
jardineb5d44e2003-12-23 08:09:43 +00001624 /* 8.2.2 b) ignore on condition */
hassof390d2c2004-09-10 20:48:21 +00001625 if ((adj->adj_state == ISIS_ADJ_INITIALIZING) &&
1626 (adj->sys_type == ISIS_SYSTYPE_IS))
1627 {
1628 /* do nothing */
1629 }
1630 else
1631 {
1632 /* 8.2.2 c) respond with a p2p IIH */
1633 send_hello (circuit, 1);
1634 }
jardineb5d44e2003-12-23 08:09:43 +00001635 /* 8.2.2 d) type is IS */
hassof390d2c2004-09-10 20:48:21 +00001636 adj->sys_type = ISIS_SYSTYPE_IS;
jardineb5d44e2003-12-23 08:09:43 +00001637 /* 8.2.2 e) FIXME: Circuit type of? */
1638
jardineb5d44e2003-12-23 08:09:43 +00001639 return retval;
1640}
1641
jardineb5d44e2003-12-23 08:09:43 +00001642/*
1643 * PDU Dispatcher
1644 */
1645
hasso92365882005-01-18 13:53:33 +00001646static int
hassof390d2c2004-09-10 20:48:21 +00001647isis_handle_pdu (struct isis_circuit *circuit, u_char * ssnpa)
jardineb5d44e2003-12-23 08:09:43 +00001648{
jardineb5d44e2003-12-23 08:09:43 +00001649 struct isis_fixed_hdr *hdr;
1650 struct esis_fixed_hdr *esis_hdr;
1651
hassof390d2c2004-09-10 20:48:21 +00001652 int retval = ISIS_OK;
jardineb5d44e2003-12-23 08:09:43 +00001653
1654 /*
1655 * Let's first read data from stream to the header
1656 */
hassof390d2c2004-09-10 20:48:21 +00001657 hdr = (struct isis_fixed_hdr *) STREAM_DATA (circuit->rcv_stream);
jardineb5d44e2003-12-23 08:09:43 +00001658
hassof390d2c2004-09-10 20:48:21 +00001659 if ((hdr->idrp != ISO10589_ISIS) && (hdr->idrp != ISO9542_ESIS))
1660 {
1661 zlog_warn ("Not an IS-IS or ES-IS packet IDRP=%02x", hdr->idrp);
1662 return ISIS_ERROR;
1663 }
jardineb5d44e2003-12-23 08:09:43 +00001664
1665 /* now we need to know if this is an ISO 9542 packet and
1666 * take real good care of it, waaa!
1667 */
hassof390d2c2004-09-10 20:48:21 +00001668 if (hdr->idrp == ISO9542_ESIS)
1669 {
1670 esis_hdr = (struct esis_fixed_hdr *) STREAM_DATA (circuit->rcv_stream);
1671 stream_set_getp (circuit->rcv_stream, ESIS_FIXED_HDR_LEN);
1672 /* FIXME: Need to do some acceptence tests */
1673 /* example length... */
1674 switch (esis_hdr->pdu_type)
1675 {
1676 case ESH_PDU:
1677 /* FIXME */
1678 break;
1679 case ISH_PDU:
hasso529d65b2004-12-24 00:14:50 +00001680 zlog_debug ("AN ISH PDU!!");
hassof390d2c2004-09-10 20:48:21 +00001681 retval = process_is_hello (circuit);
1682 break;
1683 default:
1684 return ISIS_ERROR;
1685 }
1686 return retval;
1687 }
1688 else
1689 {
1690 stream_set_getp (circuit->rcv_stream, ISIS_FIXED_HDR_LEN);
1691 }
jardineb5d44e2003-12-23 08:09:43 +00001692 /*
1693 * and then process it
1694 */
1695
hassof390d2c2004-09-10 20:48:21 +00001696 if (hdr->length < ISIS_MINIMUM_FIXED_HDR_LEN)
1697 {
1698 zlog_err ("Fixed header length = %d", hdr->length);
1699 return ISIS_ERROR;
1700 }
jardineb5d44e2003-12-23 08:09:43 +00001701
hassof390d2c2004-09-10 20:48:21 +00001702 if (hdr->version1 != 1)
1703 {
1704 zlog_warn ("Unsupported ISIS version %u", hdr->version1);
1705 return ISIS_WARNING;
1706 }
jardineb5d44e2003-12-23 08:09:43 +00001707 /* either 6 or 0 */
hassof390d2c2004-09-10 20:48:21 +00001708 if ((hdr->id_len != 0) && (hdr->id_len != ISIS_SYS_ID_LEN))
1709 {
1710 zlog_err
1711 ("IDFieldLengthMismatch: ID Length field in a received PDU %u, "
1712 "while the parameter for this IS is %u", hdr->id_len,
1713 ISIS_SYS_ID_LEN);
1714 return ISIS_ERROR;
1715 }
jardineb5d44e2003-12-23 08:09:43 +00001716
hassof390d2c2004-09-10 20:48:21 +00001717 if (hdr->version2 != 1)
1718 {
1719 zlog_warn ("Unsupported ISIS version %u", hdr->version2);
1720 return ISIS_WARNING;
1721 }
jardineb5d44e2003-12-23 08:09:43 +00001722 /* either 3 or 0 */
hassof390d2c2004-09-10 20:48:21 +00001723 if ((hdr->max_area_addrs != 0)
1724 && (hdr->max_area_addrs != isis->max_area_addrs))
1725 {
1726 zlog_err ("maximumAreaAddressesMismatch: maximumAreaAdresses in a "
1727 "received PDU %u while the parameter for this IS is %u",
1728 hdr->max_area_addrs, isis->max_area_addrs);
1729 return ISIS_ERROR;
1730 }
jardineb5d44e2003-12-23 08:09:43 +00001731
hassof390d2c2004-09-10 20:48:21 +00001732 switch (hdr->pdu_type)
1733 {
1734 case L1_LAN_HELLO:
1735 retval = process_lan_hello (ISIS_LEVEL1, circuit, ssnpa);
1736 break;
1737 case L2_LAN_HELLO:
1738 retval = process_lan_hello (ISIS_LEVEL2, circuit, ssnpa);
1739 break;
1740 case P2P_HELLO:
1741 retval = process_p2p_hello (circuit);
1742 break;
1743 case L1_LINK_STATE:
1744 retval = process_lsp (ISIS_LEVEL1, circuit, ssnpa);
1745 break;
1746 case L2_LINK_STATE:
1747 retval = process_lsp (ISIS_LEVEL2, circuit, ssnpa);
1748 break;
1749 case L1_COMPLETE_SEQ_NUM:
1750 retval = process_csnp (ISIS_LEVEL1, circuit, ssnpa);
1751 break;
1752 case L2_COMPLETE_SEQ_NUM:
1753 retval = process_csnp (ISIS_LEVEL2, circuit, ssnpa);
1754 break;
1755 case L1_PARTIAL_SEQ_NUM:
1756 retval = process_psnp (ISIS_LEVEL1, circuit, ssnpa);
1757 break;
1758 case L2_PARTIAL_SEQ_NUM:
1759 retval = process_psnp (ISIS_LEVEL2, circuit, ssnpa);
1760 break;
1761 default:
1762 return ISIS_ERROR;
1763 }
jardineb5d44e2003-12-23 08:09:43 +00001764
1765 return retval;
1766}
1767
jardineb5d44e2003-12-23 08:09:43 +00001768#ifdef GNU_LINUX
1769int
1770isis_receive (struct thread *thread)
1771{
jardineb5d44e2003-12-23 08:09:43 +00001772 struct isis_circuit *circuit;
1773 u_char ssnpa[ETH_ALEN];
1774 int retval;
1775
1776 /*
1777 * Get the circuit
1778 */
1779 circuit = THREAD_ARG (thread);
1780 assert (circuit);
1781
1782 if (circuit->rcv_stream == NULL)
hassof390d2c2004-09-10 20:48:21 +00001783 circuit->rcv_stream = stream_new (ISO_MTU (circuit));
jardineb5d44e2003-12-23 08:09:43 +00001784 else
1785 stream_reset (circuit->rcv_stream);
1786
1787 retval = circuit->rx (circuit, ssnpa);
hassof390d2c2004-09-10 20:48:21 +00001788 circuit->t_read = NULL;
jardineb5d44e2003-12-23 08:09:43 +00001789
1790 if (retval == ISIS_OK)
1791 retval = isis_handle_pdu (circuit, ssnpa);
1792
1793 /*
1794 * prepare for next packet.
1795 */
hassof390d2c2004-09-10 20:48:21 +00001796 THREAD_READ_ON (master, circuit->t_read, isis_receive, circuit,
1797 circuit->fd);
jardineb5d44e2003-12-23 08:09:43 +00001798
1799 return retval;
1800}
1801
1802#else
1803int
1804isis_receive (struct thread *thread)
1805{
jardineb5d44e2003-12-23 08:09:43 +00001806 struct isis_circuit *circuit;
1807 u_char ssnpa[ETH_ALEN];
1808 int retval;
1809
1810 /*
1811 * Get the circuit
1812 */
1813 circuit = THREAD_ARG (thread);
1814 assert (circuit);
1815
hassof390d2c2004-09-10 20:48:21 +00001816 circuit->t_read = NULL;
jardineb5d44e2003-12-23 08:09:43 +00001817
1818 if (circuit->rcv_stream == NULL)
hassof390d2c2004-09-10 20:48:21 +00001819 circuit->rcv_stream = stream_new (ISO_MTU (circuit));
jardineb5d44e2003-12-23 08:09:43 +00001820 else
1821 stream_reset (circuit->rcv_stream);
1822
1823 retval = circuit->rx (circuit, ssnpa);
1824
1825 if (retval == ISIS_OK)
1826 retval = isis_handle_pdu (circuit, ssnpa);
1827
1828 /*
1829 * prepare for next packet.
1830 */
hassof390d2c2004-09-10 20:48:21 +00001831 circuit->t_read = thread_add_timer_msec (master, isis_receive, circuit,
1832 listcount
1833 (circuit->area->circuit_list) *
1834 100);
jardineb5d44e2003-12-23 08:09:43 +00001835
1836 return retval;
1837}
1838
1839#endif
1840
1841 /* filling of the fixed isis header */
1842void
1843fill_fixed_hdr (struct isis_fixed_hdr *hdr, u_char pdu_type)
1844{
1845 memset (hdr, 0, sizeof (struct isis_fixed_hdr));
1846
1847 hdr->idrp = ISO10589_ISIS;
1848
hassof390d2c2004-09-10 20:48:21 +00001849 switch (pdu_type)
1850 {
1851 case L1_LAN_HELLO:
1852 case L2_LAN_HELLO:
1853 hdr->length = ISIS_LANHELLO_HDRLEN;
1854 break;
1855 case P2P_HELLO:
1856 hdr->length = ISIS_P2PHELLO_HDRLEN;
1857 break;
1858 case L1_LINK_STATE:
1859 case L2_LINK_STATE:
1860 hdr->length = ISIS_LSP_HDR_LEN;
1861 break;
1862 case L1_COMPLETE_SEQ_NUM:
1863 case L2_COMPLETE_SEQ_NUM:
1864 hdr->length = ISIS_CSNP_HDRLEN;
1865 break;
1866 case L1_PARTIAL_SEQ_NUM:
1867 case L2_PARTIAL_SEQ_NUM:
1868 hdr->length = ISIS_PSNP_HDRLEN;
1869 break;
1870 default:
1871 zlog_warn ("fill_fixed_hdr(): unknown pdu type %d", pdu_type);
1872 return;
1873 }
jardineb5d44e2003-12-23 08:09:43 +00001874 hdr->length += ISIS_FIXED_HDR_LEN;
1875 hdr->pdu_type = pdu_type;
1876 hdr->version1 = 1;
hassof390d2c2004-09-10 20:48:21 +00001877 hdr->id_len = 0; /* ISIS_SYS_ID_LEN - 0==6 */
jardineb5d44e2003-12-23 08:09:43 +00001878 hdr->version2 = 1;
hassof390d2c2004-09-10 20:48:21 +00001879 hdr->max_area_addrs = 0; /* isis->max_area_addrs - 0==3 */
jardineb5d44e2003-12-23 08:09:43 +00001880}
1881
jardineb5d44e2003-12-23 08:09:43 +00001882/*
1883 * SEND SIDE
1884 */
hasso92365882005-01-18 13:53:33 +00001885static void
jardineb5d44e2003-12-23 08:09:43 +00001886fill_fixed_hdr_andstream (struct isis_fixed_hdr *hdr, u_char pdu_type,
hassof390d2c2004-09-10 20:48:21 +00001887 struct stream *stream)
jardineb5d44e2003-12-23 08:09:43 +00001888{
hassof390d2c2004-09-10 20:48:21 +00001889 fill_fixed_hdr (hdr, pdu_type);
jardineb5d44e2003-12-23 08:09:43 +00001890
1891 stream_putc (stream, hdr->idrp);
1892 stream_putc (stream, hdr->length);
1893 stream_putc (stream, hdr->version1);
1894 stream_putc (stream, hdr->id_len);
1895 stream_putc (stream, hdr->pdu_type);
1896 stream_putc (stream, hdr->version2);
1897 stream_putc (stream, hdr->reserved);
1898 stream_putc (stream, hdr->max_area_addrs);
1899
1900 return;
1901}
1902
jardineb5d44e2003-12-23 08:09:43 +00001903int
1904send_hello (struct isis_circuit *circuit, int level)
1905{
1906 struct isis_fixed_hdr fixed_hdr;
1907 struct isis_lan_hello_hdr hello_hdr;
1908 struct isis_p2p_hello_hdr p2p_hello_hdr;
1909
1910 u_int32_t interval;
1911 unsigned long len_pointer, length;
1912 int retval;
1913
hassof390d2c2004-09-10 20:48:21 +00001914 if (circuit->interface->mtu == 0)
1915 {
1916 zlog_warn ("circuit has zero MTU");
1917 return ISIS_WARNING;
1918 }
jardineb5d44e2003-12-23 08:09:43 +00001919
1920 if (!circuit->snd_stream)
hassof390d2c2004-09-10 20:48:21 +00001921 circuit->snd_stream = stream_new (ISO_MTU (circuit));
jardineb5d44e2003-12-23 08:09:43 +00001922 else
1923 stream_reset (circuit->snd_stream);
1924
1925 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
1926 if (level == 1)
hassof390d2c2004-09-10 20:48:21 +00001927 fill_fixed_hdr_andstream (&fixed_hdr, L1_LAN_HELLO,
1928 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00001929 else
hassof390d2c2004-09-10 20:48:21 +00001930 fill_fixed_hdr_andstream (&fixed_hdr, L2_LAN_HELLO,
1931 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00001932 else
hassof390d2c2004-09-10 20:48:21 +00001933 fill_fixed_hdr_andstream (&fixed_hdr, P2P_HELLO, circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00001934
1935 /*
1936 * Fill LAN Level 1 or 2 Hello PDU header
1937 */
1938 memset (&hello_hdr, 0, sizeof (struct isis_lan_hello_hdr));
hassof390d2c2004-09-10 20:48:21 +00001939 interval = circuit->hello_multiplier[level - 1] *
jardineb5d44e2003-12-23 08:09:43 +00001940 circuit->hello_interval[level - 1];
1941 if (interval > USHRT_MAX)
1942 interval = USHRT_MAX;
1943 hello_hdr.circuit_t = circuit->circuit_is_type;
1944 memcpy (hello_hdr.source_id, isis->sysid, ISIS_SYS_ID_LEN);
hassof390d2c2004-09-10 20:48:21 +00001945 hello_hdr.hold_time = htons ((u_int16_t) interval);
jardineb5d44e2003-12-23 08:09:43 +00001946
hassof390d2c2004-09-10 20:48:21 +00001947 hello_hdr.pdu_len = 0; /* Update the PDU Length later */
paul9985f832005-02-09 15:51:56 +00001948 len_pointer = stream_get_endp (circuit->snd_stream) + 3 + ISIS_SYS_ID_LEN;
jardineb5d44e2003-12-23 08:09:43 +00001949
1950 /* copy the shared part of the hello to the p2p hello if needed */
hassof390d2c2004-09-10 20:48:21 +00001951 if (circuit->circ_type == CIRCUIT_T_P2P)
1952 {
1953 memcpy (&p2p_hello_hdr, &hello_hdr, 5 + ISIS_SYS_ID_LEN);
1954 p2p_hello_hdr.local_id = circuit->circuit_id;
1955 /* FIXME: need better understanding */
1956 stream_put (circuit->snd_stream, &p2p_hello_hdr, ISIS_P2PHELLO_HDRLEN);
jardineb5d44e2003-12-23 08:09:43 +00001957 }
hassof390d2c2004-09-10 20:48:21 +00001958 else
1959 {
1960 hello_hdr.prio = circuit->u.bc.priority[level - 1];
1961 if (level == 1 && circuit->u.bc.l1_desig_is)
1962 {
1963 memcpy (hello_hdr.lan_id, circuit->u.bc.l1_desig_is,
1964 ISIS_SYS_ID_LEN + 1);
1965 }
1966 else if (level == 2 && circuit->u.bc.l2_desig_is)
1967 {
1968 memcpy (hello_hdr.lan_id, circuit->u.bc.l2_desig_is,
1969 ISIS_SYS_ID_LEN + 1);
1970 }
1971 stream_put (circuit->snd_stream, &hello_hdr, ISIS_LANHELLO_HDRLEN);
1972 }
jardineb5d44e2003-12-23 08:09:43 +00001973
1974 /*
1975 * Then the variable length part
1976 */
1977 /* add circuit password */
1978 if (circuit->passwd.type)
1979 if (tlv_add_authinfo (circuit->passwd.type, circuit->passwd.len,
1980 circuit->passwd.passwd, circuit->snd_stream))
1981 return ISIS_WARNING;
1982 /* Area Addresses TLV */
1983 assert (circuit->area);
1984 if (circuit->area->area_addrs && circuit->area->area_addrs->count > 0)
1985 if (tlv_add_area_addrs (circuit->area->area_addrs, circuit->snd_stream))
1986 return ISIS_WARNING;
1987
1988 /* LAN Neighbors TLV */
hassof390d2c2004-09-10 20:48:21 +00001989 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
1990 {
1991 if (level == 1 && circuit->u.bc.lan_neighs[0]->count > 0)
1992 if (tlv_add_lan_neighs (circuit->u.bc.lan_neighs[0],
1993 circuit->snd_stream))
1994 return ISIS_WARNING;
1995 if (level == 2 && circuit->u.bc.lan_neighs[1]->count > 0)
1996 if (tlv_add_lan_neighs (circuit->u.bc.lan_neighs[1],
1997 circuit->snd_stream))
1998 return ISIS_WARNING;
1999 }
jardineb5d44e2003-12-23 08:09:43 +00002000
2001 /* Protocols Supported TLV */
hassof390d2c2004-09-10 20:48:21 +00002002 if (circuit->nlpids.count > 0)
jardineb5d44e2003-12-23 08:09:43 +00002003 if (tlv_add_nlpid (&circuit->nlpids, circuit->snd_stream))
2004 return ISIS_WARNING;
2005 /* IP interface Address TLV */
2006 if (circuit->ip_router && circuit->ip_addrs && circuit->ip_addrs->count > 0)
2007 if (tlv_add_ip_addrs (circuit->ip_addrs, circuit->snd_stream))
2008 return ISIS_WARNING;
2009
hassof390d2c2004-09-10 20:48:21 +00002010#ifdef HAVE_IPV6
jardineb5d44e2003-12-23 08:09:43 +00002011 /* IPv6 Interface Address TLV */
hassof390d2c2004-09-10 20:48:21 +00002012 if (circuit->ipv6_router && circuit->ipv6_link &&
jardineb5d44e2003-12-23 08:09:43 +00002013 circuit->ipv6_link->count > 0)
2014 if (tlv_add_ipv6_addrs (circuit->ipv6_link, circuit->snd_stream))
2015 return ISIS_WARNING;
2016#endif /* HAVE_IPV6 */
2017
2018 if (circuit->u.bc.pad_hellos)
2019 if (tlv_add_padding (circuit->snd_stream))
2020 return ISIS_WARNING;
2021
paul9985f832005-02-09 15:51:56 +00002022 length = stream_get_endp (circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002023 /* Update PDU length */
hassof390d2c2004-09-10 20:48:21 +00002024 stream_putw_at (circuit->snd_stream, len_pointer, (u_int16_t) length);
jardineb5d44e2003-12-23 08:09:43 +00002025
2026 retval = circuit->tx (circuit, level);
2027 if (retval)
2028 zlog_warn ("sending of LAN Level %d Hello failed", level);
2029
2030 /* DEBUG_ADJ_PACKETS */
hassof390d2c2004-09-10 20:48:21 +00002031 if (isis->debugs & DEBUG_ADJ_PACKETS)
2032 {
2033 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
2034 {
hasso529d65b2004-12-24 00:14:50 +00002035 zlog_debug ("ISIS-Adj (%s): Sent L%d LAN IIH on %s, length %ld",
2036 circuit->area->area_tag, level, circuit->interface->name,
hasso29e50b22005-09-01 18:18:47 +00002037 /* FIXME: use %z when we stop supporting old compilers. */
2038 (unsigned long) STREAM_SIZE (circuit->snd_stream));
hassof390d2c2004-09-10 20:48:21 +00002039 }
2040 else
2041 {
hasso529d65b2004-12-24 00:14:50 +00002042 zlog_debug ("ISIS-Adj (%s): Sent P2P IIH on %s, length %ld",
2043 circuit->area->area_tag, circuit->interface->name,
hasso29e50b22005-09-01 18:18:47 +00002044 /* FIXME: use %z when we stop supporting old compilers. */
2045 (unsigned long) STREAM_SIZE (circuit->snd_stream));
hassof390d2c2004-09-10 20:48:21 +00002046 }
jardineb5d44e2003-12-23 08:09:43 +00002047 }
jardineb5d44e2003-12-23 08:09:43 +00002048
2049 return retval;
2050}
2051
hasso92365882005-01-18 13:53:33 +00002052static int
jardineb5d44e2003-12-23 08:09:43 +00002053send_lan_hello (struct isis_circuit *circuit, int level)
2054{
hassof390d2c2004-09-10 20:48:21 +00002055 return send_hello (circuit, level);
jardineb5d44e2003-12-23 08:09:43 +00002056}
2057
2058int
2059send_lan_l1_hello (struct thread *thread)
2060{
jardineb5d44e2003-12-23 08:09:43 +00002061 struct isis_circuit *circuit;
2062 int retval;
2063
2064 circuit = THREAD_ARG (thread);
2065 assert (circuit);
2066 circuit->u.bc.t_send_lan_hello[0] = NULL;
2067
2068 if (circuit->u.bc.run_dr_elect[0])
hassof390d2c2004-09-10 20:48:21 +00002069 retval = isis_dr_elect (circuit, 1);
jardineb5d44e2003-12-23 08:09:43 +00002070
2071 retval = send_lan_hello (circuit, 1);
2072
2073 /* set next timer thread */
hassof390d2c2004-09-10 20:48:21 +00002074 THREAD_TIMER_ON (master, circuit->u.bc.t_send_lan_hello[0],
2075 send_lan_l1_hello, circuit,
2076 isis_jitter (circuit->hello_interval[0], IIH_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002077
2078 return retval;
2079}
2080
2081int
2082send_lan_l2_hello (struct thread *thread)
2083{
2084 struct isis_circuit *circuit;
2085 int retval;
2086
2087 circuit = THREAD_ARG (thread);
2088 assert (circuit);
2089 circuit->u.bc.t_send_lan_hello[1] = NULL;
2090
2091 if (circuit->u.bc.run_dr_elect[1])
2092 retval = isis_dr_elect (circuit, 2);
2093
2094 retval = send_lan_hello (circuit, 2);
2095
hassof390d2c2004-09-10 20:48:21 +00002096 /* set next timer thread */
2097 THREAD_TIMER_ON (master, circuit->u.bc.t_send_lan_hello[1],
2098 send_lan_l2_hello, circuit,
2099 isis_jitter (circuit->hello_interval[1], IIH_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002100
2101 return retval;
2102}
2103
2104int
2105send_p2p_hello (struct thread *thread)
2106{
2107 struct isis_circuit *circuit;
2108
2109 circuit = THREAD_ARG (thread);
2110 assert (circuit);
2111 circuit->u.p2p.t_send_p2p_hello = NULL;
2112
hassof390d2c2004-09-10 20:48:21 +00002113 send_hello (circuit, 1);
jardineb5d44e2003-12-23 08:09:43 +00002114
hassof390d2c2004-09-10 20:48:21 +00002115 /* set next timer thread */
2116 THREAD_TIMER_ON (master, circuit->u.p2p.t_send_p2p_hello, send_p2p_hello,
2117 circuit, isis_jitter (circuit->hello_interval[1],
2118 IIH_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002119
2120 return ISIS_OK;
2121}
2122
hasso92365882005-01-18 13:53:33 +00002123static int
hassof390d2c2004-09-10 20:48:21 +00002124build_csnp (int level, u_char * start, u_char * stop, struct list *lsps,
2125 struct isis_circuit *circuit)
jardineb5d44e2003-12-23 08:09:43 +00002126{
2127 struct isis_fixed_hdr fixed_hdr;
2128 struct isis_passwd *passwd;
2129 int retval = ISIS_OK;
2130 unsigned long lenp;
2131 u_int16_t length;
2132
hassof390d2c2004-09-10 20:48:21 +00002133 if (level == 1)
2134 fill_fixed_hdr_andstream (&fixed_hdr, L1_COMPLETE_SEQ_NUM,
2135 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002136 else
hassof390d2c2004-09-10 20:48:21 +00002137 fill_fixed_hdr_andstream (&fixed_hdr, L2_COMPLETE_SEQ_NUM,
2138 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002139
2140 /*
2141 * Fill Level 1 or 2 Complete Sequence Numbers header
2142 */
2143
paul9985f832005-02-09 15:51:56 +00002144 lenp = stream_get_endp (circuit->snd_stream);
hassof390d2c2004-09-10 20:48:21 +00002145 stream_putw (circuit->snd_stream, 0); /* PDU length - when we know it */
jardineb5d44e2003-12-23 08:09:43 +00002146 /* no need to send the source here, it is always us if we csnp */
2147 stream_put (circuit->snd_stream, isis->sysid, ISIS_SYS_ID_LEN);
2148 /* with zero circuit id - ref 9.10, 9.11 */
2149 stream_putc (circuit->snd_stream, 0x00);
2150
2151 stream_put (circuit->snd_stream, start, ISIS_SYS_ID_LEN + 2);
2152 stream_put (circuit->snd_stream, stop, ISIS_SYS_ID_LEN + 2);
2153
2154 /*
2155 * And TLVs
2156 */
2157 if (level == 1)
2158 passwd = &circuit->area->area_passwd;
2159 else
2160 passwd = &circuit->area->domain_passwd;
2161
hasso1cbc5622005-01-01 10:29:51 +00002162 if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_SEND))
2163 if (passwd->type)
2164 retval = tlv_add_authinfo (passwd->type, passwd->len,
2165 passwd->passwd, circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002166
hassof390d2c2004-09-10 20:48:21 +00002167 if (!retval && lsps)
2168 {
2169 retval = tlv_add_lsp_entries (lsps, circuit->snd_stream);
2170 }
paul9985f832005-02-09 15:51:56 +00002171 length = (u_int16_t) stream_get_endp (circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002172 assert (length >= ISIS_CSNP_HDRLEN);
2173 /* Update PU length */
2174 stream_putw_at (circuit->snd_stream, lenp, length);
2175
2176 return retval;
2177}
2178
2179/*
2180 * FIXME: support multiple CSNPs
2181 */
2182
2183int
2184send_csnp (struct isis_circuit *circuit, int level)
2185{
2186 int retval = ISIS_OK;
2187 u_char start[ISIS_SYS_ID_LEN + 2];
2188 u_char stop[ISIS_SYS_ID_LEN + 2];
2189 struct list *list = NULL;
paul1eb8ef22005-04-07 07:30:20 +00002190 struct listnode *node, *nnode;
jardineb5d44e2003-12-23 08:09:43 +00002191 struct isis_lsp *lsp;
2192
hassof390d2c2004-09-10 20:48:21 +00002193 memset (start, 0x00, ISIS_SYS_ID_LEN + 2);
jardineb5d44e2003-12-23 08:09:43 +00002194 memset (stop, 0xff, ISIS_SYS_ID_LEN + 2);
2195
hassof390d2c2004-09-10 20:48:21 +00002196 if (circuit->area->lspdb[level - 1] &&
2197 dict_count (circuit->area->lspdb[level - 1]) > 0)
2198 {
2199 list = list_new ();
2200 lsp_build_list (start, stop, list, circuit->area->lspdb[level - 1]);
jardineb5d44e2003-12-23 08:09:43 +00002201
hassof390d2c2004-09-10 20:48:21 +00002202 if (circuit->snd_stream == NULL)
2203 circuit->snd_stream = stream_new (ISO_MTU (circuit));
2204 else
2205 stream_reset (circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002206
hassof390d2c2004-09-10 20:48:21 +00002207 retval = build_csnp (level, start, stop, list, circuit);
jardineb5d44e2003-12-23 08:09:43 +00002208
hassof390d2c2004-09-10 20:48:21 +00002209 if (isis->debugs & DEBUG_SNP_PACKETS)
2210 {
hasso529d65b2004-12-24 00:14:50 +00002211 zlog_debug ("ISIS-Snp (%s): Sent L%d CSNP on %s, length %ld",
paul1eb8ef22005-04-07 07:30:20 +00002212 circuit->area->area_tag, level, circuit->interface->name,
hasso29e50b22005-09-01 18:18:47 +00002213 /* FIXME: use %z when we stop supporting old compilers. */
2214 (unsigned long) STREAM_SIZE (circuit->snd_stream));
paul1eb8ef22005-04-07 07:30:20 +00002215 for (ALL_LIST_ELEMENTS (list, node, nnode, lsp))
hassof390d2c2004-09-10 20:48:21 +00002216 {
hasso529d65b2004-12-24 00:14:50 +00002217 zlog_debug ("ISIS-Snp (%s): CSNP entry %s, seq 0x%08x,"
2218 " cksum 0x%04x, lifetime %us",
2219 circuit->area->area_tag,
2220 rawlspid_print (lsp->lsp_header->lsp_id),
2221 ntohl (lsp->lsp_header->seq_num),
2222 ntohs (lsp->lsp_header->checksum),
2223 ntohs (lsp->lsp_header->rem_lifetime));
hassof390d2c2004-09-10 20:48:21 +00002224 }
2225 }
2226
2227 list_delete (list);
2228
2229 if (retval == ISIS_OK)
2230 retval = circuit->tx (circuit, level);
jardineb5d44e2003-12-23 08:09:43 +00002231 }
jardineb5d44e2003-12-23 08:09:43 +00002232 return retval;
2233}
2234
2235int
2236send_l1_csnp (struct thread *thread)
2237{
2238 struct isis_circuit *circuit;
2239 int retval = ISIS_OK;
2240
2241 circuit = THREAD_ARG (thread);
2242 assert (circuit);
2243
2244 circuit->t_send_csnp[0] = NULL;
2245
hassof390d2c2004-09-10 20:48:21 +00002246 if (circuit->circ_type == CIRCUIT_T_BROADCAST && circuit->u.bc.is_dr[0])
2247 {
2248 send_csnp (circuit, 1);
2249 }
jardineb5d44e2003-12-23 08:09:43 +00002250 /* set next timer thread */
hassof390d2c2004-09-10 20:48:21 +00002251 THREAD_TIMER_ON (master, circuit->t_send_csnp[0], send_l1_csnp, circuit,
2252 isis_jitter (circuit->csnp_interval[0], CSNP_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002253
2254 return retval;
2255}
2256
2257int
2258send_l2_csnp (struct thread *thread)
2259{
2260 struct isis_circuit *circuit;
2261 int retval = ISIS_OK;
2262
2263 circuit = THREAD_ARG (thread);
2264 assert (circuit);
2265
2266 circuit->t_send_csnp[1] = NULL;
2267
hassof390d2c2004-09-10 20:48:21 +00002268 if (circuit->circ_type == CIRCUIT_T_BROADCAST && circuit->u.bc.is_dr[1])
2269 {
2270 send_csnp (circuit, 2);
2271 }
jardineb5d44e2003-12-23 08:09:43 +00002272 /* set next timer thread */
hassof390d2c2004-09-10 20:48:21 +00002273 THREAD_TIMER_ON (master, circuit->t_send_csnp[1], send_l2_csnp, circuit,
2274 isis_jitter (circuit->csnp_interval[1], CSNP_JITTER));
hassod70f99e2004-02-11 20:26:31 +00002275
jardineb5d44e2003-12-23 08:09:43 +00002276 return retval;
2277}
2278
hasso92365882005-01-18 13:53:33 +00002279static int
jardineb5d44e2003-12-23 08:09:43 +00002280build_psnp (int level, struct isis_circuit *circuit, struct list *lsps)
2281{
2282 struct isis_fixed_hdr fixed_hdr;
2283 unsigned long lenp;
2284 u_int16_t length;
2285 int retval = 0;
2286 struct isis_lsp *lsp;
2287 struct isis_passwd *passwd;
paul1eb8ef22005-04-07 07:30:20 +00002288 struct listnode *node, *nnode;
jardineb5d44e2003-12-23 08:09:43 +00002289
2290 if (level == 1)
hassof390d2c2004-09-10 20:48:21 +00002291 fill_fixed_hdr_andstream (&fixed_hdr, L1_PARTIAL_SEQ_NUM,
2292 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002293 else
2294 fill_fixed_hdr_andstream (&fixed_hdr, L2_PARTIAL_SEQ_NUM,
hassof390d2c2004-09-10 20:48:21 +00002295 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002296
2297 /*
2298 * Fill Level 1 or 2 Partial Sequence Numbers header
2299 */
paul9985f832005-02-09 15:51:56 +00002300 lenp = stream_get_endp (circuit->snd_stream);
hassof390d2c2004-09-10 20:48:21 +00002301 stream_putw (circuit->snd_stream, 0); /* PDU length - when we know it */
jardineb5d44e2003-12-23 08:09:43 +00002302 stream_put (circuit->snd_stream, isis->sysid, ISIS_SYS_ID_LEN);
2303 stream_putc (circuit->snd_stream, circuit->idx);
2304
2305 /*
2306 * And TLVs
2307 */
2308
2309 if (level == 1)
2310 passwd = &circuit->area->area_passwd;
2311 else
2312 passwd = &circuit->area->domain_passwd;
2313
hasso1cbc5622005-01-01 10:29:51 +00002314 if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_SEND))
2315 if (passwd->type)
2316 retval = tlv_add_authinfo (passwd->type, passwd->len,
2317 passwd->passwd, circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002318
hassof390d2c2004-09-10 20:48:21 +00002319 if (!retval && lsps)
2320 {
2321 retval = tlv_add_lsp_entries (lsps, circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002322 }
jardineb5d44e2003-12-23 08:09:43 +00002323
hassof390d2c2004-09-10 20:48:21 +00002324 if (isis->debugs & DEBUG_SNP_PACKETS)
2325 {
paul1eb8ef22005-04-07 07:30:20 +00002326 for (ALL_LIST_ELEMENTS (lsps, node, nnode, lsp))
hassof390d2c2004-09-10 20:48:21 +00002327 {
hasso529d65b2004-12-24 00:14:50 +00002328 zlog_debug ("ISIS-Snp (%s): PSNP entry %s, seq 0x%08x,"
2329 " cksum 0x%04x, lifetime %us",
2330 circuit->area->area_tag,
2331 rawlspid_print (lsp->lsp_header->lsp_id),
2332 ntohl (lsp->lsp_header->seq_num),
2333 ntohs (lsp->lsp_header->checksum),
2334 ntohs (lsp->lsp_header->rem_lifetime));
hassof390d2c2004-09-10 20:48:21 +00002335 }
2336 }
2337
paul9985f832005-02-09 15:51:56 +00002338 length = (u_int16_t) stream_get_endp (circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002339 assert (length >= ISIS_PSNP_HDRLEN);
2340 /* Update PDU length */
2341 stream_putw_at (circuit->snd_stream, lenp, length);
2342
2343 return ISIS_OK;
2344}
2345
2346/*
2347 * 7.3.15.4 action on expiration of partial SNP interval
2348 * level 1
2349 */
hasso92365882005-01-18 13:53:33 +00002350static int
jardineb5d44e2003-12-23 08:09:43 +00002351send_psnp (int level, struct isis_circuit *circuit)
2352{
2353 int retval = ISIS_OK;
2354 struct isis_lsp *lsp;
2355 struct list *list = NULL;
paul1eb8ef22005-04-07 07:30:20 +00002356 struct listnode *node, *nnode;
jardineb5d44e2003-12-23 08:09:43 +00002357
hassof390d2c2004-09-10 20:48:21 +00002358 if ((circuit->circ_type == CIRCUIT_T_BROADCAST &&
jardineb5d44e2003-12-23 08:09:43 +00002359 !circuit->u.bc.is_dr[level - 1]) ||
hassof390d2c2004-09-10 20:48:21 +00002360 circuit->circ_type != CIRCUIT_T_BROADCAST)
2361 {
jardineb5d44e2003-12-23 08:09:43 +00002362
hassof390d2c2004-09-10 20:48:21 +00002363 if (circuit->area->lspdb[level - 1] &&
2364 dict_count (circuit->area->lspdb[level - 1]) > 0)
2365 {
2366 list = list_new ();
2367 lsp_build_list_ssn (circuit, list, circuit->area->lspdb[level - 1]);
jardineb5d44e2003-12-23 08:09:43 +00002368
hassof390d2c2004-09-10 20:48:21 +00002369 if (listcount (list) > 0)
2370 {
2371 if (circuit->snd_stream == NULL)
2372 circuit->snd_stream = stream_new (ISO_MTU (circuit));
2373 else
2374 stream_reset (circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002375
2376
hassof390d2c2004-09-10 20:48:21 +00002377 if (isis->debugs & DEBUG_SNP_PACKETS)
hasso529d65b2004-12-24 00:14:50 +00002378 zlog_debug ("ISIS-Snp (%s): Sent L%d PSNP on %s, length %ld",
2379 circuit->area->area_tag, level,
2380 circuit->interface->name,
hasso29e50b22005-09-01 18:18:47 +00002381 /* FIXME: use %z when we stop supporting old
2382 * compilers. */
2383 (unsigned long) STREAM_SIZE (circuit->snd_stream));
jardineb5d44e2003-12-23 08:09:43 +00002384
hassof390d2c2004-09-10 20:48:21 +00002385 retval = build_psnp (level, circuit, list);
2386 if (retval == ISIS_OK)
2387 retval = circuit->tx (circuit, level);
jardineb5d44e2003-12-23 08:09:43 +00002388
hassof390d2c2004-09-10 20:48:21 +00002389 if (retval == ISIS_OK)
2390 {
2391 /*
2392 * sending succeeded, we can clear SSN flags of this circuit
2393 * for the LSPs in list
2394 */
paul1eb8ef22005-04-07 07:30:20 +00002395 for (ALL_LIST_ELEMENTS (list, node, nnode, lsp))
2396 ISIS_CLEAR_FLAG (lsp->SSNflags, circuit);
hassof390d2c2004-09-10 20:48:21 +00002397 }
2398 }
2399 list_delete (list);
2400 }
jardineb5d44e2003-12-23 08:09:43 +00002401 }
jardineb5d44e2003-12-23 08:09:43 +00002402
2403 return retval;
2404}
2405
2406int
2407send_l1_psnp (struct thread *thread)
2408{
2409
2410 struct isis_circuit *circuit;
2411 int retval = ISIS_OK;
2412
2413 circuit = THREAD_ARG (thread);
2414 assert (circuit);
2415
2416 circuit->t_send_psnp[0] = NULL;
2417
2418 send_psnp (1, circuit);
2419 /* set next timer thread */
hassof390d2c2004-09-10 20:48:21 +00002420 THREAD_TIMER_ON (master, circuit->t_send_psnp[0], send_l1_psnp, circuit,
2421 isis_jitter (circuit->psnp_interval[0], PSNP_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002422
2423 return retval;
2424}
2425
2426/*
2427 * 7.3.15.4 action on expiration of partial SNP interval
2428 * level 2
2429 */
2430int
2431send_l2_psnp (struct thread *thread)
2432{
jardineb5d44e2003-12-23 08:09:43 +00002433 struct isis_circuit *circuit;
2434 int retval = ISIS_OK;
2435
2436 circuit = THREAD_ARG (thread);
2437 assert (circuit);
2438
2439 circuit->t_send_psnp[1] = NULL;
2440
2441 send_psnp (2, circuit);
2442
2443 /* set next timer thread */
hassof390d2c2004-09-10 20:48:21 +00002444 THREAD_TIMER_ON (master, circuit->t_send_psnp[1], send_l2_psnp, circuit,
2445 isis_jitter (circuit->psnp_interval[1], PSNP_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002446
2447 return retval;
2448}
2449
hasso92365882005-01-18 13:53:33 +00002450/* FIXME: Not used any more? */
2451/* static void
jardineb5d44e2003-12-23 08:09:43 +00002452build_link_state (struct isis_lsp *lsp, struct isis_circuit *circuit,
hassof390d2c2004-09-10 20:48:21 +00002453 struct stream *stream)
jardineb5d44e2003-12-23 08:09:43 +00002454{
2455 unsigned long length;
2456
hassof390d2c2004-09-10 20:48:21 +00002457 stream_put (stream, lsp->pdu, ntohs (lsp->lsp_header->pdu_len));
paul9985f832005-02-09 15:51:56 +00002458 length = stream_get_endp (stream);
jardineb5d44e2003-12-23 08:09:43 +00002459
2460 return;
hasso92365882005-01-18 13:53:33 +00002461} */
jardineb5d44e2003-12-23 08:09:43 +00002462
jardineb5d44e2003-12-23 08:09:43 +00002463/*
2464 * ISO 10589 - 7.3.14.3
2465 */
2466int
2467send_lsp (struct thread *thread)
2468{
2469 struct isis_circuit *circuit;
2470 struct isis_lsp *lsp;
2471 struct listnode *node;
2472 int retval = 0;
2473
2474 circuit = THREAD_ARG (thread);
2475 assert (circuit);
2476
hassof390d2c2004-09-10 20:48:21 +00002477 if (circuit->state == C_STATE_UP)
2478 {
paul1eb8ef22005-04-07 07:30:20 +00002479 lsp = listgetdata ((node = listhead (circuit->lsp_queue)));
jardineb5d44e2003-12-23 08:09:43 +00002480
2481 /*
hassof390d2c2004-09-10 20:48:21 +00002482 * Do not send if levels do not match
jardineb5d44e2003-12-23 08:09:43 +00002483 */
hassof390d2c2004-09-10 20:48:21 +00002484 if (!(lsp->level & circuit->circuit_is_type))
2485 goto dontsend;
jardineb5d44e2003-12-23 08:09:43 +00002486
hassof390d2c2004-09-10 20:48:21 +00002487 /*
2488 * Do not send if we do not have adjacencies in state up on the circuit
2489 */
2490 if (circuit->upadjcount[lsp->level - 1] == 0)
2491 goto dontsend;
2492 /* only send if it needs sending */
2493 if ((time (NULL) - lsp->last_sent) >=
2494 circuit->area->lsp_gen_interval[lsp->level - 1])
2495 {
jardineb5d44e2003-12-23 08:09:43 +00002496
hassof390d2c2004-09-10 20:48:21 +00002497 if (isis->debugs & DEBUG_UPDATE_PACKETS)
2498 {
hasso529d65b2004-12-24 00:14:50 +00002499 zlog_debug
hassof390d2c2004-09-10 20:48:21 +00002500 ("ISIS-Upd (%s): Sent L%d LSP %s, seq 0x%08x, cksum 0x%04x,"
2501 " lifetime %us on %s", circuit->area->area_tag, lsp->level,
2502 rawlspid_print (lsp->lsp_header->lsp_id),
2503 ntohl (lsp->lsp_header->seq_num),
2504 ntohs (lsp->lsp_header->checksum),
2505 ntohs (lsp->lsp_header->rem_lifetime),
2506 circuit->interface->name);
2507 }
2508 /* copy our lsp to the send buffer */
paul15935e92005-05-03 09:27:23 +00002509 stream_copy (circuit->snd_stream, lsp->pdu);
hassof390d2c2004-09-10 20:48:21 +00002510
2511 retval = circuit->tx (circuit, lsp->level);
2512
jardineb5d44e2003-12-23 08:09:43 +00002513 /*
hassof390d2c2004-09-10 20:48:21 +00002514 * If the sending succeeded, we can del the lsp from circuits
2515 * lsp_queue
jardineb5d44e2003-12-23 08:09:43 +00002516 */
hassof390d2c2004-09-10 20:48:21 +00002517 if (retval == ISIS_OK)
2518 {
2519 list_delete_node (circuit->lsp_queue, node);
2520
2521 /*
2522 * On broadcast circuits also the SRMflag can be cleared
2523 */
2524 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
2525 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
2526
2527 if (flags_any_set (lsp->SRMflags) == 0)
2528 {
2529 /*
2530 * need to remember when we were last sent
2531 */
2532 lsp->last_sent = time (NULL);
2533 }
2534 }
2535 else
2536 {
hasso529d65b2004-12-24 00:14:50 +00002537 zlog_debug ("sending of level %d link state failed", lsp->level);
hassof390d2c2004-09-10 20:48:21 +00002538 }
jardineb5d44e2003-12-23 08:09:43 +00002539 }
hassof390d2c2004-09-10 20:48:21 +00002540 else
2541 {
2542 /* my belief is that if it wasn't his time, the lsp can be removed
2543 * from the queue
2544 */
2545 dontsend:
2546 list_delete_node (circuit->lsp_queue, node);
2547 }
jardineb5d44e2003-12-23 08:09:43 +00002548#if 0
hassof390d2c2004-09-10 20:48:21 +00002549 /*
2550 * If there are still LSPs send next one after lsp-interval (33 msecs)
2551 */
2552 if (listcount (circuit->lsp_queue) > 0)
2553 thread_add_timer (master, send_lsp, circuit, 1);
jardineb5d44e2003-12-23 08:09:43 +00002554#endif
hassof390d2c2004-09-10 20:48:21 +00002555 }
jardineb5d44e2003-12-23 08:09:43 +00002556
2557 return retval;
hassof390d2c2004-09-10 20:48:21 +00002558}
jardineb5d44e2003-12-23 08:09:43 +00002559
2560int
hassof390d2c2004-09-10 20:48:21 +00002561ack_lsp (struct isis_link_state_hdr *hdr, struct isis_circuit *circuit,
2562 int level)
jardineb5d44e2003-12-23 08:09:43 +00002563{
2564 unsigned long lenp;
2565 int retval;
2566 u_int16_t length;
2567 struct isis_fixed_hdr fixed_hdr;
2568
2569 if (!circuit->snd_stream)
hassof390d2c2004-09-10 20:48:21 +00002570 circuit->snd_stream = stream_new (ISO_MTU (circuit));
jardineb5d44e2003-12-23 08:09:43 +00002571 else
2572 stream_reset (circuit->snd_stream);
2573
2574// fill_llc_hdr (stream);
2575 if (level == 1)
hassof390d2c2004-09-10 20:48:21 +00002576 fill_fixed_hdr_andstream (&fixed_hdr, L1_PARTIAL_SEQ_NUM,
2577 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002578 else
hassof390d2c2004-09-10 20:48:21 +00002579 fill_fixed_hdr_andstream (&fixed_hdr, L2_PARTIAL_SEQ_NUM,
2580 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002581
2582
paul9985f832005-02-09 15:51:56 +00002583 lenp = stream_get_endp (circuit->snd_stream);
hassof390d2c2004-09-10 20:48:21 +00002584 stream_putw (circuit->snd_stream, 0); /* PDU length */
2585 stream_put (circuit->snd_stream, isis->sysid, ISIS_SYS_ID_LEN);
jardineb5d44e2003-12-23 08:09:43 +00002586 stream_putc (circuit->snd_stream, circuit->idx);
hassof390d2c2004-09-10 20:48:21 +00002587 stream_putc (circuit->snd_stream, 9); /* code */
2588 stream_putc (circuit->snd_stream, 16); /* len */
jardineb5d44e2003-12-23 08:09:43 +00002589
hassof390d2c2004-09-10 20:48:21 +00002590 stream_putw (circuit->snd_stream, ntohs (hdr->rem_lifetime));
2591 stream_put (circuit->snd_stream, hdr->lsp_id, ISIS_SYS_ID_LEN + 2);
2592 stream_putl (circuit->snd_stream, ntohl (hdr->seq_num));
2593 stream_putw (circuit->snd_stream, ntohs (hdr->checksum));
jardineb5d44e2003-12-23 08:09:43 +00002594
paul9985f832005-02-09 15:51:56 +00002595 length = (u_int16_t) stream_get_endp (circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002596 /* Update PDU length */
2597 stream_putw_at (circuit->snd_stream, lenp, length);
2598
2599 retval = circuit->tx (circuit, level);
2600
2601 return retval;
2602}
2603
2604#if 0
2605/*
2606 * ISH PDU Processing
2607 */
2608
jardineb5d44e2003-12-23 08:09:43 +00002609 /*
2610 * Let's first check if the local and remote system have any common area
2611 * addresses
2612 */
hassof390d2c2004-09-10 20:48:21 +00002613if (area_match (tlvs.area_addrs, isis->man_area_addrs) == 0)
2614 {
2615 if (circuit->circuit_t == IS_LEVEL_2)
2616 {
2617 /* do as in table 8 (p. 40) */
2618 switch (circuit_type)
2619 {
2620 case IS_LEVEL_1:
2621 if (adj->adj_state != ISIS_ADJ_UP)
2622 {
2623 /* Reject */
2624 zlog_warn ("areaMismatch");
2625 retval = ISIS_WARNING;
2626 }
2627 else if (adj->adj_usage == ISIS_ADJ_LEVEL1)
2628 {
2629 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Area Mismatch",
2630 circuit->adjdb);
2631 }
2632 else if (adj->adj_usage == ISIS_ADJ_LEVEL1AND2 ||
2633 adj->adj_usage == ISIS_ADJ_LEVEL2)
2634 {
2635 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System",
2636 circuit->adjdb);
2637 }
2638 break;
2639 case IS_LEVEL_2:
2640 if (adj->adj_state != ISIS_ADJ_UP)
2641 {
2642 isis_adj_state_change (adj, ISIS_ADJ_UP, NULL,
2643 circuit->adjdb);
2644 adj->adj_usage = ISIS_ADJ_LEVEL2;
2645 }
2646 else if (adj->adj_usage == ISIS_ADJ_LEVEL1 ||
2647 adj->adj_usage == ISIS_ADJ_LEVEL1AND2)
2648 {
2649 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System",
2650 circuit->adjdb);
2651 }
2652 else if (adj->adj_usage == ISIS_ADJ_LEVEL2)
2653 {
2654 ; /* Accept */
2655 }
2656 break;
2657 case IS_LEVEL_1_AND_2:
2658 if (adj->adj_state != ISIS_ADJ_UP)
2659 {
2660 isis_adj_state_change (adj, ISIS_ADJ_UP, NULL,
2661 circuit->adjdb);
2662 adj->adj_usage = ISIS_ADJ_LEVEL2;
2663 }
2664 else if (adj->adj_usage == ISIS_ADJ_LEVEL1)
2665 {
2666 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System",
2667 circuit->adjdb);
2668 }
2669 else if (adj->adj_usage == ISIS_ADJ_LEVEL1AND2)
2670 {
2671 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Area Mismatch",
2672 circuit->adjdb);
2673 }
2674 else if (adj->adj_usage == ISIS_ADJ_LEVEL2)
2675 {
2676 ; /* Accept */
2677 }
2678 break;
2679 }
2680 goto mismatch;
jardineb5d44e2003-12-23 08:09:43 +00002681 }
hassof390d2c2004-09-10 20:48:21 +00002682 else
2683 {
2684 isis_delete_adj (adj, circuit->adjdb);
2685 zlog_warn ("areaMismatch");
2686 return ISIS_WARNING;
2687 }
jardineb5d44e2003-12-23 08:09:43 +00002688 }
2689
2690mismatch:
2691#endif