blob: c50b53ffe8ca883fe24bb6323f8a005b8f1baa12 [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
jardineb5d44e2003-12-23 08:09:43 +000024#include <zebra.h>
jardineb5d44e2003-12-23 08:09:43 +000025
26#include "memory.h"
27#include "thread.h"
28#include "linklist.h"
29#include "log.h"
30#include "stream.h"
31#include "vty.h"
Josh Bailey3f045a02012-03-24 08:35:20 -070032#include "hash.h"
jardineb5d44e2003-12-23 08:09:43 +000033#include "prefix.h"
34#include "if.h"
Jingjing Duan6a270cd2008-08-13 19:09:10 +010035#include "checksum.h"
Josh Bailey3f045a02012-03-24 08:35:20 -070036#include "md5.h"
jardineb5d44e2003-12-23 08:09:43 +000037
38#include "isisd/dict.h"
39#include "isisd/include-netbsd/iso.h"
40#include "isisd/isis_constants.h"
41#include "isisd/isis_common.h"
Josh Bailey3f045a02012-03-24 08:35:20 -070042#include "isisd/isis_flags.h"
jardineb5d44e2003-12-23 08:09:43 +000043#include "isisd/isis_adjacency.h"
44#include "isisd/isis_circuit.h"
45#include "isisd/isis_network.h"
46#include "isisd/isis_misc.h"
47#include "isisd/isis_dr.h"
jardineb5d44e2003-12-23 08:09:43 +000048#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
jardineb5d44e2003-12-23 08:09:43 +000057#define ISIS_MINIMUM_FIXED_HDR_LEN 15
hassof390d2c2004-09-10 20:48:21 +000058#define ISIS_MIN_PDU_LEN 13 /* partial seqnum pdu with id_len=2 */
jardineb5d44e2003-12-23 08:09:43 +000059
60#ifndef PNBBY
61#define PNBBY 8
62#endif /* PNBBY */
63
64/* Utility mask array. */
Stephen Hemminger88d37b92014-11-03 01:20:09 +000065static const u_char maskbit[] = {
jardineb5d44e2003-12-23 08:09:43 +000066 0x00, 0x80, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc, 0xfe, 0xff
67};
68
69/*
70 * HELPER FUNCS
71 */
72
73/*
74 * Compares two sets of area addresses
75 */
hassof390d2c2004-09-10 20:48:21 +000076static int
jardineb5d44e2003-12-23 08:09:43 +000077area_match (struct list *left, struct list *right)
78{
79 struct area_addr *addr1, *addr2;
hasso3fdb2dd2005-09-28 18:45:54 +000080 struct listnode *node1, *node2;
jardineb5d44e2003-12-23 08:09:43 +000081
hasso3fdb2dd2005-09-28 18:45:54 +000082 for (ALL_LIST_ELEMENTS_RO (left, node1, addr1))
hassof390d2c2004-09-10 20:48:21 +000083 {
hasso3fdb2dd2005-09-28 18:45:54 +000084 for (ALL_LIST_ELEMENTS_RO (right, node2, addr2))
hassof390d2c2004-09-10 20:48:21 +000085 {
86 if (addr1->addr_len == addr2->addr_len &&
87 !memcmp (addr1->area_addr, addr2->area_addr, (int) addr1->addr_len))
88 return 1; /* match */
jardineb5d44e2003-12-23 08:09:43 +000089 }
90 }
91
hassof390d2c2004-09-10 20:48:21 +000092 return 0; /* mismatch */
jardineb5d44e2003-12-23 08:09:43 +000093}
94
95/*
96 * Check if ip2 is in the ip1's network (function like Prefix.h:prefix_match() )
97 * param ip1 the IS interface ip address structure
98 * param ip2 the IIH's ip address
99 * return 0 the IIH's IP is not in the IS's subnetwork
100 * 1 the IIH's IP is in the IS's subnetwork
101 */
hasso92365882005-01-18 13:53:33 +0000102static int
hassof390d2c2004-09-10 20:48:21 +0000103ip_same_subnet (struct prefix_ipv4 *ip1, struct in_addr *ip2)
jardineb5d44e2003-12-23 08:09:43 +0000104{
105 u_char *addr1, *addr2;
hasso53c997c2004-09-15 16:21:59 +0000106 int shift, offset, offsetloop;
jardineb5d44e2003-12-23 08:09:43 +0000107 int len;
hassof390d2c2004-09-10 20:48:21 +0000108
109 addr1 = (u_char *) & ip1->prefix.s_addr;
110 addr2 = (u_char *) & ip2->s_addr;
jardineb5d44e2003-12-23 08:09:43 +0000111 len = ip1->prefixlen;
112
113 shift = len % PNBBY;
hasso53c997c2004-09-15 16:21:59 +0000114 offsetloop = offset = len / PNBBY;
jardineb5d44e2003-12-23 08:09:43 +0000115
hasso53c997c2004-09-15 16:21:59 +0000116 while (offsetloop--)
117 if (addr1[offsetloop] != addr2[offsetloop])
118 return 0;
jardineb5d44e2003-12-23 08:09:43 +0000119
hassof390d2c2004-09-10 20:48:21 +0000120 if (shift)
hasso53c997c2004-09-15 16:21:59 +0000121 if (maskbit[shift] & (addr1[offset] ^ addr2[offset]))
122 return 0;
hassof390d2c2004-09-10 20:48:21 +0000123
124 return 1; /* match */
jardineb5d44e2003-12-23 08:09:43 +0000125}
126
jardineb5d44e2003-12-23 08:09:43 +0000127/*
128 * Compares two set of ip addresses
129 * param left the local interface's ip addresses
130 * param right the iih interface's ip address
131 * return 0 no match;
132 * 1 match;
133 */
hassof390d2c2004-09-10 20:48:21 +0000134static int
jardineb5d44e2003-12-23 08:09:43 +0000135ip_match (struct list *left, struct list *right)
136{
137 struct prefix_ipv4 *ip1;
138 struct in_addr *ip2;
hasso3fdb2dd2005-09-28 18:45:54 +0000139 struct listnode *node1, *node2;
jardineb5d44e2003-12-23 08:09:43 +0000140
hassoe082ac12004-09-27 18:13:57 +0000141 if ((left == NULL) || (right == NULL))
142 return 0;
143
hasso3fdb2dd2005-09-28 18:45:54 +0000144 for (ALL_LIST_ELEMENTS_RO (left, node1, ip1))
hassof390d2c2004-09-10 20:48:21 +0000145 {
hasso3fdb2dd2005-09-28 18:45:54 +0000146 for (ALL_LIST_ELEMENTS_RO (right, node2, ip2))
hassof390d2c2004-09-10 20:48:21 +0000147 {
148 if (ip_same_subnet (ip1, ip2))
149 {
150 return 1; /* match */
151 }
jardineb5d44e2003-12-23 08:09:43 +0000152 }
hassof390d2c2004-09-10 20:48:21 +0000153
jardineb5d44e2003-12-23 08:09:43 +0000154 }
155 return 0;
156}
157
158/*
159 * Checks whether we should accept a PDU of given level
160 */
161static int
162accept_level (int level, int circuit_t)
163{
hassof390d2c2004-09-10 20:48:21 +0000164 int retval = ((circuit_t & level) == level); /* simple approach */
jardineb5d44e2003-12-23 08:09:43 +0000165
166 return retval;
167}
168
Josh Bailey3f045a02012-03-24 08:35:20 -0700169/*
170 * Verify authentication information
171 * Support cleartext and HMAC MD5 authentication
172 */
173static int
174authentication_check (struct isis_passwd *remote, struct isis_passwd *local,
175 struct stream *stream, uint32_t auth_tlv_offset)
jardineb5d44e2003-12-23 08:09:43 +0000176{
Josh Bailey3f045a02012-03-24 08:35:20 -0700177 unsigned char digest[ISIS_AUTH_MD5_SIZE];
178
179 /* Auth fail () - passwd type mismatch */
180 if (local->type != remote->type)
181 return ISIS_ERROR;
182
183 switch (local->type)
184 {
185 /* No authentication required */
186 case ISIS_PASSWD_TYPE_UNUSED:
187 break;
188
189 /* Cleartext (ISO 10589) */
hassof390d2c2004-09-10 20:48:21 +0000190 case ISIS_PASSWD_TYPE_CLEARTXT:
Josh Bailey3f045a02012-03-24 08:35:20 -0700191 /* Auth fail () - passwd len mismatch */
192 if (remote->len != local->len)
193 return ISIS_ERROR;
194 return memcmp (local->passwd, remote->passwd, local->len);
195
196 /* HMAC MD5 (RFC 3567) */
197 case ISIS_PASSWD_TYPE_HMAC_MD5:
198 /* Auth fail () - passwd len mismatch */
199 if (remote->len != ISIS_AUTH_MD5_SIZE)
200 return ISIS_ERROR;
201 /* Set the authentication value to 0 before the check */
202 memset (STREAM_DATA (stream) + auth_tlv_offset + 3, 0,
203 ISIS_AUTH_MD5_SIZE);
204 /* Compute the digest */
205 hmac_md5 (STREAM_DATA (stream), stream_get_endp (stream),
206 (unsigned char *) &(local->passwd), local->len,
David Lamparter21401f32015-03-03 08:55:26 +0100207 (unsigned char *) &digest);
Josh Bailey3f045a02012-03-24 08:35:20 -0700208 /* Copy back the authentication value after the check */
209 memcpy (STREAM_DATA (stream) + auth_tlv_offset + 3,
210 remote->passwd, ISIS_AUTH_MD5_SIZE);
211 return memcmp (digest, remote->passwd, ISIS_AUTH_MD5_SIZE);
212
hassof390d2c2004-09-10 20:48:21 +0000213 default:
Josh Bailey3f045a02012-03-24 08:35:20 -0700214 zlog_err ("Unsupported authentication type");
215 return ISIS_ERROR;
216 }
217
218 /* Authentication pass when no authentication is configured */
219 return ISIS_OK;
220}
221
222static int
223lsp_authentication_check (struct stream *stream, struct isis_area *area,
224 int level, struct isis_passwd *passwd)
225{
226 struct isis_link_state_hdr *hdr;
227 uint32_t expected = 0, found = 0, auth_tlv_offset = 0;
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -0700228 uint16_t checksum, rem_lifetime, pdu_len;
Josh Bailey3f045a02012-03-24 08:35:20 -0700229 struct tlvs tlvs;
230 int retval = ISIS_OK;
231
232 hdr = (struct isis_link_state_hdr *) (STREAM_PNT (stream));
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -0700233 pdu_len = ntohs (hdr->pdu_len);
Josh Bailey3f045a02012-03-24 08:35:20 -0700234 expected |= TLVFLAG_AUTH_INFO;
235 auth_tlv_offset = stream_get_getp (stream) + ISIS_LSP_HDR_LEN;
236 retval = parse_tlvs (area->area_tag, STREAM_PNT (stream) + ISIS_LSP_HDR_LEN,
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -0700237 pdu_len - ISIS_FIXED_HDR_LEN - ISIS_LSP_HDR_LEN,
Josh Bailey3f045a02012-03-24 08:35:20 -0700238 &expected, &found, &tlvs, &auth_tlv_offset);
239
240 if (retval != ISIS_OK)
241 {
242 zlog_err ("ISIS-Upd (%s): Parse failed L%d LSP %s, seq 0x%08x, "
243 "cksum 0x%04x, lifetime %us, len %u",
244 area->area_tag, level, rawlspid_print (hdr->lsp_id),
245 ntohl (hdr->seq_num), ntohs (hdr->checksum),
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -0700246 ntohs (hdr->rem_lifetime), pdu_len);
Josh Bailey3f045a02012-03-24 08:35:20 -0700247 if ((isis->debugs & DEBUG_UPDATE_PACKETS) &&
248 (isis->debugs & DEBUG_PACKET_DUMP))
249 zlog_dump_data (STREAM_DATA (stream), stream_get_endp (stream));
250 return retval;
hassof390d2c2004-09-10 20:48:21 +0000251 }
Josh Bailey3f045a02012-03-24 08:35:20 -0700252
253 if (!(found & TLVFLAG_AUTH_INFO))
254 {
255 zlog_err ("No authentication tlv in LSP");
256 return ISIS_ERROR;
257 }
258
259 if (tlvs.auth_info.type != ISIS_PASSWD_TYPE_CLEARTXT &&
260 tlvs.auth_info.type != ISIS_PASSWD_TYPE_HMAC_MD5)
261 {
262 zlog_err ("Unknown authentication type in LSP");
263 return ISIS_ERROR;
264 }
265
266 /*
267 * RFC 5304 set checksum and remaining lifetime to zero before
268 * verification and reset to old values after verification.
269 */
270 checksum = hdr->checksum;
271 rem_lifetime = hdr->rem_lifetime;
272 hdr->checksum = 0;
273 hdr->rem_lifetime = 0;
274 retval = authentication_check (&tlvs.auth_info, passwd, stream,
275 auth_tlv_offset);
276 hdr->checksum = checksum;
277 hdr->rem_lifetime = rem_lifetime;
278
279 return retval;
jardineb5d44e2003-12-23 08:09:43 +0000280}
281
282/*
283 * Processing helper functions
284 */
hasso92365882005-01-18 13:53:33 +0000285static void
Josh Bailey3f045a02012-03-24 08:35:20 -0700286del_addr (void *val)
287{
288 XFREE (MTYPE_ISIS_TMP, val);
289}
290
291static void
292tlvs_to_adj_area_addrs (struct tlvs *tlvs, struct isis_adjacency *adj)
293{
294 struct listnode *node;
295 struct area_addr *area_addr, *malloced;
296
297 if (adj->area_addrs)
298 {
299 adj->area_addrs->del = del_addr;
300 list_delete (adj->area_addrs);
301 }
302 adj->area_addrs = list_new ();
303 if (tlvs->area_addrs)
304 {
305 for (ALL_LIST_ELEMENTS_RO (tlvs->area_addrs, node, area_addr))
306 {
307 malloced = XMALLOC (MTYPE_ISIS_TMP, sizeof (struct area_addr));
308 memcpy (malloced, area_addr, sizeof (struct area_addr));
309 listnode_add (adj->area_addrs, malloced);
310 }
311 }
312}
313
David Lamparter655071f2012-05-08 13:32:53 +0200314static int
hassof390d2c2004-09-10 20:48:21 +0000315tlvs_to_adj_nlpids (struct tlvs *tlvs, struct isis_adjacency *adj)
jardineb5d44e2003-12-23 08:09:43 +0000316{
317 int i;
318 struct nlpids *tlv_nlpids;
319
hassof390d2c2004-09-10 20:48:21 +0000320 if (tlvs->nlpids)
321 {
jardineb5d44e2003-12-23 08:09:43 +0000322
hassof390d2c2004-09-10 20:48:21 +0000323 tlv_nlpids = tlvs->nlpids;
David Lamparter655071f2012-05-08 13:32:53 +0200324 if (tlv_nlpids->count > array_size (adj->nlpids.nlpids))
325 return 1;
jardineb5d44e2003-12-23 08:09:43 +0000326
hassof390d2c2004-09-10 20:48:21 +0000327 adj->nlpids.count = tlv_nlpids->count;
jardineb5d44e2003-12-23 08:09:43 +0000328
hassof390d2c2004-09-10 20:48:21 +0000329 for (i = 0; i < tlv_nlpids->count; i++)
330 {
331 adj->nlpids.nlpids[i] = tlv_nlpids->nlpids[i];
332 }
jardineb5d44e2003-12-23 08:09:43 +0000333 }
David Lamparter655071f2012-05-08 13:32:53 +0200334 return 0;
jardineb5d44e2003-12-23 08:09:43 +0000335}
336
hasso92365882005-01-18 13:53:33 +0000337static void
hassof390d2c2004-09-10 20:48:21 +0000338tlvs_to_adj_ipv4_addrs (struct tlvs *tlvs, struct isis_adjacency *adj)
jardineb5d44e2003-12-23 08:09:43 +0000339{
hasso3fdb2dd2005-09-28 18:45:54 +0000340 struct listnode *node;
jardineb5d44e2003-12-23 08:09:43 +0000341 struct in_addr *ipv4_addr, *malloced;
342
hassof390d2c2004-09-10 20:48:21 +0000343 if (adj->ipv4_addrs)
344 {
Josh Bailey3f045a02012-03-24 08:35:20 -0700345 adj->ipv4_addrs->del = del_addr;
hassof390d2c2004-09-10 20:48:21 +0000346 list_delete (adj->ipv4_addrs);
jardineb5d44e2003-12-23 08:09:43 +0000347 }
hassof390d2c2004-09-10 20:48:21 +0000348 adj->ipv4_addrs = list_new ();
349 if (tlvs->ipv4_addrs)
350 {
hasso3fdb2dd2005-09-28 18:45:54 +0000351 for (ALL_LIST_ELEMENTS_RO (tlvs->ipv4_addrs, node, ipv4_addr))
hassof390d2c2004-09-10 20:48:21 +0000352 {
353 malloced = XMALLOC (MTYPE_ISIS_TMP, sizeof (struct in_addr));
354 memcpy (malloced, ipv4_addr, sizeof (struct in_addr));
355 listnode_add (adj->ipv4_addrs, malloced);
356 }
357 }
jardineb5d44e2003-12-23 08:09:43 +0000358}
359
360#ifdef HAVE_IPV6
hasso92365882005-01-18 13:53:33 +0000361static void
hassof390d2c2004-09-10 20:48:21 +0000362tlvs_to_adj_ipv6_addrs (struct tlvs *tlvs, struct isis_adjacency *adj)
jardineb5d44e2003-12-23 08:09:43 +0000363{
hasso3fdb2dd2005-09-28 18:45:54 +0000364 struct listnode *node;
jardineb5d44e2003-12-23 08:09:43 +0000365 struct in6_addr *ipv6_addr, *malloced;
366
hassof390d2c2004-09-10 20:48:21 +0000367 if (adj->ipv6_addrs)
368 {
Josh Bailey3f045a02012-03-24 08:35:20 -0700369 adj->ipv6_addrs->del = del_addr;
hassof390d2c2004-09-10 20:48:21 +0000370 list_delete (adj->ipv6_addrs);
jardineb5d44e2003-12-23 08:09:43 +0000371 }
hassof390d2c2004-09-10 20:48:21 +0000372 adj->ipv6_addrs = list_new ();
373 if (tlvs->ipv6_addrs)
374 {
hasso3fdb2dd2005-09-28 18:45:54 +0000375 for (ALL_LIST_ELEMENTS_RO (tlvs->ipv6_addrs, node, ipv6_addr))
hassof390d2c2004-09-10 20:48:21 +0000376 {
377 malloced = XMALLOC (MTYPE_ISIS_TMP, sizeof (struct in6_addr));
378 memcpy (malloced, ipv6_addr, sizeof (struct in6_addr));
379 listnode_add (adj->ipv6_addrs, malloced);
380 }
381 }
jardineb5d44e2003-12-23 08:09:43 +0000382
383}
384#endif /* HAVE_IPV6 */
385
jardineb5d44e2003-12-23 08:09:43 +0000386/*
387 * RECEIVE SIDE
388 */
389
390/*
391 * Process P2P IIH
392 * ISO - 10589
393 * Section 8.2.5 - Receiving point-to-point IIH PDUs
394 *
395 */
396static int
397process_p2p_hello (struct isis_circuit *circuit)
398{
399 int retval = ISIS_OK;
400 struct isis_p2p_hello_hdr *hdr;
401 struct isis_adjacency *adj;
Josh Bailey3f045a02012-03-24 08:35:20 -0700402 u_int32_t expected = 0, found = 0, auth_tlv_offset = 0;
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -0700403 uint16_t pdu_len;
jardineb5d44e2003-12-23 08:09:43 +0000404 struct tlvs tlvs;
David Lamparter28a8cfc2014-06-29 13:48:18 +0200405 int v4_usable = 0, v6_usable = 0;
jardineb5d44e2003-12-23 08:09:43 +0000406
Josh Bailey3f045a02012-03-24 08:35:20 -0700407 if (isis->debugs & DEBUG_ADJ_PACKETS)
408 {
409 zlog_debug ("ISIS-Adj (%s): Rcvd P2P IIH on %s, cirType %s, cirID %u",
410 circuit->area->area_tag, circuit->interface->name,
411 circuit_t2string (circuit->is_type), circuit->circuit_id);
412 if (isis->debugs & DEBUG_PACKET_DUMP)
413 zlog_dump_data (STREAM_DATA (circuit->rcv_stream),
414 stream_get_endp (circuit->rcv_stream));
415 }
416
417 if (circuit->circ_type != CIRCUIT_T_P2P)
418 {
419 zlog_warn ("p2p hello on non p2p circuit");
420 return ISIS_WARNING;
421 }
422
hassof390d2c2004-09-10 20:48:21 +0000423 if ((stream_get_endp (circuit->rcv_stream) -
424 stream_get_getp (circuit->rcv_stream)) < ISIS_P2PHELLO_HDRLEN)
425 {
426 zlog_warn ("Packet too short");
427 return ISIS_WARNING;
428 }
jardineb5d44e2003-12-23 08:09:43 +0000429
430 /* 8.2.5.1 PDU acceptance tests */
431
432 /* 8.2.5.1 a) external domain untrue */
433 /* FIXME: not useful at all? */
434
435 /* 8.2.5.1 b) ID Length mismatch */
436 /* checked at the handle_pdu */
437
438 /* 8.2.5.2 IIH PDU Processing */
439
440 /* 8.2.5.2 a) 1) Maximum Area Addresses */
441 /* Already checked, and can also be ommited */
442
443 /*
444 * Get the header
445 */
hassof390d2c2004-09-10 20:48:21 +0000446 hdr = (struct isis_p2p_hello_hdr *) STREAM_PNT (circuit->rcv_stream);
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -0700447 pdu_len = ntohs (hdr->pdu_len);
jardineb5d44e2003-12-23 08:09:43 +0000448
Avneesh Sachdeva22ab5a2012-05-05 23:50:30 -0700449 if (pdu_len < (ISIS_FIXED_HDR_LEN + ISIS_P2PHELLO_HDRLEN) ||
450 pdu_len > ISO_MTU(circuit) ||
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -0700451 pdu_len > stream_get_endp (circuit->rcv_stream))
hassof390d2c2004-09-10 20:48:21 +0000452 {
Josh Bailey3f045a02012-03-24 08:35:20 -0700453 zlog_warn ("ISIS-Adj (%s): Rcvd P2P IIH from (%s) with "
454 "invalid pdu length %d",
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -0700455 circuit->area->area_tag, circuit->interface->name, pdu_len);
Josh Bailey3f045a02012-03-24 08:35:20 -0700456 return ISIS_WARNING;
hassof390d2c2004-09-10 20:48:21 +0000457 }
jardineb5d44e2003-12-23 08:09:43 +0000458
jardineb5d44e2003-12-23 08:09:43 +0000459 /*
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -0700460 * Set the stream endp to PDU length, ignoring additional padding
461 * introduced by transport chips.
462 */
463 if (pdu_len < stream_get_endp (circuit->rcv_stream))
464 stream_set_endp (circuit->rcv_stream, pdu_len);
465
466 stream_forward_getp (circuit->rcv_stream, ISIS_P2PHELLO_HDRLEN);
467
468 /*
jardineb5d44e2003-12-23 08:09:43 +0000469 * Lets get the TLVS now
470 */
471 expected |= TLVFLAG_AREA_ADDRS;
472 expected |= TLVFLAG_AUTH_INFO;
473 expected |= TLVFLAG_NLPID;
474 expected |= TLVFLAG_IPV4_ADDR;
475 expected |= TLVFLAG_IPV6_ADDR;
476
Josh Bailey3f045a02012-03-24 08:35:20 -0700477 auth_tlv_offset = stream_get_getp (circuit->rcv_stream);
jardineb5d44e2003-12-23 08:09:43 +0000478 retval = parse_tlvs (circuit->area->area_tag,
479 STREAM_PNT (circuit->rcv_stream),
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -0700480 pdu_len - ISIS_P2PHELLO_HDRLEN - ISIS_FIXED_HDR_LEN,
481 &expected, &found, &tlvs, &auth_tlv_offset);
jardineb5d44e2003-12-23 08:09:43 +0000482
hassof390d2c2004-09-10 20:48:21 +0000483 if (retval > ISIS_WARNING)
484 {
Josh Bailey3f045a02012-03-24 08:35:20 -0700485 zlog_warn ("parse_tlvs() failed");
hassof390d2c2004-09-10 20:48:21 +0000486 free_tlvs (&tlvs);
487 return retval;
488 };
jardineb5d44e2003-12-23 08:09:43 +0000489
Josh Bailey3f045a02012-03-24 08:35:20 -0700490 if (!(found & TLVFLAG_AREA_ADDRS))
491 {
492 zlog_warn ("No Area addresses TLV in P2P IS to IS hello");
493 free_tlvs (&tlvs);
494 return ISIS_WARNING;
495 }
496
David Lamparterb72f3452012-11-27 01:10:26 +0000497 if (!(found & TLVFLAG_NLPID))
498 {
499 zlog_warn ("No supported protocols TLV in P2P IS to IS hello");
500 free_tlvs (&tlvs);
501 return ISIS_WARNING;
502 }
503
jardineb5d44e2003-12-23 08:09:43 +0000504 /* 8.2.5.1 c) Authentication */
hassof390d2c2004-09-10 20:48:21 +0000505 if (circuit->passwd.type)
506 {
507 if (!(found & TLVFLAG_AUTH_INFO) ||
Josh Bailey3f045a02012-03-24 08:35:20 -0700508 authentication_check (&tlvs.auth_info, &circuit->passwd,
509 circuit->rcv_stream, auth_tlv_offset))
510 {
511 isis_event_auth_failure (circuit->area->area_tag,
512 "P2P hello authentication failure",
513 hdr->source_id);
514 free_tlvs (&tlvs);
515 return ISIS_OK;
516 }
jardineb5d44e2003-12-23 08:09:43 +0000517 }
jardineb5d44e2003-12-23 08:09:43 +0000518
Josh Bailey3f045a02012-03-24 08:35:20 -0700519 /*
520 * check if it's own interface ip match iih ip addrs
521 */
David Lamparter28a8cfc2014-06-29 13:48:18 +0200522 if (found & TLVFLAG_IPV4_ADDR)
Josh Bailey3f045a02012-03-24 08:35:20 -0700523 {
David Lamparter28a8cfc2014-06-29 13:48:18 +0200524 if (ip_match (circuit->ip_addrs, tlvs.ipv4_addrs))
525 v4_usable = 1;
526 else
527 zlog_warn ("ISIS-Adj: IPv4 addresses present but no overlap "
528 "in P2P IIH from %s\n", circuit->interface->name);
529 }
530#ifndef HAVE_IPV6
531 else /* !(found & TLVFLAG_IPV4_ADDR) */
532 zlog_warn ("ISIS-Adj: no IPv4 in P2P IIH from %s "
533 "(this isisd has no IPv6)\n", circuit->interface->name);
534
535#else
536 if (found & TLVFLAG_IPV6_ADDR)
537 {
538 /* TBA: check that we have a linklocal ourselves? */
539 struct listnode *node;
David Lamparterad2f92b2014-08-18 18:05:25 +0200540 struct in6_addr *ip;
David Lamparter28a8cfc2014-06-29 13:48:18 +0200541 for (ALL_LIST_ELEMENTS_RO (tlvs.ipv6_addrs, node, ip))
542 if (IN6_IS_ADDR_LINKLOCAL (ip))
543 {
544 v6_usable = 1;
545 break;
546 }
547
548 if (!v6_usable)
549 zlog_warn ("ISIS-Adj: IPv6 addresses present but no link-local "
550 "in P2P IIH from %s\n", circuit->interface->name);
551 }
552
553 if (!(found & (TLVFLAG_IPV4_ADDR | TLVFLAG_IPV6_ADDR)))
554 zlog_warn ("ISIS-Adj: neither IPv4 nor IPv6 addr in P2P IIH from %s\n",
555 circuit->interface->name);
556#endif
557
558 if (!v6_usable && !v4_usable)
559 {
Josh Bailey3f045a02012-03-24 08:35:20 -0700560 free_tlvs (&tlvs);
561 return ISIS_WARNING;
562 }
563
564 /*
Amritha Nambiar491417a2015-04-23 15:36:55 -0700565 * it's own p2p IIH PDU - discard
566 */
567 if (!memcmp (hdr->source_id, isis->sysid, ISIS_SYS_ID_LEN))
568 {
569 zlog_warn ("ISIS-Adj (%s): it's own IIH PDU - discarded",
570 circuit->area->area_tag);
571 free_tlvs (&tlvs);
572 return ISIS_WARNING;
573 }
574
575 /*
Josh Bailey3f045a02012-03-24 08:35:20 -0700576 * My interpertation of the ISO, if no adj exists we will create one for
577 * the circuit
578 */
579 adj = circuit->u.p2p.neighbor;
Amritha Nambiar3c28aaf2015-01-28 18:09:30 +0000580 /* If an adjacency exists, check it is with the source of the hello
581 * packets */
582 if (adj)
583 {
584 if (memcmp(hdr->source_id, adj->sysid, ISIS_SYS_ID_LEN))
585 {
586 zlog_debug("hello source and adjacency do not match, set adj down\n");
587 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "adj do not exist");
588 return 0;
589 }
590 }
Josh Bailey3f045a02012-03-24 08:35:20 -0700591 if (!adj || adj->level != hdr->circuit_t)
592 {
593 if (!adj)
594 {
595 adj = isis_new_adj (hdr->source_id, NULL, hdr->circuit_t, circuit);
596 if (adj == NULL)
597 return ISIS_ERROR;
598 }
599 else
600 {
601 adj->level = hdr->circuit_t;
602 }
603 circuit->u.p2p.neighbor = adj;
Amritha Nambiar06cc6552015-07-02 15:42:58 -0700604 /* Build lsp with the new neighbor entry when a new
605 * adjacency is formed. Set adjacency circuit type to
606 * IIH PDU header circuit type before lsp is regenerated
607 * when an adjacency is up. This will result in the new
608 * adjacency entry getting added to the lsp tlv neighbor list.
609 */
610 adj->circuit_t = hdr->circuit_t;
Josh Bailey3f045a02012-03-24 08:35:20 -0700611 isis_adj_state_change (adj, ISIS_ADJ_INITIALIZING, NULL);
612 adj->sys_type = ISIS_SYSTYPE_UNKNOWN;
613 }
614
615 /* 8.2.6 Monitoring point-to-point adjacencies */
616 adj->hold_time = ntohs (hdr->hold_time);
617 adj->last_upd = time (NULL);
618
jardineb5d44e2003-12-23 08:09:43 +0000619 /* we do this now because the adj may not survive till the end... */
Josh Bailey3f045a02012-03-24 08:35:20 -0700620 tlvs_to_adj_area_addrs (&tlvs, adj);
621
622 /* which protocol are spoken ??? */
David Lamparterb72f3452012-11-27 01:10:26 +0000623 if (tlvs_to_adj_nlpids (&tlvs, adj))
624 {
625 free_tlvs (&tlvs);
626 return ISIS_WARNING;
627 }
jardineb5d44e2003-12-23 08:09:43 +0000628
629 /* we need to copy addresses to the adj */
Josh Bailey3f045a02012-03-24 08:35:20 -0700630 if (found & TLVFLAG_IPV4_ADDR)
631 tlvs_to_adj_ipv4_addrs (&tlvs, adj);
jardineb5d44e2003-12-23 08:09:43 +0000632
633#ifdef HAVE_IPV6
Josh Bailey3f045a02012-03-24 08:35:20 -0700634 if (found & TLVFLAG_IPV6_ADDR)
635 tlvs_to_adj_ipv6_addrs (&tlvs, adj);
jardineb5d44e2003-12-23 08:09:43 +0000636#endif /* HAVE_IPV6 */
637
638 /* lets take care of the expiry */
hassof390d2c2004-09-10 20:48:21 +0000639 THREAD_TIMER_OFF (adj->t_expire);
640 THREAD_TIMER_ON (master, adj->t_expire, isis_adj_expire, adj,
641 (long) adj->hold_time);
jardineb5d44e2003-12-23 08:09:43 +0000642
643 /* 8.2.5.2 a) a match was detected */
hassof390d2c2004-09-10 20:48:21 +0000644 if (area_match (circuit->area->area_addrs, tlvs.area_addrs))
645 {
646 /* 8.2.5.2 a) 2) If the system is L1 - table 5 */
647 if (circuit->area->is_type == IS_LEVEL_1)
648 {
649 switch (hdr->circuit_t)
650 {
651 case IS_LEVEL_1:
652 case IS_LEVEL_1_AND_2:
653 if (adj->adj_state != ISIS_ADJ_UP)
654 {
655 /* (4) adj state up */
656 isis_adj_state_change (adj, ISIS_ADJ_UP, NULL);
657 /* (5) adj usage level 1 */
658 adj->adj_usage = ISIS_ADJ_LEVEL1;
659 }
660 else if (adj->adj_usage == ISIS_ADJ_LEVEL1)
661 {
662 ; /* accept */
663 }
664 break;
665 case IS_LEVEL_2:
666 if (adj->adj_state != ISIS_ADJ_UP)
667 {
668 /* (7) reject - wrong system type event */
669 zlog_warn ("wrongSystemType");
Josh Bailey3f045a02012-03-24 08:35:20 -0700670 free_tlvs (&tlvs);
hassof390d2c2004-09-10 20:48:21 +0000671 return ISIS_WARNING; /* Reject */
672 }
673 else if (adj->adj_usage == ISIS_ADJ_LEVEL1)
674 {
675 /* (6) down - wrong system */
676 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
677 }
678 break;
679 }
680 }
jardineb5d44e2003-12-23 08:09:43 +0000681
hassof390d2c2004-09-10 20:48:21 +0000682 /* 8.2.5.2 a) 3) If the system is L1L2 - table 6 */
683 if (circuit->area->is_type == IS_LEVEL_1_AND_2)
684 {
685 switch (hdr->circuit_t)
686 {
687 case IS_LEVEL_1:
688 if (adj->adj_state != ISIS_ADJ_UP)
689 {
690 /* (6) adj state up */
691 isis_adj_state_change (adj, ISIS_ADJ_UP, NULL);
692 /* (7) adj usage level 1 */
693 adj->adj_usage = ISIS_ADJ_LEVEL1;
694 }
695 else if (adj->adj_usage == ISIS_ADJ_LEVEL1)
696 {
697 ; /* accept */
698 }
699 else if ((adj->adj_usage == ISIS_ADJ_LEVEL1AND2) ||
700 (adj->adj_usage == ISIS_ADJ_LEVEL2))
701 {
702 /* (8) down - wrong system */
703 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
704 }
705 break;
706 case IS_LEVEL_2:
707 if (adj->adj_state != ISIS_ADJ_UP)
708 {
709 /* (6) adj state up */
710 isis_adj_state_change (adj, ISIS_ADJ_UP, NULL);
711 /* (9) adj usage level 2 */
712 adj->adj_usage = ISIS_ADJ_LEVEL2;
713 }
714 else if ((adj->adj_usage == ISIS_ADJ_LEVEL1) ||
715 (adj->adj_usage == ISIS_ADJ_LEVEL1AND2))
716 {
717 /* (8) down - wrong system */
718 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
719 }
720 else if (adj->adj_usage == ISIS_ADJ_LEVEL2)
721 {
722 ; /* Accept */
723 }
724 break;
725 case IS_LEVEL_1_AND_2:
726 if (adj->adj_state != ISIS_ADJ_UP)
727 {
728 /* (6) adj state up */
729 isis_adj_state_change (adj, ISIS_ADJ_UP, NULL);
730 /* (10) adj usage level 1 */
731 adj->adj_usage = ISIS_ADJ_LEVEL1AND2;
732 }
733 else if ((adj->adj_usage == ISIS_ADJ_LEVEL1) ||
734 (adj->adj_usage == ISIS_ADJ_LEVEL2))
735 {
736 /* (8) down - wrong system */
737 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
738 }
739 else if (adj->adj_usage == ISIS_ADJ_LEVEL1AND2)
740 {
741 ; /* Accept */
742 }
743 break;
744 }
745 }
jardineb5d44e2003-12-23 08:09:43 +0000746
hassof390d2c2004-09-10 20:48:21 +0000747 /* 8.2.5.2 a) 4) If the system is L2 - table 7 */
748 if (circuit->area->is_type == IS_LEVEL_2)
749 {
750 switch (hdr->circuit_t)
751 {
752 case IS_LEVEL_1:
753 if (adj->adj_state != ISIS_ADJ_UP)
754 {
755 /* (5) reject - wrong system type event */
756 zlog_warn ("wrongSystemType");
Josh Bailey3f045a02012-03-24 08:35:20 -0700757 free_tlvs (&tlvs);
hassof390d2c2004-09-10 20:48:21 +0000758 return ISIS_WARNING; /* Reject */
759 }
760 else if ((adj->adj_usage == ISIS_ADJ_LEVEL1AND2) ||
761 (adj->adj_usage == ISIS_ADJ_LEVEL2))
762 {
763 /* (6) down - wrong system */
764 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
765 }
766 break;
767 case IS_LEVEL_1_AND_2:
768 case IS_LEVEL_2:
769 if (adj->adj_state != ISIS_ADJ_UP)
770 {
771 /* (7) adj state up */
772 isis_adj_state_change (adj, ISIS_ADJ_UP, NULL);
773 /* (8) adj usage level 2 */
774 adj->adj_usage = ISIS_ADJ_LEVEL2;
775 }
776 else if (adj->adj_usage == ISIS_ADJ_LEVEL1AND2)
777 {
778 /* (6) down - wrong system */
779 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
780 }
781 else if (adj->adj_usage == ISIS_ADJ_LEVEL2)
782 {
783 ; /* Accept */
784 }
785 break;
786 }
787 }
jardineb5d44e2003-12-23 08:09:43 +0000788 }
jardineb5d44e2003-12-23 08:09:43 +0000789 /* 8.2.5.2 b) if no match was detected */
Josh Bailey3f045a02012-03-24 08:35:20 -0700790 else if (listcount (circuit->area->area_addrs) > 0)
jardineb5d44e2003-12-23 08:09:43 +0000791 {
hassof390d2c2004-09-10 20:48:21 +0000792 if (circuit->area->is_type == IS_LEVEL_1)
793 {
794 /* 8.2.5.2 b) 1) is_type L1 and adj is not up */
795 if (adj->adj_state != ISIS_ADJ_UP)
796 {
797 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Area Mismatch");
798 /* 8.2.5.2 b) 2)is_type L1 and adj is up */
799 }
800 else
801 {
802 isis_adj_state_change (adj, ISIS_ADJ_DOWN,
803 "Down - Area Mismatch");
804 }
805 }
806 /* 8.2.5.2 b 3 If the system is L2 or L1L2 - table 8 */
807 else
808 {
809 switch (hdr->circuit_t)
810 {
811 case IS_LEVEL_1:
812 if (adj->adj_state != ISIS_ADJ_UP)
813 {
814 /* (6) reject - Area Mismatch event */
815 zlog_warn ("AreaMismatch");
Josh Bailey3f045a02012-03-24 08:35:20 -0700816 free_tlvs (&tlvs);
hassof390d2c2004-09-10 20:48:21 +0000817 return ISIS_WARNING; /* Reject */
818 }
819 else if (adj->adj_usage == ISIS_ADJ_LEVEL1)
820 {
821 /* (7) down - area mismatch */
822 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Area Mismatch");
jardineb5d44e2003-12-23 08:09:43 +0000823
hassof390d2c2004-09-10 20:48:21 +0000824 }
825 else if ((adj->adj_usage == ISIS_ADJ_LEVEL1AND2) ||
826 (adj->adj_usage == ISIS_ADJ_LEVEL2))
827 {
828 /* (7) down - wrong system */
829 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
830 }
831 break;
832 case IS_LEVEL_1_AND_2:
833 case IS_LEVEL_2:
834 if (adj->adj_state != ISIS_ADJ_UP)
835 {
836 /* (8) adj state up */
837 isis_adj_state_change (adj, ISIS_ADJ_UP, NULL);
838 /* (9) adj usage level 2 */
839 adj->adj_usage = ISIS_ADJ_LEVEL2;
840 }
841 else if (adj->adj_usage == ISIS_ADJ_LEVEL1)
842 {
843 /* (7) down - wrong system */
844 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System");
845 }
846 else if (adj->adj_usage == ISIS_ADJ_LEVEL1AND2)
847 {
848 if (hdr->circuit_t == IS_LEVEL_2)
849 {
850 /* (7) down - wrong system */
851 isis_adj_state_change (adj, ISIS_ADJ_DOWN,
852 "Wrong System");
853 }
854 else
855 {
856 /* (7) down - area mismatch */
857 isis_adj_state_change (adj, ISIS_ADJ_DOWN,
858 "Area Mismatch");
859 }
860 }
861 else if (adj->adj_usage == ISIS_ADJ_LEVEL2)
862 {
863 ; /* Accept */
864 }
865 break;
866 }
867 }
jardineb5d44e2003-12-23 08:09:43 +0000868 }
Josh Bailey3f045a02012-03-24 08:35:20 -0700869 else
870 {
871 /* down - area mismatch */
872 isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Area Mismatch");
873 }
jardineb5d44e2003-12-23 08:09:43 +0000874 /* 8.2.5.2 c) if the action was up - comparing circuit IDs */
875 /* FIXME - Missing parts */
876
jardineb5d44e2003-12-23 08:09:43 +0000877 /* some of my own understanding of the ISO, why the heck does
878 * it not say what should I change the system_type to...
879 */
hassof390d2c2004-09-10 20:48:21 +0000880 switch (adj->adj_usage)
881 {
jardineb5d44e2003-12-23 08:09:43 +0000882 case ISIS_ADJ_LEVEL1:
883 adj->sys_type = ISIS_SYSTYPE_L1_IS;
884 break;
885 case ISIS_ADJ_LEVEL2:
886 adj->sys_type = ISIS_SYSTYPE_L2_IS;
887 break;
888 case ISIS_ADJ_LEVEL1AND2:
889 adj->sys_type = ISIS_SYSTYPE_L2_IS;
890 break;
891 case ISIS_ADJ_NONE:
892 adj->sys_type = ISIS_SYSTYPE_UNKNOWN;
893 break;
hassof390d2c2004-09-10 20:48:21 +0000894 }
jardineb5d44e2003-12-23 08:09:43 +0000895
Josh Bailey3f045a02012-03-24 08:35:20 -0700896
897 if (isis->debugs & DEBUG_ADJ_PACKETS)
898 {
899 zlog_debug ("ISIS-Adj (%s): Rcvd P2P IIH from (%s), cir type %s,"
900 " cir id %02d, length %d",
901 circuit->area->area_tag, circuit->interface->name,
902 circuit_t2string (circuit->is_type),
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -0700903 circuit->circuit_id, pdu_len);
Josh Bailey3f045a02012-03-24 08:35:20 -0700904 }
jardineb5d44e2003-12-23 08:09:43 +0000905
906 free_tlvs (&tlvs);
907
908 return retval;
909}
910
jardineb5d44e2003-12-23 08:09:43 +0000911/*
912 * Process IS-IS LAN Level 1/2 Hello PDU
913 */
hassof390d2c2004-09-10 20:48:21 +0000914static int
915process_lan_hello (int level, struct isis_circuit *circuit, u_char * ssnpa)
jardineb5d44e2003-12-23 08:09:43 +0000916{
917 int retval = ISIS_OK;
918 struct isis_lan_hello_hdr hdr;
919 struct isis_adjacency *adj;
Josh Bailey3f045a02012-03-24 08:35:20 -0700920 u_int32_t expected = 0, found = 0, auth_tlv_offset = 0;
jardineb5d44e2003-12-23 08:09:43 +0000921 struct tlvs tlvs;
922 u_char *snpa;
hasso3fdb2dd2005-09-28 18:45:54 +0000923 struct listnode *node;
David Lamparter28a8cfc2014-06-29 13:48:18 +0200924 int v4_usable = 0, v6_usable = 0;
jardineb5d44e2003-12-23 08:09:43 +0000925
Josh Bailey3f045a02012-03-24 08:35:20 -0700926 if (isis->debugs & DEBUG_ADJ_PACKETS)
927 {
928 zlog_debug ("ISIS-Adj (%s): Rcvd L%d LAN IIH on %s, cirType %s, "
929 "cirID %u",
930 circuit->area->area_tag, level, circuit->interface->name,
931 circuit_t2string (circuit->is_type), circuit->circuit_id);
932 if (isis->debugs & DEBUG_PACKET_DUMP)
933 zlog_dump_data (STREAM_DATA (circuit->rcv_stream),
934 stream_get_endp (circuit->rcv_stream));
935 }
936
937 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
938 {
939 zlog_warn ("lan hello on non broadcast circuit");
940 return ISIS_WARNING;
941 }
942
hassof390d2c2004-09-10 20:48:21 +0000943 if ((stream_get_endp (circuit->rcv_stream) -
944 stream_get_getp (circuit->rcv_stream)) < ISIS_LANHELLO_HDRLEN)
945 {
946 zlog_warn ("Packet too short");
947 return ISIS_WARNING;
jardineb5d44e2003-12-23 08:09:43 +0000948 }
hassof390d2c2004-09-10 20:48:21 +0000949
950 if (circuit->ext_domain)
951 {
hasso529d65b2004-12-24 00:14:50 +0000952 zlog_debug ("level %d LAN Hello received over circuit with "
953 "externalDomain = true", level);
hassof390d2c2004-09-10 20:48:21 +0000954 return ISIS_WARNING;
955 }
956
Josh Bailey3f045a02012-03-24 08:35:20 -0700957 if (!accept_level (level, circuit->is_type))
hassof390d2c2004-09-10 20:48:21 +0000958 {
959 if (isis->debugs & DEBUG_ADJ_PACKETS)
960 {
hasso529d65b2004-12-24 00:14:50 +0000961 zlog_debug ("ISIS-Adj (%s): Interface level mismatch, %s",
962 circuit->area->area_tag, circuit->interface->name);
hassof390d2c2004-09-10 20:48:21 +0000963 }
964 return ISIS_WARNING;
965 }
jardineb5d44e2003-12-23 08:09:43 +0000966
967#if 0
968 /* Cisco's debug message compatability */
hassof390d2c2004-09-10 20:48:21 +0000969 if (!accept_level (level, circuit->area->is_type))
970 {
971 if (isis->debugs & DEBUG_ADJ_PACKETS)
972 {
hasso529d65b2004-12-24 00:14:50 +0000973 zlog_debug ("ISIS-Adj (%s): is type mismatch",
974 circuit->area->area_tag);
hassof390d2c2004-09-10 20:48:21 +0000975 }
976 return ISIS_WARNING;
jardineb5d44e2003-12-23 08:09:43 +0000977 }
jardineb5d44e2003-12-23 08:09:43 +0000978#endif
979 /*
980 * Fill the header
981 */
982 hdr.circuit_t = stream_getc (circuit->rcv_stream);
983 stream_get (hdr.source_id, circuit->rcv_stream, ISIS_SYS_ID_LEN);
984 hdr.hold_time = stream_getw (circuit->rcv_stream);
hassof390d2c2004-09-10 20:48:21 +0000985 hdr.pdu_len = stream_getw (circuit->rcv_stream);
986 hdr.prio = stream_getc (circuit->rcv_stream);
jardineb5d44e2003-12-23 08:09:43 +0000987 stream_get (hdr.lan_id, circuit->rcv_stream, ISIS_SYS_ID_LEN + 1);
988
Avneesh Sachdeva22ab5a2012-05-05 23:50:30 -0700989 if (hdr.pdu_len < (ISIS_FIXED_HDR_LEN + ISIS_LANHELLO_HDRLEN) ||
990 hdr.pdu_len > ISO_MTU(circuit) ||
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -0700991 hdr.pdu_len > stream_get_endp (circuit->rcv_stream))
hassof390d2c2004-09-10 20:48:21 +0000992 {
Josh Bailey3f045a02012-03-24 08:35:20 -0700993 zlog_warn ("ISIS-Adj (%s): Rcvd LAN IIH from (%s) with "
994 "invalid pdu length %d",
995 circuit->area->area_tag, circuit->interface->name,
996 hdr.pdu_len);
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -0700997 return ISIS_WARNING;
Josh Bailey3f045a02012-03-24 08:35:20 -0700998 }
999
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -07001000 /*
1001 * Set the stream endp to PDU length, ignoring additional padding
1002 * introduced by transport chips.
1003 */
1004 if (hdr.pdu_len < stream_get_endp (circuit->rcv_stream))
1005 stream_set_endp (circuit->rcv_stream, hdr.pdu_len);
1006
Josh Bailey3f045a02012-03-24 08:35:20 -07001007 if (hdr.circuit_t != IS_LEVEL_1 &&
1008 hdr.circuit_t != IS_LEVEL_2 &&
1009 hdr.circuit_t != IS_LEVEL_1_AND_2 &&
1010 (level & hdr.circuit_t) == 0)
1011 {
1012 zlog_err ("Level %d LAN Hello with Circuit Type %d", level,
1013 hdr.circuit_t);
hassof390d2c2004-09-10 20:48:21 +00001014 return ISIS_ERROR;
1015 }
Josh Bailey3f045a02012-03-24 08:35:20 -07001016
jardineb5d44e2003-12-23 08:09:43 +00001017 /*
1018 * Then get the tlvs
1019 */
1020 expected |= TLVFLAG_AUTH_INFO;
1021 expected |= TLVFLAG_AREA_ADDRS;
1022 expected |= TLVFLAG_LAN_NEIGHS;
1023 expected |= TLVFLAG_NLPID;
1024 expected |= TLVFLAG_IPV4_ADDR;
1025 expected |= TLVFLAG_IPV6_ADDR;
1026
Josh Bailey3f045a02012-03-24 08:35:20 -07001027 auth_tlv_offset = stream_get_getp (circuit->rcv_stream);
jardineb5d44e2003-12-23 08:09:43 +00001028 retval = parse_tlvs (circuit->area->area_tag,
Josh Bailey3f045a02012-03-24 08:35:20 -07001029 STREAM_PNT (circuit->rcv_stream),
1030 hdr.pdu_len - ISIS_LANHELLO_HDRLEN - ISIS_FIXED_HDR_LEN,
1031 &expected, &found, &tlvs,
1032 &auth_tlv_offset);
jardineb5d44e2003-12-23 08:09:43 +00001033
hassof390d2c2004-09-10 20:48:21 +00001034 if (retval > ISIS_WARNING)
1035 {
1036 zlog_warn ("parse_tlvs() failed");
1037 goto out;
1038 }
jardineb5d44e2003-12-23 08:09:43 +00001039
hassof390d2c2004-09-10 20:48:21 +00001040 if (!(found & TLVFLAG_AREA_ADDRS))
1041 {
1042 zlog_warn ("No Area addresses TLV in Level %d LAN IS to IS hello",
1043 level);
jardineb5d44e2003-12-23 08:09:43 +00001044 retval = ISIS_WARNING;
1045 goto out;
1046 }
hassof390d2c2004-09-10 20:48:21 +00001047
David Lamparterb72f3452012-11-27 01:10:26 +00001048 if (!(found & TLVFLAG_NLPID))
1049 {
1050 zlog_warn ("No supported protocols TLV in Level %d LAN IS to IS hello",
1051 level);
1052 retval = ISIS_WARNING;
1053 goto out;
1054 }
1055
Josh Bailey3f045a02012-03-24 08:35:20 -07001056 /* Verify authentication, either cleartext of HMAC MD5 */
hassof390d2c2004-09-10 20:48:21 +00001057 if (circuit->passwd.type)
1058 {
1059 if (!(found & TLVFLAG_AUTH_INFO) ||
Josh Bailey3f045a02012-03-24 08:35:20 -07001060 authentication_check (&tlvs.auth_info, &circuit->passwd,
1061 circuit->rcv_stream, auth_tlv_offset))
1062 {
1063 isis_event_auth_failure (circuit->area->area_tag,
1064 "LAN hello authentication failure",
1065 hdr.source_id);
1066 retval = ISIS_WARNING;
1067 goto out;
1068 }
hassof390d2c2004-09-10 20:48:21 +00001069 }
jardineb5d44e2003-12-23 08:09:43 +00001070
David Lamparter19f78ce2012-11-27 01:10:25 +00001071 if (!memcmp (hdr.source_id, isis->sysid, ISIS_SYS_ID_LEN))
1072 {
1073 zlog_warn ("ISIS-Adj (%s): duplicate system ID on interface %s",
1074 circuit->area->area_tag, circuit->interface->name);
1075 return ISIS_WARNING;
1076 }
1077
jardineb5d44e2003-12-23 08:09:43 +00001078 /*
1079 * Accept the level 1 adjacency only if a match between local and
1080 * remote area addresses is found
1081 */
Josh Bailey3f045a02012-03-24 08:35:20 -07001082 if (listcount (circuit->area->area_addrs) == 0 ||
1083 (level == IS_LEVEL_1 &&
1084 area_match (circuit->area->area_addrs, tlvs.area_addrs) == 0))
hassof390d2c2004-09-10 20:48:21 +00001085 {
1086 if (isis->debugs & DEBUG_ADJ_PACKETS)
1087 {
hasso529d65b2004-12-24 00:14:50 +00001088 zlog_debug ("ISIS-Adj (%s): Area mismatch, level %d IIH on %s",
1089 circuit->area->area_tag, level,
1090 circuit->interface->name);
hassof390d2c2004-09-10 20:48:21 +00001091 }
1092 retval = ISIS_OK;
1093 goto out;
jardineb5d44e2003-12-23 08:09:43 +00001094 }
jardineb5d44e2003-12-23 08:09:43 +00001095
1096 /*
1097 * it's own IIH PDU - discard silently
hassof390d2c2004-09-10 20:48:21 +00001098 */
1099 if (!memcmp (circuit->u.bc.snpa, ssnpa, ETH_ALEN))
1100 {
hasso529d65b2004-12-24 00:14:50 +00001101 zlog_debug ("ISIS-Adj (%s): it's own IIH PDU - discarded",
1102 circuit->area->area_tag);
jardineb5d44e2003-12-23 08:09:43 +00001103
hassof390d2c2004-09-10 20:48:21 +00001104 retval = ISIS_OK;
1105 goto out;
1106 }
jardineb5d44e2003-12-23 08:09:43 +00001107
1108 /*
1109 * check if it's own interface ip match iih ip addrs
1110 */
David Lamparter28a8cfc2014-06-29 13:48:18 +02001111 if (found & TLVFLAG_IPV4_ADDR)
hassof390d2c2004-09-10 20:48:21 +00001112 {
David Lamparter28a8cfc2014-06-29 13:48:18 +02001113 if (ip_match (circuit->ip_addrs, tlvs.ipv4_addrs))
1114 v4_usable = 1;
1115 else
1116 zlog_warn ("ISIS-Adj: IPv4 addresses present but no overlap "
1117 "in LAN IIH from %s\n", circuit->interface->name);
hassof390d2c2004-09-10 20:48:21 +00001118 }
David Lamparter28a8cfc2014-06-29 13:48:18 +02001119#ifndef HAVE_IPV6
1120 else /* !(found & TLVFLAG_IPV4_ADDR) */
1121 zlog_warn ("ISIS-Adj: no IPv4 in LAN IIH from %s "
1122 "(this isisd has no IPv6)\n", circuit->interface->name);
1123
1124#else
1125 if (found & TLVFLAG_IPV6_ADDR)
1126 {
1127 /* TBA: check that we have a linklocal ourselves? */
1128 struct listnode *node;
David Lamparterad2f92b2014-08-18 18:05:25 +02001129 struct in6_addr *ip;
David Lamparter28a8cfc2014-06-29 13:48:18 +02001130 for (ALL_LIST_ELEMENTS_RO (tlvs.ipv6_addrs, node, ip))
1131 if (IN6_IS_ADDR_LINKLOCAL (ip))
1132 {
1133 v6_usable = 1;
1134 break;
1135 }
1136
1137 if (!v6_usable)
1138 zlog_warn ("ISIS-Adj: IPv6 addresses present but no link-local "
1139 "in LAN IIH from %s\n", circuit->interface->name);
1140 }
1141
1142 if (!(found & (TLVFLAG_IPV4_ADDR | TLVFLAG_IPV6_ADDR)))
1143 zlog_warn ("ISIS-Adj: neither IPv4 nor IPv6 addr in LAN IIH from %s\n",
1144 circuit->interface->name);
1145#endif
1146
1147 if (!v6_usable && !v4_usable)
1148 {
1149 free_tlvs (&tlvs);
1150 return ISIS_WARNING;
1151 }
1152
jardineb5d44e2003-12-23 08:09:43 +00001153
1154 adj = isis_adj_lookup (hdr.source_id, circuit->u.bc.adjdb[level - 1]);
Josh Bailey3f045a02012-03-24 08:35:20 -07001155 if ((adj == NULL) || (memcmp(adj->snpa, ssnpa, ETH_ALEN)) ||
1156 (adj->level != level))
hassof390d2c2004-09-10 20:48:21 +00001157 {
Josh Bailey3f045a02012-03-24 08:35:20 -07001158 if (!adj)
1159 {
1160 /*
1161 * Do as in 8.4.2.5
1162 */
1163 adj = isis_new_adj (hdr.source_id, ssnpa, level, circuit);
1164 if (adj == NULL)
1165 {
1166 retval = ISIS_ERROR;
1167 goto out;
1168 }
1169 }
1170 else
1171 {
1172 if (ssnpa) {
1173 memcpy (adj->snpa, ssnpa, 6);
1174 } else {
1175 memset (adj->snpa, ' ', 6);
1176 }
1177 adj->level = level;
1178 }
hassof390d2c2004-09-10 20:48:21 +00001179 isis_adj_state_change (adj, ISIS_ADJ_INITIALIZING, NULL);
jardineb5d44e2003-12-23 08:09:43 +00001180
Josh Bailey3f045a02012-03-24 08:35:20 -07001181 if (level == IS_LEVEL_1)
1182 adj->sys_type = ISIS_SYSTYPE_L1_IS;
hassof390d2c2004-09-10 20:48:21 +00001183 else
Josh Bailey3f045a02012-03-24 08:35:20 -07001184 adj->sys_type = ISIS_SYSTYPE_L2_IS;
hassof390d2c2004-09-10 20:48:21 +00001185 list_delete_all_node (circuit->u.bc.lan_neighs[level - 1]);
1186 isis_adj_build_neigh_list (circuit->u.bc.adjdb[level - 1],
Josh Bailey3f045a02012-03-24 08:35:20 -07001187 circuit->u.bc.lan_neighs[level - 1]);
jardineb5d44e2003-12-23 08:09:43 +00001188 }
jardineb5d44e2003-12-23 08:09:43 +00001189
hassoa211d652004-09-20 14:55:29 +00001190 if(adj->dis_record[level-1].dis==ISIS_IS_DIS)
1191 switch (level)
1192 {
1193 case 1:
1194 if (memcmp (circuit->u.bc.l1_desig_is, hdr.lan_id, ISIS_SYS_ID_LEN + 1))
1195 {
Josh Bailey3f045a02012-03-24 08:35:20 -07001196 thread_add_event (master, isis_event_dis_status_change, circuit, 0);
hasso64a7afd2004-09-14 11:05:13 +00001197 memcpy (&circuit->u.bc.l1_desig_is, hdr.lan_id,
1198 ISIS_SYS_ID_LEN + 1);
hassoa211d652004-09-20 14:55:29 +00001199 }
1200 break;
1201 case 2:
1202 if (memcmp (circuit->u.bc.l2_desig_is, hdr.lan_id, ISIS_SYS_ID_LEN + 1))
1203 {
Josh Bailey3f045a02012-03-24 08:35:20 -07001204 thread_add_event (master, isis_event_dis_status_change, circuit, 0);
hasso64a7afd2004-09-14 11:05:13 +00001205 memcpy (&circuit->u.bc.l2_desig_is, hdr.lan_id,
1206 ISIS_SYS_ID_LEN + 1);
hassoa211d652004-09-20 14:55:29 +00001207 }
1208 break;
1209 }
jardineb5d44e2003-12-23 08:09:43 +00001210
1211 adj->hold_time = hdr.hold_time;
hassof390d2c2004-09-10 20:48:21 +00001212 adj->last_upd = time (NULL);
1213 adj->prio[level - 1] = hdr.prio;
jardineb5d44e2003-12-23 08:09:43 +00001214
1215 memcpy (adj->lanid, hdr.lan_id, ISIS_SYS_ID_LEN + 1);
1216
Josh Bailey3f045a02012-03-24 08:35:20 -07001217 tlvs_to_adj_area_addrs (&tlvs, adj);
1218
jardineb5d44e2003-12-23 08:09:43 +00001219 /* which protocol are spoken ??? */
David Lamparterb72f3452012-11-27 01:10:26 +00001220 if (tlvs_to_adj_nlpids (&tlvs, adj))
1221 {
1222 retval = ISIS_WARNING;
1223 goto out;
1224 }
jardineb5d44e2003-12-23 08:09:43 +00001225
1226 /* we need to copy addresses to the adj */
hassof390d2c2004-09-10 20:48:21 +00001227 if (found & TLVFLAG_IPV4_ADDR)
jardineb5d44e2003-12-23 08:09:43 +00001228 tlvs_to_adj_ipv4_addrs (&tlvs, adj);
1229
1230#ifdef HAVE_IPV6
hassof390d2c2004-09-10 20:48:21 +00001231 if (found & TLVFLAG_IPV6_ADDR)
jardineb5d44e2003-12-23 08:09:43 +00001232 tlvs_to_adj_ipv6_addrs (&tlvs, adj);
1233#endif /* HAVE_IPV6 */
1234
1235 adj->circuit_t = hdr.circuit_t;
1236
1237 /* lets take care of the expiry */
hassof390d2c2004-09-10 20:48:21 +00001238 THREAD_TIMER_OFF (adj->t_expire);
1239 THREAD_TIMER_ON (master, adj->t_expire, isis_adj_expire, adj,
Josh Bailey3f045a02012-03-24 08:35:20 -07001240 (long) adj->hold_time);
jardineb5d44e2003-12-23 08:09:43 +00001241
1242 /*
1243 * If the snpa for this circuit is found from LAN Neighbours TLV
1244 * we have two-way communication -> adjacency can be put to state "up"
1245 */
1246
hassof390d2c2004-09-10 20:48:21 +00001247 if (found & TLVFLAG_LAN_NEIGHS)
Josh Bailey3f045a02012-03-24 08:35:20 -07001248 {
1249 if (adj->adj_state != ISIS_ADJ_UP)
hassof390d2c2004-09-10 20:48:21 +00001250 {
Josh Bailey3f045a02012-03-24 08:35:20 -07001251 for (ALL_LIST_ELEMENTS_RO (tlvs.lan_neighs, node, snpa))
1252 {
1253 if (!memcmp (snpa, circuit->u.bc.snpa, ETH_ALEN))
1254 {
1255 isis_adj_state_change (adj, ISIS_ADJ_UP,
1256 "own SNPA found in LAN Neighbours TLV");
1257 }
1258 }
jardineb5d44e2003-12-23 08:09:43 +00001259 }
Josh Bailey3f045a02012-03-24 08:35:20 -07001260 else
1261 {
1262 int found = 0;
1263 for (ALL_LIST_ELEMENTS_RO (tlvs.lan_neighs, node, snpa))
1264 if (!memcmp (snpa, circuit->u.bc.snpa, ETH_ALEN))
1265 {
1266 found = 1;
1267 break;
1268 }
1269 if (found == 0)
1270 isis_adj_state_change (adj, ISIS_ADJ_INITIALIZING,
1271 "own SNPA not found in LAN Neighbours TLV");
1272 }
1273 }
1274 else if (adj->adj_state == ISIS_ADJ_UP)
1275 {
1276 isis_adj_state_change (adj, ISIS_ADJ_INITIALIZING,
1277 "no LAN Neighbours TLV found");
1278 }
jardineb5d44e2003-12-23 08:09:43 +00001279
hassof390d2c2004-09-10 20:48:21 +00001280out:
hassof390d2c2004-09-10 20:48:21 +00001281 if (isis->debugs & DEBUG_ADJ_PACKETS)
1282 {
hasso529d65b2004-12-24 00:14:50 +00001283 zlog_debug ("ISIS-Adj (%s): Rcvd L%d LAN IIH from %s on %s, cirType %s, "
David Lamparter01da6172015-04-10 09:10:11 +02001284 "cirID %u, length %zd",
hasso529d65b2004-12-24 00:14:50 +00001285 circuit->area->area_tag,
1286 level, snpa_print (ssnpa), circuit->interface->name,
Josh Bailey3f045a02012-03-24 08:35:20 -07001287 circuit_t2string (circuit->is_type),
hasso29e50b22005-09-01 18:18:47 +00001288 circuit->circuit_id,
Josh Bailey3f045a02012-03-24 08:35:20 -07001289 stream_get_endp (circuit->rcv_stream));
hassof390d2c2004-09-10 20:48:21 +00001290 }
jardineb5d44e2003-12-23 08:09:43 +00001291
1292 free_tlvs (&tlvs);
1293
1294 return retval;
1295}
1296
1297/*
1298 * Process Level 1/2 Link State
1299 * ISO - 10589
1300 * Section 7.3.15.1 - Action on receipt of a link state PDU
hassof390d2c2004-09-10 20:48:21 +00001301 */
1302static int
1303process_lsp (int level, struct isis_circuit *circuit, u_char * ssnpa)
jardineb5d44e2003-12-23 08:09:43 +00001304{
1305 struct isis_link_state_hdr *hdr;
1306 struct isis_adjacency *adj = NULL;
1307 struct isis_lsp *lsp, *lsp0 = NULL;
1308 int retval = ISIS_OK, comp = 0;
1309 u_char lspid[ISIS_SYS_ID_LEN + 2];
1310 struct isis_passwd *passwd;
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -07001311 uint16_t pdu_len;
jardineb5d44e2003-12-23 08:09:43 +00001312
Josh Bailey3f045a02012-03-24 08:35:20 -07001313 if (isis->debugs & DEBUG_UPDATE_PACKETS)
1314 {
1315 zlog_debug ("ISIS-Upd (%s): Rcvd L%d LSP on %s, cirType %s, cirID %u",
1316 circuit->area->area_tag, level, circuit->interface->name,
1317 circuit_t2string (circuit->is_type), circuit->circuit_id);
1318 if (isis->debugs & DEBUG_PACKET_DUMP)
1319 zlog_dump_data (STREAM_DATA (circuit->rcv_stream),
1320 stream_get_endp (circuit->rcv_stream));
1321 }
1322
hassof390d2c2004-09-10 20:48:21 +00001323 if ((stream_get_endp (circuit->rcv_stream) -
1324 stream_get_getp (circuit->rcv_stream)) < ISIS_LSP_HDR_LEN)
1325 {
1326 zlog_warn ("Packet too short");
1327 return ISIS_WARNING;
1328 }
jardineb5d44e2003-12-23 08:09:43 +00001329
1330 /* Reference the header */
hassof390d2c2004-09-10 20:48:21 +00001331 hdr = (struct isis_link_state_hdr *) STREAM_PNT (circuit->rcv_stream);
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -07001332 pdu_len = ntohs (hdr->pdu_len);
1333
1334 /* lsp length check */
Avneesh Sachdeva22ab5a2012-05-05 23:50:30 -07001335 if (pdu_len < (ISIS_FIXED_HDR_LEN + ISIS_LSP_HDR_LEN) ||
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -07001336 pdu_len > ISO_MTU(circuit) ||
1337 pdu_len > stream_get_endp (circuit->rcv_stream))
1338 {
1339 zlog_debug ("ISIS-Upd (%s): LSP %s invalid LSP length %d",
1340 circuit->area->area_tag,
1341 rawlspid_print (hdr->lsp_id), pdu_len);
1342
1343 return ISIS_WARNING;
1344 }
1345
1346 /*
1347 * Set the stream endp to PDU length, ignoring additional padding
1348 * introduced by transport chips.
1349 */
1350 if (pdu_len < stream_get_endp (circuit->rcv_stream))
1351 stream_set_endp (circuit->rcv_stream, pdu_len);
jardineb5d44e2003-12-23 08:09:43 +00001352
hassof390d2c2004-09-10 20:48:21 +00001353 if (isis->debugs & DEBUG_UPDATE_PACKETS)
1354 {
hasso529d65b2004-12-24 00:14:50 +00001355 zlog_debug ("ISIS-Upd (%s): Rcvd L%d LSP %s, seq 0x%08x, cksum 0x%04x, "
Josh Bailey3f045a02012-03-24 08:35:20 -07001356 "lifetime %us, len %u, on %s",
hasso529d65b2004-12-24 00:14:50 +00001357 circuit->area->area_tag,
1358 level,
1359 rawlspid_print (hdr->lsp_id),
1360 ntohl (hdr->seq_num),
1361 ntohs (hdr->checksum),
1362 ntohs (hdr->rem_lifetime),
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -07001363 pdu_len,
paul15935e92005-05-03 09:27:23 +00001364 circuit->interface->name);
hassof390d2c2004-09-10 20:48:21 +00001365 }
jardineb5d44e2003-12-23 08:09:43 +00001366
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -07001367 /* lsp is_type check */
1368 if ((hdr->lsp_bits & IS_LEVEL_1_AND_2) != IS_LEVEL_1 &&
1369 (hdr->lsp_bits & IS_LEVEL_1_AND_2) != IS_LEVEL_1_AND_2)
Josh Bailey3f045a02012-03-24 08:35:20 -07001370 {
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -07001371 zlog_debug ("ISIS-Upd (%s): LSP %s invalid LSP is type %x",
Josh Bailey3f045a02012-03-24 08:35:20 -07001372 circuit->area->area_tag,
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -07001373 rawlspid_print (hdr->lsp_id), hdr->lsp_bits);
1374 /* continue as per RFC1122 Be liberal in what you accept, and
1375 * conservative in what you send */
Josh Bailey3f045a02012-03-24 08:35:20 -07001376 }
jardineb5d44e2003-12-23 08:09:43 +00001377
1378 /* Checksum sanity check - FIXME: move to correct place */
1379 /* 12 = sysid+pdu+remtime */
hassof390d2c2004-09-10 20:48:21 +00001380 if (iso_csum_verify (STREAM_PNT (circuit->rcv_stream) + 4,
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -07001381 pdu_len - 12, &hdr->checksum))
hassof390d2c2004-09-10 20:48:21 +00001382 {
hasso529d65b2004-12-24 00:14:50 +00001383 zlog_debug ("ISIS-Upd (%s): LSP %s invalid LSP checksum 0x%04x",
1384 circuit->area->area_tag,
1385 rawlspid_print (hdr->lsp_id), ntohs (hdr->checksum));
jardineb5d44e2003-12-23 08:09:43 +00001386
hassof390d2c2004-09-10 20:48:21 +00001387 return ISIS_WARNING;
1388 }
jardineb5d44e2003-12-23 08:09:43 +00001389
1390 /* 7.3.15.1 a) 1 - external domain circuit will discard lsps */
hassof390d2c2004-09-10 20:48:21 +00001391 if (circuit->ext_domain)
1392 {
hasso529d65b2004-12-24 00:14:50 +00001393 zlog_debug
hassof390d2c2004-09-10 20:48:21 +00001394 ("ISIS-Upd (%s): LSP %s received at level %d over circuit with "
1395 "externalDomain = true", circuit->area->area_tag,
1396 rawlspid_print (hdr->lsp_id), level);
jardineb5d44e2003-12-23 08:09:43 +00001397
hassof390d2c2004-09-10 20:48:21 +00001398 return ISIS_WARNING;
1399 }
jardineb5d44e2003-12-23 08:09:43 +00001400
1401 /* 7.3.15.1 a) 2,3 - manualL2OnlyMode not implemented */
Josh Bailey3f045a02012-03-24 08:35:20 -07001402 if (!accept_level (level, circuit->is_type))
hassof390d2c2004-09-10 20:48:21 +00001403 {
hasso529d65b2004-12-24 00:14:50 +00001404 zlog_debug ("ISIS-Upd (%s): LSP %s received at level %d over circuit of"
1405 " type %s",
1406 circuit->area->area_tag,
1407 rawlspid_print (hdr->lsp_id),
Josh Bailey3f045a02012-03-24 08:35:20 -07001408 level, circuit_t2string (circuit->is_type));
jardineb5d44e2003-12-23 08:09:43 +00001409
hassof390d2c2004-09-10 20:48:21 +00001410 return ISIS_WARNING;
1411 }
jardineb5d44e2003-12-23 08:09:43 +00001412
1413 /* 7.3.15.1 a) 4 - need to make sure IDLength matches */
1414
1415 /* 7.3.15.1 a) 5 - maximum area match, can be ommited since we only use 3 */
1416
1417 /* 7.3.15.1 a) 7 - password check */
Josh Bailey3f045a02012-03-24 08:35:20 -07001418 (level == IS_LEVEL_1) ? (passwd = &circuit->area->area_passwd) :
1419 (passwd = &circuit->area->domain_passwd);
hassof390d2c2004-09-10 20:48:21 +00001420 if (passwd->type)
1421 {
Josh Bailey3f045a02012-03-24 08:35:20 -07001422 if (lsp_authentication_check (circuit->rcv_stream, circuit->area,
1423 level, passwd))
hassof390d2c2004-09-10 20:48:21 +00001424 {
1425 isis_event_auth_failure (circuit->area->area_tag,
1426 "LSP authentication failure", hdr->lsp_id);
1427 return ISIS_WARNING;
1428 }
jardineb5d44e2003-12-23 08:09:43 +00001429 }
jardineb5d44e2003-12-23 08:09:43 +00001430 /* Find the LSP in our database and compare it to this Link State header */
1431 lsp = lsp_search (hdr->lsp_id, circuit->area->lspdb[level - 1]);
1432 if (lsp)
hassof390d2c2004-09-10 20:48:21 +00001433 comp = lsp_compare (circuit->area->area_tag, lsp, hdr->seq_num,
1434 hdr->checksum, hdr->rem_lifetime);
1435 if (lsp && (lsp->own_lsp
jardineb5d44e2003-12-23 08:09:43 +00001436#ifdef TOPOLOGY_GENERATE
hassof390d2c2004-09-10 20:48:21 +00001437 || lsp->from_topology
jardineb5d44e2003-12-23 08:09:43 +00001438#endif /* TOPOLOGY_GENERATE */
hassof390d2c2004-09-10 20:48:21 +00001439 ))
jardineb5d44e2003-12-23 08:09:43 +00001440 goto dontcheckadj;
1441
1442 /* 7.3.15.1 a) 6 - Must check that we have an adjacency of the same level */
1443 /* for broadcast circuits, snpa should be compared */
jardineb5d44e2003-12-23 08:09:43 +00001444
hassof390d2c2004-09-10 20:48:21 +00001445 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
1446 {
1447 adj = isis_adj_lookup_snpa (ssnpa, circuit->u.bc.adjdb[level - 1]);
1448 if (!adj)
1449 {
hasso529d65b2004-12-24 00:14:50 +00001450 zlog_debug ("(%s): DS ======= LSP %s, seq 0x%08x, cksum 0x%04x, "
1451 "lifetime %us on %s",
1452 circuit->area->area_tag,
1453 rawlspid_print (hdr->lsp_id),
1454 ntohl (hdr->seq_num),
1455 ntohs (hdr->checksum),
1456 ntohs (hdr->rem_lifetime), circuit->interface->name);
hassof390d2c2004-09-10 20:48:21 +00001457 return ISIS_WARNING; /* Silently discard */
1458 }
jardineb5d44e2003-12-23 08:09:43 +00001459 }
jardineb5d44e2003-12-23 08:09:43 +00001460 /* for non broadcast, we just need to find same level adj */
hassof390d2c2004-09-10 20:48:21 +00001461 else
1462 {
1463 /* If no adj, or no sharing of level */
1464 if (!circuit->u.p2p.neighbor)
1465 {
1466 return ISIS_OK; /* Silently discard */
1467 }
1468 else
1469 {
Josh Bailey3f045a02012-03-24 08:35:20 -07001470 if (((level == IS_LEVEL_1) &&
hassof390d2c2004-09-10 20:48:21 +00001471 (circuit->u.p2p.neighbor->adj_usage == ISIS_ADJ_LEVEL2)) ||
Josh Bailey3f045a02012-03-24 08:35:20 -07001472 ((level == IS_LEVEL_2) &&
hassof390d2c2004-09-10 20:48:21 +00001473 (circuit->u.p2p.neighbor->adj_usage == ISIS_ADJ_LEVEL1)))
1474 return ISIS_WARNING; /* Silently discard */
Josh Bailey3f045a02012-03-24 08:35:20 -07001475 adj = circuit->u.p2p.neighbor;
hassof390d2c2004-09-10 20:48:21 +00001476 }
jardineb5d44e2003-12-23 08:09:43 +00001477 }
Josh Bailey3f045a02012-03-24 08:35:20 -07001478
hassof390d2c2004-09-10 20:48:21 +00001479dontcheckadj:
jardineb5d44e2003-12-23 08:09:43 +00001480 /* 7.3.15.1 a) 7 - Passwords for level 1 - not implemented */
1481
1482 /* 7.3.15.1 a) 8 - Passwords for level 2 - not implemented */
1483
hassof390d2c2004-09-10 20:48:21 +00001484 /* 7.3.15.1 a) 9 - OriginatingLSPBufferSize - not implemented FIXME: do it */
jardineb5d44e2003-12-23 08:09:43 +00001485
hassof390d2c2004-09-10 20:48:21 +00001486 /* 7.3.15.1 b) - If the remaining life time is 0, we perform 7.3.16.4 */
1487 if (hdr->rem_lifetime == 0)
1488 {
1489 if (!lsp)
1490 {
1491 /* 7.3.16.4 a) 1) No LSP in db -> send an ack, but don't save */
1492 /* only needed on explicit update, eg - p2p */
1493 if (circuit->circ_type == CIRCUIT_T_P2P)
1494 ack_lsp (hdr, circuit, level);
1495 return retval; /* FIXME: do we need a purge? */
1496 }
1497 else
1498 {
1499 if (memcmp (hdr->lsp_id, isis->sysid, ISIS_SYS_ID_LEN))
1500 {
1501 /* LSP by some other system -> do 7.3.16.4 b) */
1502 /* 7.3.16.4 b) 1) */
1503 if (comp == LSP_NEWER)
1504 {
Josh Bailey3f045a02012-03-24 08:35:20 -07001505 lsp_update (lsp, circuit->rcv_stream, circuit->area, level);
hassof390d2c2004-09-10 20:48:21 +00001506 /* ii */
Josh Bailey3f045a02012-03-24 08:35:20 -07001507 lsp_set_all_srmflags (lsp);
hassof390d2c2004-09-10 20:48:21 +00001508 /* iii */
1509 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
1510 /* v */
1511 ISIS_FLAGS_CLEAR_ALL (lsp->SSNflags); /* FIXME: OTHER than c */
1512 /* iv */
1513 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1514 ISIS_SET_FLAG (lsp->SSNflags, circuit);
jardineb5d44e2003-12-23 08:09:43 +00001515
hassof390d2c2004-09-10 20:48:21 +00001516 } /* 7.3.16.4 b) 2) */
1517 else if (comp == LSP_EQUAL)
1518 {
1519 /* i */
1520 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
1521 /* ii */
1522 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1523 ISIS_SET_FLAG (lsp->SSNflags, circuit);
1524 } /* 7.3.16.4 b) 3) */
1525 else
1526 {
1527 ISIS_SET_FLAG (lsp->SRMflags, circuit);
1528 ISIS_CLEAR_FLAG (lsp->SSNflags, circuit);
1529 }
1530 }
Josh Bailey3f045a02012-03-24 08:35:20 -07001531 else if (lsp->lsp_header->rem_lifetime != 0)
1532 {
1533 /* our own LSP -> 7.3.16.4 c) */
1534 if (comp == LSP_NEWER)
1535 {
1536 lsp_inc_seqnum (lsp, ntohl (hdr->seq_num));
1537 lsp_set_all_srmflags (lsp);
1538 }
1539 else
1540 {
1541 ISIS_SET_FLAG (lsp->SRMflags, circuit);
1542 ISIS_CLEAR_FLAG (lsp->SSNflags, circuit);
1543 }
1544 if (isis->debugs & DEBUG_UPDATE_PACKETS)
1545 zlog_debug ("ISIS-Upd (%s): (1) re-originating LSP %s new "
1546 "seq 0x%08x", circuit->area->area_tag,
1547 rawlspid_print (hdr->lsp_id),
1548 ntohl (lsp->lsp_header->seq_num));
1549 }
hassof390d2c2004-09-10 20:48:21 +00001550 }
1551 return retval;
jardineb5d44e2003-12-23 08:09:43 +00001552 }
jardineb5d44e2003-12-23 08:09:43 +00001553 /* 7.3.15.1 c) - If this is our own lsp and we don't have it initiate a
1554 * purge */
hassof390d2c2004-09-10 20:48:21 +00001555 if (memcmp (hdr->lsp_id, isis->sysid, ISIS_SYS_ID_LEN) == 0)
1556 {
1557 if (!lsp)
1558 {
1559 /* 7.3.16.4: initiate a purge */
1560 lsp_purge_non_exist (hdr, circuit->area);
1561 return ISIS_OK;
1562 }
1563 /* 7.3.15.1 d) - If this is our own lsp and we have it */
1564
1565 /* In 7.3.16.1, If an Intermediate system R somewhere in the domain
1566 * has information that the current sequence number for source S is
1567 * "greater" than that held by S, ... */
1568
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -07001569 if (ntohl (hdr->seq_num) > ntohl (lsp->lsp_header->seq_num))
hassof390d2c2004-09-10 20:48:21 +00001570 {
1571 /* 7.3.16.1 */
Josh Bailey3f045a02012-03-24 08:35:20 -07001572 lsp_inc_seqnum (lsp, ntohl (hdr->seq_num));
hassoc89c05d2005-09-04 21:36:36 +00001573 if (isis->debugs & DEBUG_UPDATE_PACKETS)
1574 zlog_debug ("ISIS-Upd (%s): (2) re-originating LSP %s new seq "
1575 "0x%08x", circuit->area->area_tag,
1576 rawlspid_print (hdr->lsp_id),
1577 ntohl (lsp->lsp_header->seq_num));
hassof390d2c2004-09-10 20:48:21 +00001578 }
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -07001579 /* If the received LSP is older or equal,
1580 * resend the LSP which will act as ACK */
1581 lsp_set_all_srmflags (lsp);
jardineb5d44e2003-12-23 08:09:43 +00001582 }
hassof390d2c2004-09-10 20:48:21 +00001583 else
1584 {
1585 /* 7.3.15.1 e) - This lsp originated on another system */
jardineb5d44e2003-12-23 08:09:43 +00001586
hassof390d2c2004-09-10 20:48:21 +00001587 /* 7.3.15.1 e) 1) LSP newer than the one in db or no LSP in db */
1588 if ((!lsp || comp == LSP_NEWER))
1589 {
hassof390d2c2004-09-10 20:48:21 +00001590 /*
1591 * If this lsp is a frag, need to see if we have zero lsp present
1592 */
1593 if (LSP_FRAGMENT (hdr->lsp_id) != 0)
1594 {
1595 memcpy (lspid, hdr->lsp_id, ISIS_SYS_ID_LEN + 1);
1596 LSP_FRAGMENT (lspid) = 0;
1597 lsp0 = lsp_search (lspid, circuit->area->lspdb[level - 1]);
1598 if (!lsp0)
1599 {
Josh Bailey3f045a02012-03-24 08:35:20 -07001600 zlog_debug ("Got lsp frag, while zero lsp not in database");
hassof390d2c2004-09-10 20:48:21 +00001601 return ISIS_OK;
1602 }
1603 }
Josh Bailey3f045a02012-03-24 08:35:20 -07001604 /* i */
1605 if (!lsp)
1606 {
1607 lsp = lsp_new_from_stream_ptr (circuit->rcv_stream,
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -07001608 pdu_len, lsp0,
Josh Bailey3f045a02012-03-24 08:35:20 -07001609 circuit->area, level);
1610 lsp_insert (lsp, circuit->area->lspdb[level - 1]);
1611 }
1612 else /* exists, so we overwrite */
1613 {
1614 lsp_update (lsp, circuit->rcv_stream, circuit->area, level);
1615 }
hassof390d2c2004-09-10 20:48:21 +00001616 /* ii */
Josh Bailey3f045a02012-03-24 08:35:20 -07001617 lsp_set_all_srmflags (lsp);
hassof390d2c2004-09-10 20:48:21 +00001618 /* iii */
1619 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
jardineb5d44e2003-12-23 08:09:43 +00001620
hassof390d2c2004-09-10 20:48:21 +00001621 /* iv */
1622 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1623 ISIS_SET_FLAG (lsp->SSNflags, circuit);
1624 /* FIXME: v) */
1625 }
1626 /* 7.3.15.1 e) 2) LSP equal to the one in db */
1627 else if (comp == LSP_EQUAL)
1628 {
1629 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
Josh Bailey3f045a02012-03-24 08:35:20 -07001630 lsp_update (lsp, circuit->rcv_stream, circuit->area, level);
hassof390d2c2004-09-10 20:48:21 +00001631 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
Josh Bailey3f045a02012-03-24 08:35:20 -07001632 ISIS_SET_FLAG (lsp->SSNflags, circuit);
hassof390d2c2004-09-10 20:48:21 +00001633 }
1634 /* 7.3.15.1 e) 3) LSP older than the one in db */
1635 else
1636 {
1637 ISIS_SET_FLAG (lsp->SRMflags, circuit);
1638 ISIS_CLEAR_FLAG (lsp->SSNflags, circuit);
1639 }
jardineb5d44e2003-12-23 08:09:43 +00001640 }
jardineb5d44e2003-12-23 08:09:43 +00001641 return retval;
1642}
1643
1644/*
1645 * Process Sequence Numbers
1646 * ISO - 10589
1647 * Section 7.3.15.2 - Action on receipt of a sequence numbers PDU
1648 */
1649
hasso92365882005-01-18 13:53:33 +00001650static int
hassof390d2c2004-09-10 20:48:21 +00001651process_snp (int snp_type, int level, struct isis_circuit *circuit,
1652 u_char * ssnpa)
jardineb5d44e2003-12-23 08:09:43 +00001653{
1654 int retval = ISIS_OK;
1655 int cmp, own_lsp;
1656 char typechar = ' ';
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -07001657 uint16_t pdu_len;
jardineb5d44e2003-12-23 08:09:43 +00001658 struct isis_adjacency *adj;
1659 struct isis_complete_seqnum_hdr *chdr = NULL;
1660 struct isis_partial_seqnum_hdr *phdr = NULL;
Josh Bailey3f045a02012-03-24 08:35:20 -07001661 uint32_t found = 0, expected = 0, auth_tlv_offset = 0;
jardineb5d44e2003-12-23 08:09:43 +00001662 struct isis_lsp *lsp;
1663 struct lsp_entry *entry;
paul1eb8ef22005-04-07 07:30:20 +00001664 struct listnode *node, *nnode;
1665 struct listnode *node2, *nnode2;
jardineb5d44e2003-12-23 08:09:43 +00001666 struct tlvs tlvs;
1667 struct list *lsp_list = NULL;
1668 struct isis_passwd *passwd;
1669
hassof390d2c2004-09-10 20:48:21 +00001670 if (snp_type == ISIS_SNP_CSNP_FLAG)
1671 {
1672 /* getting the header info */
1673 typechar = 'C';
1674 chdr =
1675 (struct isis_complete_seqnum_hdr *) STREAM_PNT (circuit->rcv_stream);
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -07001676 stream_forward_getp (circuit->rcv_stream, ISIS_CSNP_HDRLEN);
1677 pdu_len = ntohs (chdr->pdu_len);
Avneesh Sachdeva22ab5a2012-05-05 23:50:30 -07001678 if (pdu_len < (ISIS_FIXED_HDR_LEN + ISIS_CSNP_HDRLEN) ||
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -07001679 pdu_len > ISO_MTU(circuit) ||
1680 pdu_len > stream_get_endp (circuit->rcv_stream))
hassof390d2c2004-09-10 20:48:21 +00001681 {
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -07001682 zlog_warn ("Received a CSNP with bogus length %d", pdu_len);
1683 return ISIS_WARNING;
hassof390d2c2004-09-10 20:48:21 +00001684 }
jardineb5d44e2003-12-23 08:09:43 +00001685 }
hassof390d2c2004-09-10 20:48:21 +00001686 else
1687 {
1688 typechar = 'P';
1689 phdr =
1690 (struct isis_partial_seqnum_hdr *) STREAM_PNT (circuit->rcv_stream);
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -07001691 stream_forward_getp (circuit->rcv_stream, ISIS_PSNP_HDRLEN);
1692 pdu_len = ntohs (phdr->pdu_len);
Avneesh Sachdeva22ab5a2012-05-05 23:50:30 -07001693 if (pdu_len < (ISIS_FIXED_HDR_LEN + ISIS_PSNP_HDRLEN) ||
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -07001694 pdu_len > ISO_MTU(circuit) ||
1695 pdu_len > stream_get_endp (circuit->rcv_stream))
hassof390d2c2004-09-10 20:48:21 +00001696 {
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -07001697 zlog_warn ("Received a CSNP with bogus length %d", pdu_len);
1698 return ISIS_WARNING;
hassof390d2c2004-09-10 20:48:21 +00001699 }
jardineb5d44e2003-12-23 08:09:43 +00001700 }
jardineb5d44e2003-12-23 08:09:43 +00001701
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -07001702 /*
1703 * Set the stream endp to PDU length, ignoring additional padding
1704 * introduced by transport chips.
1705 */
1706 if (pdu_len < stream_get_endp (circuit->rcv_stream))
1707 stream_set_endp (circuit->rcv_stream, pdu_len);
1708
jardineb5d44e2003-12-23 08:09:43 +00001709 /* 7.3.15.2 a) 1 - external domain circuit will discard snp pdu */
hassof390d2c2004-09-10 20:48:21 +00001710 if (circuit->ext_domain)
1711 {
jardineb5d44e2003-12-23 08:09:43 +00001712
hasso529d65b2004-12-24 00:14:50 +00001713 zlog_debug ("ISIS-Snp (%s): Rcvd L%d %cSNP on %s, "
1714 "skipping: circuit externalDomain = true",
1715 circuit->area->area_tag,
1716 level, typechar, circuit->interface->name);
jardineb5d44e2003-12-23 08:09:43 +00001717
1718 return ISIS_OK;
1719 }
hassof390d2c2004-09-10 20:48:21 +00001720
1721 /* 7.3.15.2 a) 2,3 - manualL2OnlyMode not implemented */
Josh Bailey3f045a02012-03-24 08:35:20 -07001722 if (!accept_level (level, circuit->is_type))
hassof390d2c2004-09-10 20:48:21 +00001723 {
1724
hasso529d65b2004-12-24 00:14:50 +00001725 zlog_debug ("ISIS-Snp (%s): Rcvd L%d %cSNP on %s, "
1726 "skipping: circuit type %s does not match level %d",
1727 circuit->area->area_tag,
1728 level,
1729 typechar,
1730 circuit->interface->name,
Josh Bailey3f045a02012-03-24 08:35:20 -07001731 circuit_t2string (circuit->is_type), level);
hassof390d2c2004-09-10 20:48:21 +00001732
1733 return ISIS_OK;
1734 }
1735
1736 /* 7.3.15.2 a) 4 - not applicable for CSNP only PSNPs on broadcast */
1737 if ((snp_type == ISIS_SNP_PSNP_FLAG) &&
Josh Bailey3f045a02012-03-24 08:35:20 -07001738 (circuit->circ_type == CIRCUIT_T_BROADCAST) &&
1739 (!circuit->u.bc.is_dr[level - 1]))
hassof390d2c2004-09-10 20:48:21 +00001740 {
Josh Bailey3f045a02012-03-24 08:35:20 -07001741 zlog_debug ("ISIS-Snp (%s): Rcvd L%d %cSNP from %s on %s, "
1742 "skipping: we are not the DIS",
1743 circuit->area->area_tag,
1744 level,
1745 typechar, snpa_print (ssnpa), circuit->interface->name);
hassof390d2c2004-09-10 20:48:21 +00001746
Josh Bailey3f045a02012-03-24 08:35:20 -07001747 return ISIS_OK;
hassof390d2c2004-09-10 20:48:21 +00001748 }
jardineb5d44e2003-12-23 08:09:43 +00001749
1750 /* 7.3.15.2 a) 5 - need to make sure IDLength matches - already checked */
1751
1752 /* 7.3.15.2 a) 6 - maximum area match, can be ommited since we only use 3
1753 * - already checked */
1754
1755 /* 7.3.15.2 a) 7 - Must check that we have an adjacency of the same level */
1756 /* for broadcast circuits, snpa should be compared */
1757 /* FIXME : Do we need to check SNPA? */
hassof390d2c2004-09-10 20:48:21 +00001758 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
1759 {
1760 if (snp_type == ISIS_SNP_CSNP_FLAG)
1761 {
1762 adj =
1763 isis_adj_lookup (chdr->source_id, circuit->u.bc.adjdb[level - 1]);
1764 }
1765 else
1766 {
1767 /* a psnp on a broadcast, how lovely of Juniper :) */
1768 adj =
1769 isis_adj_lookup (phdr->source_id, circuit->u.bc.adjdb[level - 1]);
1770 }
1771 if (!adj)
1772 return ISIS_OK; /* Silently discard */
jardineb5d44e2003-12-23 08:09:43 +00001773 }
hassof390d2c2004-09-10 20:48:21 +00001774 else
1775 {
1776 if (!circuit->u.p2p.neighbor)
Josh Bailey3f045a02012-03-24 08:35:20 -07001777 {
1778 zlog_warn ("no p2p neighbor on circuit %s", circuit->interface->name);
1779 return ISIS_OK; /* Silently discard */
1780 }
hassof390d2c2004-09-10 20:48:21 +00001781 }
jardineb5d44e2003-12-23 08:09:43 +00001782
1783 /* 7.3.15.2 a) 8 - Passwords for level 1 - not implemented */
1784
1785 /* 7.3.15.2 a) 9 - Passwords for level 2 - not implemented */
1786
1787 memset (&tlvs, 0, sizeof (struct tlvs));
1788
1789 /* parse the SNP */
1790 expected |= TLVFLAG_LSP_ENTRIES;
1791 expected |= TLVFLAG_AUTH_INFO;
Josh Bailey3f045a02012-03-24 08:35:20 -07001792
1793 auth_tlv_offset = stream_get_getp (circuit->rcv_stream);
jardineb5d44e2003-12-23 08:09:43 +00001794 retval = parse_tlvs (circuit->area->area_tag,
hassof390d2c2004-09-10 20:48:21 +00001795 STREAM_PNT (circuit->rcv_stream),
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -07001796 pdu_len - stream_get_getp (circuit->rcv_stream),
Josh Bailey3f045a02012-03-24 08:35:20 -07001797 &expected, &found, &tlvs, &auth_tlv_offset);
jardineb5d44e2003-12-23 08:09:43 +00001798
hassof390d2c2004-09-10 20:48:21 +00001799 if (retval > ISIS_WARNING)
1800 {
1801 zlog_warn ("something went very wrong processing SNP");
1802 free_tlvs (&tlvs);
1803 return retval;
1804 }
jardineb5d44e2003-12-23 08:09:43 +00001805
Josh Bailey3f045a02012-03-24 08:35:20 -07001806 if (level == IS_LEVEL_1)
hasso1cbc5622005-01-01 10:29:51 +00001807 passwd = &circuit->area->area_passwd;
1808 else
1809 passwd = &circuit->area->domain_passwd;
1810
1811 if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_RECV))
hassof390d2c2004-09-10 20:48:21 +00001812 {
hasso1cbc5622005-01-01 10:29:51 +00001813 if (passwd->type)
Josh Bailey3f045a02012-03-24 08:35:20 -07001814 {
1815 if (!(found & TLVFLAG_AUTH_INFO) ||
1816 authentication_check (&tlvs.auth_info, passwd,
1817 circuit->rcv_stream, auth_tlv_offset))
1818 {
1819 isis_event_auth_failure (circuit->area->area_tag,
1820 "SNP authentication" " failure",
1821 phdr ? phdr->source_id :
1822 chdr->source_id);
1823 free_tlvs (&tlvs);
1824 return ISIS_OK;
1825 }
1826 }
hassof390d2c2004-09-10 20:48:21 +00001827 }
jardineb5d44e2003-12-23 08:09:43 +00001828
1829 /* debug isis snp-packets */
hassof390d2c2004-09-10 20:48:21 +00001830 if (isis->debugs & DEBUG_SNP_PACKETS)
1831 {
hasso529d65b2004-12-24 00:14:50 +00001832 zlog_debug ("ISIS-Snp (%s): Rcvd L%d %cSNP from %s on %s",
1833 circuit->area->area_tag,
1834 level,
1835 typechar, snpa_print (ssnpa), circuit->interface->name);
hassof390d2c2004-09-10 20:48:21 +00001836 if (tlvs.lsp_entries)
1837 {
hasso3fdb2dd2005-09-28 18:45:54 +00001838 for (ALL_LIST_ELEMENTS_RO (tlvs.lsp_entries, node, entry))
hassof390d2c2004-09-10 20:48:21 +00001839 {
hasso529d65b2004-12-24 00:14:50 +00001840 zlog_debug ("ISIS-Snp (%s): %cSNP entry %s, seq 0x%08x,"
1841 " cksum 0x%04x, lifetime %us",
1842 circuit->area->area_tag,
1843 typechar,
1844 rawlspid_print (entry->lsp_id),
1845 ntohl (entry->seq_num),
1846 ntohs (entry->checksum), ntohs (entry->rem_lifetime));
hassof390d2c2004-09-10 20:48:21 +00001847 }
1848 }
jardineb5d44e2003-12-23 08:09:43 +00001849 }
jardineb5d44e2003-12-23 08:09:43 +00001850
1851 /* 7.3.15.2 b) Actions on LSP_ENTRIES reported */
hassof390d2c2004-09-10 20:48:21 +00001852 if (tlvs.lsp_entries)
1853 {
hasso3fdb2dd2005-09-28 18:45:54 +00001854 for (ALL_LIST_ELEMENTS_RO (tlvs.lsp_entries, node, entry))
hassof390d2c2004-09-10 20:48:21 +00001855 {
1856 lsp = lsp_search (entry->lsp_id, circuit->area->lspdb[level - 1]);
1857 own_lsp = !memcmp (entry->lsp_id, isis->sysid, ISIS_SYS_ID_LEN);
1858 if (lsp)
1859 {
1860 /* 7.3.15.2 b) 1) is this LSP newer */
1861 cmp = lsp_compare (circuit->area->area_tag, lsp, entry->seq_num,
1862 entry->checksum, entry->rem_lifetime);
1863 /* 7.3.15.2 b) 2) if it equals, clear SRM on p2p */
1864 if (cmp == LSP_EQUAL)
1865 {
Josh Bailey3f045a02012-03-24 08:35:20 -07001866 /* if (circuit->circ_type != CIRCUIT_T_BROADCAST) */
1867 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
hassof390d2c2004-09-10 20:48:21 +00001868 }
Josh Bailey3f045a02012-03-24 08:35:20 -07001869 /* 7.3.15.2 b) 3) if it is older, clear SSN and set SRM */
hassof390d2c2004-09-10 20:48:21 +00001870 else if (cmp == LSP_OLDER)
1871 {
1872 ISIS_CLEAR_FLAG (lsp->SSNflags, circuit);
1873 ISIS_SET_FLAG (lsp->SRMflags, circuit);
1874 }
Josh Bailey3f045a02012-03-24 08:35:20 -07001875 /* 7.3.15.2 b) 4) if it is newer, set SSN and clear SRM on p2p */
hassof390d2c2004-09-10 20:48:21 +00001876 else
1877 {
hassof390d2c2004-09-10 20:48:21 +00001878 if (own_lsp)
1879 {
1880 lsp_inc_seqnum (lsp, ntohl (entry->seq_num));
1881 ISIS_SET_FLAG (lsp->SRMflags, circuit);
1882 }
1883 else
1884 {
1885 ISIS_SET_FLAG (lsp->SSNflags, circuit);
Josh Bailey3f045a02012-03-24 08:35:20 -07001886 /* if (circuit->circ_type != CIRCUIT_T_BROADCAST) */
1887 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
hassof390d2c2004-09-10 20:48:21 +00001888 }
1889 }
1890 }
1891 else
1892 {
1893 /* 7.3.15.2 b) 5) if it was not found, and all of those are not 0,
1894 * insert it and set SSN on it */
1895 if (entry->rem_lifetime && entry->checksum && entry->seq_num &&
1896 memcmp (entry->lsp_id, isis->sysid, ISIS_SYS_ID_LEN))
1897 {
1898 lsp = lsp_new (entry->lsp_id, ntohs (entry->rem_lifetime),
1899 0, 0, entry->checksum, level);
Josh Bailey3f045a02012-03-24 08:35:20 -07001900 lsp->area = circuit->area;
hassof390d2c2004-09-10 20:48:21 +00001901 lsp_insert (lsp, circuit->area->lspdb[level - 1]);
Josh Bailey3f045a02012-03-24 08:35:20 -07001902 ISIS_FLAGS_CLEAR_ALL (lsp->SRMflags);
hassof390d2c2004-09-10 20:48:21 +00001903 ISIS_SET_FLAG (lsp->SSNflags, circuit);
1904 }
1905 }
jardineb5d44e2003-12-23 08:09:43 +00001906 }
1907 }
jardineb5d44e2003-12-23 08:09:43 +00001908
1909 /* 7.3.15.2 c) on CSNP set SRM for all in range which were not reported */
hassof390d2c2004-09-10 20:48:21 +00001910 if (snp_type == ISIS_SNP_CSNP_FLAG)
1911 {
1912 /*
Josh Bailey3f045a02012-03-24 08:35:20 -07001913 * Build a list from our own LSP db bounded with
1914 * start_lsp_id and stop_lsp_id
hassof390d2c2004-09-10 20:48:21 +00001915 */
1916 lsp_list = list_new ();
1917 lsp_build_list_nonzero_ht (chdr->start_lsp_id, chdr->stop_lsp_id,
1918 lsp_list, circuit->area->lspdb[level - 1]);
jardineb5d44e2003-12-23 08:09:43 +00001919
hassof390d2c2004-09-10 20:48:21 +00001920 /* Fixme: Find a better solution */
1921 if (tlvs.lsp_entries)
1922 {
paul1eb8ef22005-04-07 07:30:20 +00001923 for (ALL_LIST_ELEMENTS (tlvs.lsp_entries, node, nnode, entry))
hassof390d2c2004-09-10 20:48:21 +00001924 {
paul1eb8ef22005-04-07 07:30:20 +00001925 for (ALL_LIST_ELEMENTS (lsp_list, node2, nnode2, lsp))
hassof390d2c2004-09-10 20:48:21 +00001926 {
1927 if (lsp_id_cmp (lsp->lsp_header->lsp_id, entry->lsp_id) == 0)
1928 {
1929 list_delete_node (lsp_list, node2);
1930 break;
1931 }
1932 }
1933 }
1934 }
1935 /* on remaining LSPs we set SRM (neighbor knew not of) */
hasso3fdb2dd2005-09-28 18:45:54 +00001936 for (ALL_LIST_ELEMENTS_RO (lsp_list, node, lsp))
hassof390d2c2004-09-10 20:48:21 +00001937 ISIS_SET_FLAG (lsp->SRMflags, circuit);
hassof390d2c2004-09-10 20:48:21 +00001938 /* lets free it */
Josh Bailey3f045a02012-03-24 08:35:20 -07001939 list_delete (lsp_list);
1940
jardineb5d44e2003-12-23 08:09:43 +00001941 }
jardineb5d44e2003-12-23 08:09:43 +00001942
1943 free_tlvs (&tlvs);
1944 return retval;
1945}
1946
hasso92365882005-01-18 13:53:33 +00001947static int
hassof390d2c2004-09-10 20:48:21 +00001948process_csnp (int level, struct isis_circuit *circuit, u_char * ssnpa)
jardineb5d44e2003-12-23 08:09:43 +00001949{
Josh Bailey3f045a02012-03-24 08:35:20 -07001950 if (isis->debugs & DEBUG_SNP_PACKETS)
1951 {
1952 zlog_debug ("ISIS-Snp (%s): Rcvd L%d CSNP on %s, cirType %s, cirID %u",
1953 circuit->area->area_tag, level, circuit->interface->name,
1954 circuit_t2string (circuit->is_type), circuit->circuit_id);
1955 if (isis->debugs & DEBUG_PACKET_DUMP)
1956 zlog_dump_data (STREAM_DATA (circuit->rcv_stream),
1957 stream_get_endp (circuit->rcv_stream));
1958 }
1959
jardineb5d44e2003-12-23 08:09:43 +00001960 /* Sanity check - FIXME: move to correct place */
hassof390d2c2004-09-10 20:48:21 +00001961 if ((stream_get_endp (circuit->rcv_stream) -
1962 stream_get_getp (circuit->rcv_stream)) < ISIS_CSNP_HDRLEN)
1963 {
1964 zlog_warn ("Packet too short ( < %d)", ISIS_CSNP_HDRLEN);
1965 return ISIS_WARNING;
1966 }
jardineb5d44e2003-12-23 08:09:43 +00001967
1968 return process_snp (ISIS_SNP_CSNP_FLAG, level, circuit, ssnpa);
1969}
1970
hasso92365882005-01-18 13:53:33 +00001971static int
hassof390d2c2004-09-10 20:48:21 +00001972process_psnp (int level, struct isis_circuit *circuit, u_char * ssnpa)
jardineb5d44e2003-12-23 08:09:43 +00001973{
Josh Bailey3f045a02012-03-24 08:35:20 -07001974 if (isis->debugs & DEBUG_SNP_PACKETS)
1975 {
1976 zlog_debug ("ISIS-Snp (%s): Rcvd L%d PSNP on %s, cirType %s, cirID %u",
1977 circuit->area->area_tag, level, circuit->interface->name,
1978 circuit_t2string (circuit->is_type), circuit->circuit_id);
1979 if (isis->debugs & DEBUG_PACKET_DUMP)
1980 zlog_dump_data (STREAM_DATA (circuit->rcv_stream),
1981 stream_get_endp (circuit->rcv_stream));
1982 }
1983
hassof390d2c2004-09-10 20:48:21 +00001984 if ((stream_get_endp (circuit->rcv_stream) -
1985 stream_get_getp (circuit->rcv_stream)) < ISIS_PSNP_HDRLEN)
1986 {
Josh Bailey3f045a02012-03-24 08:35:20 -07001987 zlog_warn ("Packet too short ( < %d)", ISIS_PSNP_HDRLEN);
hassof390d2c2004-09-10 20:48:21 +00001988 return ISIS_WARNING;
1989 }
jardineb5d44e2003-12-23 08:09:43 +00001990
1991 return process_snp (ISIS_SNP_PSNP_FLAG, level, circuit, ssnpa);
1992}
1993
jardineb5d44e2003-12-23 08:09:43 +00001994/*
jardineb5d44e2003-12-23 08:09:43 +00001995 * PDU Dispatcher
1996 */
1997
hasso92365882005-01-18 13:53:33 +00001998static int
hassof390d2c2004-09-10 20:48:21 +00001999isis_handle_pdu (struct isis_circuit *circuit, u_char * ssnpa)
jardineb5d44e2003-12-23 08:09:43 +00002000{
jardineb5d44e2003-12-23 08:09:43 +00002001 struct isis_fixed_hdr *hdr;
jardineb5d44e2003-12-23 08:09:43 +00002002
hassof390d2c2004-09-10 20:48:21 +00002003 int retval = ISIS_OK;
jardineb5d44e2003-12-23 08:09:43 +00002004
2005 /*
2006 * Let's first read data from stream to the header
2007 */
hassof390d2c2004-09-10 20:48:21 +00002008 hdr = (struct isis_fixed_hdr *) STREAM_DATA (circuit->rcv_stream);
jardineb5d44e2003-12-23 08:09:43 +00002009
hassof390d2c2004-09-10 20:48:21 +00002010 if ((hdr->idrp != ISO10589_ISIS) && (hdr->idrp != ISO9542_ESIS))
2011 {
Josh Bailey3f045a02012-03-24 08:35:20 -07002012 zlog_err ("Not an IS-IS or ES-IS packet IDRP=%02x", hdr->idrp);
hassof390d2c2004-09-10 20:48:21 +00002013 return ISIS_ERROR;
2014 }
jardineb5d44e2003-12-23 08:09:43 +00002015
2016 /* now we need to know if this is an ISO 9542 packet and
2017 * take real good care of it, waaa!
2018 */
hassof390d2c2004-09-10 20:48:21 +00002019 if (hdr->idrp == ISO9542_ESIS)
2020 {
Josh Bailey3f045a02012-03-24 08:35:20 -07002021 zlog_err ("No support for ES-IS packet IDRP=%02x", hdr->idrp);
2022 return ISIS_ERROR;
hassof390d2c2004-09-10 20:48:21 +00002023 }
Josh Bailey3f045a02012-03-24 08:35:20 -07002024 stream_set_getp (circuit->rcv_stream, ISIS_FIXED_HDR_LEN);
2025
jardineb5d44e2003-12-23 08:09:43 +00002026 /*
2027 * and then process it
2028 */
2029
hassof390d2c2004-09-10 20:48:21 +00002030 if (hdr->length < ISIS_MINIMUM_FIXED_HDR_LEN)
2031 {
2032 zlog_err ("Fixed header length = %d", hdr->length);
2033 return ISIS_ERROR;
2034 }
jardineb5d44e2003-12-23 08:09:43 +00002035
hassof390d2c2004-09-10 20:48:21 +00002036 if (hdr->version1 != 1)
2037 {
2038 zlog_warn ("Unsupported ISIS version %u", hdr->version1);
2039 return ISIS_WARNING;
2040 }
jardineb5d44e2003-12-23 08:09:43 +00002041 /* either 6 or 0 */
hassof390d2c2004-09-10 20:48:21 +00002042 if ((hdr->id_len != 0) && (hdr->id_len != ISIS_SYS_ID_LEN))
2043 {
2044 zlog_err
2045 ("IDFieldLengthMismatch: ID Length field in a received PDU %u, "
2046 "while the parameter for this IS is %u", hdr->id_len,
2047 ISIS_SYS_ID_LEN);
2048 return ISIS_ERROR;
2049 }
jardineb5d44e2003-12-23 08:09:43 +00002050
hassof390d2c2004-09-10 20:48:21 +00002051 if (hdr->version2 != 1)
2052 {
2053 zlog_warn ("Unsupported ISIS version %u", hdr->version2);
2054 return ISIS_WARNING;
2055 }
Josh Bailey3f045a02012-03-24 08:35:20 -07002056
2057 if (circuit->is_passive)
2058 {
2059 zlog_warn ("Received ISIS PDU on passive circuit %s",
2060 circuit->interface->name);
2061 return ISIS_WARNING;
2062 }
2063
jardineb5d44e2003-12-23 08:09:43 +00002064 /* either 3 or 0 */
hassof390d2c2004-09-10 20:48:21 +00002065 if ((hdr->max_area_addrs != 0)
2066 && (hdr->max_area_addrs != isis->max_area_addrs))
2067 {
2068 zlog_err ("maximumAreaAddressesMismatch: maximumAreaAdresses in a "
2069 "received PDU %u while the parameter for this IS is %u",
2070 hdr->max_area_addrs, isis->max_area_addrs);
2071 return ISIS_ERROR;
2072 }
jardineb5d44e2003-12-23 08:09:43 +00002073
hassof390d2c2004-09-10 20:48:21 +00002074 switch (hdr->pdu_type)
2075 {
2076 case L1_LAN_HELLO:
2077 retval = process_lan_hello (ISIS_LEVEL1, circuit, ssnpa);
2078 break;
2079 case L2_LAN_HELLO:
2080 retval = process_lan_hello (ISIS_LEVEL2, circuit, ssnpa);
2081 break;
2082 case P2P_HELLO:
2083 retval = process_p2p_hello (circuit);
2084 break;
2085 case L1_LINK_STATE:
2086 retval = process_lsp (ISIS_LEVEL1, circuit, ssnpa);
2087 break;
2088 case L2_LINK_STATE:
2089 retval = process_lsp (ISIS_LEVEL2, circuit, ssnpa);
2090 break;
2091 case L1_COMPLETE_SEQ_NUM:
2092 retval = process_csnp (ISIS_LEVEL1, circuit, ssnpa);
2093 break;
2094 case L2_COMPLETE_SEQ_NUM:
2095 retval = process_csnp (ISIS_LEVEL2, circuit, ssnpa);
2096 break;
2097 case L1_PARTIAL_SEQ_NUM:
2098 retval = process_psnp (ISIS_LEVEL1, circuit, ssnpa);
2099 break;
2100 case L2_PARTIAL_SEQ_NUM:
2101 retval = process_psnp (ISIS_LEVEL2, circuit, ssnpa);
2102 break;
2103 default:
2104 return ISIS_ERROR;
2105 }
jardineb5d44e2003-12-23 08:09:43 +00002106
2107 return retval;
2108}
2109
jardineb5d44e2003-12-23 08:09:43 +00002110#ifdef GNU_LINUX
2111int
2112isis_receive (struct thread *thread)
2113{
jardineb5d44e2003-12-23 08:09:43 +00002114 struct isis_circuit *circuit;
2115 u_char ssnpa[ETH_ALEN];
2116 int retval;
2117
2118 /*
2119 * Get the circuit
2120 */
2121 circuit = THREAD_ARG (thread);
2122 assert (circuit);
2123
2124 if (circuit->rcv_stream == NULL)
hassof390d2c2004-09-10 20:48:21 +00002125 circuit->rcv_stream = stream_new (ISO_MTU (circuit));
jardineb5d44e2003-12-23 08:09:43 +00002126 else
2127 stream_reset (circuit->rcv_stream);
2128
2129 retval = circuit->rx (circuit, ssnpa);
hassof390d2c2004-09-10 20:48:21 +00002130 circuit->t_read = NULL;
jardineb5d44e2003-12-23 08:09:43 +00002131
2132 if (retval == ISIS_OK)
2133 retval = isis_handle_pdu (circuit, ssnpa);
2134
2135 /*
2136 * prepare for next packet.
2137 */
Josh Bailey3f045a02012-03-24 08:35:20 -07002138 if (!circuit->is_passive)
2139 {
2140 THREAD_READ_ON (master, circuit->t_read, isis_receive, circuit,
2141 circuit->fd);
2142 }
jardineb5d44e2003-12-23 08:09:43 +00002143
2144 return retval;
2145}
2146
2147#else
2148int
2149isis_receive (struct thread *thread)
2150{
jardineb5d44e2003-12-23 08:09:43 +00002151 struct isis_circuit *circuit;
2152 u_char ssnpa[ETH_ALEN];
2153 int retval;
2154
2155 /*
2156 * Get the circuit
2157 */
2158 circuit = THREAD_ARG (thread);
2159 assert (circuit);
2160
hassof390d2c2004-09-10 20:48:21 +00002161 circuit->t_read = NULL;
jardineb5d44e2003-12-23 08:09:43 +00002162
2163 if (circuit->rcv_stream == NULL)
hassof390d2c2004-09-10 20:48:21 +00002164 circuit->rcv_stream = stream_new (ISO_MTU (circuit));
jardineb5d44e2003-12-23 08:09:43 +00002165 else
2166 stream_reset (circuit->rcv_stream);
2167
2168 retval = circuit->rx (circuit, ssnpa);
2169
2170 if (retval == ISIS_OK)
2171 retval = isis_handle_pdu (circuit, ssnpa);
2172
2173 /*
2174 * prepare for next packet.
2175 */
Josh Bailey3f045a02012-03-24 08:35:20 -07002176 if (!circuit->is_passive)
2177 {
2178 circuit->t_read = thread_add_timer_msec (master, isis_receive, circuit,
2179 listcount
2180 (circuit->area->circuit_list) *
2181 100);
2182 }
jardineb5d44e2003-12-23 08:09:43 +00002183
2184 return retval;
2185}
2186
2187#endif
2188
2189 /* filling of the fixed isis header */
2190void
2191fill_fixed_hdr (struct isis_fixed_hdr *hdr, u_char pdu_type)
2192{
2193 memset (hdr, 0, sizeof (struct isis_fixed_hdr));
2194
2195 hdr->idrp = ISO10589_ISIS;
2196
hassof390d2c2004-09-10 20:48:21 +00002197 switch (pdu_type)
2198 {
2199 case L1_LAN_HELLO:
2200 case L2_LAN_HELLO:
2201 hdr->length = ISIS_LANHELLO_HDRLEN;
2202 break;
2203 case P2P_HELLO:
2204 hdr->length = ISIS_P2PHELLO_HDRLEN;
2205 break;
2206 case L1_LINK_STATE:
2207 case L2_LINK_STATE:
2208 hdr->length = ISIS_LSP_HDR_LEN;
2209 break;
2210 case L1_COMPLETE_SEQ_NUM:
2211 case L2_COMPLETE_SEQ_NUM:
2212 hdr->length = ISIS_CSNP_HDRLEN;
2213 break;
2214 case L1_PARTIAL_SEQ_NUM:
2215 case L2_PARTIAL_SEQ_NUM:
2216 hdr->length = ISIS_PSNP_HDRLEN;
2217 break;
2218 default:
2219 zlog_warn ("fill_fixed_hdr(): unknown pdu type %d", pdu_type);
2220 return;
2221 }
jardineb5d44e2003-12-23 08:09:43 +00002222 hdr->length += ISIS_FIXED_HDR_LEN;
2223 hdr->pdu_type = pdu_type;
2224 hdr->version1 = 1;
hassof390d2c2004-09-10 20:48:21 +00002225 hdr->id_len = 0; /* ISIS_SYS_ID_LEN - 0==6 */
jardineb5d44e2003-12-23 08:09:43 +00002226 hdr->version2 = 1;
hassof390d2c2004-09-10 20:48:21 +00002227 hdr->max_area_addrs = 0; /* isis->max_area_addrs - 0==3 */
jardineb5d44e2003-12-23 08:09:43 +00002228}
2229
jardineb5d44e2003-12-23 08:09:43 +00002230/*
2231 * SEND SIDE
2232 */
hasso92365882005-01-18 13:53:33 +00002233static void
jardineb5d44e2003-12-23 08:09:43 +00002234fill_fixed_hdr_andstream (struct isis_fixed_hdr *hdr, u_char pdu_type,
hassof390d2c2004-09-10 20:48:21 +00002235 struct stream *stream)
jardineb5d44e2003-12-23 08:09:43 +00002236{
hassof390d2c2004-09-10 20:48:21 +00002237 fill_fixed_hdr (hdr, pdu_type);
jardineb5d44e2003-12-23 08:09:43 +00002238
2239 stream_putc (stream, hdr->idrp);
2240 stream_putc (stream, hdr->length);
2241 stream_putc (stream, hdr->version1);
2242 stream_putc (stream, hdr->id_len);
2243 stream_putc (stream, hdr->pdu_type);
2244 stream_putc (stream, hdr->version2);
2245 stream_putc (stream, hdr->reserved);
2246 stream_putc (stream, hdr->max_area_addrs);
2247
2248 return;
2249}
2250
jardineb5d44e2003-12-23 08:09:43 +00002251int
2252send_hello (struct isis_circuit *circuit, int level)
2253{
2254 struct isis_fixed_hdr fixed_hdr;
2255 struct isis_lan_hello_hdr hello_hdr;
2256 struct isis_p2p_hello_hdr p2p_hello_hdr;
Josh Bailey3f045a02012-03-24 08:35:20 -07002257 unsigned char hmac_md5_hash[ISIS_AUTH_MD5_SIZE];
David Lamparter01da6172015-04-10 09:10:11 +02002258 size_t len_pointer, length, auth_tlv_offset = 0;
jardineb5d44e2003-12-23 08:09:43 +00002259 u_int32_t interval;
jardineb5d44e2003-12-23 08:09:43 +00002260 int retval;
2261
Josh Bailey3f045a02012-03-24 08:35:20 -07002262 if (circuit->is_passive)
2263 return ISIS_OK;
2264
hassof390d2c2004-09-10 20:48:21 +00002265 if (circuit->interface->mtu == 0)
2266 {
2267 zlog_warn ("circuit has zero MTU");
2268 return ISIS_WARNING;
2269 }
jardineb5d44e2003-12-23 08:09:43 +00002270
2271 if (!circuit->snd_stream)
hassof390d2c2004-09-10 20:48:21 +00002272 circuit->snd_stream = stream_new (ISO_MTU (circuit));
jardineb5d44e2003-12-23 08:09:43 +00002273 else
2274 stream_reset (circuit->snd_stream);
2275
2276 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
Josh Bailey3f045a02012-03-24 08:35:20 -07002277 if (level == IS_LEVEL_1)
hassof390d2c2004-09-10 20:48:21 +00002278 fill_fixed_hdr_andstream (&fixed_hdr, L1_LAN_HELLO,
2279 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002280 else
hassof390d2c2004-09-10 20:48:21 +00002281 fill_fixed_hdr_andstream (&fixed_hdr, L2_LAN_HELLO,
2282 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002283 else
hassof390d2c2004-09-10 20:48:21 +00002284 fill_fixed_hdr_andstream (&fixed_hdr, P2P_HELLO, circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002285
2286 /*
2287 * Fill LAN Level 1 or 2 Hello PDU header
2288 */
2289 memset (&hello_hdr, 0, sizeof (struct isis_lan_hello_hdr));
hassof390d2c2004-09-10 20:48:21 +00002290 interval = circuit->hello_multiplier[level - 1] *
jardineb5d44e2003-12-23 08:09:43 +00002291 circuit->hello_interval[level - 1];
2292 if (interval > USHRT_MAX)
2293 interval = USHRT_MAX;
Josh Bailey3f045a02012-03-24 08:35:20 -07002294 hello_hdr.circuit_t = circuit->is_type;
jardineb5d44e2003-12-23 08:09:43 +00002295 memcpy (hello_hdr.source_id, isis->sysid, ISIS_SYS_ID_LEN);
hassof390d2c2004-09-10 20:48:21 +00002296 hello_hdr.hold_time = htons ((u_int16_t) interval);
jardineb5d44e2003-12-23 08:09:43 +00002297
hassof390d2c2004-09-10 20:48:21 +00002298 hello_hdr.pdu_len = 0; /* Update the PDU Length later */
paul9985f832005-02-09 15:51:56 +00002299 len_pointer = stream_get_endp (circuit->snd_stream) + 3 + ISIS_SYS_ID_LEN;
jardineb5d44e2003-12-23 08:09:43 +00002300
2301 /* copy the shared part of the hello to the p2p hello if needed */
hassof390d2c2004-09-10 20:48:21 +00002302 if (circuit->circ_type == CIRCUIT_T_P2P)
2303 {
2304 memcpy (&p2p_hello_hdr, &hello_hdr, 5 + ISIS_SYS_ID_LEN);
2305 p2p_hello_hdr.local_id = circuit->circuit_id;
2306 /* FIXME: need better understanding */
2307 stream_put (circuit->snd_stream, &p2p_hello_hdr, ISIS_P2PHELLO_HDRLEN);
jardineb5d44e2003-12-23 08:09:43 +00002308 }
hassof390d2c2004-09-10 20:48:21 +00002309 else
2310 {
Josh Bailey3f045a02012-03-24 08:35:20 -07002311 hello_hdr.prio = circuit->priority[level - 1];
2312 if (level == IS_LEVEL_1)
hassof390d2c2004-09-10 20:48:21 +00002313 {
2314 memcpy (hello_hdr.lan_id, circuit->u.bc.l1_desig_is,
2315 ISIS_SYS_ID_LEN + 1);
2316 }
Josh Bailey3f045a02012-03-24 08:35:20 -07002317 else if (level == IS_LEVEL_2)
hassof390d2c2004-09-10 20:48:21 +00002318 {
2319 memcpy (hello_hdr.lan_id, circuit->u.bc.l2_desig_is,
2320 ISIS_SYS_ID_LEN + 1);
2321 }
2322 stream_put (circuit->snd_stream, &hello_hdr, ISIS_LANHELLO_HDRLEN);
2323 }
jardineb5d44e2003-12-23 08:09:43 +00002324
2325 /*
Josh Bailey3f045a02012-03-24 08:35:20 -07002326 * Then the variable length part.
jardineb5d44e2003-12-23 08:09:43 +00002327 */
Josh Bailey3f045a02012-03-24 08:35:20 -07002328
jardineb5d44e2003-12-23 08:09:43 +00002329 /* add circuit password */
Josh Bailey3f045a02012-03-24 08:35:20 -07002330 switch (circuit->passwd.type)
2331 {
2332 /* Cleartext */
2333 case ISIS_PASSWD_TYPE_CLEARTXT:
2334 if (tlv_add_authinfo (circuit->passwd.type, circuit->passwd.len,
2335 circuit->passwd.passwd, circuit->snd_stream))
2336 return ISIS_WARNING;
2337 break;
2338
2339 /* HMAC MD5 */
2340 case ISIS_PASSWD_TYPE_HMAC_MD5:
2341 /* Remember where TLV is written so we can later overwrite the MD5 hash */
2342 auth_tlv_offset = stream_get_endp (circuit->snd_stream);
2343 memset(&hmac_md5_hash, 0, ISIS_AUTH_MD5_SIZE);
2344 if (tlv_add_authinfo (circuit->passwd.type, ISIS_AUTH_MD5_SIZE,
2345 hmac_md5_hash, circuit->snd_stream))
2346 return ISIS_WARNING;
2347 break;
2348
2349 default:
2350 break;
2351 }
2352
jardineb5d44e2003-12-23 08:09:43 +00002353 /* Area Addresses TLV */
Josh Bailey3f045a02012-03-24 08:35:20 -07002354 if (listcount (circuit->area->area_addrs) == 0)
2355 return ISIS_WARNING;
2356 if (tlv_add_area_addrs (circuit->area->area_addrs, circuit->snd_stream))
2357 return ISIS_WARNING;
jardineb5d44e2003-12-23 08:09:43 +00002358
2359 /* LAN Neighbors TLV */
hassof390d2c2004-09-10 20:48:21 +00002360 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
2361 {
Josh Bailey3f045a02012-03-24 08:35:20 -07002362 if (level == IS_LEVEL_1 && circuit->u.bc.lan_neighs[0] &&
2363 listcount (circuit->u.bc.lan_neighs[0]) > 0)
hassof390d2c2004-09-10 20:48:21 +00002364 if (tlv_add_lan_neighs (circuit->u.bc.lan_neighs[0],
2365 circuit->snd_stream))
2366 return ISIS_WARNING;
Josh Bailey3f045a02012-03-24 08:35:20 -07002367 if (level == IS_LEVEL_2 && circuit->u.bc.lan_neighs[1] &&
2368 listcount (circuit->u.bc.lan_neighs[1]) > 0)
hassof390d2c2004-09-10 20:48:21 +00002369 if (tlv_add_lan_neighs (circuit->u.bc.lan_neighs[1],
2370 circuit->snd_stream))
2371 return ISIS_WARNING;
2372 }
jardineb5d44e2003-12-23 08:09:43 +00002373
2374 /* Protocols Supported TLV */
hassof390d2c2004-09-10 20:48:21 +00002375 if (circuit->nlpids.count > 0)
jardineb5d44e2003-12-23 08:09:43 +00002376 if (tlv_add_nlpid (&circuit->nlpids, circuit->snd_stream))
2377 return ISIS_WARNING;
2378 /* IP interface Address TLV */
Josh Bailey3f045a02012-03-24 08:35:20 -07002379 if (circuit->ip_router && circuit->ip_addrs &&
2380 listcount (circuit->ip_addrs) > 0)
jardineb5d44e2003-12-23 08:09:43 +00002381 if (tlv_add_ip_addrs (circuit->ip_addrs, circuit->snd_stream))
2382 return ISIS_WARNING;
2383
hassof390d2c2004-09-10 20:48:21 +00002384#ifdef HAVE_IPV6
jardineb5d44e2003-12-23 08:09:43 +00002385 /* IPv6 Interface Address TLV */
hassof390d2c2004-09-10 20:48:21 +00002386 if (circuit->ipv6_router && circuit->ipv6_link &&
Josh Bailey3f045a02012-03-24 08:35:20 -07002387 listcount (circuit->ipv6_link) > 0)
jardineb5d44e2003-12-23 08:09:43 +00002388 if (tlv_add_ipv6_addrs (circuit->ipv6_link, circuit->snd_stream))
2389 return ISIS_WARNING;
2390#endif /* HAVE_IPV6 */
2391
Josh Bailey3f045a02012-03-24 08:35:20 -07002392 if (circuit->pad_hellos)
jardineb5d44e2003-12-23 08:09:43 +00002393 if (tlv_add_padding (circuit->snd_stream))
2394 return ISIS_WARNING;
2395
paul9985f832005-02-09 15:51:56 +00002396 length = stream_get_endp (circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002397 /* Update PDU length */
hassof390d2c2004-09-10 20:48:21 +00002398 stream_putw_at (circuit->snd_stream, len_pointer, (u_int16_t) length);
jardineb5d44e2003-12-23 08:09:43 +00002399
Josh Bailey3f045a02012-03-24 08:35:20 -07002400 /* For HMAC MD5 we need to compute the md5 hash and store it */
2401 if (circuit->passwd.type == ISIS_PASSWD_TYPE_HMAC_MD5)
2402 {
2403 hmac_md5 (STREAM_DATA (circuit->snd_stream),
2404 stream_get_endp (circuit->snd_stream),
2405 (unsigned char *) &circuit->passwd.passwd, circuit->passwd.len,
David Lamparter21401f32015-03-03 08:55:26 +01002406 (unsigned char *) &hmac_md5_hash);
Josh Bailey3f045a02012-03-24 08:35:20 -07002407 /* Copy the hash into the stream */
2408 memcpy (STREAM_DATA (circuit->snd_stream) + auth_tlv_offset + 3,
2409 hmac_md5_hash, ISIS_AUTH_MD5_SIZE);
2410 }
jardineb5d44e2003-12-23 08:09:43 +00002411
hassof390d2c2004-09-10 20:48:21 +00002412 if (isis->debugs & DEBUG_ADJ_PACKETS)
2413 {
2414 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
2415 {
David Lamparter01da6172015-04-10 09:10:11 +02002416 zlog_debug ("ISIS-Adj (%s): Sent L%d LAN IIH on %s, length %zd",
hasso529d65b2004-12-24 00:14:50 +00002417 circuit->area->area_tag, level, circuit->interface->name,
Josh Bailey3f045a02012-03-24 08:35:20 -07002418 length);
hassof390d2c2004-09-10 20:48:21 +00002419 }
2420 else
2421 {
David Lamparter01da6172015-04-10 09:10:11 +02002422 zlog_debug ("ISIS-Adj (%s): Sent P2P IIH on %s, length %zd",
hasso529d65b2004-12-24 00:14:50 +00002423 circuit->area->area_tag, circuit->interface->name,
Josh Bailey3f045a02012-03-24 08:35:20 -07002424 length);
hassof390d2c2004-09-10 20:48:21 +00002425 }
Josh Bailey3f045a02012-03-24 08:35:20 -07002426 if (isis->debugs & DEBUG_PACKET_DUMP)
2427 zlog_dump_data (STREAM_DATA (circuit->snd_stream),
2428 stream_get_endp (circuit->snd_stream));
jardineb5d44e2003-12-23 08:09:43 +00002429 }
jardineb5d44e2003-12-23 08:09:43 +00002430
Josh Bailey3f045a02012-03-24 08:35:20 -07002431 retval = circuit->tx (circuit, level);
2432 if (retval != ISIS_OK)
2433 zlog_err ("ISIS-Adj (%s): Send L%d IIH on %s failed",
2434 circuit->area->area_tag, level, circuit->interface->name);
jardineb5d44e2003-12-23 08:09:43 +00002435
Josh Bailey3f045a02012-03-24 08:35:20 -07002436 return retval;
jardineb5d44e2003-12-23 08:09:43 +00002437}
2438
2439int
2440send_lan_l1_hello (struct thread *thread)
2441{
jardineb5d44e2003-12-23 08:09:43 +00002442 struct isis_circuit *circuit;
2443 int retval;
2444
2445 circuit = THREAD_ARG (thread);
2446 assert (circuit);
2447 circuit->u.bc.t_send_lan_hello[0] = NULL;
2448
2449 if (circuit->u.bc.run_dr_elect[0])
hassof390d2c2004-09-10 20:48:21 +00002450 retval = isis_dr_elect (circuit, 1);
jardineb5d44e2003-12-23 08:09:43 +00002451
Josh Bailey3f045a02012-03-24 08:35:20 -07002452 retval = send_hello (circuit, 1);
jardineb5d44e2003-12-23 08:09:43 +00002453
2454 /* set next timer thread */
hassof390d2c2004-09-10 20:48:21 +00002455 THREAD_TIMER_ON (master, circuit->u.bc.t_send_lan_hello[0],
2456 send_lan_l1_hello, circuit,
2457 isis_jitter (circuit->hello_interval[0], IIH_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002458
2459 return retval;
2460}
2461
2462int
2463send_lan_l2_hello (struct thread *thread)
2464{
2465 struct isis_circuit *circuit;
2466 int retval;
2467
2468 circuit = THREAD_ARG (thread);
2469 assert (circuit);
2470 circuit->u.bc.t_send_lan_hello[1] = NULL;
2471
2472 if (circuit->u.bc.run_dr_elect[1])
2473 retval = isis_dr_elect (circuit, 2);
2474
Josh Bailey3f045a02012-03-24 08:35:20 -07002475 retval = send_hello (circuit, 2);
jardineb5d44e2003-12-23 08:09:43 +00002476
hassof390d2c2004-09-10 20:48:21 +00002477 /* set next timer thread */
2478 THREAD_TIMER_ON (master, circuit->u.bc.t_send_lan_hello[1],
2479 send_lan_l2_hello, circuit,
2480 isis_jitter (circuit->hello_interval[1], IIH_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002481
2482 return retval;
2483}
2484
2485int
2486send_p2p_hello (struct thread *thread)
2487{
2488 struct isis_circuit *circuit;
2489
2490 circuit = THREAD_ARG (thread);
2491 assert (circuit);
2492 circuit->u.p2p.t_send_p2p_hello = NULL;
2493
hassof390d2c2004-09-10 20:48:21 +00002494 send_hello (circuit, 1);
jardineb5d44e2003-12-23 08:09:43 +00002495
hassof390d2c2004-09-10 20:48:21 +00002496 /* set next timer thread */
2497 THREAD_TIMER_ON (master, circuit->u.p2p.t_send_p2p_hello, send_p2p_hello,
2498 circuit, isis_jitter (circuit->hello_interval[1],
2499 IIH_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002500
2501 return ISIS_OK;
2502}
2503
hasso92365882005-01-18 13:53:33 +00002504static int
hassof390d2c2004-09-10 20:48:21 +00002505build_csnp (int level, u_char * start, u_char * stop, struct list *lsps,
2506 struct isis_circuit *circuit)
jardineb5d44e2003-12-23 08:09:43 +00002507{
2508 struct isis_fixed_hdr fixed_hdr;
2509 struct isis_passwd *passwd;
jardineb5d44e2003-12-23 08:09:43 +00002510 unsigned long lenp;
2511 u_int16_t length;
Josh Bailey3f045a02012-03-24 08:35:20 -07002512 unsigned char hmac_md5_hash[ISIS_AUTH_MD5_SIZE];
2513 unsigned long auth_tlv_offset = 0;
2514 int retval = ISIS_OK;
jardineb5d44e2003-12-23 08:09:43 +00002515
Josh Bailey3f045a02012-03-24 08:35:20 -07002516 if (circuit->snd_stream == NULL)
2517 circuit->snd_stream = stream_new (ISO_MTU (circuit));
2518 else
2519 stream_reset (circuit->snd_stream);
2520
2521 if (level == IS_LEVEL_1)
hassof390d2c2004-09-10 20:48:21 +00002522 fill_fixed_hdr_andstream (&fixed_hdr, L1_COMPLETE_SEQ_NUM,
2523 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002524 else
hassof390d2c2004-09-10 20:48:21 +00002525 fill_fixed_hdr_andstream (&fixed_hdr, L2_COMPLETE_SEQ_NUM,
2526 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002527
2528 /*
2529 * Fill Level 1 or 2 Complete Sequence Numbers header
2530 */
2531
paul9985f832005-02-09 15:51:56 +00002532 lenp = stream_get_endp (circuit->snd_stream);
hassof390d2c2004-09-10 20:48:21 +00002533 stream_putw (circuit->snd_stream, 0); /* PDU length - when we know it */
jardineb5d44e2003-12-23 08:09:43 +00002534 /* no need to send the source here, it is always us if we csnp */
2535 stream_put (circuit->snd_stream, isis->sysid, ISIS_SYS_ID_LEN);
2536 /* with zero circuit id - ref 9.10, 9.11 */
2537 stream_putc (circuit->snd_stream, 0x00);
2538
2539 stream_put (circuit->snd_stream, start, ISIS_SYS_ID_LEN + 2);
2540 stream_put (circuit->snd_stream, stop, ISIS_SYS_ID_LEN + 2);
2541
2542 /*
2543 * And TLVs
2544 */
Josh Bailey3f045a02012-03-24 08:35:20 -07002545 if (level == IS_LEVEL_1)
jardineb5d44e2003-12-23 08:09:43 +00002546 passwd = &circuit->area->area_passwd;
2547 else
2548 passwd = &circuit->area->domain_passwd;
2549
hasso1cbc5622005-01-01 10:29:51 +00002550 if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_SEND))
Josh Bailey3f045a02012-03-24 08:35:20 -07002551 {
2552 switch (passwd->type)
hassof390d2c2004-09-10 20:48:21 +00002553 {
Josh Bailey3f045a02012-03-24 08:35:20 -07002554 /* Cleartext */
2555 case ISIS_PASSWD_TYPE_CLEARTXT:
2556 if (tlv_add_authinfo (ISIS_PASSWD_TYPE_CLEARTXT, passwd->len,
2557 passwd->passwd, circuit->snd_stream))
2558 return ISIS_WARNING;
2559 break;
2560
2561 /* HMAC MD5 */
2562 case ISIS_PASSWD_TYPE_HMAC_MD5:
2563 /* Remember where TLV is written so we can later overwrite the MD5 hash */
2564 auth_tlv_offset = stream_get_endp (circuit->snd_stream);
2565 memset(&hmac_md5_hash, 0, ISIS_AUTH_MD5_SIZE);
2566 if (tlv_add_authinfo (ISIS_PASSWD_TYPE_HMAC_MD5, ISIS_AUTH_MD5_SIZE,
2567 hmac_md5_hash, circuit->snd_stream))
2568 return ISIS_WARNING;
2569 break;
2570
2571 default:
2572 break;
hassof390d2c2004-09-10 20:48:21 +00002573 }
Josh Bailey3f045a02012-03-24 08:35:20 -07002574 }
2575
2576 retval = tlv_add_lsp_entries (lsps, circuit->snd_stream);
2577 if (retval != ISIS_OK)
2578 return retval;
2579
paul9985f832005-02-09 15:51:56 +00002580 length = (u_int16_t) stream_get_endp (circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002581 /* Update PU length */
2582 stream_putw_at (circuit->snd_stream, lenp, length);
2583
Josh Bailey3f045a02012-03-24 08:35:20 -07002584 /* For HMAC MD5 we need to compute the md5 hash and store it */
2585 if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_SEND) &&
2586 passwd->type == ISIS_PASSWD_TYPE_HMAC_MD5)
2587 {
2588 hmac_md5 (STREAM_DATA (circuit->snd_stream),
2589 stream_get_endp(circuit->snd_stream),
2590 (unsigned char *) &passwd->passwd, passwd->len,
David Lamparter21401f32015-03-03 08:55:26 +01002591 (unsigned char *) &hmac_md5_hash);
Josh Bailey3f045a02012-03-24 08:35:20 -07002592 /* Copy the hash into the stream */
2593 memcpy (STREAM_DATA (circuit->snd_stream) + auth_tlv_offset + 3,
2594 hmac_md5_hash, ISIS_AUTH_MD5_SIZE);
2595 }
2596
jardineb5d44e2003-12-23 08:09:43 +00002597 return retval;
2598}
2599
2600/*
Josh Bailey3f045a02012-03-24 08:35:20 -07002601 * Count the maximum number of lsps that can be accomodated by a given size.
2602 */
2603static uint16_t
2604get_max_lsp_count (uint16_t size)
2605{
2606 uint16_t tlv_count;
2607 uint16_t lsp_count;
2608 uint16_t remaining_size;
2609
2610 /* First count the full size TLVs */
2611 tlv_count = size / MAX_LSP_ENTRIES_TLV_SIZE;
2612 lsp_count = tlv_count * (MAX_LSP_ENTRIES_TLV_SIZE / LSP_ENTRIES_LEN);
2613
2614 /* The last TLV, if any */
2615 remaining_size = size % MAX_LSP_ENTRIES_TLV_SIZE;
2616 if (remaining_size - 2 >= LSP_ENTRIES_LEN)
2617 lsp_count += (remaining_size - 2) / LSP_ENTRIES_LEN;
2618
2619 return lsp_count;
2620}
2621
2622/*
2623 * Calculate the length of Authentication Info. TLV.
2624 */
2625static uint16_t
2626auth_tlv_length (int level, struct isis_circuit *circuit)
2627{
2628 struct isis_passwd *passwd;
2629 uint16_t length;
2630
2631 if (level == IS_LEVEL_1)
2632 passwd = &circuit->area->area_passwd;
2633 else
2634 passwd = &circuit->area->domain_passwd;
2635
2636 /* Also include the length of TLV header */
2637 length = AUTH_INFO_HDRLEN;
2638 if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_SEND))
2639 {
2640 switch (passwd->type)
2641 {
2642 /* Cleartext */
2643 case ISIS_PASSWD_TYPE_CLEARTXT:
2644 length += passwd->len;
2645 break;
2646
2647 /* HMAC MD5 */
2648 case ISIS_PASSWD_TYPE_HMAC_MD5:
2649 length += ISIS_AUTH_MD5_SIZE;
2650 break;
2651
2652 default:
2653 break;
2654 }
2655 }
2656
2657 return length;
2658}
2659
2660/*
2661 * Calculate the maximum number of lsps that can be accomodated in a CSNP/PSNP.
2662 */
2663static uint16_t
2664max_lsps_per_snp (int snp_type, int level, struct isis_circuit *circuit)
2665{
2666 int snp_hdr_len;
2667 int auth_tlv_len;
2668 uint16_t lsp_count;
2669
2670 snp_hdr_len = ISIS_FIXED_HDR_LEN;
2671 if (snp_type == ISIS_SNP_CSNP_FLAG)
2672 snp_hdr_len += ISIS_CSNP_HDRLEN;
2673 else
2674 snp_hdr_len += ISIS_PSNP_HDRLEN;
2675
2676 auth_tlv_len = auth_tlv_length (level, circuit);
2677 lsp_count = get_max_lsp_count (
2678 stream_get_size (circuit->snd_stream) - snp_hdr_len - auth_tlv_len);
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -07002679 return lsp_count;
Josh Bailey3f045a02012-03-24 08:35:20 -07002680}
2681
2682/*
jardineb5d44e2003-12-23 08:09:43 +00002683 * FIXME: support multiple CSNPs
2684 */
2685
2686int
2687send_csnp (struct isis_circuit *circuit, int level)
2688{
jardineb5d44e2003-12-23 08:09:43 +00002689 u_char start[ISIS_SYS_ID_LEN + 2];
2690 u_char stop[ISIS_SYS_ID_LEN + 2];
2691 struct list *list = NULL;
hasso3fdb2dd2005-09-28 18:45:54 +00002692 struct listnode *node;
jardineb5d44e2003-12-23 08:09:43 +00002693 struct isis_lsp *lsp;
Josh Bailey3f045a02012-03-24 08:35:20 -07002694 u_char num_lsps, loop = 1;
2695 int i, retval = ISIS_OK;
2696
2697 if (circuit->area->lspdb[level - 1] == NULL ||
2698 dict_count (circuit->area->lspdb[level - 1]) == 0)
2699 return retval;
jardineb5d44e2003-12-23 08:09:43 +00002700
hassof390d2c2004-09-10 20:48:21 +00002701 memset (start, 0x00, ISIS_SYS_ID_LEN + 2);
jardineb5d44e2003-12-23 08:09:43 +00002702 memset (stop, 0xff, ISIS_SYS_ID_LEN + 2);
2703
Josh Bailey3f045a02012-03-24 08:35:20 -07002704 num_lsps = max_lsps_per_snp (ISIS_SNP_CSNP_FLAG, level, circuit);
2705
2706 while (loop)
hassof390d2c2004-09-10 20:48:21 +00002707 {
2708 list = list_new ();
Josh Bailey3f045a02012-03-24 08:35:20 -07002709 lsp_build_list (start, stop, num_lsps, list,
2710 circuit->area->lspdb[level - 1]);
2711 /*
2712 * Update the stop lsp_id before encoding this CSNP.
2713 */
2714 if (listcount (list) < num_lsps)
2715 {
2716 memset (stop, 0xff, ISIS_SYS_ID_LEN + 2);
2717 }
hassof390d2c2004-09-10 20:48:21 +00002718 else
Josh Bailey3f045a02012-03-24 08:35:20 -07002719 {
2720 node = listtail (list);
2721 lsp = listgetdata (node);
2722 memcpy (stop, lsp->lsp_header->lsp_id, ISIS_SYS_ID_LEN + 2);
2723 }
jardineb5d44e2003-12-23 08:09:43 +00002724
hassof390d2c2004-09-10 20:48:21 +00002725 retval = build_csnp (level, start, stop, list, circuit);
Josh Bailey3f045a02012-03-24 08:35:20 -07002726 if (retval != ISIS_OK)
2727 {
2728 zlog_err ("ISIS-Snp (%s): Build L%d CSNP on %s failed",
2729 circuit->area->area_tag, level, circuit->interface->name);
2730 list_delete (list);
2731 return retval;
2732 }
jardineb5d44e2003-12-23 08:09:43 +00002733
hassof390d2c2004-09-10 20:48:21 +00002734 if (isis->debugs & DEBUG_SNP_PACKETS)
Josh Bailey3f045a02012-03-24 08:35:20 -07002735 {
David Lamparter01da6172015-04-10 09:10:11 +02002736 zlog_debug ("ISIS-Snp (%s): Sent L%d CSNP on %s, length %zd",
Josh Bailey3f045a02012-03-24 08:35:20 -07002737 circuit->area->area_tag, level, circuit->interface->name,
2738 stream_get_endp (circuit->snd_stream));
2739 for (ALL_LIST_ELEMENTS_RO (list, node, lsp))
2740 {
2741 zlog_debug ("ISIS-Snp (%s): CSNP entry %s, seq 0x%08x,"
2742 " cksum 0x%04x, lifetime %us",
2743 circuit->area->area_tag,
2744 rawlspid_print (lsp->lsp_header->lsp_id),
2745 ntohl (lsp->lsp_header->seq_num),
2746 ntohs (lsp->lsp_header->checksum),
2747 ntohs (lsp->lsp_header->rem_lifetime));
2748 }
2749 if (isis->debugs & DEBUG_PACKET_DUMP)
2750 zlog_dump_data (STREAM_DATA (circuit->snd_stream),
2751 stream_get_endp (circuit->snd_stream));
2752 }
hassof390d2c2004-09-10 20:48:21 +00002753
Josh Bailey3f045a02012-03-24 08:35:20 -07002754 retval = circuit->tx (circuit, level);
2755 if (retval != ISIS_OK)
2756 {
2757 zlog_err ("ISIS-Snp (%s): Send L%d CSNP on %s failed",
2758 circuit->area->area_tag, level,
2759 circuit->interface->name);
2760 list_delete (list);
2761 return retval;
2762 }
2763
2764 /*
2765 * Start lsp_id of the next CSNP should be one plus the
2766 * stop lsp_id in this current CSNP.
2767 */
2768 memcpy (start, stop, ISIS_SYS_ID_LEN + 2);
2769 loop = 0;
2770 for (i = ISIS_SYS_ID_LEN + 1; i >= 0; --i)
2771 {
2772 if (start[i] < (u_char)0xff)
2773 {
2774 start[i] += 1;
2775 loop = 1;
2776 break;
2777 }
2778 }
2779 memset (stop, 0xff, ISIS_SYS_ID_LEN + 2);
hassof390d2c2004-09-10 20:48:21 +00002780 list_delete (list);
jardineb5d44e2003-12-23 08:09:43 +00002781 }
Josh Bailey3f045a02012-03-24 08:35:20 -07002782
jardineb5d44e2003-12-23 08:09:43 +00002783 return retval;
2784}
2785
2786int
2787send_l1_csnp (struct thread *thread)
2788{
2789 struct isis_circuit *circuit;
2790 int retval = ISIS_OK;
2791
2792 circuit = THREAD_ARG (thread);
2793 assert (circuit);
2794
2795 circuit->t_send_csnp[0] = NULL;
2796
hassof390d2c2004-09-10 20:48:21 +00002797 if (circuit->circ_type == CIRCUIT_T_BROADCAST && circuit->u.bc.is_dr[0])
2798 {
2799 send_csnp (circuit, 1);
2800 }
jardineb5d44e2003-12-23 08:09:43 +00002801 /* set next timer thread */
hassof390d2c2004-09-10 20:48:21 +00002802 THREAD_TIMER_ON (master, circuit->t_send_csnp[0], send_l1_csnp, circuit,
2803 isis_jitter (circuit->csnp_interval[0], CSNP_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00002804
2805 return retval;
2806}
2807
2808int
2809send_l2_csnp (struct thread *thread)
2810{
2811 struct isis_circuit *circuit;
2812 int retval = ISIS_OK;
2813
2814 circuit = THREAD_ARG (thread);
2815 assert (circuit);
2816
2817 circuit->t_send_csnp[1] = NULL;
2818
hassof390d2c2004-09-10 20:48:21 +00002819 if (circuit->circ_type == CIRCUIT_T_BROADCAST && circuit->u.bc.is_dr[1])
2820 {
2821 send_csnp (circuit, 2);
2822 }
jardineb5d44e2003-12-23 08:09:43 +00002823 /* set next timer thread */
hassof390d2c2004-09-10 20:48:21 +00002824 THREAD_TIMER_ON (master, circuit->t_send_csnp[1], send_l2_csnp, circuit,
2825 isis_jitter (circuit->csnp_interval[1], CSNP_JITTER));
hassod70f99e2004-02-11 20:26:31 +00002826
jardineb5d44e2003-12-23 08:09:43 +00002827 return retval;
2828}
2829
hasso92365882005-01-18 13:53:33 +00002830static int
jardineb5d44e2003-12-23 08:09:43 +00002831build_psnp (int level, struct isis_circuit *circuit, struct list *lsps)
2832{
2833 struct isis_fixed_hdr fixed_hdr;
2834 unsigned long lenp;
2835 u_int16_t length;
jardineb5d44e2003-12-23 08:09:43 +00002836 struct isis_lsp *lsp;
2837 struct isis_passwd *passwd;
hasso3fdb2dd2005-09-28 18:45:54 +00002838 struct listnode *node;
Josh Bailey3f045a02012-03-24 08:35:20 -07002839 unsigned char hmac_md5_hash[ISIS_AUTH_MD5_SIZE];
2840 unsigned long auth_tlv_offset = 0;
2841 int retval = ISIS_OK;
jardineb5d44e2003-12-23 08:09:43 +00002842
Josh Bailey3f045a02012-03-24 08:35:20 -07002843 if (circuit->snd_stream == NULL)
2844 circuit->snd_stream = stream_new (ISO_MTU (circuit));
2845 else
2846 stream_reset (circuit->snd_stream);
2847
2848 if (level == IS_LEVEL_1)
hassof390d2c2004-09-10 20:48:21 +00002849 fill_fixed_hdr_andstream (&fixed_hdr, L1_PARTIAL_SEQ_NUM,
2850 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002851 else
2852 fill_fixed_hdr_andstream (&fixed_hdr, L2_PARTIAL_SEQ_NUM,
hassof390d2c2004-09-10 20:48:21 +00002853 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002854
2855 /*
2856 * Fill Level 1 or 2 Partial Sequence Numbers header
2857 */
paul9985f832005-02-09 15:51:56 +00002858 lenp = stream_get_endp (circuit->snd_stream);
hassof390d2c2004-09-10 20:48:21 +00002859 stream_putw (circuit->snd_stream, 0); /* PDU length - when we know it */
jardineb5d44e2003-12-23 08:09:43 +00002860 stream_put (circuit->snd_stream, isis->sysid, ISIS_SYS_ID_LEN);
2861 stream_putc (circuit->snd_stream, circuit->idx);
2862
2863 /*
2864 * And TLVs
2865 */
2866
Josh Bailey3f045a02012-03-24 08:35:20 -07002867 if (level == IS_LEVEL_1)
jardineb5d44e2003-12-23 08:09:43 +00002868 passwd = &circuit->area->area_passwd;
2869 else
2870 passwd = &circuit->area->domain_passwd;
2871
hasso1cbc5622005-01-01 10:29:51 +00002872 if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_SEND))
Josh Bailey3f045a02012-03-24 08:35:20 -07002873 {
2874 switch (passwd->type)
hassof390d2c2004-09-10 20:48:21 +00002875 {
Josh Bailey3f045a02012-03-24 08:35:20 -07002876 /* Cleartext */
2877 case ISIS_PASSWD_TYPE_CLEARTXT:
2878 if (tlv_add_authinfo (ISIS_PASSWD_TYPE_CLEARTXT, passwd->len,
2879 passwd->passwd, circuit->snd_stream))
2880 return ISIS_WARNING;
2881 break;
2882
2883 /* HMAC MD5 */
2884 case ISIS_PASSWD_TYPE_HMAC_MD5:
2885 /* Remember where TLV is written so we can later overwrite the MD5 hash */
2886 auth_tlv_offset = stream_get_endp (circuit->snd_stream);
2887 memset(&hmac_md5_hash, 0, ISIS_AUTH_MD5_SIZE);
2888 if (tlv_add_authinfo (ISIS_PASSWD_TYPE_HMAC_MD5, ISIS_AUTH_MD5_SIZE,
2889 hmac_md5_hash, circuit->snd_stream))
2890 return ISIS_WARNING;
2891 break;
2892
2893 default:
2894 break;
jardineb5d44e2003-12-23 08:09:43 +00002895 }
Josh Bailey3f045a02012-03-24 08:35:20 -07002896 }
2897
2898 retval = tlv_add_lsp_entries (lsps, circuit->snd_stream);
2899 if (retval != ISIS_OK)
2900 return retval;
jardineb5d44e2003-12-23 08:09:43 +00002901
hassof390d2c2004-09-10 20:48:21 +00002902 if (isis->debugs & DEBUG_SNP_PACKETS)
2903 {
hasso3fdb2dd2005-09-28 18:45:54 +00002904 for (ALL_LIST_ELEMENTS_RO (lsps, node, lsp))
hassof390d2c2004-09-10 20:48:21 +00002905 {
hasso529d65b2004-12-24 00:14:50 +00002906 zlog_debug ("ISIS-Snp (%s): PSNP entry %s, seq 0x%08x,"
2907 " cksum 0x%04x, lifetime %us",
2908 circuit->area->area_tag,
2909 rawlspid_print (lsp->lsp_header->lsp_id),
2910 ntohl (lsp->lsp_header->seq_num),
2911 ntohs (lsp->lsp_header->checksum),
2912 ntohs (lsp->lsp_header->rem_lifetime));
hassof390d2c2004-09-10 20:48:21 +00002913 }
2914 }
2915
paul9985f832005-02-09 15:51:56 +00002916 length = (u_int16_t) stream_get_endp (circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00002917 /* Update PDU length */
2918 stream_putw_at (circuit->snd_stream, lenp, length);
2919
Josh Bailey3f045a02012-03-24 08:35:20 -07002920 /* For HMAC MD5 we need to compute the md5 hash and store it */
2921 if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_SEND) &&
2922 passwd->type == ISIS_PASSWD_TYPE_HMAC_MD5)
2923 {
2924 hmac_md5 (STREAM_DATA (circuit->snd_stream),
2925 stream_get_endp(circuit->snd_stream),
2926 (unsigned char *) &passwd->passwd, passwd->len,
David Lamparter21401f32015-03-03 08:55:26 +01002927 (unsigned char *) &hmac_md5_hash);
Josh Bailey3f045a02012-03-24 08:35:20 -07002928 /* Copy the hash into the stream */
2929 memcpy (STREAM_DATA (circuit->snd_stream) + auth_tlv_offset + 3,
2930 hmac_md5_hash, ISIS_AUTH_MD5_SIZE);
2931 }
2932
jardineb5d44e2003-12-23 08:09:43 +00002933 return ISIS_OK;
2934}
2935
2936/*
2937 * 7.3.15.4 action on expiration of partial SNP interval
2938 * level 1
2939 */
hasso92365882005-01-18 13:53:33 +00002940static int
jardineb5d44e2003-12-23 08:09:43 +00002941send_psnp (int level, struct isis_circuit *circuit)
2942{
jardineb5d44e2003-12-23 08:09:43 +00002943 struct isis_lsp *lsp;
2944 struct list *list = NULL;
hasso3fdb2dd2005-09-28 18:45:54 +00002945 struct listnode *node;
Josh Bailey3f045a02012-03-24 08:35:20 -07002946 u_char num_lsps;
2947 int retval = ISIS_OK;
jardineb5d44e2003-12-23 08:09:43 +00002948
Josh Bailey3f045a02012-03-24 08:35:20 -07002949 if (circuit->circ_type == CIRCUIT_T_BROADCAST &&
2950 circuit->u.bc.is_dr[level - 1])
2951 return ISIS_OK;
2952
2953 if (circuit->area->lspdb[level - 1] == NULL ||
2954 dict_count (circuit->area->lspdb[level - 1]) == 0)
2955 return ISIS_OK;
2956
Subbaiah Venkatae38e0df2012-03-27 23:48:05 -07002957 if (! circuit->snd_stream)
2958 return ISIS_ERROR;
2959
Josh Bailey3f045a02012-03-24 08:35:20 -07002960 num_lsps = max_lsps_per_snp (ISIS_SNP_PSNP_FLAG, level, circuit);
2961
2962 while (1)
hassof390d2c2004-09-10 20:48:21 +00002963 {
Josh Bailey3f045a02012-03-24 08:35:20 -07002964 list = list_new ();
2965 lsp_build_list_ssn (circuit, num_lsps, list,
2966 circuit->area->lspdb[level - 1]);
jardineb5d44e2003-12-23 08:09:43 +00002967
Josh Bailey3f045a02012-03-24 08:35:20 -07002968 if (listcount (list) == 0)
2969 {
2970 list_delete (list);
2971 return ISIS_OK;
2972 }
jardineb5d44e2003-12-23 08:09:43 +00002973
Josh Bailey3f045a02012-03-24 08:35:20 -07002974 retval = build_psnp (level, circuit, list);
2975 if (retval != ISIS_OK)
2976 {
2977 zlog_err ("ISIS-Snp (%s): Build L%d PSNP on %s failed",
2978 circuit->area->area_tag, level, circuit->interface->name);
2979 list_delete (list);
2980 return retval;
2981 }
jardineb5d44e2003-12-23 08:09:43 +00002982
Josh Bailey3f045a02012-03-24 08:35:20 -07002983 if (isis->debugs & DEBUG_SNP_PACKETS)
2984 {
David Lamparter01da6172015-04-10 09:10:11 +02002985 zlog_debug ("ISIS-Snp (%s): Sent L%d PSNP on %s, length %zd",
Josh Bailey3f045a02012-03-24 08:35:20 -07002986 circuit->area->area_tag, level,
2987 circuit->interface->name,
2988 stream_get_endp (circuit->snd_stream));
2989 if (isis->debugs & DEBUG_PACKET_DUMP)
2990 zlog_dump_data (STREAM_DATA (circuit->snd_stream),
2991 stream_get_endp (circuit->snd_stream));
2992 }
jardineb5d44e2003-12-23 08:09:43 +00002993
Josh Bailey3f045a02012-03-24 08:35:20 -07002994 retval = circuit->tx (circuit, level);
2995 if (retval != ISIS_OK)
2996 {
2997 zlog_err ("ISIS-Snp (%s): Send L%d PSNP on %s failed",
2998 circuit->area->area_tag, level,
2999 circuit->interface->name);
3000 list_delete (list);
3001 return retval;
3002 }
jardineb5d44e2003-12-23 08:09:43 +00003003
Josh Bailey3f045a02012-03-24 08:35:20 -07003004 /*
3005 * sending succeeded, we can clear SSN flags of this circuit
3006 * for the LSPs in list
3007 */
3008 for (ALL_LIST_ELEMENTS_RO (list, node, lsp))
3009 ISIS_CLEAR_FLAG (lsp->SSNflags, circuit);
3010 list_delete (list);
jardineb5d44e2003-12-23 08:09:43 +00003011 }
jardineb5d44e2003-12-23 08:09:43 +00003012
3013 return retval;
3014}
3015
3016int
3017send_l1_psnp (struct thread *thread)
3018{
3019
3020 struct isis_circuit *circuit;
3021 int retval = ISIS_OK;
3022
3023 circuit = THREAD_ARG (thread);
3024 assert (circuit);
3025
3026 circuit->t_send_psnp[0] = NULL;
3027
3028 send_psnp (1, circuit);
3029 /* set next timer thread */
hassof390d2c2004-09-10 20:48:21 +00003030 THREAD_TIMER_ON (master, circuit->t_send_psnp[0], send_l1_psnp, circuit,
3031 isis_jitter (circuit->psnp_interval[0], PSNP_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00003032
3033 return retval;
3034}
3035
3036/*
3037 * 7.3.15.4 action on expiration of partial SNP interval
3038 * level 2
3039 */
3040int
3041send_l2_psnp (struct thread *thread)
3042{
jardineb5d44e2003-12-23 08:09:43 +00003043 struct isis_circuit *circuit;
3044 int retval = ISIS_OK;
3045
3046 circuit = THREAD_ARG (thread);
3047 assert (circuit);
3048
3049 circuit->t_send_psnp[1] = NULL;
3050
3051 send_psnp (2, circuit);
3052
3053 /* set next timer thread */
hassof390d2c2004-09-10 20:48:21 +00003054 THREAD_TIMER_ON (master, circuit->t_send_psnp[1], send_l2_psnp, circuit,
3055 isis_jitter (circuit->psnp_interval[1], PSNP_JITTER));
jardineb5d44e2003-12-23 08:09:43 +00003056
3057 return retval;
3058}
3059
jardineb5d44e2003-12-23 08:09:43 +00003060/*
3061 * ISO 10589 - 7.3.14.3
3062 */
3063int
3064send_lsp (struct thread *thread)
3065{
3066 struct isis_circuit *circuit;
3067 struct isis_lsp *lsp;
3068 struct listnode *node;
Josh Bailey3f045a02012-03-24 08:35:20 -07003069 int retval = ISIS_OK;
jardineb5d44e2003-12-23 08:09:43 +00003070
3071 circuit = THREAD_ARG (thread);
3072 assert (circuit);
3073
Josh Bailey3f045a02012-03-24 08:35:20 -07003074 if (circuit->state != C_STATE_UP || circuit->is_passive == 1)
3075 {
3076 return retval;
3077 }
3078
Avneesh Sachdev0fece072012-05-06 00:03:07 -07003079 node = listhead (circuit->lsp_queue);
3080
3081 /*
3082 * Handle case where there are no LSPs on the queue. This can
3083 * happen, for instance, if an adjacency goes down before this
3084 * thread gets a chance to run.
3085 */
3086 if (!node)
3087 {
3088 return retval;
3089 }
3090
3091 lsp = listgetdata(node);
Josh Bailey3f045a02012-03-24 08:35:20 -07003092
3093 /*
3094 * Do not send if levels do not match
3095 */
3096 if (!(lsp->level & circuit->is_type))
hassof390d2c2004-09-10 20:48:21 +00003097 {
Josh Bailey3f045a02012-03-24 08:35:20 -07003098 list_delete_node (circuit->lsp_queue, node);
3099 return retval;
hassof390d2c2004-09-10 20:48:21 +00003100 }
jardineb5d44e2003-12-23 08:09:43 +00003101
Josh Bailey3f045a02012-03-24 08:35:20 -07003102 /*
3103 * Do not send if we do not have adjacencies in state up on the circuit
3104 */
3105 if (circuit->upadjcount[lsp->level - 1] == 0)
3106 {
3107 list_delete_node (circuit->lsp_queue, node);
3108 return retval;
3109 }
3110
3111 /* copy our lsp to the send buffer */
3112 stream_copy (circuit->snd_stream, lsp->pdu);
3113
3114 if (isis->debugs & DEBUG_UPDATE_PACKETS)
3115 {
3116 zlog_debug
3117 ("ISIS-Upd (%s): Sent L%d LSP %s, seq 0x%08x, cksum 0x%04x,"
3118 " lifetime %us on %s", circuit->area->area_tag, lsp->level,
3119 rawlspid_print (lsp->lsp_header->lsp_id),
3120 ntohl (lsp->lsp_header->seq_num),
3121 ntohs (lsp->lsp_header->checksum),
3122 ntohs (lsp->lsp_header->rem_lifetime),
3123 circuit->interface->name);
3124 if (isis->debugs & DEBUG_PACKET_DUMP)
3125 zlog_dump_data (STREAM_DATA (circuit->snd_stream),
3126 stream_get_endp (circuit->snd_stream));
3127 }
3128
3129 retval = circuit->tx (circuit, lsp->level);
3130 if (retval != ISIS_OK)
3131 {
3132 zlog_err ("ISIS-Upd (%s): Send L%d LSP on %s failed",
3133 circuit->area->area_tag, lsp->level,
3134 circuit->interface->name);
3135 return retval;
3136 }
3137
3138 /*
3139 * If the sending succeeded, we can del the lsp from circuits
3140 * lsp_queue
3141 */
3142 list_delete_node (circuit->lsp_queue, node);
3143
3144 /* Set the last-cleared time if the queue is empty. */
3145 /* TODO: Is is possible that new lsps keep being added to the queue
3146 * that the queue is never empty? */
3147 if (list_isempty (circuit->lsp_queue))
3148 circuit->lsp_queue_last_cleared = time (NULL);
3149
3150 /*
3151 * On broadcast circuits also the SRMflag can be cleared
3152 */
3153 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
3154 ISIS_CLEAR_FLAG (lsp->SRMflags, circuit);
3155
jardineb5d44e2003-12-23 08:09:43 +00003156 return retval;
hassof390d2c2004-09-10 20:48:21 +00003157}
jardineb5d44e2003-12-23 08:09:43 +00003158
3159int
hassof390d2c2004-09-10 20:48:21 +00003160ack_lsp (struct isis_link_state_hdr *hdr, struct isis_circuit *circuit,
3161 int level)
jardineb5d44e2003-12-23 08:09:43 +00003162{
3163 unsigned long lenp;
3164 int retval;
3165 u_int16_t length;
3166 struct isis_fixed_hdr fixed_hdr;
3167
3168 if (!circuit->snd_stream)
hassof390d2c2004-09-10 20:48:21 +00003169 circuit->snd_stream = stream_new (ISO_MTU (circuit));
jardineb5d44e2003-12-23 08:09:43 +00003170 else
3171 stream_reset (circuit->snd_stream);
3172
Josh Bailey3f045a02012-03-24 08:35:20 -07003173 // fill_llc_hdr (stream);
3174 if (level == IS_LEVEL_1)
hassof390d2c2004-09-10 20:48:21 +00003175 fill_fixed_hdr_andstream (&fixed_hdr, L1_PARTIAL_SEQ_NUM,
3176 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00003177 else
hassof390d2c2004-09-10 20:48:21 +00003178 fill_fixed_hdr_andstream (&fixed_hdr, L2_PARTIAL_SEQ_NUM,
3179 circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00003180
3181
paul9985f832005-02-09 15:51:56 +00003182 lenp = stream_get_endp (circuit->snd_stream);
hassof390d2c2004-09-10 20:48:21 +00003183 stream_putw (circuit->snd_stream, 0); /* PDU length */
3184 stream_put (circuit->snd_stream, isis->sysid, ISIS_SYS_ID_LEN);
jardineb5d44e2003-12-23 08:09:43 +00003185 stream_putc (circuit->snd_stream, circuit->idx);
hassof390d2c2004-09-10 20:48:21 +00003186 stream_putc (circuit->snd_stream, 9); /* code */
3187 stream_putc (circuit->snd_stream, 16); /* len */
jardineb5d44e2003-12-23 08:09:43 +00003188
hassof390d2c2004-09-10 20:48:21 +00003189 stream_putw (circuit->snd_stream, ntohs (hdr->rem_lifetime));
3190 stream_put (circuit->snd_stream, hdr->lsp_id, ISIS_SYS_ID_LEN + 2);
3191 stream_putl (circuit->snd_stream, ntohl (hdr->seq_num));
3192 stream_putw (circuit->snd_stream, ntohs (hdr->checksum));
jardineb5d44e2003-12-23 08:09:43 +00003193
paul9985f832005-02-09 15:51:56 +00003194 length = (u_int16_t) stream_get_endp (circuit->snd_stream);
jardineb5d44e2003-12-23 08:09:43 +00003195 /* Update PDU length */
3196 stream_putw_at (circuit->snd_stream, lenp, length);
3197
3198 retval = circuit->tx (circuit, level);
Josh Bailey3f045a02012-03-24 08:35:20 -07003199 if (retval != ISIS_OK)
3200 zlog_err ("ISIS-Upd (%s): Send L%d LSP PSNP on %s failed",
3201 circuit->area->area_tag, level,
3202 circuit->interface->name);
jardineb5d44e2003-12-23 08:09:43 +00003203
3204 return retval;
3205}