]> git.proxmox.com Git - mirror_frr.git/blame - isisd/isis_pdu.c
bgpd: fix dereference of null pointer in bgp_attr_aspath
[mirror_frr.git] / isisd / isis_pdu.c
CommitLineData
eb5d44eb 1/*
d62a17ae 2 * IS-IS Rout(e)ing protocol - isis_pdu.c
eb5d44eb 3 * PDU processing
4 *
5 * Copyright (C) 2001,2002 Sampo Saaristo
d62a17ae 6 * Tampere University of Technology
eb5d44eb 7 * Institute of Communications Engineering
8 *
d62a17ae 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)
eb5d44eb 12 * any later version.
13 *
d62a17ae 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
eb5d44eb 17 * more details.
896014f4
DL
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; see the file COPYING; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
eb5d44eb 22 */
23
eb5d44eb 24#include <zebra.h>
eb5d44eb 25
26#include "memory.h"
27#include "thread.h"
28#include "linklist.h"
29#include "log.h"
30#include "stream.h"
31#include "vty.h"
3f045a08 32#include "hash.h"
eb5d44eb 33#include "prefix.h"
34#include "if.h"
6a270cd9 35#include "checksum.h"
3f045a08 36#include "md5.h"
38937bd5 37#include "lib_errors.h"
eb5d44eb 38
eb5d44eb 39#include "isisd/isis_constants.h"
40#include "isisd/isis_common.h"
3f045a08 41#include "isisd/isis_flags.h"
eb5d44eb 42#include "isisd/isis_adjacency.h"
43#include "isisd/isis_circuit.h"
44#include "isisd/isis_network.h"
45#include "isisd/isis_misc.h"
46#include "isisd/isis_dr.h"
eb5d44eb 47#include "isisd/isisd.h"
48#include "isisd/isis_dynhn.h"
49#include "isisd/isis_lsp.h"
50#include "isisd/isis_pdu.h"
51#include "isisd/iso_checksum.h"
52#include "isisd/isis_csm.h"
53#include "isisd/isis_events.h"
f8c06e2c 54#include "isisd/isis_te.h"
99894f9a 55#include "isisd/isis_mt.h"
841791b6 56#include "isisd/isis_tlvs.h"
54ece698 57#include "isisd/isis_errors.h"
8e6fb83b 58#include "isisd/fabricd.h"
9b39405f 59#include "isisd/isis_tx_queue.h"
39bb53d6 60#include "isisd/isis_pdu_counter.h"
2a1c520e 61#include "isisd/isis_nb.h"
eb5d44eb 62
af8ac8f9
CF
63static int ack_lsp(struct isis_lsp_hdr *hdr, struct isis_circuit *circuit,
64 int level)
eb5d44eb 65{
af8ac8f9
CF
66 unsigned long lenp;
67 int retval;
d7c0a89a 68 uint16_t length;
af8ac8f9
CF
69 uint8_t pdu_type =
70 (level == IS_LEVEL_1) ? L1_PARTIAL_SEQ_NUM : L2_PARTIAL_SEQ_NUM;
d62a17ae 71
af8ac8f9 72 isis_circuit_stream(circuit, &circuit->snd_stream);
3f045a08 73
af8ac8f9 74 fill_fixed_hdr(pdu_type, circuit->snd_stream);
d62a17ae 75
af8ac8f9 76 lenp = stream_get_endp(circuit->snd_stream);
eab88f36 77
af8ac8f9 78 stream_putw(circuit->snd_stream, 0); /* PDU length */
99e5d4af 79 stream_put(circuit->snd_stream, circuit->isis->sysid, ISIS_SYS_ID_LEN);
af8ac8f9
CF
80 stream_putc(circuit->snd_stream, circuit->idx);
81 stream_putc(circuit->snd_stream, 9); /* code */
82 stream_putc(circuit->snd_stream, 16); /* len */
d62a17ae 83
af8ac8f9
CF
84 stream_putw(circuit->snd_stream, hdr->rem_lifetime);
85 stream_put(circuit->snd_stream, hdr->lsp_id, ISIS_SYS_ID_LEN + 2);
86 stream_putl(circuit->snd_stream, hdr->seqno);
87 stream_putw(circuit->snd_stream, hdr->checksum);
3f045a08 88
d7c0a89a 89 length = (uint16_t)stream_get_endp(circuit->snd_stream);
af8ac8f9
CF
90 /* Update PDU length */
91 stream_putw_at(circuit->snd_stream, lenp, length);
3f045a08 92
39bb53d6 93 pdu_counter_count(circuit->area->pdu_tx_counters, pdu_type);
af8ac8f9
CF
94 retval = circuit->tx(circuit, level);
95 if (retval != ISIS_OK)
1a7ecb96 96 flog_err(EC_ISIS_PACKET,
1c50c1c0
QY
97 "ISIS-Upd (%s): Send L%d LSP PSNP on %s failed",
98 circuit->area->area_tag, level,
99 circuit->interface->name);
d62a17ae 100
101 return retval;
eb5d44eb 102}
103
eb5d44eb 104/*
d62a17ae 105 * RECEIVE SIDE
eb5d44eb 106 */
107
0c1bd758
CF
108struct iih_info {
109 struct isis_circuit *circuit;
d7c0a89a 110 uint8_t *ssnpa;
0c1bd758 111 int level;
eb5d44eb 112
0c1bd758
CF
113 uint8_t circ_type;
114 uint8_t sys_id[ISIS_SYS_ID_LEN];
115 uint16_t holdtime;
116 uint16_t pdu_len;
d62a17ae 117
0c1bd758 118 uint8_t circuit_id;
eb5d44eb 119
0c1bd758
CF
120 uint8_t priority;
121 uint8_t dis[ISIS_SYS_ID_LEN + 1];
d8fba7d9 122
0c1bd758
CF
123 bool v4_usable;
124 bool v6_usable;
eb5d44eb 125
0c1bd758
CF
126 struct isis_tlvs *tlvs;
127};
eb5d44eb 128
0c1bd758
CF
129static int process_p2p_hello(struct iih_info *iih)
130{
42fe2621 131 struct isis_threeway_adj *tw_adj = iih->tlvs->threeway_adj;
eab88f36 132
42fe2621
CF
133 if (tw_adj) {
134 if (tw_adj->state > ISIS_THREEWAY_DOWN) {
e740f9c1 135 if (IS_DEBUG_ADJ_PACKETS) {
9165c5f5 136 zlog_debug("ISIS-Adj (%s): Rcvd P2P IIH from (%s) with invalid three-way state: %d",
42fe2621
CF
137 iih->circuit->area->area_tag,
138 iih->circuit->interface->name,
139 tw_adj->state);
140 }
141 return ISIS_WARNING;
142 }
143
144 if (tw_adj->neighbor_set
99e5d4af
DS
145 && (memcmp(tw_adj->neighbor_id, iih->circuit->isis->sysid,
146 ISIS_SYS_ID_LEN)
eab88f36
K
147 || tw_adj->neighbor_circuit_id
148 != (uint32_t)iih->circuit->idx)) {
42fe2621 149
e740f9c1 150 if (IS_DEBUG_ADJ_PACKETS) {
9165c5f5 151 zlog_debug("ISIS-Adj (%s): Rcvd P2P IIH from (%s) which lists IS/Circuit different from us as neighbor.",
42fe2621
CF
152 iih->circuit->area->area_tag,
153 iih->circuit->interface->name);
154 }
155
156 return ISIS_WARNING;
157 }
158 }
159
d62a17ae 160 /*
161 * My interpertation of the ISO, if no adj exists we will create one for
162 * the circuit
163 */
0c1bd758 164 struct isis_adjacency *adj = iih->circuit->u.p2p.neighbor;
d62a17ae 165 /* If an adjacency exists, check it is with the source of the hello
166 * packets */
167 if (adj) {
0c1bd758 168 if (memcmp(iih->sys_id, adj->sysid, ISIS_SYS_ID_LEN)) {
d62a17ae 169 zlog_debug(
1d5453d6 170 "hello source and adjacency do not match, set adj down");
16167b31 171 isis_adj_state_change(&adj, ISIS_ADJ_DOWN,
d62a17ae 172 "adj do not exist");
0c1bd758 173 return ISIS_OK;
f390d2c7 174 }
d62a17ae 175 }
0c1bd758 176 if (!adj || adj->level != iih->circ_type) {
d62a17ae 177 if (!adj) {
0c1bd758
CF
178 adj = isis_new_adj(iih->sys_id, NULL, iih->circ_type,
179 iih->circuit);
d62a17ae 180 } else {
0c1bd758 181 adj->level = iih->circ_type;
f390d2c7 182 }
0c1bd758 183 iih->circuit->u.p2p.neighbor = adj;
d62a17ae 184 /* Build lsp with the new neighbor entry when a new
185 * adjacency is formed. Set adjacency circuit type to
186 * IIH PDU header circuit type before lsp is regenerated
187 * when an adjacency is up. This will result in the new
188 * adjacency entry getting added to the lsp tlv neighbor list.
189 */
0c1bd758 190 adj->circuit_t = iih->circ_type;
16167b31 191 isis_adj_state_change(&adj, ISIS_ADJ_INITIALIZING, NULL);
d62a17ae 192 adj->sys_type = ISIS_SYSTYPE_UNKNOWN;
f390d2c7 193 }
eb5d44eb 194
df04b6af 195 if (tw_adj)
42fe2621
CF
196 adj->ext_circuit_id = tw_adj->local_circuit_id;
197
d62a17ae 198 /* 8.2.6 Monitoring point-to-point adjacencies */
0c1bd758 199 adj->hold_time = iih->holdtime;
d62a17ae 200 adj->last_upd = time(NULL);
201
0c1bd758
CF
202 bool changed;
203 isis_tlvs_to_adj(iih->tlvs, adj, &changed);
204 changed |= tlvs_to_adj_mt_set(iih->tlvs, iih->v4_usable, iih->v6_usable,
205 adj);
d62a17ae 206
d62a17ae 207 /* lets take care of the expiry */
fa935aa7 208 THREAD_OFF(adj->t_expire);
d62a17ae 209 thread_add_timer(master, isis_adj_expire, adj, (long)adj->hold_time,
210 &adj->t_expire);
211
8e6fb83b
CF
212 /* While fabricds initial sync is in progress, ignore hellos from other
213 * interfaces than the one we are performing the initial sync on. */
214 if (fabricd_initial_sync_is_in_progress(iih->circuit->area)
215 && fabricd_initial_sync_circuit(iih->circuit->area) != iih->circuit)
216 return ISIS_OK;
217
d62a17ae 218 /* 8.2.5.2 a) a match was detected */
0c1bd758
CF
219 if (isis_tlvs_area_addresses_match(iih->tlvs,
220 iih->circuit->area->area_addrs)) {
d62a17ae 221 /* 8.2.5.2 a) 2) If the system is L1 - table 5 */
0c1bd758
CF
222 if (iih->circuit->area->is_type == IS_LEVEL_1) {
223 switch (iih->circ_type) {
d62a17ae 224 case IS_LEVEL_1:
225 case IS_LEVEL_1_AND_2:
42fe2621
CF
226 if (adj->adj_state != ISIS_ADJ_UP
227 || adj->adj_usage == ISIS_ADJ_LEVEL1) {
228 isis_adj_process_threeway(adj, tw_adj,
229 ISIS_ADJ_LEVEL1);
d62a17ae 230 }
231 break;
232 case IS_LEVEL_2:
233 if (adj->adj_state != ISIS_ADJ_UP) {
234 /* (7) reject - wrong system type event
235 */
236 zlog_warn("wrongSystemType");
0c1bd758 237 return ISIS_WARNING;
d62a17ae 238 } else if (adj->adj_usage == ISIS_ADJ_LEVEL1) {
239 /* (6) down - wrong system */
16167b31 240 isis_adj_state_change(&adj,
d62a17ae 241 ISIS_ADJ_DOWN,
242 "Wrong System");
243 }
244 break;
245 }
f390d2c7 246 }
d62a17ae 247
248 /* 8.2.5.2 a) 3) If the system is L1L2 - table 6 */
0c1bd758
CF
249 if (iih->circuit->area->is_type == IS_LEVEL_1_AND_2) {
250 switch (iih->circ_type) {
d62a17ae 251 case IS_LEVEL_1:
42fe2621
CF
252 if (adj->adj_state != ISIS_ADJ_UP
253 || adj->adj_usage == ISIS_ADJ_LEVEL1) {
254 isis_adj_process_threeway(adj, tw_adj,
255 ISIS_ADJ_LEVEL1);
d62a17ae 256 } else if ((adj->adj_usage
257 == ISIS_ADJ_LEVEL1AND2)
258 || (adj->adj_usage
259 == ISIS_ADJ_LEVEL2)) {
260 /* (8) down - wrong system */
16167b31 261 isis_adj_state_change(&adj,
d62a17ae 262 ISIS_ADJ_DOWN,
263 "Wrong System");
264 }
265 break;
266 case IS_LEVEL_2:
42fe2621
CF
267 if (adj->adj_state != ISIS_ADJ_UP
268 || adj->adj_usage == ISIS_ADJ_LEVEL2) {
269 isis_adj_process_threeway(adj, tw_adj,
270 ISIS_ADJ_LEVEL2);
d62a17ae 271 } else if ((adj->adj_usage == ISIS_ADJ_LEVEL1)
272 || (adj->adj_usage
273 == ISIS_ADJ_LEVEL1AND2)) {
274 /* (8) down - wrong system */
16167b31 275 isis_adj_state_change(&adj,
d62a17ae 276 ISIS_ADJ_DOWN,
277 "Wrong System");
d62a17ae 278 }
279 break;
280 case IS_LEVEL_1_AND_2:
42fe2621
CF
281 if (adj->adj_state != ISIS_ADJ_UP
282 || adj->adj_usage == ISIS_ADJ_LEVEL1AND2) {
283 isis_adj_process_threeway(adj, tw_adj,
284 ISIS_ADJ_LEVEL1AND2);
d62a17ae 285 } else if ((adj->adj_usage == ISIS_ADJ_LEVEL1)
286 || (adj->adj_usage
287 == ISIS_ADJ_LEVEL2)) {
288 /* (8) down - wrong system */
16167b31 289 isis_adj_state_change(&adj,
d62a17ae 290 ISIS_ADJ_DOWN,
291 "Wrong System");
d62a17ae 292 }
293 break;
294 }
f390d2c7 295 }
d62a17ae 296
297 /* 8.2.5.2 a) 4) If the system is L2 - table 7 */
0c1bd758
CF
298 if (iih->circuit->area->is_type == IS_LEVEL_2) {
299 switch (iih->circ_type) {
d62a17ae 300 case IS_LEVEL_1:
301 if (adj->adj_state != ISIS_ADJ_UP) {
302 /* (5) reject - wrong system type event
303 */
304 zlog_warn("wrongSystemType");
0c1bd758 305 return ISIS_WARNING;
d62a17ae 306 } else if ((adj->adj_usage
307 == ISIS_ADJ_LEVEL1AND2)
308 || (adj->adj_usage
309 == ISIS_ADJ_LEVEL2)) {
310 /* (6) down - wrong system */
16167b31 311 isis_adj_state_change(&adj,
d62a17ae 312 ISIS_ADJ_DOWN,
313 "Wrong System");
314 }
315 break;
316 case IS_LEVEL_1_AND_2:
317 case IS_LEVEL_2:
42fe2621
CF
318 if (adj->adj_state != ISIS_ADJ_UP
319 || adj->adj_usage == ISIS_ADJ_LEVEL2) {
320 isis_adj_process_threeway(adj, tw_adj,
321 ISIS_ADJ_LEVEL2);
d62a17ae 322 } else if (adj->adj_usage
323 == ISIS_ADJ_LEVEL1AND2) {
324 /* (6) down - wrong system */
16167b31 325 isis_adj_state_change(&adj,
d62a17ae 326 ISIS_ADJ_DOWN,
327 "Wrong System");
d62a17ae 328 }
329 break;
330 }
f390d2c7 331 }
d62a17ae 332 }
333 /* 8.2.5.2 b) if no match was detected */
0c1bd758
CF
334 else if (listcount(iih->circuit->area->area_addrs) > 0) {
335 if (iih->circuit->area->is_type == IS_LEVEL_1) {
d62a17ae 336 /* 8.2.5.2 b) 1) is_type L1 and adj is not up */
337 if (adj->adj_state != ISIS_ADJ_UP) {
16167b31 338 isis_adj_state_change(&adj, ISIS_ADJ_DOWN,
d62a17ae 339 "Area Mismatch");
340 /* 8.2.5.2 b) 2)is_type L1 and adj is up */
341 } else {
16167b31 342 isis_adj_state_change(&adj, ISIS_ADJ_DOWN,
d62a17ae 343 "Down - Area Mismatch");
344 }
f390d2c7 345 }
d62a17ae 346 /* 8.2.5.2 b 3 If the system is L2 or L1L2 - table 8 */
347 else {
0c1bd758 348 switch (iih->circ_type) {
d62a17ae 349 case IS_LEVEL_1:
350 if (adj->adj_state != ISIS_ADJ_UP) {
351 /* (6) reject - Area Mismatch event */
352 zlog_warn("AreaMismatch");
0c1bd758 353 return ISIS_WARNING;
d62a17ae 354 } else if (adj->adj_usage == ISIS_ADJ_LEVEL1) {
355 /* (7) down - area mismatch */
16167b31 356 isis_adj_state_change(&adj,
d62a17ae 357 ISIS_ADJ_DOWN,
358 "Area Mismatch");
359
360 } else if ((adj->adj_usage
361 == ISIS_ADJ_LEVEL1AND2)
362 || (adj->adj_usage
363 == ISIS_ADJ_LEVEL2)) {
364 /* (7) down - wrong system */
16167b31 365 isis_adj_state_change(&adj,
d62a17ae 366 ISIS_ADJ_DOWN,
367 "Wrong System");
368 }
369 break;
370 case IS_LEVEL_1_AND_2:
371 case IS_LEVEL_2:
42fe2621
CF
372 if (adj->adj_state != ISIS_ADJ_UP
373 || adj->adj_usage == ISIS_ADJ_LEVEL2) {
374 isis_adj_process_threeway(adj, tw_adj,
375 ISIS_ADJ_LEVEL2);
d62a17ae 376 } else if (adj->adj_usage == ISIS_ADJ_LEVEL1) {
377 /* (7) down - wrong system */
16167b31 378 isis_adj_state_change(&adj,
d62a17ae 379 ISIS_ADJ_DOWN,
380 "Wrong System");
381 } else if (adj->adj_usage
382 == ISIS_ADJ_LEVEL1AND2) {
0c1bd758 383 if (iih->circ_type == IS_LEVEL_2) {
d62a17ae 384 /* (7) down - wrong system */
385 isis_adj_state_change(
16167b31 386 &adj, ISIS_ADJ_DOWN,
d62a17ae 387 "Wrong System");
388 } else {
389 /* (7) down - area mismatch */
390 isis_adj_state_change(
16167b31 391 &adj, ISIS_ADJ_DOWN,
d62a17ae 392 "Area Mismatch");
393 }
d62a17ae 394 }
395 break;
396 }
f390d2c7 397 }
d62a17ae 398 } else {
399 /* down - area mismatch */
16167b31 400 isis_adj_state_change(&adj, ISIS_ADJ_DOWN, "Area Mismatch");
f390d2c7 401 }
d8fba7d9 402
16167b31
DS
403 if (adj) {
404 if (adj->adj_state == ISIS_ADJ_UP && changed) {
405 lsp_regenerate_schedule(
406 adj->circuit->area,
407 isis_adj_usage2levels(adj->adj_usage), 0);
408 }
eb5d44eb 409
16167b31
DS
410 /* 8.2.5.2 c) if the action was up - comparing circuit IDs */
411 /* FIXME - Missing parts */
d62a17ae 412
16167b31
DS
413 /* some of my own understanding of the ISO, why the heck does
414 * it not say what should I change the system_type to...
415 */
416 switch (adj->adj_usage) {
417 case ISIS_ADJ_LEVEL1:
418 adj->sys_type = ISIS_SYSTYPE_L1_IS;
419 break;
420 case ISIS_ADJ_LEVEL2:
421 adj->sys_type = ISIS_SYSTYPE_L2_IS;
422 break;
423 case ISIS_ADJ_LEVEL1AND2:
424 adj->sys_type = ISIS_SYSTYPE_L2_IS;
425 break;
426 case ISIS_ADJ_NONE:
427 adj->sys_type = ISIS_SYSTYPE_UNKNOWN;
428 break;
429 }
d62a17ae 430 }
eb5d44eb 431
e740f9c1 432 if (IS_DEBUG_ADJ_PACKETS) {
d62a17ae 433 zlog_debug(
6cde4b45 434 "ISIS-Adj (%s): Rcvd P2P IIH from (%s), cir type %s, cir id %hhu, length %hu",
0c1bd758
CF
435 iih->circuit->area->area_tag,
436 iih->circuit->interface->name,
437 circuit_t2string(iih->circuit->is_type),
438 iih->circuit->circuit_id, iih->pdu_len);
d62a17ae 439 }
eb5d44eb 440
0c1bd758 441 return ISIS_OK;
eb5d44eb 442}
443
0c1bd758 444static int process_lan_hello(struct iih_info *iih)
eb5d44eb 445{
d62a17ae 446 struct isis_adjacency *adj;
0c1bd758
CF
447 adj = isis_adj_lookup(iih->sys_id,
448 iih->circuit->u.bc.adjdb[iih->level - 1]);
449 if ((adj == NULL) || (memcmp(adj->snpa, iih->ssnpa, ETH_ALEN))
450 || (adj->level != iih->level)) {
451 if (!adj) {
452 /* Do as in 8.4.2.5 */
453 adj = isis_new_adj(iih->sys_id, iih->ssnpa, iih->level,
454 iih->circuit);
455 } else {
456 if (iih->ssnpa) {
457 memcpy(adj->snpa, iih->ssnpa, 6);
458 } else {
459 memset(adj->snpa, ' ', 6);
460 }
461 adj->level = iih->level;
462 }
16167b31 463 isis_adj_state_change(&adj, ISIS_ADJ_INITIALIZING, NULL);
d62a17ae 464
0c1bd758
CF
465 if (iih->level == IS_LEVEL_1)
466 adj->sys_type = ISIS_SYSTYPE_L1_IS;
467 else
468 adj->sys_type = ISIS_SYSTYPE_L2_IS;
469 list_delete_all_node(
470 iih->circuit->u.bc.lan_neighs[iih->level - 1]);
471 isis_adj_build_neigh_list(
472 iih->circuit->u.bc.adjdb[iih->level - 1],
473 iih->circuit->u.bc.lan_neighs[iih->level - 1]);
474 }
475
476 if (adj->dis_record[iih->level - 1].dis == ISIS_IS_DIS) {
d7c0a89a
QY
477 uint8_t *dis = (iih->level == 1)
478 ? iih->circuit->u.bc.l1_desig_is
479 : iih->circuit->u.bc.l2_desig_is;
0c1bd758
CF
480
481 if (memcmp(dis, iih->dis, ISIS_SYS_ID_LEN + 1)) {
482 thread_add_event(master, isis_event_dis_status_change,
483 iih->circuit, 0, NULL);
484 memcpy(dis, iih->dis, ISIS_SYS_ID_LEN + 1);
485 }
d62a17ae 486 }
3f045a08 487
0c1bd758
CF
488 adj->circuit_t = iih->circ_type;
489 adj->hold_time = iih->holdtime;
490 adj->last_upd = time(NULL);
491 adj->prio[iih->level - 1] = iih->priority;
492 memcpy(adj->lanid, iih->dis, ISIS_SYS_ID_LEN + 1);
3f045a08 493
0c1bd758
CF
494 bool changed;
495 isis_tlvs_to_adj(iih->tlvs, adj, &changed);
496 changed |= tlvs_to_adj_mt_set(iih->tlvs, iih->v4_usable, iih->v6_usable,
497 adj);
498
499 /* lets take care of the expiry */
fa935aa7 500 THREAD_OFF(adj->t_expire);
0c1bd758
CF
501 thread_add_timer(master, isis_adj_expire, adj, (long)adj->hold_time,
502 &adj->t_expire);
503
504 /*
505 * If the snpa for this circuit is found from LAN Neighbours TLV
506 * we have two-way communication -> adjacency can be put to state "up"
507 */
508 bool own_snpa_found =
509 isis_tlvs_own_snpa_found(iih->tlvs, iih->circuit->u.bc.snpa);
510
511 if (adj->adj_state != ISIS_ADJ_UP) {
512 if (own_snpa_found) {
513 isis_adj_state_change(
16167b31 514 &adj, ISIS_ADJ_UP,
0c1bd758
CF
515 "own SNPA found in LAN Neighbours TLV");
516 }
517 } else {
518 if (!own_snpa_found) {
519 isis_adj_state_change(
16167b31 520 &adj, ISIS_ADJ_INITIALIZING,
0c1bd758
CF
521 "own SNPA not found in LAN Neighbours TLV");
522 }
d62a17ae 523 }
eb5d44eb 524
0c1bd758
CF
525 if (adj->adj_state == ISIS_ADJ_UP && changed)
526 lsp_regenerate_schedule(adj->circuit->area, iih->level, 0);
527
e740f9c1 528 if (IS_DEBUG_ADJ_PACKETS) {
d62a17ae 529 zlog_debug(
0c1bd758
CF
530 "ISIS-Adj (%s): Rcvd L%d LAN IIH from %s on %s, cirType %s, cirID %u, length %zd",
531 iih->circuit->area->area_tag, iih->level,
532 snpa_print(iih->ssnpa), iih->circuit->interface->name,
533 circuit_t2string(iih->circuit->is_type),
534 iih->circuit->circuit_id,
535 stream_get_endp(iih->circuit->rcv_stream));
d62a17ae 536 }
0c1bd758
CF
537 return ISIS_OK;
538}
eb5d44eb 539
17c9dcd5
CF
540static int pdu_len_validate(uint16_t pdu_len, struct isis_circuit *circuit)
541{
542 if (pdu_len < stream_get_getp(circuit->rcv_stream)
543 || pdu_len > ISO_MTU(circuit)
544 || pdu_len > stream_get_endp(circuit->rcv_stream))
545 return 1;
546
547 if (pdu_len < stream_get_endp(circuit->rcv_stream))
548 stream_set_endp(circuit->rcv_stream, pdu_len);
549 return 0;
550}
551
1ee746d9 552static void update_rej_adj_count(struct isis_circuit *circuit)
553{
554 circuit->rej_adjacencies++;
555 if (circuit->is_type == IS_LEVEL_1)
556 circuit->area->rej_adjacencies[0]++;
557 else if (circuit->is_type == IS_LEVEL_2)
558 circuit->area->rej_adjacencies[1]++;
559 else {
560 circuit->area->rej_adjacencies[0]++;
561 circuit->area->rej_adjacencies[1]++;
562 }
563}
564
0c1bd758 565static int process_hello(uint8_t pdu_type, struct isis_circuit *circuit,
d7c0a89a 566 uint8_t *ssnpa)
0c1bd758 567{
3380c990
EDP
568 /* keep a copy of the raw pdu for NB notifications */
569 size_t pdu_start = stream_get_getp(circuit->rcv_stream);
570 size_t pdu_end = stream_get_endp(circuit->rcv_stream);
571 char raw_pdu[pdu_end - pdu_start];
0c1bd758
CF
572 bool p2p_hello = (pdu_type == P2P_HELLO);
573 int level = p2p_hello ? 0
574 : (pdu_type == L1_LAN_HELLO) ? ISIS_LEVEL1
575 : ISIS_LEVEL2;
576 const char *pdu_name =
577 p2p_hello
578 ? "P2P IIH"
579 : (level == ISIS_LEVEL1) ? "L1 LAN IIH" : "L2 LAN IIH";
580
3380c990
EDP
581 stream_get_from(raw_pdu, circuit->rcv_stream, pdu_start,
582 pdu_end - pdu_start);
e740f9c1 583 if (IS_DEBUG_ADJ_PACKETS) {
0c1bd758
CF
584 zlog_debug("ISIS-Adj (%s): Rcvd %s on %s, cirType %s, cirID %u",
585 circuit->area->area_tag, pdu_name,
586 circuit->interface->name,
587 circuit_t2string(circuit->is_type),
588 circuit->circuit_id);
e740f9c1 589 if (IS_DEBUG_PACKET_DUMP)
0c1bd758
CF
590 zlog_dump_data(STREAM_DATA(circuit->rcv_stream),
591 stream_get_endp(circuit->rcv_stream));
592 }
593
594 if (p2p_hello) {
595 if (circuit->circ_type != CIRCUIT_T_P2P) {
596 zlog_warn("p2p hello on non p2p circuit");
1ee746d9 597 update_rej_adj_count(circuit);
af6911c9
EDP
598#ifndef FABRICD
599 isis_notif_reject_adjacency(
600 circuit, "p2p hello on non p2p circuit",
1ee746d9 601 raw_pdu, sizeof(raw_pdu));
af6911c9 602#endif /* ifndef FABRICD */
0c1bd758
CF
603 return ISIS_WARNING;
604 }
605 } else {
606 if (circuit->circ_type != CIRCUIT_T_BROADCAST) {
607 zlog_warn("lan hello on non broadcast circuit");
1ee746d9 608 update_rej_adj_count(circuit);
af6911c9
EDP
609#ifndef FABRICD
610 isis_notif_reject_adjacency(
611 circuit, "lan hello on non broadcast circuit",
1ee746d9 612 raw_pdu, sizeof(raw_pdu));
af6911c9 613#endif /* ifndef FABRICD */
0c1bd758
CF
614 return ISIS_WARNING;
615 }
616
617 if (circuit->ext_domain) {
d62a17ae 618 zlog_debug(
0c1bd758
CF
619 "level %d LAN Hello received over circuit with externalDomain = true",
620 level);
1ee746d9 621 update_rej_adj_count(circuit);
af6911c9
EDP
622#ifndef FABRICD
623 isis_notif_reject_adjacency(
624 circuit,
625 "LAN Hello received over circuit with externalDomain = true",
1ee746d9 626 raw_pdu, sizeof(raw_pdu));
af6911c9 627#endif /* ifndef FABRICD */
0c1bd758
CF
628 return ISIS_WARNING;
629 }
630
af8ac8f9 631 if (!(circuit->is_type & level)) {
e740f9c1 632 if (IS_DEBUG_ADJ_PACKETS) {
0c1bd758
CF
633 zlog_debug(
634 "ISIS-Adj (%s): Interface level mismatch, %s",
635 circuit->area->area_tag,
636 circuit->interface->name);
637 }
1ee746d9 638 update_rej_adj_count(circuit);
af6911c9 639#ifndef FABRICD
1ee746d9 640 isis_notif_reject_adjacency(circuit,
641 "Interface level mismatch",
642 raw_pdu, sizeof(raw_pdu));
af6911c9 643#endif /* ifndef FABRICD */
0c1bd758 644 return ISIS_WARNING;
d62a17ae 645 }
f390d2c7 646 }
eb5d44eb 647
0c1bd758
CF
648 struct iih_info iih = {
649 .circuit = circuit, .ssnpa = ssnpa, .level = level};
650
651 /* Generic IIH Header */
652 iih.circ_type = stream_getc(circuit->rcv_stream) & 0x03;
653 stream_get(iih.sys_id, circuit->rcv_stream, ISIS_SYS_ID_LEN);
654 iih.holdtime = stream_getw(circuit->rcv_stream);
655 iih.pdu_len = stream_getw(circuit->rcv_stream);
656
657 if (p2p_hello) {
658 iih.circuit_id = stream_getc(circuit->rcv_stream);
659 } else {
660 iih.priority = stream_getc(circuit->rcv_stream);
661 stream_get(iih.dis, circuit->rcv_stream, ISIS_SYS_ID_LEN + 1);
f390d2c7 662 }
0c1bd758 663
17c9dcd5 664 if (pdu_len_validate(iih.pdu_len, circuit)) {
d62a17ae 665 zlog_warn(
6cde4b45 666 "ISIS-Adj (%s): Rcvd %s from (%s) with invalid pdu length %hu",
0c1bd758
CF
667 circuit->area->area_tag, pdu_name,
668 circuit->interface->name, iih.pdu_len);
1ee746d9 669 update_rej_adj_count(circuit);
af6911c9
EDP
670#ifndef FABRICD
671 isis_notif_reject_adjacency(circuit, "Invalid PDU length",
1ee746d9 672 raw_pdu, sizeof(raw_pdu));
af6911c9 673#endif /* ifndef FABRICD */
d62a17ae 674 return ISIS_WARNING;
675 }
3f045a08 676
0c1bd758 677 if (!p2p_hello && !(level & iih.circ_type)) {
1a7ecb96 678 flog_err(EC_ISIS_PACKET,
1c50c1c0
QY
679 "Level %d LAN Hello with Circuit Type %d", level,
680 iih.circ_type);
1ee746d9 681 update_rej_adj_count(circuit);
af6911c9 682#ifndef FABRICD
1ee746d9 683 isis_notif_reject_adjacency(circuit,
684 "LAN Hello with wrong IS-level",
685 raw_pdu, sizeof(raw_pdu));
af6911c9 686#endif /* ifndef FABRICD */
d62a17ae 687 return ISIS_ERROR;
688 }
3f045a08 689
0c1bd758
CF
690 const char *error_log;
691 int retval = ISIS_WARNING;
d62a17ae 692
0c1bd758
CF
693 if (isis_unpack_tlvs(STREAM_READABLE(circuit->rcv_stream),
694 circuit->rcv_stream, &iih.tlvs, &error_log)) {
695 zlog_warn("isis_unpack_tlvs() failed: %s", error_log);
1ee746d9 696 update_rej_adj_count(circuit);
af6911c9
EDP
697#ifndef FABRICD
698 isis_notif_reject_adjacency(circuit, "Failed to unpack TLVs",
1ee746d9 699 raw_pdu, sizeof(raw_pdu));
af6911c9 700#endif /* ifndef FABRICD */
d62a17ae 701 goto out;
702 }
eb5d44eb 703
0c1bd758
CF
704 if (!iih.tlvs->area_addresses.count) {
705 zlog_warn("No Area addresses TLV in %s", pdu_name);
9d92b84b
EDP
706#ifndef FABRICD
707 /* send northbound notification */
1ee746d9 708 isis_notif_area_mismatch(circuit, raw_pdu, sizeof(raw_pdu));
9d92b84b 709#endif /* ifndef FABRICD */
d62a17ae 710 goto out;
711 }
f390d2c7 712
0c1bd758
CF
713 if (!iih.tlvs->protocols_supported.count) {
714 zlog_warn("No supported protocols TLV in %s", pdu_name);
1ee746d9 715 update_rej_adj_count(circuit);
af6911c9 716#ifndef FABRICD
1ee746d9 717 isis_notif_reject_adjacency(circuit,
718 "No supported protocols TLV",
719 raw_pdu, sizeof(raw_pdu));
af6911c9 720#endif /* ifndef FABRICD */
d62a17ae 721 goto out;
722 }
b72f345d 723
3380c990
EDP
724 int auth_code = isis_tlvs_auth_is_valid(iih.tlvs, &circuit->passwd,
725 circuit->rcv_stream, false);
726 if (auth_code != ISIS_AUTH_OK) {
0c1bd758
CF
727 isis_event_auth_failure(circuit->area->area_tag,
728 "IIH authentication failure",
729 iih.sys_id);
3380c990
EDP
730#ifndef FABRICD
731 /* send northbound notification */
732 stream_get_from(raw_pdu, circuit->rcv_stream, pdu_start,
733 pdu_end - pdu_start);
c32496ee 734 if (auth_code == ISIS_AUTH_FAILURE) {
1ee746d9 735 update_rej_adj_count(circuit);
736 isis_notif_authentication_failure(circuit, raw_pdu,
737 sizeof(raw_pdu));
c32496ee 738 } else { /* AUTH_TYPE_FAILURE or NO_VALIDATOR */
1ee746d9 739 update_rej_adj_count(circuit);
740 isis_notif_authentication_type_failure(circuit, raw_pdu,
741 sizeof(raw_pdu));
c32496ee 742 }
3380c990 743#endif /* ifndef FABRICD */
0c1bd758 744 goto out;
d62a17ae 745 }
eb5d44eb 746
99e5d4af 747 if (!memcmp(iih.sys_id, circuit->isis->sysid, ISIS_SYS_ID_LEN)) {
0c1bd758 748 zlog_warn(
f3abc412 749 "ISIS-Adj (%s): Received IIH with own sysid on %s - discard",
750 circuit->area->area_tag, circuit->interface->name);
1ee746d9 751 update_rej_adj_count(circuit);
af6911c9 752#ifndef FABRICD
1ee746d9 753 isis_notif_reject_adjacency(circuit,
754 "Received IIH with our own sysid",
755 raw_pdu, sizeof(raw_pdu));
af6911c9 756#endif /* ifndef FABRICD */
0c1bd758 757 goto out;
d62a17ae 758 }
19f78ceb 759
0c1bd758
CF
760 if (!p2p_hello
761 && (listcount(circuit->area->area_addrs) == 0
762 || (level == ISIS_LEVEL1
763 && !isis_tlvs_area_addresses_match(
764 iih.tlvs, circuit->area->area_addrs)))) {
e740f9c1 765 if (IS_DEBUG_ADJ_PACKETS) {
d62a17ae 766 zlog_debug(
767 "ISIS-Adj (%s): Area mismatch, level %d IIH on %s",
768 circuit->area->area_tag, level,
769 circuit->interface->name);
770 }
9d92b84b
EDP
771#ifndef FABRICD
772 /* send northbound notification */
1ee746d9 773 isis_notif_area_mismatch(circuit, raw_pdu, sizeof(raw_pdu));
9d92b84b 774#endif /* ifndef FABRICD */
d62a17ae 775 goto out;
f390d2c7 776 }
eb5d44eb 777
41415888 778 iih.v4_usable = (fabricd_ip_addrs(circuit)
0c1bd758 779 && iih.tlvs->ipv4_address.count);
d62a17ae 780
91a5bbc4
DS
781 iih.v6_usable =
782 (listcount(circuit->ipv6_link) && iih.tlvs->ipv6_address.count);
28a8cfcb 783
c9b0e434 784 if (!iih.v4_usable && !iih.v6_usable) {
e740f9c1 785 if (IS_DEBUG_ADJ_PACKETS) {
c9b0e434
CF
786 zlog_warn(
787 "ISIS-Adj (%s): Neither IPv4 nor IPv6 considered usable. Ignoring IIH",
788 circuit->area->area_tag);
789 }
1ee746d9 790 update_rej_adj_count(circuit);
af6911c9
EDP
791#ifndef FABRICD
792 isis_notif_reject_adjacency(
793 circuit, "Neither IPv4 not IPv6 considered usable",
1ee746d9 794 raw_pdu, sizeof(raw_pdu));
af6911c9 795#endif /* ifndef FABRICD */
d62a17ae 796 goto out;
c9b0e434 797 }
d8fba7d9 798
0c1bd758 799 retval = p2p_hello ? process_p2p_hello(&iih) : process_lan_hello(&iih);
f390d2c7 800out:
0c1bd758 801 isis_free_tlvs(iih.tlvs);
eb5d44eb 802
d62a17ae 803 return retval;
eb5d44eb 804}
805
a6b60da9
CF
806static void lsp_flood_or_update(struct isis_lsp *lsp,
807 struct isis_circuit *circuit,
808 bool circuit_scoped)
809{
89cdc4df 810 if (!circuit_scoped)
a6b60da9 811 lsp_flood(lsp, circuit);
89cdc4df 812 else
a6b60da9 813 fabricd_update_lsp_no_flood(lsp, circuit);
a6b60da9
CF
814}
815
eb5d44eb 816/*
817 * Process Level 1/2 Link State
818 * ISO - 10589
819 * Section 7.3.15.1 - Action on receipt of a link state PDU
f390d2c7 820 */
af8ac8f9 821static int process_lsp(uint8_t pdu_type, struct isis_circuit *circuit,
9b39405f 822 const uint8_t *ssnpa, uint8_t max_area_addrs)
eb5d44eb 823{
1cbd5b37
CF
824 int level;
825 bool circuit_scoped;
3380c990
EDP
826 size_t pdu_start = stream_get_getp(circuit->rcv_stream);
827 size_t pdu_end = stream_get_endp(circuit->rcv_stream);
828 char raw_pdu[pdu_end - pdu_start];
829
830 stream_get_from(raw_pdu, circuit->rcv_stream, pdu_start,
831 pdu_end - pdu_start);
1cbd5b37
CF
832
833 if (pdu_type == FS_LINK_STATE) {
834 if (!fabricd)
835 return ISIS_ERROR;
836 if (max_area_addrs != L2_CIRCUIT_FLOODING_SCOPE)
837 return ISIS_ERROR;
838 level = ISIS_LEVEL2;
839 circuit_scoped = true;
840
841 /* The stream is used verbatim for sending out new LSPDUs.
842 * So make sure we store it as an L2 LSPDU internally.
843 * (compare for the reverse in `send_lsp`) */
844 stream_putc_at(circuit->rcv_stream, 4, L2_LINK_STATE);
845 stream_putc_at(circuit->rcv_stream, 7, 0);
846 } else {
847 if (pdu_type == L1_LINK_STATE)
848 level = ISIS_LEVEL1;
849 else
850 level = ISIS_LEVEL2;
851 circuit_scoped = false;
852 }
d62a17ae 853
e740f9c1 854 if (IS_DEBUG_UPDATE_PACKETS) {
d62a17ae 855 zlog_debug(
1cbd5b37
CF
856 "ISIS-Upd (%s): Rcvd %sL%d LSP on %s, cirType %s, cirID %u",
857 circuit->area->area_tag,
858 circuit_scoped ? "Circuit scoped " : "", level,
d62a17ae 859 circuit->interface->name,
860 circuit_t2string(circuit->is_type),
861 circuit->circuit_id);
e740f9c1 862 if (IS_DEBUG_PACKET_DUMP)
d62a17ae 863 zlog_dump_data(STREAM_DATA(circuit->rcv_stream),
864 stream_get_endp(circuit->rcv_stream));
865 }
f390d2c7 866
3e300703 867 struct isis_lsp_hdr hdr = {};
eb5d44eb 868
af8ac8f9
CF
869 hdr.pdu_len = stream_getw(circuit->rcv_stream);
870 hdr.rem_lifetime = stream_getw(circuit->rcv_stream);
871 stream_get(hdr.lsp_id, circuit->rcv_stream, sizeof(hdr.lsp_id));
872 hdr.seqno = stream_getl(circuit->rcv_stream);
873 hdr.checksum = stream_getw(circuit->rcv_stream);
874 hdr.lsp_bits = stream_getc(circuit->rcv_stream);
eb5d44eb 875
8375020a
EDP
876#ifndef FABRICD
877 /* send northbound notification */
1ee746d9 878 isis_notif_lsp_received(circuit, hdr.lsp_id, hdr.seqno, time(NULL),
879 sysid_print(hdr.lsp_id));
8375020a
EDP
880#endif /* ifndef FABRICD */
881
af8ac8f9 882 if (pdu_len_validate(hdr.pdu_len, circuit)) {
6cde4b45 883 zlog_debug("ISIS-Upd (%s): LSP %s invalid LSP length %hu",
af8ac8f9
CF
884 circuit->area->area_tag, rawlspid_print(hdr.lsp_id),
885 hdr.pdu_len);
d62a17ae 886 return ISIS_WARNING;
f390d2c7 887 }
d62a17ae 888
e740f9c1 889 if (IS_DEBUG_UPDATE_PACKETS) {
6cde4b45 890 zlog_debug("ISIS-Upd (%s): Rcvd L%d LSP %s, seq 0x%08x, cksum 0x%04hx, lifetime %hus, len %hu, on %s",
af8ac8f9
CF
891 circuit->area->area_tag, level,
892 rawlspid_print(hdr.lsp_id), hdr.seqno, hdr.checksum,
893 hdr.rem_lifetime, hdr.pdu_len,
894 circuit->interface->name);
f390d2c7 895 }
d62a17ae 896
897 /* lsp is_type check */
af8ac8f9
CF
898 if ((hdr.lsp_bits & IS_LEVEL_1) != IS_LEVEL_1) {
899 zlog_debug(
47b13e9b 900 "ISIS-Upd (%s): LSP %s invalid LSP is type 0x%x",
af8ac8f9
CF
901 circuit->area->area_tag, rawlspid_print(hdr.lsp_id),
902 hdr.lsp_bits & IS_LEVEL_1_AND_2);
d62a17ae 903 /* continue as per RFC1122 Be liberal in what you accept, and
904 * conservative in what you send */
f390d2c7 905 }
d62a17ae 906
907 /* Checksum sanity check - FIXME: move to correct place */
908 /* 12 = sysid+pdu+remtime */
af8ac8f9
CF
909 if (iso_csum_verify(STREAM_DATA(circuit->rcv_stream) + 12,
910 hdr.pdu_len - 12, hdr.checksum, 12)) {
911 zlog_debug(
6cde4b45 912 "ISIS-Upd (%s): LSP %s invalid LSP checksum 0x%04hx",
af8ac8f9
CF
913 circuit->area->area_tag, rawlspid_print(hdr.lsp_id),
914 hdr.checksum);
d62a17ae 915 return ISIS_WARNING;
f390d2c7 916 }
3f045a08 917
d62a17ae 918 /* 7.3.15.1 a) 1 - external domain circuit will discard lsps */
919 if (circuit->ext_domain) {
920 zlog_debug(
3efd0893 921 "ISIS-Upd (%s): LSP %s received at level %d over circuit with externalDomain = true",
af8ac8f9 922 circuit->area->area_tag, rawlspid_print(hdr.lsp_id),
d62a17ae 923 level);
d62a17ae 924 return ISIS_WARNING;
925 }
eb5d44eb 926
d62a17ae 927 /* 7.3.15.1 a) 2,3 - manualL2OnlyMode not implemented */
af8ac8f9 928 if (!(circuit->is_type & level)) {
d62a17ae 929 zlog_debug(
3efd0893 930 "ISIS-Upd (%s): LSP %s received at level %d over circuit of type %s",
af8ac8f9 931 circuit->area->area_tag, rawlspid_print(hdr.lsp_id),
d62a17ae 932 level, circuit_t2string(circuit->is_type));
d62a17ae 933 return ISIS_WARNING;
934 }
0250758d 935
af8ac8f9
CF
936 struct isis_tlvs *tlvs = NULL;
937 int retval = ISIS_WARNING;
938 const char *error_log;
939
940 if (isis_unpack_tlvs(STREAM_READABLE(circuit->rcv_stream),
941 circuit->rcv_stream, &tlvs, &error_log)) {
942 zlog_warn("Something went wrong unpacking the LSP: %s",
943 error_log);
86370604
EDP
944#ifndef FABRICD
945 /* send northbound notification. Note that the tlv-type and
946 * offset cannot correctly be set here as they are not returned
947 * by isis_unpack_tlvs, but in there I cannot fire a
948 * notification because I have no circuit information. So until
949 * we change the code above to return those extra fields, we
950 * will send dummy values which are ignored in the callback
951 */
1ee746d9 952 circuit->lsp_error_counter++;
953 if (circuit->is_type == IS_LEVEL_1) {
954 circuit->area->lsp_error_counter[0]++;
955 } else if (circuit->is_type == IS_LEVEL_2) {
956 circuit->area->lsp_error_counter[1]++;
957 } else {
958 circuit->area->lsp_error_counter[0]++;
959 circuit->area->lsp_error_counter[1]++;
960 }
961
962 isis_notif_lsp_error(circuit, hdr.lsp_id, raw_pdu,
963 sizeof(raw_pdu), 0, 0);
86370604 964#endif /* ifndef FABRICD */
af8ac8f9
CF
965 goto out;
966 }
967
d62a17ae 968 /* 7.3.15.1 a) 4 - need to make sure IDLength matches */
969
970 /* 7.3.15.1 a) 5 - maximum area match, can be ommited since we only use
971 * 3 */
972
973 /* 7.3.15.1 a) 7 - password check */
af8ac8f9
CF
974 struct isis_passwd *passwd = (level == ISIS_LEVEL1)
975 ? &circuit->area->area_passwd
976 : &circuit->area->domain_passwd;
3380c990
EDP
977 int auth_code = isis_tlvs_auth_is_valid(tlvs, passwd,
978 circuit->rcv_stream, true);
979 if (auth_code != ISIS_AUTH_OK) {
af8ac8f9
CF
980 isis_event_auth_failure(circuit->area->area_tag,
981 "LSP authentication failure",
982 hdr.lsp_id);
3380c990
EDP
983#ifndef FABRICD
984 /* send northbound notification */
c32496ee
RW
985 if (auth_code == ISIS_AUTH_FAILURE) {
986 circuit->auth_failures++;
1ee746d9 987 if (circuit->is_type == IS_LEVEL_1) {
988 circuit->area->auth_failures[0]++;
989 } else if (circuit->is_type == IS_LEVEL_2) {
990 circuit->area->auth_failures[1]++;
991 } else {
992 circuit->area->auth_failures[0]++;
993 circuit->area->auth_failures[1]++;
994 }
995 isis_notif_authentication_failure(circuit, raw_pdu,
996 sizeof(raw_pdu));
c32496ee
RW
997 } else { /* AUTH_TYPE_FAILURE or NO_VALIDATOR */
998 circuit->auth_type_failures++;
1ee746d9 999 if (circuit->is_type == IS_LEVEL_1) {
1000 circuit->area->auth_type_failures[0]++;
1001 } else if (circuit->is_type == IS_LEVEL_2) {
1002 circuit->area->auth_type_failures[1]++;
1003 } else {
1004 circuit->area->auth_type_failures[0]++;
1005 circuit->area->auth_type_failures[1]++;
1006 }
1007 isis_notif_authentication_type_failure(circuit, raw_pdu,
1008 sizeof(raw_pdu));
c32496ee 1009 }
3380c990 1010#endif /* ifndef FABRICD */
af8ac8f9 1011 goto out;
f390d2c7 1012 }
af8ac8f9 1013
d62a17ae 1014 /* Find the LSP in our database and compare it to this Link State header
1015 */
af8ac8f9 1016 struct isis_lsp *lsp =
4bef0ec4 1017 lsp_search(&circuit->area->lspdb[level - 1], hdr.lsp_id);
af8ac8f9 1018 int comp = 0;
d62a17ae 1019 if (lsp)
af8ac8f9
CF
1020 comp = lsp_compare(circuit->area->area_tag, lsp, hdr.seqno,
1021 hdr.checksum, hdr.rem_lifetime);
d62a17ae 1022 if (lsp && (lsp->own_lsp))
1023 goto dontcheckadj;
1024
1025 /* 7.3.15.1 a) 6 - Must check that we have an adjacency of the same
1026 * level */
1027 /* for broadcast circuits, snpa should be compared */
1028
1029 if (circuit->circ_type == CIRCUIT_T_BROADCAST) {
af8ac8f9
CF
1030 if (!isis_adj_lookup_snpa(ssnpa,
1031 circuit->u.bc.adjdb[level - 1])) {
6cde4b45 1032 zlog_debug("(%s): DS ======= LSP %s, seq 0x%08x, cksum 0x%04hx, lifetime %hus on %s",
af8ac8f9
CF
1033 circuit->area->area_tag,
1034 rawlspid_print(hdr.lsp_id), hdr.seqno,
1035 hdr.checksum, hdr.rem_lifetime,
1036 circuit->interface->name);
1037 goto out; /* Silently discard */
d62a17ae 1038 }
1039 }
1040 /* for non broadcast, we just need to find same level adj */
1041 else {
1042 /* If no adj, or no sharing of level */
1043 if (!circuit->u.p2p.neighbor) {
af8ac8f9
CF
1044 retval = ISIS_OK;
1045 goto out;
d62a17ae 1046 } else {
1047 if (((level == IS_LEVEL_1)
1048 && (circuit->u.p2p.neighbor->adj_usage
1049 == ISIS_ADJ_LEVEL2))
1050 || ((level == IS_LEVEL_2)
1051 && (circuit->u.p2p.neighbor->adj_usage
1052 == ISIS_ADJ_LEVEL1)))
af8ac8f9 1053 goto out;
f390d2c7 1054 }
f390d2c7 1055 }
f390d2c7 1056
af8ac8f9
CF
1057 bool lsp_confusion;
1058
d62a17ae 1059dontcheckadj:
1060 /* 7.3.15.1 a) 7 - Passwords for level 1 - not implemented */
1061
1062 /* 7.3.15.1 a) 8 - Passwords for level 2 - not implemented */
1063
1064 /* 7.3.15.1 a) 9 - OriginatingLSPBufferSize - not implemented FIXME: do
1065 * it */
1066
1067 /* 7.3.16.2 - If this is an LSP from another IS with identical seq_num
1068 * but
1069 * wrong checksum, initiate a purge. */
af8ac8f9 1070 if (lsp && (lsp->hdr.seqno == hdr.seqno)
2c92bee4
CF
1071 && (lsp->hdr.checksum != hdr.checksum)
1072 && hdr.rem_lifetime) {
6cde4b45 1073 zlog_warn("ISIS-Upd (%s): LSP %s seq 0x%08x with confused checksum received.",
af8ac8f9
CF
1074 circuit->area->area_tag, rawlspid_print(hdr.lsp_id),
1075 hdr.seqno);
1076 hdr.rem_lifetime = 0;
1077 lsp_confusion = true;
d62a17ae 1078 } else
af8ac8f9 1079 lsp_confusion = false;
d62a17ae 1080
1081 /* 7.3.15.1 b) - If the remaining life time is 0, we perform 7.3.16.4 */
af8ac8f9 1082 if (hdr.rem_lifetime == 0) {
d62a17ae 1083 if (!lsp) {
1084 /* 7.3.16.4 a) 1) No LSP in db -> send an ack, but don't
1085 * save */
1086 /* only needed on explicit update, eg - p2p */
1087 if (circuit->circ_type == CIRCUIT_T_P2P)
af8ac8f9
CF
1088 ack_lsp(&hdr, circuit, level);
1089 goto out; /* FIXME: do we need a purge? */
d62a17ae 1090 } else {
99e5d4af 1091 if (memcmp(hdr.lsp_id, circuit->isis->sysid,
eab88f36 1092 ISIS_SYS_ID_LEN)) {
d62a17ae 1093 /* LSP by some other system -> do 7.3.16.4 b) */
1094 /* 7.3.16.4 b) 1) */
1095 if (comp == LSP_NEWER) {
af8ac8f9
CF
1096 lsp_update(lsp, &hdr, tlvs,
1097 circuit->rcv_stream,
164066e4
CF
1098 circuit->area, level,
1099 lsp_confusion);
ebeae7d5
DS
1100 if (lsp_confusion)
1101 isis_free_tlvs(tlvs);
af8ac8f9 1102 tlvs = NULL;
d62a17ae 1103 /* ii */
a6b60da9
CF
1104 lsp_flood_or_update(lsp, NULL,
1105 circuit_scoped);
d62a17ae 1106 /* v */
1107 ISIS_FLAGS_CLEAR_ALL(
996c9314
LB
1108 lsp->SSNflags); /* FIXME:
1109 OTHER
1110 than c
1111 */
d62a17ae 1112
1113 /* For the case of lsp confusion, flood
1114 * the purge back to its
1115 * originator so that it can react.
1116 * Otherwise, don't reflood
1117 * through incoming circuit as usual */
1118 if (!lsp_confusion) {
9b39405f
CF
1119 isis_tx_queue_del(
1120 circuit->tx_queue,
1121 lsp);
1122
d62a17ae 1123 /* iv */
1124 if (circuit->circ_type
1125 != CIRCUIT_T_BROADCAST)
1126 ISIS_SET_FLAG(
1127 lsp->SSNflags,
1128 circuit);
1129 }
1130 } /* 7.3.16.4 b) 2) */
1131 else if (comp == LSP_EQUAL) {
1132 /* i */
9b39405f
CF
1133 isis_tx_queue_del(circuit->tx_queue,
1134 lsp);
d62a17ae 1135 /* ii */
1136 if (circuit->circ_type
1137 != CIRCUIT_T_BROADCAST)
1138 ISIS_SET_FLAG(lsp->SSNflags,
1139 circuit);
1140 } /* 7.3.16.4 b) 3) */
1141 else {
9b39405f
CF
1142 isis_tx_queue_add(circuit->tx_queue,
1143 lsp, TX_LSP_NORMAL);
d62a17ae 1144 ISIS_CLEAR_FLAG(lsp->SSNflags, circuit);
1145 }
af8ac8f9 1146 } else if (lsp->hdr.rem_lifetime != 0) {
d62a17ae 1147 /* our own LSP -> 7.3.16.4 c) */
1148 if (comp == LSP_NEWER) {
897989f8
EDP
1149#ifndef FABRICD
1150 if (lsp->hdr.seqno < hdr.seqno) {
1151 /* send northbound
1152 * notification */
1ee746d9 1153 circuit->area
1154 ->lsp_seqno_skipped_counter++;
897989f8 1155 isis_notif_seqno_skipped(
1ee746d9 1156 circuit, hdr.lsp_id);
897989f8
EDP
1157 }
1158#endif /* ifndef FABRICD */
af8ac8f9 1159 lsp_inc_seqno(lsp, hdr.seqno);
89cdc4df
RM
1160 lsp_flood_or_update(lsp, NULL,
1161 circuit_scoped);
d62a17ae 1162 } else {
9b39405f
CF
1163 isis_tx_queue_add(circuit->tx_queue,
1164 lsp, TX_LSP_NORMAL);
d62a17ae 1165 ISIS_CLEAR_FLAG(lsp->SSNflags, circuit);
1166 }
e740f9c1 1167 if (IS_DEBUG_UPDATE_PACKETS)
d62a17ae 1168 zlog_debug(
6cde4b45 1169 "ISIS-Upd (%s): (1) re-originating LSP %s new seq 0x%08x",
d62a17ae 1170 circuit->area->area_tag,
af8ac8f9
CF
1171 rawlspid_print(hdr.lsp_id),
1172 lsp->hdr.seqno);
d32f213a
EDP
1173 } else {
1174 /* our own LSP with 0 remaining life time */
1175#ifndef FABRICD
1176 /* send northbound notification */
1ee746d9 1177 isis_notif_own_lsp_purge(circuit, hdr.lsp_id);
d32f213a 1178#endif /* ifndef FABRICD */
d62a17ae 1179 }
f390d2c7 1180 }
af8ac8f9 1181 goto out;
f390d2c7 1182 }
d62a17ae 1183 /* 7.3.15.1 c) - If this is our own lsp and we don't have it initiate a
1184 * purge */
99e5d4af 1185 if (memcmp(hdr.lsp_id, circuit->isis->sysid, ISIS_SYS_ID_LEN) == 0) {
d62a17ae 1186 if (!lsp) {
1187 /* 7.3.16.4: initiate a purge */
af8ac8f9
CF
1188 lsp_purge_non_exist(level, &hdr, circuit->area);
1189 retval = ISIS_OK;
1190 goto out;
d62a17ae 1191 }
1192 /* 7.3.15.1 d) - If this is our own lsp and we have it */
1193
1194 /* In 7.3.16.1, If an Intermediate system R somewhere in the
1195 * domain
1196 * has information that the current sequence number for source S
1197 * is
1198 * "greater" than that held by S, ... */
1199
562d7ef7 1200 if (comp == LSP_NEWER) {
d62a17ae 1201 /* 7.3.16.1 */
af8ac8f9 1202 lsp_inc_seqno(lsp, hdr.seqno);
897989f8
EDP
1203#ifndef FABRICD
1204 /* send northbound notification */
1ee746d9 1205 circuit->area->lsp_seqno_skipped_counter++;
1206 isis_notif_seqno_skipped(circuit, hdr.lsp_id);
897989f8 1207#endif /* ifndef FABRICD */
e740f9c1 1208 if (IS_DEBUG_UPDATE_PACKETS) {
d62a17ae 1209 zlog_debug(
6cde4b45 1210 "ISIS-Upd (%s): (2) re-originating LSP %s new seq 0x%08x",
d62a17ae 1211 circuit->area->area_tag,
af8ac8f9
CF
1212 rawlspid_print(hdr.lsp_id),
1213 lsp->hdr.seqno);
562d7ef7
CF
1214 }
1215 lsp_flood(lsp, NULL);
1216 } else if (comp == LSP_EQUAL) {
1217 isis_tx_queue_del(circuit->tx_queue, lsp);
1218 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1219 ISIS_SET_FLAG(lsp->SSNflags, circuit);
1220 } else {
1221 isis_tx_queue_add(circuit->tx_queue, lsp,
1222 TX_LSP_NORMAL);
1223 ISIS_CLEAR_FLAG(lsp->SSNflags, circuit);
d62a17ae 1224 }
d62a17ae 1225 } else {
1226 /* 7.3.15.1 e) - This lsp originated on another system */
1227
1228 /* 7.3.15.1 e) 1) LSP newer than the one in db or no LSP in db
1229 */
1230 if ((!lsp || comp == LSP_NEWER)) {
1231 /*
1232 * If this lsp is a frag, need to see if we have zero
1233 * lsp present
1234 */
af8ac8f9
CF
1235 struct isis_lsp *lsp0 = NULL;
1236 if (LSP_FRAGMENT(hdr.lsp_id) != 0) {
1237 uint8_t lspid[ISIS_SYS_ID_LEN + 2];
1238 memcpy(lspid, hdr.lsp_id, ISIS_SYS_ID_LEN + 1);
d62a17ae 1239 LSP_FRAGMENT(lspid) = 0;
1240 lsp0 = lsp_search(
4bef0ec4 1241 &circuit->area->lspdb[level - 1], lspid);
d62a17ae 1242 if (!lsp0) {
1243 zlog_debug(
1244 "Got lsp frag, while zero lsp not in database");
df0ba689 1245 goto out;
d62a17ae 1246 }
1247 }
1248 /* i */
1249 if (!lsp) {
af8ac8f9
CF
1250 lsp = lsp_new_from_recv(
1251 &hdr, tlvs, circuit->rcv_stream, lsp0,
d62a17ae 1252 circuit->area, level);
af8ac8f9 1253 tlvs = NULL;
4bef0ec4
DL
1254 lsp_insert(&circuit->area->lspdb[level - 1],
1255 lsp);
d62a17ae 1256 } else /* exists, so we overwrite */
1257 {
af8ac8f9 1258 lsp_update(lsp, &hdr, tlvs, circuit->rcv_stream,
164066e4 1259 circuit->area, level, false);
af8ac8f9 1260 tlvs = NULL;
d62a17ae 1261 }
a6b60da9 1262 lsp_flood_or_update(lsp, circuit, circuit_scoped);
d62a17ae 1263
1264 /* iv */
1265 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1266 ISIS_SET_FLAG(lsp->SSNflags, circuit);
1267 /* FIXME: v) */
1268 }
1269 /* 7.3.15.1 e) 2) LSP equal to the one in db */
1270 else if (comp == LSP_EQUAL) {
9b39405f 1271 isis_tx_queue_del(circuit->tx_queue, lsp);
af8ac8f9 1272 lsp_update(lsp, &hdr, tlvs, circuit->rcv_stream,
164066e4 1273 circuit->area, level, false);
af8ac8f9 1274 tlvs = NULL;
d62a17ae 1275 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1276 ISIS_SET_FLAG(lsp->SSNflags, circuit);
1277 }
1278 /* 7.3.15.1 e) 3) LSP older than the one in db */
1279 else {
9b39405f
CF
1280 isis_tx_queue_add(circuit->tx_queue, lsp,
1281 TX_LSP_NORMAL);
d62a17ae 1282 ISIS_CLEAR_FLAG(lsp->SSNflags, circuit);
1283 }
f390d2c7 1284 }
af8ac8f9
CF
1285
1286 retval = ISIS_OK;
1287
1288out:
e923107c 1289 fabricd_trigger_csnp(circuit->area, circuit_scoped);
df0ba689 1290
af8ac8f9 1291 isis_free_tlvs(tlvs);
d62a17ae 1292 return retval;
eb5d44eb 1293}
1294
1295/*
1296 * Process Sequence Numbers
1297 * ISO - 10589
1298 * Section 7.3.15.2 - Action on receipt of a sequence numbers PDU
1299 */
1300
17c9dcd5 1301static int process_snp(uint8_t pdu_type, struct isis_circuit *circuit,
d7c0a89a 1302 const uint8_t *ssnpa)
eb5d44eb 1303{
3380c990
EDP
1304#ifndef FABRICD
1305 size_t pdu_start = stream_get_getp(circuit->rcv_stream);
1306 size_t pdu_end = stream_get_endp(circuit->rcv_stream);
1307 char raw_pdu[pdu_end - pdu_start];
1308#endif /* ifndef FABRICD */
1309
17c9dcd5
CF
1310 bool is_csnp = (pdu_type == L1_COMPLETE_SEQ_NUM
1311 || pdu_type == L2_COMPLETE_SEQ_NUM);
1312 char typechar = is_csnp ? 'C' : 'P';
1313 int level = (pdu_type == L1_COMPLETE_SEQ_NUM
1314 || pdu_type == L1_PARTIAL_SEQ_NUM)
1315 ? ISIS_LEVEL1
1316 : ISIS_LEVEL2;
1317
1318 uint16_t pdu_len = stream_getw(circuit->rcv_stream);
1319 uint8_t rem_sys_id[ISIS_SYS_ID_LEN];
3380c990 1320
17c9dcd5
CF
1321 stream_get(rem_sys_id, circuit->rcv_stream, ISIS_SYS_ID_LEN);
1322 stream_forward_getp(circuit->rcv_stream, 1); /* Circuit ID - unused */
1323
3e300703
DL
1324 uint8_t start_lsp_id[ISIS_SYS_ID_LEN + 2] = {};
1325 uint8_t stop_lsp_id[ISIS_SYS_ID_LEN + 2] = {};
17c9dcd5
CF
1326
1327 if (is_csnp) {
1328 stream_get(start_lsp_id, circuit->rcv_stream,
1329 ISIS_SYS_ID_LEN + 2);
1330 stream_get(stop_lsp_id, circuit->rcv_stream,
1331 ISIS_SYS_ID_LEN + 2);
1332 }
1333
1334 if (pdu_len_validate(pdu_len, circuit)) {
1335 zlog_warn("Received a CSNP with bogus length %d", pdu_len);
1336 return ISIS_WARNING;
f390d2c7 1337 }
eb5d44eb 1338
e740f9c1 1339 if (IS_DEBUG_SNP_PACKETS) {
17c9dcd5
CF
1340 zlog_debug(
1341 "ISIS-Snp (%s): Rcvd L%d %cSNP on %s, cirType %s, cirID %u",
1342 circuit->area->area_tag, level, typechar,
1343 circuit->interface->name,
1344 circuit_t2string(circuit->is_type),
1345 circuit->circuit_id);
e740f9c1 1346 if (IS_DEBUG_PACKET_DUMP)
17c9dcd5
CF
1347 zlog_dump_data(STREAM_DATA(circuit->rcv_stream),
1348 stream_get_endp(circuit->rcv_stream));
1349 }
eb5d44eb 1350
d62a17ae 1351 /* 7.3.15.2 a) 1 - external domain circuit will discard snp pdu */
1352 if (circuit->ext_domain) {
f390d2c7 1353
d62a17ae 1354 zlog_debug(
3efd0893 1355 "ISIS-Snp (%s): Rcvd L%d %cSNP on %s, skipping: circuit externalDomain = true",
d62a17ae 1356 circuit->area->area_tag, level, typechar,
1357 circuit->interface->name);
f390d2c7 1358
d62a17ae 1359 return ISIS_OK;
1360 }
eb5d44eb 1361
d62a17ae 1362 /* 7.3.15.2 a) 2,3 - manualL2OnlyMode not implemented */
af8ac8f9 1363 if (!(circuit->is_type & level)) {
d62a17ae 1364 zlog_debug(
3efd0893 1365 "ISIS-Snp (%s): Rcvd L%d %cSNP on %s, skipping: circuit type %s does not match level %d",
d62a17ae 1366 circuit->area->area_tag, level, typechar,
1367 circuit->interface->name,
1368 circuit_t2string(circuit->is_type), level);
eb5d44eb 1369
d62a17ae 1370 return ISIS_OK;
f390d2c7 1371 }
eb5d44eb 1372
d62a17ae 1373 /* 7.3.15.2 a) 4 - not applicable for CSNP only PSNPs on broadcast */
17c9dcd5
CF
1374 if (!is_csnp && (circuit->circ_type == CIRCUIT_T_BROADCAST)
1375 && !circuit->u.bc.is_dr[level - 1]) {
d62a17ae 1376 zlog_debug(
3efd0893 1377 "ISIS-Snp (%s): Rcvd L%d %cSNP from %s on %s, skipping: we are not the DIS",
d62a17ae 1378 circuit->area->area_tag, level, typechar,
1379 snpa_print(ssnpa), circuit->interface->name);
1380
1381 return ISIS_OK;
1382 }
eb5d44eb 1383
d62a17ae 1384 /* 7.3.15.2 a) 5 - need to make sure IDLength matches - already checked
1385 */
1386
1387 /* 7.3.15.2 a) 6 - maximum area match, can be ommited since we only use
1388 * 3
1389 * - already checked */
1390
1391 /* 7.3.15.2 a) 7 - Must check that we have an adjacency of the same
1392 * level */
1393 /* for broadcast circuits, snpa should be compared */
1394 /* FIXME : Do we need to check SNPA? */
1395 if (circuit->circ_type == CIRCUIT_T_BROADCAST) {
17c9dcd5
CF
1396 if (!isis_adj_lookup(rem_sys_id,
1397 circuit->u.bc.adjdb[level - 1]))
d62a17ae 1398 return ISIS_OK; /* Silently discard */
1399 } else {
8e6fb83b 1400 if (!fabricd && !circuit->u.p2p.neighbor) {
d62a17ae 1401 zlog_warn("no p2p neighbor on circuit %s",
1402 circuit->interface->name);
1403 return ISIS_OK; /* Silently discard */
1404 }
1405 }
eb5d44eb 1406
17c9dcd5
CF
1407 struct isis_tlvs *tlvs;
1408 int retval = ISIS_WARNING;
1409 const char *error_log;
eb5d44eb 1410
17c9dcd5
CF
1411 if (isis_unpack_tlvs(STREAM_READABLE(circuit->rcv_stream),
1412 circuit->rcv_stream, &tlvs, &error_log)) {
1413 zlog_warn("Something went wrong unpacking the SNP: %s",
1414 error_log);
1415 goto out;
f390d2c7 1416 }
eb5d44eb 1417
17c9dcd5
CF
1418 struct isis_passwd *passwd = (level == IS_LEVEL_1)
1419 ? &circuit->area->area_passwd
1420 : &circuit->area->domain_passwd;
eab88f36 1421
3380c990
EDP
1422 if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_RECV)) {
1423 int auth_code = isis_tlvs_auth_is_valid(
1424 tlvs, passwd, circuit->rcv_stream, false);
1425 if (auth_code != ISIS_AUTH_OK) {
1426 isis_event_auth_failure(circuit->area->area_tag,
1427 "SNP authentication failure",
1428 rem_sys_id);
1429#ifndef FABRICD
1430 /* send northbound notification */
1431 stream_get_from(raw_pdu, circuit->rcv_stream, pdu_start,
1432 pdu_end - pdu_start);
c32496ee
RW
1433 if (auth_code == ISIS_AUTH_FAILURE) {
1434 circuit->auth_failures++;
1ee746d9 1435 if (circuit->is_type == IS_LEVEL_1) {
1436 circuit->area->auth_failures[0]++;
1437 } else if (circuit->is_type == IS_LEVEL_2) {
1438 circuit->area->auth_failures[1]++;
1439 } else {
1440 circuit->area->auth_failures[0]++;
1441 circuit->area->auth_failures[1]++;
1442 }
1443 isis_notif_authentication_failure(
1444 circuit, raw_pdu, sizeof(raw_pdu));
c32496ee
RW
1445 } else { /* AUTH_TYPE_FAILURE or NO_VALIDATOR */
1446 circuit->auth_type_failures++;
1ee746d9 1447 if (circuit->is_type == IS_LEVEL_1) {
1448 circuit->area->auth_type_failures[0]++;
1449 } else if (circuit->is_type == IS_LEVEL_2) {
1450 circuit->area->auth_type_failures[1]++;
1451 } else {
1452 circuit->area->auth_type_failures[0]++;
1453 circuit->area->auth_type_failures[1]++;
1454 }
1455 isis_notif_authentication_type_failure(
1456 circuit, raw_pdu, sizeof(raw_pdu));
c32496ee 1457 }
3380c990
EDP
1458#endif /* ifndef FABRICD */
1459 goto out;
1460 }
d62a17ae 1461 }
eb5d44eb 1462
17c9dcd5
CF
1463 struct isis_lsp_entry *entry_head =
1464 (struct isis_lsp_entry *)tlvs->lsp_entries.head;
1465
d62a17ae 1466 /* debug isis snp-packets */
e740f9c1 1467 if (IS_DEBUG_SNP_PACKETS) {
d62a17ae 1468 zlog_debug("ISIS-Snp (%s): Rcvd L%d %cSNP from %s on %s",
1469 circuit->area->area_tag, level, typechar,
1470 snpa_print(ssnpa), circuit->interface->name);
17c9dcd5
CF
1471 for (struct isis_lsp_entry *entry = entry_head; entry;
1472 entry = entry->next) {
1473 zlog_debug(
6cde4b45 1474 "ISIS-Snp (%s): %cSNP entry %s, seq 0x%08x, cksum 0x%04hx, lifetime %hus",
17c9dcd5
CF
1475 circuit->area->area_tag, typechar,
1476 rawlspid_print(entry->id), entry->seqno,
1477 entry->checksum, entry->rem_lifetime);
f390d2c7 1478 }
f390d2c7 1479 }
3f045a08 1480
df0ba689
CF
1481 bool resync_needed = false;
1482
d62a17ae 1483 /* 7.3.15.2 b) Actions on LSP_ENTRIES reported */
17c9dcd5
CF
1484 for (struct isis_lsp_entry *entry = entry_head; entry;
1485 entry = entry->next) {
1486 struct isis_lsp *lsp =
4bef0ec4 1487 lsp_search(&circuit->area->lspdb[level - 1], entry->id);
99e5d4af 1488 bool own_lsp = !memcmp(entry->id, circuit->isis->sysid,
eab88f36 1489 ISIS_SYS_ID_LEN);
17c9dcd5
CF
1490 if (lsp) {
1491 /* 7.3.15.2 b) 1) is this LSP newer */
1492 int cmp = lsp_compare(circuit->area->area_tag, lsp,
1493 entry->seqno, entry->checksum,
1494 entry->rem_lifetime);
1495 /* 7.3.15.2 b) 2) if it equals, clear SRM on p2p */
1496 if (cmp == LSP_EQUAL) {
1497 /* if (circuit->circ_type !=
1498 * CIRCUIT_T_BROADCAST) */
9b39405f 1499 isis_tx_queue_del(circuit->tx_queue, lsp);
17c9dcd5
CF
1500 }
1501 /* 7.3.15.2 b) 3) if it is older, clear SSN and set SRM
1502 */
1503 else if (cmp == LSP_OLDER) {
1504 ISIS_CLEAR_FLAG(lsp->SSNflags, circuit);
9b39405f
CF
1505 isis_tx_queue_add(circuit->tx_queue, lsp,
1506 TX_LSP_NORMAL);
17c9dcd5
CF
1507 }
1508 /* 7.3.15.2 b) 4) if it is newer, set SSN and clear SRM
1509 on p2p */
1510 else {
1511 if (own_lsp) {
af8ac8f9 1512 lsp_inc_seqno(lsp, entry->seqno);
9b39405f
CF
1513 isis_tx_queue_add(circuit->tx_queue, lsp,
1514 TX_LSP_NORMAL);
17c9dcd5
CF
1515 } else {
1516 ISIS_SET_FLAG(lsp->SSNflags, circuit);
d62a17ae 1517 /* if (circuit->circ_type !=
1518 * CIRCUIT_T_BROADCAST) */
9b39405f 1519 isis_tx_queue_del(circuit->tx_queue, lsp);
df0ba689 1520 resync_needed = true;
d62a17ae 1521 }
17c9dcd5
CF
1522 }
1523 } else {
1524 /* 7.3.15.2 b) 5) if it was not found, and all of those
1525 * are not 0,
1526 * insert it and set SSN on it */
1527 if (entry->rem_lifetime && entry->checksum
eab88f36 1528 && entry->seqno
99e5d4af 1529 && memcmp(entry->id, circuit->isis->sysid,
eab88f36 1530 ISIS_SYS_ID_LEN)) {
8f5dbe18
CF
1531 struct isis_lsp *lsp0 = NULL;
1532
1533 if (LSP_FRAGMENT(entry->id)) {
1534 uint8_t lspid[ISIS_SYS_ID_LEN + 2];
1535
1536 memcpy(lspid, entry->id,
1537 ISIS_SYS_ID_LEN + 1);
1538 LSP_FRAGMENT(lspid) = 0;
1539 lsp0 = lsp_search(
4bef0ec4
DL
1540 &circuit->area->lspdb[level - 1],
1541 lspid);
8f5dbe18 1542 if (!lsp0) {
98c5bc15 1543 zlog_debug("Got lsp frag in snp, while zero not in database");
8f5dbe18
CF
1544 continue;
1545 }
1546 }
f7813c7c 1547 lsp = lsp_new(circuit->area, entry->id,
17c9dcd5 1548 entry->rem_lifetime, 0, 0,
8f5dbe18 1549 entry->checksum, lsp0, level);
4bef0ec4
DL
1550 lsp_insert(&circuit->area->lspdb[level - 1],
1551 lsp);
9b39405f
CF
1552
1553 lsp_set_all_srmflags(lsp, false);
17c9dcd5 1554 ISIS_SET_FLAG(lsp->SSNflags, circuit);
df0ba689 1555 resync_needed = true;
d62a17ae 1556 }
1557 }
1558 }
eb5d44eb 1559
d62a17ae 1560 /* 7.3.15.2 c) on CSNP set SRM for all in range which were not reported
1561 */
17c9dcd5 1562 if (is_csnp) {
d62a17ae 1563 /*
1564 * Build a list from our own LSP db bounded with
1565 * start_lsp_id and stop_lsp_id
1566 */
17c9dcd5 1567 struct list *lsp_list = list_new();
4bef0ec4
DL
1568 lsp_build_list_nonzero_ht(&circuit->area->lspdb[level - 1],
1569 start_lsp_id, stop_lsp_id, lsp_list);
d62a17ae 1570
1571 /* Fixme: Find a better solution */
17c9dcd5
CF
1572 struct listnode *node, *nnode;
1573 struct isis_lsp *lsp;
1574 for (struct isis_lsp_entry *entry = entry_head; entry;
1575 entry = entry->next) {
1576 for (ALL_LIST_ELEMENTS(lsp_list, node, nnode, lsp)) {
af8ac8f9 1577 if (lsp_id_cmp(lsp->hdr.lsp_id, entry->id)
17c9dcd5
CF
1578 == 0) {
1579 list_delete_node(lsp_list, node);
1580 break;
d62a17ae 1581 }
1582 }
1583 }
17c9dcd5 1584
d62a17ae 1585 /* on remaining LSPs we set SRM (neighbor knew not of) */
9b39405f
CF
1586 for (ALL_LIST_ELEMENTS_RO(lsp_list, node, lsp)) {
1587 isis_tx_queue_add(circuit->tx_queue, lsp, TX_LSP_NORMAL);
df0ba689 1588 resync_needed = true;
9b39405f
CF
1589 }
1590
d62a17ae 1591 /* lets free it */
6a154c88 1592 list_delete(&lsp_list);
d62a17ae 1593 }
1594
df0ba689 1595 if (fabricd_initial_sync_is_complete(circuit->area) && resync_needed)
9165c5f5 1596 zlog_warn("OpenFabric: Needed to resync LSPDB using CSNP!");
df0ba689 1597
17c9dcd5
CF
1598 retval = ISIS_OK;
1599out:
1600 isis_free_tlvs(tlvs);
d62a17ae 1601 return retval;
eb5d44eb 1602}
1603
88f9d911
CF
1604static int pdu_size(uint8_t pdu_type, uint8_t *size)
1605{
1606 switch (pdu_type) {
1607 case L1_LAN_HELLO:
1608 case L2_LAN_HELLO:
1609 *size = ISIS_LANHELLO_HDRLEN;
1610 break;
1611 case P2P_HELLO:
1612 *size = ISIS_P2PHELLO_HDRLEN;
1613 break;
1614 case L1_LINK_STATE:
1615 case L2_LINK_STATE:
1cbd5b37 1616 case FS_LINK_STATE:
88f9d911
CF
1617 *size = ISIS_LSP_HDR_LEN;
1618 break;
1619 case L1_COMPLETE_SEQ_NUM:
1620 case L2_COMPLETE_SEQ_NUM:
1621 *size = ISIS_CSNP_HDRLEN;
1622 break;
1623 case L1_PARTIAL_SEQ_NUM:
1624 case L2_PARTIAL_SEQ_NUM:
1625 *size = ISIS_PSNP_HDRLEN;
1626 break;
1627 default:
1628 return 1;
1629 }
1630 *size += ISIS_FIXED_HDR_LEN;
1631 return 0;
1632}
1633
eb5d44eb 1634/*
1635 * PDU Dispatcher
1636 */
1637
d7c0a89a 1638int isis_handle_pdu(struct isis_circuit *circuit, uint8_t *ssnpa)
eb5d44eb 1639{
d62a17ae 1640 int retval = ISIS_OK;
2ab5a2d1
EDP
1641 size_t pdu_start = stream_get_getp(circuit->rcv_stream);
1642 size_t pdu_end = stream_get_endp(circuit->rcv_stream);
1643 char raw_pdu[pdu_end - pdu_start];
1644
1645 stream_get_from(raw_pdu, circuit->rcv_stream, pdu_start,
1646 pdu_end - pdu_start);
eb5d44eb 1647
88f9d911
CF
1648 /* Verify that at least the 8 bytes fixed header have been received */
1649 if (stream_get_endp(circuit->rcv_stream) < ISIS_FIXED_HDR_LEN) {
1a7ecb96 1650 flog_err(EC_ISIS_PACKET, "PDU is too short to be IS-IS.");
88f9d911
CF
1651 return ISIS_ERROR;
1652 }
eb5d44eb 1653
88f9d911
CF
1654 uint8_t idrp = stream_getc(circuit->rcv_stream);
1655 uint8_t length = stream_getc(circuit->rcv_stream);
1656 uint8_t version1 = stream_getc(circuit->rcv_stream);
1657 uint8_t id_len = stream_getc(circuit->rcv_stream);
1658 uint8_t pdu_type = stream_getc(circuit->rcv_stream)
1659 & 0x1f; /* bits 6-8 are reserved */
1660 uint8_t version2 = stream_getc(circuit->rcv_stream);
2ab5a2d1 1661
88f9d911
CF
1662 stream_forward_getp(circuit->rcv_stream, 1); /* reserved */
1663 uint8_t max_area_addrs = stream_getc(circuit->rcv_stream);
1664
39bb53d6
CF
1665 pdu_counter_count(circuit->area->pdu_rx_counters, pdu_type);
1666
88f9d911 1667 if (idrp == ISO9542_ESIS) {
450971aa 1668 flog_err(EC_LIB_DEVELOPMENT,
6cde4b45 1669 "No support for ES-IS packet IDRP=%hhx", idrp);
d62a17ae 1670 return ISIS_ERROR;
1671 }
eb5d44eb 1672
88f9d911 1673 if (idrp != ISO10589_ISIS) {
6cde4b45 1674 flog_err(EC_ISIS_PACKET, "Not an IS-IS packet IDRP=%hhx",
1c50c1c0 1675 idrp);
d62a17ae 1676 return ISIS_ERROR;
1677 }
3f045a08 1678
88f9d911 1679 if (version1 != 1) {
6cde4b45 1680 zlog_warn("Unsupported ISIS version %hhu", version1);
0532bd84
EDP
1681#ifndef FABRICD
1682 /* send northbound notification */
1ee746d9 1683 isis_notif_version_skew(circuit, version1, raw_pdu,
1684 sizeof(raw_pdu));
0532bd84 1685#endif /* ifndef FABRICD */
88f9d911
CF
1686 return ISIS_WARNING;
1687 }
eb5d44eb 1688
88f9d911 1689 if (id_len != 0 && id_len != ISIS_SYS_ID_LEN) {
af4c2728 1690 flog_err(
1a7ecb96 1691 EC_ISIS_PACKET,
6cde4b45 1692 "IDFieldLengthMismatch: ID Length field in a received PDU %hhu, while the parameter for this IS is %u",
88f9d911 1693 id_len, ISIS_SYS_ID_LEN);
c32496ee 1694 circuit->id_len_mismatches++;
1ee746d9 1695 if (circuit->is_type == IS_LEVEL_1) {
1696 circuit->area->id_len_mismatches[0]++;
1697 } else if (circuit->is_type == IS_LEVEL_2) {
1698 circuit->area->id_len_mismatches[1]++;
1699 } else {
1700 circuit->area->id_len_mismatches[0]++;
1701 circuit->area->id_len_mismatches[1]++;
1702 }
1703
e98d7633
EDP
1704#ifndef FABRICD
1705 /* send northbound notification */
1ee746d9 1706 isis_notif_id_len_mismatch(circuit, id_len, raw_pdu,
1707 sizeof(raw_pdu));
e98d7633 1708#endif /* ifndef FABRICD */
d62a17ae 1709 return ISIS_ERROR;
1710 }
eb5d44eb 1711
88f9d911
CF
1712 uint8_t expected_length;
1713 if (pdu_size(pdu_type, &expected_length)) {
6cde4b45 1714 zlog_warn("Unsupported ISIS PDU %hhu", pdu_type);
d62a17ae 1715 return ISIS_WARNING;
1716 }
88f9d911
CF
1717
1718 if (length != expected_length) {
1a7ecb96 1719 flog_err(EC_ISIS_PACKET,
6cde4b45 1720 "Expected fixed header length = %hhu but got %hhu",
1c50c1c0 1721 expected_length, length);
88f9d911
CF
1722 return ISIS_ERROR;
1723 }
1724
1725 if (stream_get_endp(circuit->rcv_stream) < length) {
af4c2728 1726 flog_err(
1a7ecb96 1727 EC_ISIS_PACKET,
88f9d911 1728 "PDU is too short to contain fixed header of given PDU type.");
d62a17ae 1729 return ISIS_ERROR;
1730 }
eb5d44eb 1731
88f9d911 1732 if (version2 != 1) {
6cde4b45 1733 zlog_warn("Unsupported ISIS PDU version %hhu", version2);
0532bd84
EDP
1734#ifndef FABRICD
1735 /* send northbound notification */
1ee746d9 1736 isis_notif_version_skew(circuit, version2, raw_pdu,
1737 sizeof(raw_pdu));
0532bd84 1738#endif /* ifndef FABRICD */
d62a17ae 1739 return ISIS_WARNING;
1740 }
3f045a08 1741
d62a17ae 1742 if (circuit->is_passive) {
1743 zlog_warn("Received ISIS PDU on passive circuit %s",
1744 circuit->interface->name);
1745 return ISIS_WARNING;
1746 }
3f045a08 1747
d62a17ae 1748 /* either 3 or 0 */
eab88f36
K
1749 if (pdu_type != FS_LINK_STATE /* FS PDU doesn't contain max area addr
1750 field */
1cbd5b37 1751 && max_area_addrs != 0
99e5d4af 1752 && max_area_addrs != circuit->isis->max_area_addrs) {
af4c2728 1753 flog_err(
1a7ecb96 1754 EC_ISIS_PACKET,
6cde4b45 1755 "maximumAreaAddressesMismatch: maximumAreaAdresses in a received PDU %hhu while the parameter for this IS is %u",
99e5d4af 1756 max_area_addrs, circuit->isis->max_area_addrs);
c32496ee 1757 circuit->max_area_addr_mismatches++;
2ab5a2d1
EDP
1758#ifndef FABRICD
1759 /* send northbound notification */
1760 isis_notif_max_area_addr_mismatch(circuit, max_area_addrs,
1ee746d9 1761 raw_pdu, sizeof(raw_pdu));
2ab5a2d1 1762#endif /* ifndef FABRICD */
d62a17ae 1763 return ISIS_ERROR;
1764 }
eb5d44eb 1765
88f9d911 1766 switch (pdu_type) {
d62a17ae 1767 case L1_LAN_HELLO:
d62a17ae 1768 case L2_LAN_HELLO:
d62a17ae 1769 case P2P_HELLO:
a2d41bb0
CF
1770 if (fabricd && pdu_type != P2P_HELLO)
1771 return ISIS_ERROR;
0c1bd758 1772 retval = process_hello(pdu_type, circuit, ssnpa);
d62a17ae 1773 break;
1774 case L1_LINK_STATE:
d62a17ae 1775 case L2_LINK_STATE:
1cbd5b37 1776 case FS_LINK_STATE:
a2d41bb0
CF
1777 if (fabricd
1778 && pdu_type != L2_LINK_STATE
1779 && pdu_type != FS_LINK_STATE)
1780 return ISIS_ERROR;
9b39405f 1781 retval = process_lsp(pdu_type, circuit, ssnpa, max_area_addrs);
d62a17ae 1782 break;
1783 case L1_COMPLETE_SEQ_NUM:
d62a17ae 1784 case L2_COMPLETE_SEQ_NUM:
d62a17ae 1785 case L1_PARTIAL_SEQ_NUM:
d62a17ae 1786 case L2_PARTIAL_SEQ_NUM:
17c9dcd5 1787 retval = process_snp(pdu_type, circuit, ssnpa);
d62a17ae 1788 break;
1789 default:
1790 return ISIS_ERROR;
1791 }
eb5d44eb 1792
d62a17ae 1793 return retval;
eb5d44eb 1794}
1795
cc9f21da 1796void isis_receive(struct thread *thread)
eb5d44eb 1797{
d62a17ae 1798 struct isis_circuit *circuit;
d7c0a89a 1799 uint8_t ssnpa[ETH_ALEN];
eb5d44eb 1800
d62a17ae 1801 /*
1802 * Get the circuit
1803 */
1804 circuit = THREAD_ARG(thread);
1805 assert(circuit);
eb5d44eb 1806
d62a17ae 1807 circuit->t_read = NULL;
eb5d44eb 1808
d62a17ae 1809 isis_circuit_stream(circuit, &circuit->rcv_stream);
eb5d44eb 1810
cc9f21da
DS
1811#if ISIS_METHOD != ISIS_METHOD_BPF
1812 int retval;
1813
d62a17ae 1814 retval = circuit->rx(circuit, ssnpa);
eb5d44eb 1815
d62a17ae 1816 if (retval == ISIS_OK)
cc9f21da
DS
1817 isis_handle_pdu(circuit, ssnpa);
1818#else // ISIS_METHOD != ISIS_METHOD_BPF
1819 circuit->rx(circuit, ssnpa);
1820#endif
eb5d44eb 1821
d62a17ae 1822 /*
1823 * prepare for next packet.
1824 */
1825 if (!circuit->is_passive)
1826 isis_circuit_prepare(circuit);
eb5d44eb 1827}
1828
eb5d44eb 1829/*
d62a17ae 1830 * SEND SIDE
eb5d44eb 1831 */
88f9d911 1832void fill_fixed_hdr(uint8_t pdu_type, struct stream *stream)
eb5d44eb 1833{
88f9d911
CF
1834 uint8_t length;
1835
1836 if (pdu_size(pdu_type, &length))
1837 assert(!"Unknown PDU Type");
1838
1839 stream_putc(stream, ISO10589_ISIS); /* IDRP */
1840 stream_putc(stream, length); /* Length of fixed header */
1841 stream_putc(stream, 1); /* Version/Protocol ID Extension 1 */
1842 stream_putc(stream, 0); /* ID Length, 0 => 6 */
1843 stream_putc(stream, pdu_type);
1844 stream_putc(stream, 1); /* Subversion */
1845 stream_putc(stream, 0); /* Reserved */
1846 stream_putc(stream, 0); /* Max Area Addresses 0 => 3 */
eb5d44eb 1847}
1848
39bb53d6 1849static uint8_t hello_pdu_type(struct isis_circuit *circuit, int level)
eb5d44eb 1850{
d62a17ae 1851 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
39bb53d6 1852 return (level == IS_LEVEL_1) ? L1_LAN_HELLO : L2_LAN_HELLO;
d62a17ae 1853 else
39bb53d6
CF
1854 return P2P_HELLO;
1855}
1856
1857static void put_hello_hdr(struct isis_circuit *circuit, int level,
1858 size_t *len_pointer)
1859{
1860 uint8_t pdu_type = hello_pdu_type(circuit, level);
88f9d911 1861
0c1bd758 1862 isis_circuit_stream(circuit, &circuit->snd_stream);
88f9d911 1863 fill_fixed_hdr(pdu_type, circuit->snd_stream);
d62a17ae 1864
0c1bd758 1865 stream_putc(circuit->snd_stream, circuit->is_type);
99e5d4af 1866 stream_put(circuit->snd_stream, circuit->isis->sysid, ISIS_SYS_ID_LEN);
eb5d44eb 1867
0c1bd758
CF
1868 uint32_t holdtime = circuit->hello_multiplier[level - 1]
1869 * circuit->hello_interval[level - 1];
d62a17ae 1870
0c1bd758
CF
1871 if (holdtime > 0xffff)
1872 holdtime = 0xffff;
d62a17ae 1873
0c1bd758
CF
1874 stream_putw(circuit->snd_stream, holdtime);
1875 *len_pointer = stream_get_endp(circuit->snd_stream);
1876 stream_putw(circuit->snd_stream, 0); /* length is filled in later */
d62a17ae 1877
0c1bd758 1878 if (circuit->circ_type == CIRCUIT_T_BROADCAST) {
d7c0a89a
QY
1879 uint8_t *desig_is = (level == IS_LEVEL_1)
1880 ? circuit->u.bc.l1_desig_is
1881 : circuit->u.bc.l2_desig_is;
0c1bd758
CF
1882 stream_putc(circuit->snd_stream, circuit->priority[level - 1]);
1883 stream_put(circuit->snd_stream, desig_is, ISIS_SYS_ID_LEN + 1);
1884 } else {
1885 stream_putc(circuit->snd_stream, circuit->circuit_id);
d62a17ae 1886 }
0c1bd758 1887}
eb5d44eb 1888
0c1bd758
CF
1889int send_hello(struct isis_circuit *circuit, int level)
1890{
1891 size_t len_pointer;
1892 int retval;
1893
1894 if (circuit->is_passive)
1895 return ISIS_OK;
1896
1897 if (circuit->interface->mtu == 0) {
1898 zlog_warn("circuit has zero MTU");
d62a17ae 1899 return ISIS_WARNING;
0c1bd758
CF
1900 }
1901
1902 put_hello_hdr(circuit, level, &len_pointer);
1903
1904 struct isis_tlvs *tlvs = isis_alloc_tlvs();
1905
1906 isis_tlvs_add_auth(tlvs, &circuit->passwd);
1907
a3acf37d
DS
1908 if (!listcount(circuit->area->area_addrs)) {
1909 isis_free_tlvs(tlvs);
d62a17ae 1910 return ISIS_WARNING;
a3acf37d
DS
1911 }
1912
0c1bd758 1913 isis_tlvs_add_area_addresses(tlvs, circuit->area->area_addrs);
d62a17ae 1914
42fe2621 1915 if (circuit->circ_type == CIRCUIT_T_BROADCAST) {
0c1bd758
CF
1916 isis_tlvs_add_lan_neighbors(
1917 tlvs, circuit->u.bc.lan_neighs[level - 1]);
58e5d748
CF
1918 } else if (circuit->circ_type == CIRCUIT_T_P2P
1919 && !circuit->disable_threeway_adj) {
42fe2621
CF
1920 uint32_t ext_circuit_id = circuit->idx;
1921 if (circuit->u.p2p.neighbor) {
8e6fb83b
CF
1922 uint8_t threeway_state;
1923
1924 if (fabricd_initial_sync_is_in_progress(circuit->area)
1925 && fabricd_initial_sync_circuit(circuit->area) != circuit)
1926 threeway_state = ISIS_THREEWAY_DOWN;
1927 else
1928 threeway_state = circuit->u.p2p.neighbor->threeway_state;
42fe2621 1929 isis_tlvs_add_threeway_adj(tlvs,
8e6fb83b 1930 threeway_state,
42fe2621
CF
1931 ext_circuit_id,
1932 circuit->u.p2p.neighbor->sysid,
1933 circuit->u.p2p.neighbor->ext_circuit_id);
1934 } else {
1935 isis_tlvs_add_threeway_adj(tlvs,
1936 ISIS_THREEWAY_DOWN,
1937 ext_circuit_id,
1938 NULL, 0);
1939 }
1940 }
0c1bd758
CF
1941
1942 isis_tlvs_set_protocols_supported(tlvs, &circuit->nlpids);
d62a17ae 1943
1944 /*
1945 * MT Supported TLV
1946 *
1947 * TLV gets included if no topology is enabled on the interface,
1948 * if one topology other than #0 is enabled, or if multiple topologies
1949 * are enabled.
1950 */
1951 struct isis_circuit_mt_setting **mt_settings;
1952 unsigned int mt_count;
1953
1954 mt_settings = circuit_mt_settings(circuit, &mt_count);
0c1bd758
CF
1955 if (mt_count == 0 && area_is_mt(circuit->area)) {
1956 tlvs->mt_router_info_empty = true;
1957 } else if ((mt_count == 1
1958 && mt_settings[0]->mtid != ISIS_MT_IPV4_UNICAST)
1959 || (mt_count > 1)) {
1960 for (unsigned int i = 0; i < mt_count; i++)
1961 isis_tlvs_add_mt_router_info(tlvs, mt_settings[i]->mtid,
1962 false, false);
d62a17ae 1963 }
eb5d44eb 1964
41415888
CF
1965 if (circuit->ip_router) {
1966 struct list *circuit_ip_addrs = fabricd_ip_addrs(circuit);
1967
1968 if (circuit_ip_addrs)
1969 isis_tlvs_add_ipv4_addresses(tlvs, circuit_ip_addrs);
1970 }
d62a17ae 1971
91a5bbc4 1972 if (circuit->ipv6_router)
0c1bd758 1973 isis_tlvs_add_ipv6_addresses(tlvs, circuit->ipv6_link);
d62a17ae 1974
173f8887 1975 /* RFC6119 section 4 define TLV 233 to provide Global IPv6 address */
91a5bbc4 1976 if (circuit->ipv6_router)
173f8887
OD
1977 isis_tlvs_add_global_ipv6_addresses(tlvs,
1978 circuit->ipv6_non_link);
1979
0c1bd758 1980 if (isis_pack_tlvs(tlvs, circuit->snd_stream, len_pointer,
af8ac8f9 1981 circuit->pad_hellos, false)) {
0c1bd758
CF
1982 isis_free_tlvs(tlvs);
1983 return ISIS_WARNING; /* XXX: Maybe Log TLV structure? */
f390d2c7 1984 }
d62a17ae 1985
e740f9c1 1986 if (IS_DEBUG_ADJ_PACKETS) {
d62a17ae 1987 if (circuit->circ_type == CIRCUIT_T_BROADCAST) {
1988 zlog_debug(
1989 "ISIS-Adj (%s): Sending L%d LAN IIH on %s, length %zd",
1990 circuit->area->area_tag, level,
0c1bd758
CF
1991 circuit->interface->name,
1992 stream_get_endp(circuit->snd_stream));
d62a17ae 1993 } else {
1994 zlog_debug(
1995 "ISIS-Adj (%s): Sending P2P IIH on %s, length %zd",
1996 circuit->area->area_tag,
0c1bd758
CF
1997 circuit->interface->name,
1998 stream_get_endp(circuit->snd_stream));
d62a17ae 1999 }
e740f9c1 2000 if (IS_DEBUG_PACKET_DUMP)
d62a17ae 2001 zlog_dump_data(STREAM_DATA(circuit->snd_stream),
2002 stream_get_endp(circuit->snd_stream));
f390d2c7 2003 }
eb5d44eb 2004
0c1bd758
CF
2005 isis_free_tlvs(tlvs);
2006
89cdc4df
RM
2007 pdu_counter_count(circuit->area->pdu_tx_counters,
2008 hello_pdu_type(circuit, level));
d62a17ae 2009 retval = circuit->tx(circuit, level);
2010 if (retval != ISIS_OK)
1a7ecb96 2011 flog_err(EC_ISIS_PACKET,
1c50c1c0
QY
2012 "ISIS-Adj (%s): Send L%d IIH on %s failed",
2013 circuit->area->area_tag, level,
2014 circuit->interface->name);
eb5d44eb 2015
d62a17ae 2016 return retval;
eb5d44eb 2017}
2018
cc9f21da 2019static void send_hello_cb(struct thread *thread)
eb5d44eb 2020{
7c4f7aab 2021 struct isis_circuit_arg *arg = THREAD_ARG(thread);
7c4f7aab 2022 assert(arg);
89cdc4df 2023
7c4f7aab
CF
2024 struct isis_circuit *circuit = arg->circuit;
2025 int level = arg->level;
d62a17ae 2026
d62a17ae 2027 assert(circuit);
ddfdbd32 2028
7c4f7aab
CF
2029 if (circuit->circ_type == CIRCUIT_T_P2P) {
2030 circuit->u.p2p.t_send_p2p_hello = NULL;
7c4f7aab 2031 send_hello(circuit, 1);
a0a707ee
CF
2032 send_hello_sched(circuit, ISIS_LEVEL1,
2033 1000 * circuit->hello_interval[1]);
cc9f21da 2034 return;
d62a17ae 2035 }
ddfdbd32 2036
7c4f7aab
CF
2037 if (circuit->circ_type != CIRCUIT_T_BROADCAST) {
2038 zlog_warn("ISIS-Hello (%s): Trying to send hello on unknown circuit type %d",
2039 circuit->area->area_tag, circuit->circ_type);
cc9f21da 2040 return;
7c4f7aab 2041 }
eb5d44eb 2042
7c4f7aab
CF
2043 circuit->u.bc.t_send_lan_hello[level - 1] = NULL;
2044 if (!(circuit->is_type & level)) {
2045 zlog_warn("ISIS-Hello (%s): Trying to send L%d IIH in L%d-only circuit",
2046 circuit->area->area_tag, level, 3 - level);
cc9f21da 2047 return;
7c4f7aab 2048 }
eb5d44eb 2049
7c4f7aab
CF
2050 if (circuit->u.bc.run_dr_elect[level - 1])
2051 isis_dr_elect(circuit, level);
eb5d44eb 2052
cc9f21da 2053 send_hello(circuit, level);
eb5d44eb 2054
d62a17ae 2055 /* set next timer thread */
a0a707ee 2056 send_hello_sched(circuit, level, 1000 * circuit->hello_interval[level - 1]);
eb5d44eb 2057}
2058
a0a707ee
CF
2059static void _send_hello_sched(struct isis_circuit *circuit,
2060 struct thread **threadp,
2061 int level, long delay)
2062{
2063 if (*threadp) {
2064 if (thread_timer_remain_msec(*threadp) < (unsigned long)delay)
2065 return;
2066
fa935aa7 2067 THREAD_OFF(*threadp);
a0a707ee
CF
2068 }
2069
2070 thread_add_timer_msec(master, send_hello_cb,
2071 &circuit->level_arg[level - 1],
2072 isis_jitter(delay, IIH_JITTER),
2073 threadp);
2074}
2075
2076void send_hello_sched(struct isis_circuit *circuit, int level, long delay)
2077{
2078 if (circuit->circ_type == CIRCUIT_T_P2P) {
2079 _send_hello_sched(circuit, &circuit->u.p2p.t_send_p2p_hello,
2080 ISIS_LEVEL1, delay);
2081 return;
2082 }
2083
2084 if (circuit->circ_type != CIRCUIT_T_BROADCAST) {
2085 zlog_warn("%s: encountered unknown circuit type %d on %s",
2086 __func__, circuit->circ_type,
2087 circuit->interface->name);
2088 return;
2089 }
2090
2091 for (int loop_level = ISIS_LEVEL1; loop_level <= ISIS_LEVEL2; loop_level++) {
2092 if (!(loop_level & level))
2093 continue;
2094
2095 _send_hello_sched(
2096 circuit,
2097 &circuit->u.bc.t_send_lan_hello[loop_level - 1],
2098 loop_level,
2099 delay
2100 );
2101 }
2102}
2103
2104
3f045a08 2105/*
f5267398 2106 * Count the maximum number of lsps that can be accommodated by a given size.
3f045a08 2107 */
af8ac8f9 2108#define LSP_ENTRIES_LEN (10 + ISIS_SYS_ID_LEN)
d62a17ae 2109static uint16_t get_max_lsp_count(uint16_t size)
3f045a08 2110{
d62a17ae 2111 uint16_t tlv_count;
2112 uint16_t lsp_count;
2113 uint16_t remaining_size;
3f045a08 2114
d62a17ae 2115 /* First count the full size TLVs */
2116 tlv_count = size / MAX_LSP_ENTRIES_TLV_SIZE;
2117 lsp_count = tlv_count * (MAX_LSP_ENTRIES_TLV_SIZE / LSP_ENTRIES_LEN);
3f045a08 2118
d62a17ae 2119 /* The last TLV, if any */
2120 remaining_size = size % MAX_LSP_ENTRIES_TLV_SIZE;
2121 if (remaining_size - 2 >= LSP_ENTRIES_LEN)
2122 lsp_count += (remaining_size - 2) / LSP_ENTRIES_LEN;
3f045a08 2123
d62a17ae 2124 return lsp_count;
3f045a08
JB
2125}
2126
17c9dcd5 2127int send_csnp(struct isis_circuit *circuit, int level)
3f045a08 2128{
4bef0ec4 2129 if (lspdb_count(&circuit->area->lspdb[level - 1]) == 0)
17c9dcd5 2130 return ISIS_OK;
d62a17ae 2131
39bb53d6
CF
2132 uint8_t pdu_type = (level == ISIS_LEVEL1) ? L1_COMPLETE_SEQ_NUM
2133 : L2_COMPLETE_SEQ_NUM;
2134
17c9dcd5 2135 isis_circuit_stream(circuit, &circuit->snd_stream);
39bb53d6 2136 fill_fixed_hdr(pdu_type, circuit->snd_stream);
3f045a08 2137
17c9dcd5 2138 size_t len_pointer = stream_get_endp(circuit->snd_stream);
eab88f36 2139
17c9dcd5 2140 stream_putw(circuit->snd_stream, 0);
99e5d4af 2141 stream_put(circuit->snd_stream, circuit->isis->sysid, ISIS_SYS_ID_LEN);
17c9dcd5
CF
2142 /* with zero circuit id - ref 9.10, 9.11 */
2143 stream_putc(circuit->snd_stream, 0);
3f045a08 2144
17c9dcd5
CF
2145 size_t start_pointer = stream_get_endp(circuit->snd_stream);
2146 stream_put(circuit->snd_stream, 0, ISIS_SYS_ID_LEN + 2);
2147 size_t end_pointer = stream_get_endp(circuit->snd_stream);
2148 stream_put(circuit->snd_stream, 0, ISIS_SYS_ID_LEN + 2);
d62a17ae 2149
17c9dcd5
CF
2150 struct isis_passwd *passwd = (level == ISIS_LEVEL1)
2151 ? &circuit->area->area_passwd
2152 : &circuit->area->domain_passwd;
d62a17ae 2153
17c9dcd5 2154 struct isis_tlvs *tlvs = isis_alloc_tlvs();
3f045a08 2155
17c9dcd5
CF
2156 if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_SEND))
2157 isis_tlvs_add_auth(tlvs, passwd);
eb5d44eb 2158
17c9dcd5 2159 size_t tlv_start = stream_get_endp(circuit->snd_stream);
af8ac8f9
CF
2160 if (isis_pack_tlvs(tlvs, circuit->snd_stream, len_pointer, false,
2161 false)) {
17c9dcd5
CF
2162 isis_free_tlvs(tlvs);
2163 return ISIS_WARNING;
2164 }
2165 isis_free_tlvs(tlvs);
d62a17ae 2166
17c9dcd5
CF
2167 uint16_t num_lsps =
2168 get_max_lsp_count(STREAM_WRITEABLE(circuit->snd_stream));
d62a17ae 2169
17c9dcd5 2170 uint8_t start[ISIS_SYS_ID_LEN + 2];
d62a17ae 2171 memset(start, 0x00, ISIS_SYS_ID_LEN + 2);
17c9dcd5 2172 uint8_t stop[ISIS_SYS_ID_LEN + 2];
d62a17ae 2173 memset(stop, 0xff, ISIS_SYS_ID_LEN + 2);
2174
17c9dcd5 2175 bool loop = true;
d62a17ae 2176 while (loop) {
17c9dcd5
CF
2177 tlvs = isis_alloc_tlvs();
2178 if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_SEND))
2179 isis_tlvs_add_auth(tlvs, passwd);
2180
2181 struct isis_lsp *last_lsp;
2182 isis_tlvs_add_csnp_entries(tlvs, start, stop, num_lsps,
4bef0ec4 2183 &circuit->area->lspdb[level - 1],
17c9dcd5 2184 &last_lsp);
d62a17ae 2185 /*
2186 * Update the stop lsp_id before encoding this CSNP.
2187 */
17c9dcd5 2188 if (tlvs->lsp_entries.count < num_lsps) {
d62a17ae 2189 memset(stop, 0xff, ISIS_SYS_ID_LEN + 2);
2190 } else {
af8ac8f9 2191 memcpy(stop, last_lsp->hdr.lsp_id, sizeof(stop));
d62a17ae 2192 }
3f045a08 2193
17c9dcd5
CF
2194 memcpy(STREAM_DATA(circuit->snd_stream) + start_pointer, start,
2195 ISIS_SYS_ID_LEN + 2);
2196 memcpy(STREAM_DATA(circuit->snd_stream) + end_pointer, stop,
2197 ISIS_SYS_ID_LEN + 2);
2198 stream_set_endp(circuit->snd_stream, tlv_start);
2199 if (isis_pack_tlvs(tlvs, circuit->snd_stream, len_pointer,
af8ac8f9 2200 false, false)) {
17c9dcd5
CF
2201 isis_free_tlvs(tlvs);
2202 return ISIS_WARNING;
d62a17ae 2203 }
eb5d44eb 2204
e740f9c1 2205 if (IS_DEBUG_SNP_PACKETS) {
d62a17ae 2206 zlog_debug(
2207 "ISIS-Snp (%s): Sending L%d CSNP on %s, length %zd",
2208 circuit->area->area_tag, level,
2209 circuit->interface->name,
2210 stream_get_endp(circuit->snd_stream));
17c9dcd5 2211 log_multiline(LOG_DEBUG, " ", "%s",
a2cac12a 2212 isis_format_tlvs(tlvs, NULL));
e740f9c1 2213 if (IS_DEBUG_PACKET_DUMP)
d62a17ae 2214 zlog_dump_data(
2215 STREAM_DATA(circuit->snd_stream),
2216 stream_get_endp(circuit->snd_stream));
2217 }
eb5d44eb 2218
39bb53d6 2219 pdu_counter_count(circuit->area->pdu_tx_counters, pdu_type);
17c9dcd5 2220 int retval = circuit->tx(circuit, level);
d62a17ae 2221 if (retval != ISIS_OK) {
1a7ecb96 2222 flog_err(EC_ISIS_PACKET,
1c50c1c0
QY
2223 "ISIS-Snp (%s): Send L%d CSNP on %s failed",
2224 circuit->area->area_tag, level,
2225 circuit->interface->name);
17c9dcd5 2226 isis_free_tlvs(tlvs);
d62a17ae 2227 return retval;
2228 }
3f045a08 2229
d62a17ae 2230 /*
2231 * Start lsp_id of the next CSNP should be one plus the
2232 * stop lsp_id in this current CSNP.
2233 */
2234 memcpy(start, stop, ISIS_SYS_ID_LEN + 2);
d8729f8c 2235 loop = false;
17c9dcd5 2236 for (int i = ISIS_SYS_ID_LEN + 1; i >= 0; --i) {
d7c0a89a 2237 if (start[i] < (uint8_t)0xff) {
d62a17ae 2238 start[i] += 1;
d8729f8c 2239 loop = true;
d62a17ae 2240 break;
2241 }
2242 }
2243 memset(stop, 0xff, ISIS_SYS_ID_LEN + 2);
17c9dcd5 2244 isis_free_tlvs(tlvs);
d62a17ae 2245 }
3f045a08 2246
17c9dcd5 2247 return ISIS_OK;
eb5d44eb 2248}
2249
cc9f21da 2250void send_l1_csnp(struct thread *thread)
eb5d44eb 2251{
d62a17ae 2252 struct isis_circuit *circuit;
eb5d44eb 2253
d62a17ae 2254 circuit = THREAD_ARG(thread);
2255 assert(circuit);
eb5d44eb 2256
d62a17ae 2257 circuit->t_send_csnp[0] = NULL;
eb5d44eb 2258
8e6fb83b
CF
2259 if ((circuit->circ_type == CIRCUIT_T_BROADCAST
2260 && circuit->u.bc.is_dr[0])
2261 || circuit->circ_type == CIRCUIT_T_P2P) {
d62a17ae 2262 send_csnp(circuit, 1);
2263 }
2264 /* set next timer thread */
2265 thread_add_timer(master, send_l1_csnp, circuit,
2266 isis_jitter(circuit->csnp_interval[0], CSNP_JITTER),
2267 &circuit->t_send_csnp[0]);
eb5d44eb 2268}
2269
cc9f21da 2270void send_l2_csnp(struct thread *thread)
eb5d44eb 2271{
d62a17ae 2272 struct isis_circuit *circuit;
eb5d44eb 2273
d62a17ae 2274 circuit = THREAD_ARG(thread);
2275 assert(circuit);
eb5d44eb 2276
d62a17ae 2277 circuit->t_send_csnp[1] = NULL;
eb5d44eb 2278
8e6fb83b
CF
2279 if ((circuit->circ_type == CIRCUIT_T_BROADCAST
2280 && circuit->u.bc.is_dr[1])
2281 || circuit->circ_type == CIRCUIT_T_P2P) {
d62a17ae 2282 send_csnp(circuit, 2);
2283 }
2284 /* set next timer thread */
2285 thread_add_timer(master, send_l2_csnp, circuit,
2286 isis_jitter(circuit->csnp_interval[1], CSNP_JITTER),
2287 &circuit->t_send_csnp[1]);
eb5d44eb 2288}
2289
eb5d44eb 2290/*
2291 * 7.3.15.4 action on expiration of partial SNP interval
2292 * level 1
2293 */
d62a17ae 2294static int send_psnp(int level, struct isis_circuit *circuit)
eb5d44eb 2295{
d62a17ae 2296 if (circuit->circ_type == CIRCUIT_T_BROADCAST
2297 && circuit->u.bc.is_dr[level - 1])
2298 return ISIS_OK;
eb5d44eb 2299
4bef0ec4 2300 if (lspdb_count(&circuit->area->lspdb[level - 1]) == 0)
d62a17ae 2301 return ISIS_OK;
f390d2c7 2302
d62a17ae 2303 if (!circuit->snd_stream)
2304 return ISIS_ERROR;
e38e0df0 2305
39bb53d6
CF
2306 uint8_t pdu_type = (level == ISIS_LEVEL1) ? L1_PARTIAL_SEQ_NUM
2307 : L2_PARTIAL_SEQ_NUM;
2308
17c9dcd5 2309 isis_circuit_stream(circuit, &circuit->snd_stream);
39bb53d6 2310 fill_fixed_hdr(pdu_type, circuit->snd_stream);
17c9dcd5
CF
2311
2312 size_t len_pointer = stream_get_endp(circuit->snd_stream);
2313 stream_putw(circuit->snd_stream, 0); /* length is filled in later */
99e5d4af 2314 stream_put(circuit->snd_stream, circuit->isis->sysid, ISIS_SYS_ID_LEN);
17c9dcd5
CF
2315 stream_putc(circuit->snd_stream, circuit->idx);
2316
2317 struct isis_passwd *passwd = (level == ISIS_LEVEL1)
2318 ? &circuit->area->area_passwd
2319 : &circuit->area->domain_passwd;
2320
2321 struct isis_tlvs *tlvs = isis_alloc_tlvs();
2322
2323 if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_SEND))
2324 isis_tlvs_add_auth(tlvs, passwd);
2325
2326 size_t tlv_start = stream_get_endp(circuit->snd_stream);
af8ac8f9
CF
2327 if (isis_pack_tlvs(tlvs, circuit->snd_stream, len_pointer, false,
2328 false)) {
17c9dcd5
CF
2329 isis_free_tlvs(tlvs);
2330 return ISIS_WARNING;
2331 }
2332 isis_free_tlvs(tlvs);
2333
2334 uint16_t num_lsps =
2335 get_max_lsp_count(STREAM_WRITEABLE(circuit->snd_stream));
f390d2c7 2336
d62a17ae 2337 while (1) {
4bef0ec4
DL
2338 struct isis_lsp *lsp;
2339
17c9dcd5
CF
2340 tlvs = isis_alloc_tlvs();
2341 if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_SEND))
2342 isis_tlvs_add_auth(tlvs, passwd);
2343
81fddbe7 2344 frr_each (lspdb, &circuit->area->lspdb[level - 1], lsp) {
17c9dcd5
CF
2345 if (ISIS_CHECK_FLAG(lsp->SSNflags, circuit))
2346 isis_tlvs_add_lsp_entry(tlvs, lsp);
eb5d44eb 2347
17c9dcd5
CF
2348 if (tlvs->lsp_entries.count == num_lsps)
2349 break;
2350 }
2351
2352 if (!tlvs->lsp_entries.count) {
2353 isis_free_tlvs(tlvs);
d62a17ae 2354 return ISIS_OK;
2355 }
2356
17c9dcd5
CF
2357 stream_set_endp(circuit->snd_stream, tlv_start);
2358 if (isis_pack_tlvs(tlvs, circuit->snd_stream, len_pointer,
af8ac8f9 2359 false, false)) {
17c9dcd5
CF
2360 isis_free_tlvs(tlvs);
2361 return ISIS_WARNING;
d62a17ae 2362 }
2363
e740f9c1 2364 if (IS_DEBUG_SNP_PACKETS) {
d62a17ae 2365 zlog_debug(
2366 "ISIS-Snp (%s): Sending L%d PSNP on %s, length %zd",
2367 circuit->area->area_tag, level,
2368 circuit->interface->name,
2369 stream_get_endp(circuit->snd_stream));
17c9dcd5 2370 log_multiline(LOG_DEBUG, " ", "%s",
a2cac12a 2371 isis_format_tlvs(tlvs, NULL));
e740f9c1 2372 if (IS_DEBUG_PACKET_DUMP)
d62a17ae 2373 zlog_dump_data(
2374 STREAM_DATA(circuit->snd_stream),
2375 stream_get_endp(circuit->snd_stream));
2376 }
2377
39bb53d6 2378 pdu_counter_count(circuit->area->pdu_tx_counters, pdu_type);
17c9dcd5 2379 int retval = circuit->tx(circuit, level);
d62a17ae 2380 if (retval != ISIS_OK) {
1a7ecb96 2381 flog_err(EC_ISIS_PACKET,
1c50c1c0
QY
2382 "ISIS-Snp (%s): Send L%d PSNP on %s failed",
2383 circuit->area->area_tag, level,
2384 circuit->interface->name);
17c9dcd5 2385 isis_free_tlvs(tlvs);
d62a17ae 2386 return retval;
2387 }
2388
2389 /*
2390 * sending succeeded, we can clear SSN flags of this circuit
2391 * for the LSPs in list
2392 */
17c9dcd5
CF
2393 struct isis_lsp_entry *entry_head;
2394 entry_head = (struct isis_lsp_entry *)tlvs->lsp_entries.head;
2395 for (struct isis_lsp_entry *entry = entry_head; entry;
2396 entry = entry->next)
2397 ISIS_CLEAR_FLAG(entry->lsp->SSNflags, circuit);
2398 isis_free_tlvs(tlvs);
d62a17ae 2399 }
2400
17c9dcd5 2401 return ISIS_OK;
eb5d44eb 2402}
2403
cc9f21da 2404void send_l1_psnp(struct thread *thread)
eb5d44eb 2405{
2406
d62a17ae 2407 struct isis_circuit *circuit;
eb5d44eb 2408
d62a17ae 2409 circuit = THREAD_ARG(thread);
2410 assert(circuit);
eb5d44eb 2411
d62a17ae 2412 circuit->t_send_psnp[0] = NULL;
eb5d44eb 2413
d62a17ae 2414 send_psnp(1, circuit);
2415 /* set next timer thread */
2416 thread_add_timer(master, send_l1_psnp, circuit,
2417 isis_jitter(circuit->psnp_interval[0], PSNP_JITTER),
2418 &circuit->t_send_psnp[0]);
eb5d44eb 2419}
2420
2421/*
2422 * 7.3.15.4 action on expiration of partial SNP interval
2423 * level 2
2424 */
cc9f21da 2425void send_l2_psnp(struct thread *thread)
eb5d44eb 2426{
d62a17ae 2427 struct isis_circuit *circuit;
eb5d44eb 2428
d62a17ae 2429 circuit = THREAD_ARG(thread);
2430 assert(circuit);
eb5d44eb 2431
d62a17ae 2432 circuit->t_send_psnp[1] = NULL;
eb5d44eb 2433
d62a17ae 2434 send_psnp(2, circuit);
eb5d44eb 2435
d62a17ae 2436 /* set next timer thread */
2437 thread_add_timer(master, send_l2_psnp, circuit,
2438 isis_jitter(circuit->psnp_interval[1], PSNP_JITTER),
2439 &circuit->t_send_psnp[1]);
eb5d44eb 2440}
2441
eb5d44eb 2442/*
2443 * ISO 10589 - 7.3.14.3
2444 */
161fa356
CF
2445void send_lsp(struct isis_circuit *circuit, struct isis_lsp *lsp,
2446 enum isis_tx_type tx_type)
eb5d44eb 2447{
d62a17ae 2448 int clear_srm = 1;
2449 int retval = ISIS_OK;
2450
d62a17ae 2451 if (circuit->state != C_STATE_UP || circuit->is_passive == 1)
2452 goto out;
2453
2454 /*
2455 * Do not send if levels do not match
2456 */
2457 if (!(lsp->level & circuit->is_type))
2458 goto out;
2459
2460 /*
2461 * Do not send if we do not have adjacencies in state up on the circuit
2462 */
2463 if (circuit->upadjcount[lsp->level - 1] == 0)
2464 goto out;
2465
2466 /* stream_copy will assert and stop program execution if LSP is larger
2467 * than
2468 * the circuit's MTU. So handle and log this case here. */
2469 if (stream_get_endp(lsp->pdu) > stream_get_size(circuit->snd_stream)) {
af4c2728 2470 flog_err(
1a7ecb96 2471 EC_ISIS_PACKET,
6cde4b45 2472 "ISIS-Upd (%s): Can't send L%d LSP %s, seq 0x%08x, cksum 0x%04hx, lifetime %hus on %s. LSP Size is %zu while interface stream size is %zu.",
d62a17ae 2473 circuit->area->area_tag, lsp->level,
af8ac8f9
CF
2474 rawlspid_print(lsp->hdr.lsp_id), lsp->hdr.seqno,
2475 lsp->hdr.checksum, lsp->hdr.rem_lifetime,
d62a17ae 2476 circuit->interface->name, stream_get_endp(lsp->pdu),
2477 stream_get_size(circuit->snd_stream));
56e22fb6
EDP
2478#ifndef FABRICD
2479 /* send a northbound notification */
2480 isis_notif_lsp_too_large(circuit, stream_get_endp(lsp->pdu),
1ee746d9 2481 lsp->hdr.lsp_id);
56e22fb6 2482#endif /* ifndef FABRICD */
e740f9c1 2483 if (IS_DEBUG_PACKET_DUMP)
d62a17ae 2484 zlog_dump_data(STREAM_DATA(lsp->pdu),
2485 stream_get_endp(lsp->pdu));
2486 retval = ISIS_ERROR;
2487 goto out;
2488 }
eb5d44eb 2489
d62a17ae 2490 /* copy our lsp to the send buffer */
2491 stream_copy(circuit->snd_stream, lsp->pdu);
2492
1cbd5b37
CF
2493 if (tx_type == TX_LSP_CIRCUIT_SCOPED) {
2494 stream_putc_at(circuit->snd_stream, 4, FS_LINK_STATE);
89cdc4df
RM
2495 stream_putc_at(circuit->snd_stream, 7,
2496 L2_CIRCUIT_FLOODING_SCOPE);
1cbd5b37
CF
2497 }
2498
e740f9c1 2499 if (IS_DEBUG_UPDATE_PACKETS) {
6cde4b45 2500 zlog_debug("ISIS-Upd (%s): Sending %sL%d LSP %s, seq 0x%08x, cksum 0x%04hx, lifetime %hus on %s",
161fa356
CF
2501 circuit->area->area_tag,
2502 (tx_type == TX_LSP_CIRCUIT_SCOPED)
2503 ? "Circuit scoped " : "",
2504 lsp->level,
af8ac8f9
CF
2505 rawlspid_print(lsp->hdr.lsp_id), lsp->hdr.seqno,
2506 lsp->hdr.checksum, lsp->hdr.rem_lifetime,
2507 circuit->interface->name);
e740f9c1 2508 if (IS_DEBUG_PACKET_DUMP)
d62a17ae 2509 zlog_dump_data(STREAM_DATA(circuit->snd_stream),
2510 stream_get_endp(circuit->snd_stream));
2511 }
3f045a08 2512
39bb53d6
CF
2513 uint8_t pdu_type = (tx_type == TX_LSP_CIRCUIT_SCOPED) ? FS_LINK_STATE
2514 : (lsp->level == ISIS_LEVEL1) ? L1_LINK_STATE
2515 : L2_LINK_STATE;
2516
d62a17ae 2517 clear_srm = 0;
39bb53d6 2518 pdu_counter_count(circuit->area->pdu_tx_counters, pdu_type);
d62a17ae 2519 retval = circuit->tx(circuit, lsp->level);
2520 if (retval != ISIS_OK) {
1a7ecb96 2521 flog_err(EC_ISIS_PACKET,
1c50c1c0
QY
2522 "ISIS-Upd (%s): Send L%d LSP on %s failed %s",
2523 circuit->area->area_tag, lsp->level,
2524 circuit->interface->name,
2525 (retval == ISIS_WARNING) ? "temporarily"
2526 : "permanently");
d62a17ae 2527 }
f390d2c7 2528
cfd1f27b 2529out:
d62a17ae 2530 if (clear_srm
2531 || (retval == ISIS_OK && circuit->circ_type == CIRCUIT_T_BROADCAST)
2532 || (retval != ISIS_OK && retval != ISIS_WARNING)) {
2533 /* SRM flag will trigger retransmission. We will not retransmit
2534 * if we
2535 * encountered a fatal error.
2536 * On success, they should only be cleared if it's a broadcast
2537 * circuit.
2538 * On a P2P circuit, we will wait for the ack from the neighbor
2539 * to clear
2540 * the fag.
2541 */
9b39405f 2542 isis_tx_queue_del(circuit->tx_queue, lsp);
d62a17ae 2543 }
f390d2c7 2544}