]> git.proxmox.com Git - mirror_frr.git/blame - isisd/isis_pdu.c
Merge branch 'stable/3.0' into tmp-3.0-master-merge
[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"
eb5d44eb 37
38#include "isisd/dict.h"
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"
eb5d44eb 57
af8ac8f9
CF
58static int ack_lsp(struct isis_lsp_hdr *hdr, struct isis_circuit *circuit,
59 int level)
eb5d44eb 60{
af8ac8f9
CF
61 unsigned long lenp;
62 int retval;
63 u_int16_t length;
64 uint8_t pdu_type =
65 (level == IS_LEVEL_1) ? L1_PARTIAL_SEQ_NUM : L2_PARTIAL_SEQ_NUM;
d62a17ae 66
af8ac8f9 67 isis_circuit_stream(circuit, &circuit->snd_stream);
3f045a08 68
af8ac8f9 69 fill_fixed_hdr(pdu_type, circuit->snd_stream);
d62a17ae 70
af8ac8f9
CF
71 lenp = stream_get_endp(circuit->snd_stream);
72 stream_putw(circuit->snd_stream, 0); /* PDU length */
73 stream_put(circuit->snd_stream, isis->sysid, ISIS_SYS_ID_LEN);
74 stream_putc(circuit->snd_stream, circuit->idx);
75 stream_putc(circuit->snd_stream, 9); /* code */
76 stream_putc(circuit->snd_stream, 16); /* len */
d62a17ae 77
af8ac8f9
CF
78 stream_putw(circuit->snd_stream, hdr->rem_lifetime);
79 stream_put(circuit->snd_stream, hdr->lsp_id, ISIS_SYS_ID_LEN + 2);
80 stream_putl(circuit->snd_stream, hdr->seqno);
81 stream_putw(circuit->snd_stream, hdr->checksum);
3f045a08 82
af8ac8f9
CF
83 length = (u_int16_t)stream_get_endp(circuit->snd_stream);
84 /* Update PDU length */
85 stream_putw_at(circuit->snd_stream, lenp, length);
3f045a08 86
af8ac8f9
CF
87 retval = circuit->tx(circuit, level);
88 if (retval != ISIS_OK)
89 zlog_err("ISIS-Upd (%s): Send L%d LSP PSNP on %s failed",
90 circuit->area->area_tag, level,
91 circuit->interface->name);
d62a17ae 92
93 return retval;
eb5d44eb 94}
95
eb5d44eb 96/*
d62a17ae 97 * RECEIVE SIDE
eb5d44eb 98 */
99
0c1bd758
CF
100struct iih_info {
101 struct isis_circuit *circuit;
102 u_char *ssnpa;
103 int level;
eb5d44eb 104
0c1bd758
CF
105 uint8_t circ_type;
106 uint8_t sys_id[ISIS_SYS_ID_LEN];
107 uint16_t holdtime;
108 uint16_t pdu_len;
d62a17ae 109
0c1bd758 110 uint8_t circuit_id;
eb5d44eb 111
0c1bd758
CF
112 uint8_t priority;
113 uint8_t dis[ISIS_SYS_ID_LEN + 1];
d8fba7d9 114
0c1bd758
CF
115 bool v4_usable;
116 bool v6_usable;
eb5d44eb 117
0c1bd758
CF
118 struct isis_tlvs *tlvs;
119};
eb5d44eb 120
0c1bd758
CF
121static int process_p2p_hello(struct iih_info *iih)
122{
d62a17ae 123 /*
124 * My interpertation of the ISO, if no adj exists we will create one for
125 * the circuit
126 */
0c1bd758 127 struct isis_adjacency *adj = iih->circuit->u.p2p.neighbor;
d62a17ae 128 /* If an adjacency exists, check it is with the source of the hello
129 * packets */
130 if (adj) {
0c1bd758 131 if (memcmp(iih->sys_id, adj->sysid, ISIS_SYS_ID_LEN)) {
d62a17ae 132 zlog_debug(
133 "hello source and adjacency do not match, set adj down\n");
134 isis_adj_state_change(adj, ISIS_ADJ_DOWN,
135 "adj do not exist");
0c1bd758 136 return ISIS_OK;
f390d2c7 137 }
d62a17ae 138 }
0c1bd758 139 if (!adj || adj->level != iih->circ_type) {
d62a17ae 140 if (!adj) {
0c1bd758
CF
141 adj = isis_new_adj(iih->sys_id, NULL, iih->circ_type,
142 iih->circuit);
d62a17ae 143 } else {
0c1bd758 144 adj->level = iih->circ_type;
f390d2c7 145 }
0c1bd758 146 iih->circuit->u.p2p.neighbor = adj;
d62a17ae 147 /* Build lsp with the new neighbor entry when a new
148 * adjacency is formed. Set adjacency circuit type to
149 * IIH PDU header circuit type before lsp is regenerated
150 * when an adjacency is up. This will result in the new
151 * adjacency entry getting added to the lsp tlv neighbor list.
152 */
0c1bd758 153 adj->circuit_t = iih->circ_type;
d62a17ae 154 isis_adj_state_change(adj, ISIS_ADJ_INITIALIZING, NULL);
155 adj->sys_type = ISIS_SYSTYPE_UNKNOWN;
f390d2c7 156 }
eb5d44eb 157
d62a17ae 158 /* 8.2.6 Monitoring point-to-point adjacencies */
0c1bd758 159 adj->hold_time = iih->holdtime;
d62a17ae 160 adj->last_upd = time(NULL);
161
0c1bd758
CF
162 bool changed;
163 isis_tlvs_to_adj(iih->tlvs, adj, &changed);
164 changed |= tlvs_to_adj_mt_set(iih->tlvs, iih->v4_usable, iih->v6_usable,
165 adj);
d62a17ae 166
167 /* Update MPLS TE Remote IP address parameter if possible */
0c1bd758
CF
168 if (IS_MPLS_TE(isisMplsTE) && iih->circuit->mtc
169 && IS_CIRCUIT_TE(iih->circuit->mtc) && adj->ipv4_address_count)
170 set_circuitparams_rmt_ipaddr(iih->circuit->mtc,
171 adj->ipv4_addresses[0]);
d62a17ae 172
173 /* lets take care of the expiry */
174 THREAD_TIMER_OFF(adj->t_expire);
175 thread_add_timer(master, isis_adj_expire, adj, (long)adj->hold_time,
176 &adj->t_expire);
177
178 /* 8.2.5.2 a) a match was detected */
0c1bd758
CF
179 if (isis_tlvs_area_addresses_match(iih->tlvs,
180 iih->circuit->area->area_addrs)) {
d62a17ae 181 /* 8.2.5.2 a) 2) If the system is L1 - table 5 */
0c1bd758
CF
182 if (iih->circuit->area->is_type == IS_LEVEL_1) {
183 switch (iih->circ_type) {
d62a17ae 184 case IS_LEVEL_1:
185 case IS_LEVEL_1_AND_2:
186 if (adj->adj_state != ISIS_ADJ_UP) {
187 /* (4) adj state up */
188 isis_adj_state_change(adj, ISIS_ADJ_UP,
189 NULL);
190 /* (5) adj usage level 1 */
191 adj->adj_usage = ISIS_ADJ_LEVEL1;
192 } else if (adj->adj_usage == ISIS_ADJ_LEVEL1) {
193 ; /* accept */
194 }
195 break;
196 case IS_LEVEL_2:
197 if (adj->adj_state != ISIS_ADJ_UP) {
198 /* (7) reject - wrong system type event
199 */
200 zlog_warn("wrongSystemType");
0c1bd758 201 return ISIS_WARNING;
d62a17ae 202 } else if (adj->adj_usage == ISIS_ADJ_LEVEL1) {
203 /* (6) down - wrong system */
204 isis_adj_state_change(adj,
205 ISIS_ADJ_DOWN,
206 "Wrong System");
207 }
208 break;
209 }
f390d2c7 210 }
d62a17ae 211
212 /* 8.2.5.2 a) 3) If the system is L1L2 - table 6 */
0c1bd758
CF
213 if (iih->circuit->area->is_type == IS_LEVEL_1_AND_2) {
214 switch (iih->circ_type) {
d62a17ae 215 case IS_LEVEL_1:
216 if (adj->adj_state != ISIS_ADJ_UP) {
217 /* (6) adj state up */
218 isis_adj_state_change(adj, ISIS_ADJ_UP,
219 NULL);
220 /* (7) adj usage level 1 */
221 adj->adj_usage = ISIS_ADJ_LEVEL1;
222 } else if (adj->adj_usage == ISIS_ADJ_LEVEL1) {
223 ; /* accept */
224 } else if ((adj->adj_usage
225 == ISIS_ADJ_LEVEL1AND2)
226 || (adj->adj_usage
227 == ISIS_ADJ_LEVEL2)) {
228 /* (8) down - wrong system */
229 isis_adj_state_change(adj,
230 ISIS_ADJ_DOWN,
231 "Wrong System");
232 }
233 break;
234 case IS_LEVEL_2:
235 if (adj->adj_state != ISIS_ADJ_UP) {
236 /* (6) adj state up */
237 isis_adj_state_change(adj, ISIS_ADJ_UP,
238 NULL);
239 /* (9) adj usage level 2 */
240 adj->adj_usage = ISIS_ADJ_LEVEL2;
241 } else if ((adj->adj_usage == ISIS_ADJ_LEVEL1)
242 || (adj->adj_usage
243 == ISIS_ADJ_LEVEL1AND2)) {
244 /* (8) down - wrong system */
245 isis_adj_state_change(adj,
246 ISIS_ADJ_DOWN,
247 "Wrong System");
248 } else if (adj->adj_usage == ISIS_ADJ_LEVEL2) {
249 ; /* Accept */
250 }
251 break;
252 case IS_LEVEL_1_AND_2:
253 if (adj->adj_state != ISIS_ADJ_UP) {
254 /* (6) adj state up */
255 isis_adj_state_change(adj, ISIS_ADJ_UP,
256 NULL);
257 /* (10) adj usage level 1 */
258 adj->adj_usage = ISIS_ADJ_LEVEL1AND2;
259 } else if ((adj->adj_usage == ISIS_ADJ_LEVEL1)
260 || (adj->adj_usage
261 == ISIS_ADJ_LEVEL2)) {
262 /* (8) down - wrong system */
263 isis_adj_state_change(adj,
264 ISIS_ADJ_DOWN,
265 "Wrong System");
266 } else if (adj->adj_usage
267 == ISIS_ADJ_LEVEL1AND2) {
268 ; /* Accept */
269 }
270 break;
271 }
f390d2c7 272 }
d62a17ae 273
274 /* 8.2.5.2 a) 4) If the system is L2 - table 7 */
0c1bd758
CF
275 if (iih->circuit->area->is_type == IS_LEVEL_2) {
276 switch (iih->circ_type) {
d62a17ae 277 case IS_LEVEL_1:
278 if (adj->adj_state != ISIS_ADJ_UP) {
279 /* (5) reject - wrong system type event
280 */
281 zlog_warn("wrongSystemType");
0c1bd758 282 return ISIS_WARNING;
d62a17ae 283 } else if ((adj->adj_usage
284 == ISIS_ADJ_LEVEL1AND2)
285 || (adj->adj_usage
286 == ISIS_ADJ_LEVEL2)) {
287 /* (6) down - wrong system */
288 isis_adj_state_change(adj,
289 ISIS_ADJ_DOWN,
290 "Wrong System");
291 }
292 break;
293 case IS_LEVEL_1_AND_2:
294 case IS_LEVEL_2:
295 if (adj->adj_state != ISIS_ADJ_UP) {
296 /* (7) adj state up */
297 isis_adj_state_change(adj, ISIS_ADJ_UP,
298 NULL);
299 /* (8) adj usage level 2 */
300 adj->adj_usage = ISIS_ADJ_LEVEL2;
301 } else if (adj->adj_usage
302 == ISIS_ADJ_LEVEL1AND2) {
303 /* (6) down - wrong system */
304 isis_adj_state_change(adj,
305 ISIS_ADJ_DOWN,
306 "Wrong System");
307 } else if (adj->adj_usage == ISIS_ADJ_LEVEL2) {
308 ; /* Accept */
309 }
310 break;
311 }
f390d2c7 312 }
d62a17ae 313 }
314 /* 8.2.5.2 b) if no match was detected */
0c1bd758
CF
315 else if (listcount(iih->circuit->area->area_addrs) > 0) {
316 if (iih->circuit->area->is_type == IS_LEVEL_1) {
d62a17ae 317 /* 8.2.5.2 b) 1) is_type L1 and adj is not up */
318 if (adj->adj_state != ISIS_ADJ_UP) {
319 isis_adj_state_change(adj, ISIS_ADJ_DOWN,
320 "Area Mismatch");
321 /* 8.2.5.2 b) 2)is_type L1 and adj is up */
322 } else {
323 isis_adj_state_change(adj, ISIS_ADJ_DOWN,
324 "Down - Area Mismatch");
325 }
f390d2c7 326 }
d62a17ae 327 /* 8.2.5.2 b 3 If the system is L2 or L1L2 - table 8 */
328 else {
0c1bd758 329 switch (iih->circ_type) {
d62a17ae 330 case IS_LEVEL_1:
331 if (adj->adj_state != ISIS_ADJ_UP) {
332 /* (6) reject - Area Mismatch event */
333 zlog_warn("AreaMismatch");
0c1bd758 334 return ISIS_WARNING;
d62a17ae 335 } else if (adj->adj_usage == ISIS_ADJ_LEVEL1) {
336 /* (7) down - area mismatch */
337 isis_adj_state_change(adj,
338 ISIS_ADJ_DOWN,
339 "Area Mismatch");
340
341 } else if ((adj->adj_usage
342 == ISIS_ADJ_LEVEL1AND2)
343 || (adj->adj_usage
344 == ISIS_ADJ_LEVEL2)) {
345 /* (7) down - wrong system */
346 isis_adj_state_change(adj,
347 ISIS_ADJ_DOWN,
348 "Wrong System");
349 }
350 break;
351 case IS_LEVEL_1_AND_2:
352 case IS_LEVEL_2:
353 if (adj->adj_state != ISIS_ADJ_UP) {
354 /* (8) adj state up */
355 isis_adj_state_change(adj, ISIS_ADJ_UP,
356 NULL);
357 /* (9) adj usage level 2 */
358 adj->adj_usage = ISIS_ADJ_LEVEL2;
359 } else if (adj->adj_usage == ISIS_ADJ_LEVEL1) {
360 /* (7) down - wrong system */
361 isis_adj_state_change(adj,
362 ISIS_ADJ_DOWN,
363 "Wrong System");
364 } else if (adj->adj_usage
365 == ISIS_ADJ_LEVEL1AND2) {
0c1bd758 366 if (iih->circ_type == IS_LEVEL_2) {
d62a17ae 367 /* (7) down - wrong system */
368 isis_adj_state_change(
369 adj, ISIS_ADJ_DOWN,
370 "Wrong System");
371 } else {
372 /* (7) down - area mismatch */
373 isis_adj_state_change(
374 adj, ISIS_ADJ_DOWN,
375 "Area Mismatch");
376 }
377 } else if (adj->adj_usage == ISIS_ADJ_LEVEL2) {
378 ; /* Accept */
379 }
380 break;
381 }
f390d2c7 382 }
d62a17ae 383 } else {
384 /* down - area mismatch */
385 isis_adj_state_change(adj, ISIS_ADJ_DOWN, "Area Mismatch");
f390d2c7 386 }
d8fba7d9 387
0c1bd758 388 if (adj->adj_state == ISIS_ADJ_UP && changed) {
d62a17ae 389 lsp_regenerate_schedule(adj->circuit->area,
390 isis_adj_usage2levels(adj->adj_usage),
391 0);
392 }
eb5d44eb 393
d62a17ae 394 /* 8.2.5.2 c) if the action was up - comparing circuit IDs */
395 /* FIXME - Missing parts */
396
397 /* some of my own understanding of the ISO, why the heck does
398 * it not say what should I change the system_type to...
399 */
400 switch (adj->adj_usage) {
401 case ISIS_ADJ_LEVEL1:
402 adj->sys_type = ISIS_SYSTYPE_L1_IS;
403 break;
404 case ISIS_ADJ_LEVEL2:
405 adj->sys_type = ISIS_SYSTYPE_L2_IS;
406 break;
407 case ISIS_ADJ_LEVEL1AND2:
408 adj->sys_type = ISIS_SYSTYPE_L2_IS;
409 break;
410 case ISIS_ADJ_NONE:
411 adj->sys_type = ISIS_SYSTYPE_UNKNOWN;
412 break;
413 }
eb5d44eb 414
d62a17ae 415 if (isis->debugs & DEBUG_ADJ_PACKETS) {
416 zlog_debug(
417 "ISIS-Adj (%s): Rcvd P2P IIH from (%s), cir type %s,"
418 " cir id %02d, length %d",
0c1bd758
CF
419 iih->circuit->area->area_tag,
420 iih->circuit->interface->name,
421 circuit_t2string(iih->circuit->is_type),
422 iih->circuit->circuit_id, iih->pdu_len);
d62a17ae 423 }
eb5d44eb 424
0c1bd758 425 return ISIS_OK;
eb5d44eb 426}
427
0c1bd758 428static int process_lan_hello(struct iih_info *iih)
eb5d44eb 429{
d62a17ae 430 struct isis_adjacency *adj;
0c1bd758
CF
431 adj = isis_adj_lookup(iih->sys_id,
432 iih->circuit->u.bc.adjdb[iih->level - 1]);
433 if ((adj == NULL) || (memcmp(adj->snpa, iih->ssnpa, ETH_ALEN))
434 || (adj->level != iih->level)) {
435 if (!adj) {
436 /* Do as in 8.4.2.5 */
437 adj = isis_new_adj(iih->sys_id, iih->ssnpa, iih->level,
438 iih->circuit);
439 } else {
440 if (iih->ssnpa) {
441 memcpy(adj->snpa, iih->ssnpa, 6);
442 } else {
443 memset(adj->snpa, ' ', 6);
444 }
445 adj->level = iih->level;
446 }
447 isis_adj_state_change(adj, ISIS_ADJ_INITIALIZING, NULL);
d62a17ae 448
0c1bd758
CF
449 if (iih->level == IS_LEVEL_1)
450 adj->sys_type = ISIS_SYSTYPE_L1_IS;
451 else
452 adj->sys_type = ISIS_SYSTYPE_L2_IS;
453 list_delete_all_node(
454 iih->circuit->u.bc.lan_neighs[iih->level - 1]);
455 isis_adj_build_neigh_list(
456 iih->circuit->u.bc.adjdb[iih->level - 1],
457 iih->circuit->u.bc.lan_neighs[iih->level - 1]);
458 }
459
460 if (adj->dis_record[iih->level - 1].dis == ISIS_IS_DIS) {
461 u_char *dis = (iih->level == 1)
462 ? iih->circuit->u.bc.l1_desig_is
463 : iih->circuit->u.bc.l2_desig_is;
464
465 if (memcmp(dis, iih->dis, ISIS_SYS_ID_LEN + 1)) {
466 thread_add_event(master, isis_event_dis_status_change,
467 iih->circuit, 0, NULL);
468 memcpy(dis, iih->dis, ISIS_SYS_ID_LEN + 1);
469 }
d62a17ae 470 }
3f045a08 471
0c1bd758
CF
472 adj->circuit_t = iih->circ_type;
473 adj->hold_time = iih->holdtime;
474 adj->last_upd = time(NULL);
475 adj->prio[iih->level - 1] = iih->priority;
476 memcpy(adj->lanid, iih->dis, ISIS_SYS_ID_LEN + 1);
3f045a08 477
0c1bd758
CF
478 bool changed;
479 isis_tlvs_to_adj(iih->tlvs, adj, &changed);
480 changed |= tlvs_to_adj_mt_set(iih->tlvs, iih->v4_usable, iih->v6_usable,
481 adj);
482
483 /* lets take care of the expiry */
484 THREAD_TIMER_OFF(adj->t_expire);
485 thread_add_timer(master, isis_adj_expire, adj, (long)adj->hold_time,
486 &adj->t_expire);
487
488 /*
489 * If the snpa for this circuit is found from LAN Neighbours TLV
490 * we have two-way communication -> adjacency can be put to state "up"
491 */
492 bool own_snpa_found =
493 isis_tlvs_own_snpa_found(iih->tlvs, iih->circuit->u.bc.snpa);
494
495 if (adj->adj_state != ISIS_ADJ_UP) {
496 if (own_snpa_found) {
497 isis_adj_state_change(
498 adj, ISIS_ADJ_UP,
499 "own SNPA found in LAN Neighbours TLV");
500 }
501 } else {
502 if (!own_snpa_found) {
503 isis_adj_state_change(
504 adj, ISIS_ADJ_INITIALIZING,
505 "own SNPA not found in LAN Neighbours TLV");
506 }
d62a17ae 507 }
eb5d44eb 508
0c1bd758
CF
509 if (adj->adj_state == ISIS_ADJ_UP && changed)
510 lsp_regenerate_schedule(adj->circuit->area, iih->level, 0);
511
512 if (isis->debugs & DEBUG_ADJ_PACKETS) {
d62a17ae 513 zlog_debug(
0c1bd758
CF
514 "ISIS-Adj (%s): Rcvd L%d LAN IIH from %s on %s, cirType %s, cirID %u, length %zd",
515 iih->circuit->area->area_tag, iih->level,
516 snpa_print(iih->ssnpa), iih->circuit->interface->name,
517 circuit_t2string(iih->circuit->is_type),
518 iih->circuit->circuit_id,
519 stream_get_endp(iih->circuit->rcv_stream));
d62a17ae 520 }
0c1bd758
CF
521 return ISIS_OK;
522}
eb5d44eb 523
17c9dcd5
CF
524static int pdu_len_validate(uint16_t pdu_len, struct isis_circuit *circuit)
525{
526 if (pdu_len < stream_get_getp(circuit->rcv_stream)
527 || pdu_len > ISO_MTU(circuit)
528 || pdu_len > stream_get_endp(circuit->rcv_stream))
529 return 1;
530
531 if (pdu_len < stream_get_endp(circuit->rcv_stream))
532 stream_set_endp(circuit->rcv_stream, pdu_len);
533 return 0;
534}
535
0c1bd758
CF
536static int process_hello(uint8_t pdu_type, struct isis_circuit *circuit,
537 u_char *ssnpa)
538{
539 bool p2p_hello = (pdu_type == P2P_HELLO);
540 int level = p2p_hello ? 0
541 : (pdu_type == L1_LAN_HELLO) ? ISIS_LEVEL1
542 : ISIS_LEVEL2;
543 const char *pdu_name =
544 p2p_hello
545 ? "P2P IIH"
546 : (level == ISIS_LEVEL1) ? "L1 LAN IIH" : "L2 LAN IIH";
547
548 if (isis->debugs & DEBUG_ADJ_PACKETS) {
549 zlog_debug("ISIS-Adj (%s): Rcvd %s on %s, cirType %s, cirID %u",
550 circuit->area->area_tag, pdu_name,
551 circuit->interface->name,
552 circuit_t2string(circuit->is_type),
553 circuit->circuit_id);
554 if (isis->debugs & DEBUG_PACKET_DUMP)
555 zlog_dump_data(STREAM_DATA(circuit->rcv_stream),
556 stream_get_endp(circuit->rcv_stream));
557 }
558
559 if (p2p_hello) {
560 if (circuit->circ_type != CIRCUIT_T_P2P) {
561 zlog_warn("p2p hello on non p2p circuit");
562 return ISIS_WARNING;
563 }
564 } else {
565 if (circuit->circ_type != CIRCUIT_T_BROADCAST) {
566 zlog_warn("lan hello on non broadcast circuit");
567 return ISIS_WARNING;
568 }
569
570 if (circuit->ext_domain) {
d62a17ae 571 zlog_debug(
0c1bd758
CF
572 "level %d LAN Hello received over circuit with externalDomain = true",
573 level);
574 return ISIS_WARNING;
575 }
576
af8ac8f9 577 if (!(circuit->is_type & level)) {
0c1bd758
CF
578 if (isis->debugs & DEBUG_ADJ_PACKETS) {
579 zlog_debug(
580 "ISIS-Adj (%s): Interface level mismatch, %s",
581 circuit->area->area_tag,
582 circuit->interface->name);
583 }
584 return ISIS_WARNING;
d62a17ae 585 }
f390d2c7 586 }
eb5d44eb 587
0c1bd758
CF
588 struct iih_info iih = {
589 .circuit = circuit, .ssnpa = ssnpa, .level = level};
590
591 /* Generic IIH Header */
592 iih.circ_type = stream_getc(circuit->rcv_stream) & 0x03;
593 stream_get(iih.sys_id, circuit->rcv_stream, ISIS_SYS_ID_LEN);
594 iih.holdtime = stream_getw(circuit->rcv_stream);
595 iih.pdu_len = stream_getw(circuit->rcv_stream);
596
597 if (p2p_hello) {
598 iih.circuit_id = stream_getc(circuit->rcv_stream);
599 } else {
600 iih.priority = stream_getc(circuit->rcv_stream);
601 stream_get(iih.dis, circuit->rcv_stream, ISIS_SYS_ID_LEN + 1);
f390d2c7 602 }
0c1bd758 603
17c9dcd5 604 if (pdu_len_validate(iih.pdu_len, circuit)) {
d62a17ae 605 zlog_warn(
0c1bd758
CF
606 "ISIS-Adj (%s): Rcvd %s from (%s) with invalid pdu length %" PRIu16,
607 circuit->area->area_tag, pdu_name,
608 circuit->interface->name, iih.pdu_len);
d62a17ae 609 return ISIS_WARNING;
610 }
3f045a08 611
0c1bd758 612 if (!p2p_hello && !(level & iih.circ_type)) {
d62a17ae 613 zlog_err("Level %d LAN Hello with Circuit Type %d", level,
0c1bd758 614 iih.circ_type);
d62a17ae 615 return ISIS_ERROR;
616 }
3f045a08 617
0c1bd758
CF
618 const char *error_log;
619 int retval = ISIS_WARNING;
d62a17ae 620
0c1bd758
CF
621 if (isis_unpack_tlvs(STREAM_READABLE(circuit->rcv_stream),
622 circuit->rcv_stream, &iih.tlvs, &error_log)) {
623 zlog_warn("isis_unpack_tlvs() failed: %s", error_log);
d62a17ae 624 goto out;
625 }
eb5d44eb 626
0c1bd758
CF
627 if (!iih.tlvs->area_addresses.count) {
628 zlog_warn("No Area addresses TLV in %s", pdu_name);
d62a17ae 629 goto out;
630 }
f390d2c7 631
0c1bd758
CF
632 if (!iih.tlvs->protocols_supported.count) {
633 zlog_warn("No supported protocols TLV in %s", pdu_name);
d62a17ae 634 goto out;
635 }
b72f345d 636
0c1bd758 637 if (!isis_tlvs_auth_is_valid(iih.tlvs, &circuit->passwd,
af8ac8f9 638 circuit->rcv_stream, false)) {
0c1bd758
CF
639 isis_event_auth_failure(circuit->area->area_tag,
640 "IIH authentication failure",
641 iih.sys_id);
642 goto out;
d62a17ae 643 }
eb5d44eb 644
0c1bd758
CF
645 if (!memcmp(iih.sys_id, isis->sysid, ISIS_SYS_ID_LEN)) {
646 zlog_warn(
647 "ISIS-Adj (%s): Received IIH with own sysid - discard",
648 circuit->area->area_tag);
649 goto out;
d62a17ae 650 }
19f78ceb 651
0c1bd758
CF
652 if (!p2p_hello
653 && (listcount(circuit->area->area_addrs) == 0
654 || (level == ISIS_LEVEL1
655 && !isis_tlvs_area_addresses_match(
656 iih.tlvs, circuit->area->area_addrs)))) {
d62a17ae 657 if (isis->debugs & DEBUG_ADJ_PACKETS) {
658 zlog_debug(
659 "ISIS-Adj (%s): Area mismatch, level %d IIH on %s",
660 circuit->area->area_tag, level,
661 circuit->interface->name);
662 }
d62a17ae 663 goto out;
f390d2c7 664 }
eb5d44eb 665
0c1bd758
CF
666 iih.v4_usable = (circuit->ip_addrs && listcount(circuit->ip_addrs)
667 && iih.tlvs->ipv4_address.count);
d62a17ae 668
0c1bd758
CF
669 iih.v6_usable = (circuit->ipv6_link && listcount(circuit->ipv6_link)
670 && iih.tlvs->ipv6_address.count);
28a8cfcb 671
0c1bd758 672 if (!iih.v4_usable && !iih.v6_usable)
d62a17ae 673 goto out;
d8fba7d9 674
0c1bd758 675 retval = p2p_hello ? process_p2p_hello(&iih) : process_lan_hello(&iih);
f390d2c7 676out:
0c1bd758 677 isis_free_tlvs(iih.tlvs);
eb5d44eb 678
d62a17ae 679 return retval;
eb5d44eb 680}
681
682/*
683 * Process Level 1/2 Link State
684 * ISO - 10589
685 * Section 7.3.15.1 - Action on receipt of a link state PDU
f390d2c7 686 */
af8ac8f9 687static int process_lsp(uint8_t pdu_type, struct isis_circuit *circuit,
d62a17ae 688 const u_char *ssnpa)
eb5d44eb 689{
af8ac8f9 690 int level = (pdu_type == L1_LINK_STATE) ? ISIS_LEVEL1 : ISIS_LEVEL2;
d62a17ae 691
692 if (isis->debugs & DEBUG_UPDATE_PACKETS) {
693 zlog_debug(
694 "ISIS-Upd (%s): Rcvd L%d LSP on %s, cirType %s, cirID %u",
695 circuit->area->area_tag, level,
696 circuit->interface->name,
697 circuit_t2string(circuit->is_type),
698 circuit->circuit_id);
699 if (isis->debugs & DEBUG_PACKET_DUMP)
700 zlog_dump_data(STREAM_DATA(circuit->rcv_stream),
701 stream_get_endp(circuit->rcv_stream));
702 }
f390d2c7 703
af8ac8f9 704 struct isis_lsp_hdr hdr = {};
eb5d44eb 705
af8ac8f9
CF
706 hdr.pdu_len = stream_getw(circuit->rcv_stream);
707 hdr.rem_lifetime = stream_getw(circuit->rcv_stream);
708 stream_get(hdr.lsp_id, circuit->rcv_stream, sizeof(hdr.lsp_id));
709 hdr.seqno = stream_getl(circuit->rcv_stream);
710 hdr.checksum = stream_getw(circuit->rcv_stream);
711 hdr.lsp_bits = stream_getc(circuit->rcv_stream);
eb5d44eb 712
af8ac8f9
CF
713 if (pdu_len_validate(hdr.pdu_len, circuit)) {
714 zlog_debug("ISIS-Upd (%s): LSP %s invalid LSP length %" PRIu16,
715 circuit->area->area_tag, rawlspid_print(hdr.lsp_id),
716 hdr.pdu_len);
d62a17ae 717 return ISIS_WARNING;
f390d2c7 718 }
d62a17ae 719
d62a17ae 720 if (isis->debugs & DEBUG_UPDATE_PACKETS) {
af8ac8f9
CF
721 zlog_debug("ISIS-Upd (%s): Rcvd L%d LSP %s, seq 0x%08" PRIx32
722 ", cksum 0x%04" PRIx16 ", lifetime %" PRIu16
723 "s, len %" PRIu16 ", on %s",
724 circuit->area->area_tag, level,
725 rawlspid_print(hdr.lsp_id), hdr.seqno, hdr.checksum,
726 hdr.rem_lifetime, hdr.pdu_len,
727 circuit->interface->name);
f390d2c7 728 }
d62a17ae 729
730 /* lsp is_type check */
af8ac8f9
CF
731 if ((hdr.lsp_bits & IS_LEVEL_1) != IS_LEVEL_1) {
732 zlog_debug(
733 "ISIS-Upd (%s): LSP %s invalid LSP is type 0x%" PRIx8,
734 circuit->area->area_tag, rawlspid_print(hdr.lsp_id),
735 hdr.lsp_bits & IS_LEVEL_1_AND_2);
d62a17ae 736 /* continue as per RFC1122 Be liberal in what you accept, and
737 * conservative in what you send */
f390d2c7 738 }
d62a17ae 739
740 /* Checksum sanity check - FIXME: move to correct place */
741 /* 12 = sysid+pdu+remtime */
af8ac8f9
CF
742 if (iso_csum_verify(STREAM_DATA(circuit->rcv_stream) + 12,
743 hdr.pdu_len - 12, hdr.checksum, 12)) {
744 zlog_debug(
745 "ISIS-Upd (%s): LSP %s invalid LSP checksum 0x%04" PRIx16,
746 circuit->area->area_tag, rawlspid_print(hdr.lsp_id),
747 hdr.checksum);
d62a17ae 748 return ISIS_WARNING;
f390d2c7 749 }
3f045a08 750
d62a17ae 751 /* 7.3.15.1 a) 1 - external domain circuit will discard lsps */
752 if (circuit->ext_domain) {
753 zlog_debug(
754 "ISIS-Upd (%s): LSP %s received at level %d over circuit with "
755 "externalDomain = true",
af8ac8f9 756 circuit->area->area_tag, rawlspid_print(hdr.lsp_id),
d62a17ae 757 level);
d62a17ae 758 return ISIS_WARNING;
759 }
eb5d44eb 760
d62a17ae 761 /* 7.3.15.1 a) 2,3 - manualL2OnlyMode not implemented */
af8ac8f9 762 if (!(circuit->is_type & level)) {
d62a17ae 763 zlog_debug(
764 "ISIS-Upd (%s): LSP %s received at level %d over circuit of"
765 " type %s",
af8ac8f9 766 circuit->area->area_tag, rawlspid_print(hdr.lsp_id),
d62a17ae 767 level, circuit_t2string(circuit->is_type));
d62a17ae 768 return ISIS_WARNING;
769 }
0250758d 770
af8ac8f9
CF
771 struct isis_tlvs *tlvs = NULL;
772 int retval = ISIS_WARNING;
773 const char *error_log;
774
775 if (isis_unpack_tlvs(STREAM_READABLE(circuit->rcv_stream),
776 circuit->rcv_stream, &tlvs, &error_log)) {
777 zlog_warn("Something went wrong unpacking the LSP: %s",
778 error_log);
779 goto out;
780 }
781
d62a17ae 782 /* 7.3.15.1 a) 4 - need to make sure IDLength matches */
783
784 /* 7.3.15.1 a) 5 - maximum area match, can be ommited since we only use
785 * 3 */
786
787 /* 7.3.15.1 a) 7 - password check */
af8ac8f9
CF
788 struct isis_passwd *passwd = (level == ISIS_LEVEL1)
789 ? &circuit->area->area_passwd
790 : &circuit->area->domain_passwd;
791 if (!isis_tlvs_auth_is_valid(tlvs, passwd, circuit->rcv_stream, true)) {
792 isis_event_auth_failure(circuit->area->area_tag,
793 "LSP authentication failure",
794 hdr.lsp_id);
795 goto out;
f390d2c7 796 }
af8ac8f9 797
d62a17ae 798 /* Find the LSP in our database and compare it to this Link State header
799 */
af8ac8f9
CF
800 struct isis_lsp *lsp =
801 lsp_search(hdr.lsp_id, circuit->area->lspdb[level - 1]);
802 int comp = 0;
d62a17ae 803 if (lsp)
af8ac8f9
CF
804 comp = lsp_compare(circuit->area->area_tag, lsp, hdr.seqno,
805 hdr.checksum, hdr.rem_lifetime);
d62a17ae 806 if (lsp && (lsp->own_lsp))
807 goto dontcheckadj;
808
809 /* 7.3.15.1 a) 6 - Must check that we have an adjacency of the same
810 * level */
811 /* for broadcast circuits, snpa should be compared */
812
813 if (circuit->circ_type == CIRCUIT_T_BROADCAST) {
af8ac8f9
CF
814 if (!isis_adj_lookup_snpa(ssnpa,
815 circuit->u.bc.adjdb[level - 1])) {
816 zlog_debug("(%s): DS ======= LSP %s, seq 0x%08" PRIx32
817 ", cksum 0x%04" PRIx16 ", lifetime %" PRIu16
818 "s on %s",
819 circuit->area->area_tag,
820 rawlspid_print(hdr.lsp_id), hdr.seqno,
821 hdr.checksum, hdr.rem_lifetime,
822 circuit->interface->name);
823 goto out; /* Silently discard */
d62a17ae 824 }
825 }
826 /* for non broadcast, we just need to find same level adj */
827 else {
828 /* If no adj, or no sharing of level */
829 if (!circuit->u.p2p.neighbor) {
af8ac8f9
CF
830 retval = ISIS_OK;
831 goto out;
d62a17ae 832 } else {
833 if (((level == IS_LEVEL_1)
834 && (circuit->u.p2p.neighbor->adj_usage
835 == ISIS_ADJ_LEVEL2))
836 || ((level == IS_LEVEL_2)
837 && (circuit->u.p2p.neighbor->adj_usage
838 == ISIS_ADJ_LEVEL1)))
af8ac8f9 839 goto out;
f390d2c7 840 }
f390d2c7 841 }
f390d2c7 842
af8ac8f9
CF
843 bool lsp_confusion;
844
d62a17ae 845dontcheckadj:
846 /* 7.3.15.1 a) 7 - Passwords for level 1 - not implemented */
847
848 /* 7.3.15.1 a) 8 - Passwords for level 2 - not implemented */
849
850 /* 7.3.15.1 a) 9 - OriginatingLSPBufferSize - not implemented FIXME: do
851 * it */
852
853 /* 7.3.16.2 - If this is an LSP from another IS with identical seq_num
854 * but
855 * wrong checksum, initiate a purge. */
af8ac8f9
CF
856 if (lsp && (lsp->hdr.seqno == hdr.seqno)
857 && (lsp->hdr.checksum != hdr.checksum)) {
858 zlog_warn("ISIS-Upd (%s): LSP %s seq 0x%08" PRIx32
859 " with confused checksum received.",
860 circuit->area->area_tag, rawlspid_print(hdr.lsp_id),
861 hdr.seqno);
862 hdr.rem_lifetime = 0;
863 lsp_confusion = true;
d62a17ae 864 } else
af8ac8f9 865 lsp_confusion = false;
d62a17ae 866
867 /* 7.3.15.1 b) - If the remaining life time is 0, we perform 7.3.16.4 */
af8ac8f9 868 if (hdr.rem_lifetime == 0) {
d62a17ae 869 if (!lsp) {
870 /* 7.3.16.4 a) 1) No LSP in db -> send an ack, but don't
871 * save */
872 /* only needed on explicit update, eg - p2p */
873 if (circuit->circ_type == CIRCUIT_T_P2P)
af8ac8f9
CF
874 ack_lsp(&hdr, circuit, level);
875 goto out; /* FIXME: do we need a purge? */
d62a17ae 876 } else {
af8ac8f9 877 if (memcmp(hdr.lsp_id, isis->sysid, ISIS_SYS_ID_LEN)) {
d62a17ae 878 /* LSP by some other system -> do 7.3.16.4 b) */
879 /* 7.3.16.4 b) 1) */
880 if (comp == LSP_NEWER) {
af8ac8f9
CF
881 lsp_update(lsp, &hdr, tlvs,
882 circuit->rcv_stream,
164066e4
CF
883 circuit->area, level,
884 lsp_confusion);
af8ac8f9 885 tlvs = NULL;
d62a17ae 886 /* ii */
887 lsp_set_all_srmflags(lsp);
888 /* v */
889 ISIS_FLAGS_CLEAR_ALL(
9d303b37
DL
890 lsp
891 ->SSNflags); /* FIXME:
892 OTHER
893 than c
894 */
d62a17ae 895
896 /* For the case of lsp confusion, flood
897 * the purge back to its
898 * originator so that it can react.
899 * Otherwise, don't reflood
900 * through incoming circuit as usual */
901 if (!lsp_confusion) {
902 /* iii */
903 ISIS_CLEAR_FLAG(lsp->SRMflags,
904 circuit);
905 /* iv */
906 if (circuit->circ_type
907 != CIRCUIT_T_BROADCAST)
908 ISIS_SET_FLAG(
909 lsp->SSNflags,
910 circuit);
911 }
912 } /* 7.3.16.4 b) 2) */
913 else if (comp == LSP_EQUAL) {
914 /* i */
915 ISIS_CLEAR_FLAG(lsp->SRMflags, circuit);
916 /* ii */
917 if (circuit->circ_type
918 != CIRCUIT_T_BROADCAST)
919 ISIS_SET_FLAG(lsp->SSNflags,
920 circuit);
921 } /* 7.3.16.4 b) 3) */
922 else {
923 ISIS_SET_FLAG(lsp->SRMflags, circuit);
924 ISIS_CLEAR_FLAG(lsp->SSNflags, circuit);
925 }
af8ac8f9 926 } else if (lsp->hdr.rem_lifetime != 0) {
d62a17ae 927 /* our own LSP -> 7.3.16.4 c) */
928 if (comp == LSP_NEWER) {
af8ac8f9 929 lsp_inc_seqno(lsp, hdr.seqno);
d62a17ae 930 lsp_set_all_srmflags(lsp);
931 } else {
932 ISIS_SET_FLAG(lsp->SRMflags, circuit);
933 ISIS_CLEAR_FLAG(lsp->SSNflags, circuit);
934 }
935 if (isis->debugs & DEBUG_UPDATE_PACKETS)
936 zlog_debug(
af8ac8f9 937 "ISIS-Upd (%s): (1) re-originating LSP %s new seq 0x%08" PRIx32,
d62a17ae 938 circuit->area->area_tag,
af8ac8f9
CF
939 rawlspid_print(hdr.lsp_id),
940 lsp->hdr.seqno);
d62a17ae 941 }
f390d2c7 942 }
af8ac8f9 943 goto out;
f390d2c7 944 }
d62a17ae 945 /* 7.3.15.1 c) - If this is our own lsp and we don't have it initiate a
946 * purge */
af8ac8f9 947 if (memcmp(hdr.lsp_id, isis->sysid, ISIS_SYS_ID_LEN) == 0) {
d62a17ae 948 if (!lsp) {
949 /* 7.3.16.4: initiate a purge */
af8ac8f9
CF
950 lsp_purge_non_exist(level, &hdr, circuit->area);
951 retval = ISIS_OK;
952 goto out;
d62a17ae 953 }
954 /* 7.3.15.1 d) - If this is our own lsp and we have it */
955
956 /* In 7.3.16.1, If an Intermediate system R somewhere in the
957 * domain
958 * has information that the current sequence number for source S
959 * is
960 * "greater" than that held by S, ... */
961
af8ac8f9 962 if (hdr.seqno > lsp->hdr.seqno) {
d62a17ae 963 /* 7.3.16.1 */
af8ac8f9 964 lsp_inc_seqno(lsp, hdr.seqno);
d62a17ae 965 if (isis->debugs & DEBUG_UPDATE_PACKETS)
966 zlog_debug(
af8ac8f9 967 "ISIS-Upd (%s): (2) re-originating LSP %s new seq 0x%08" PRIx32,
d62a17ae 968 circuit->area->area_tag,
af8ac8f9
CF
969 rawlspid_print(hdr.lsp_id),
970 lsp->hdr.seqno);
d62a17ae 971 }
972 /* If the received LSP is older or equal,
973 * resend the LSP which will act as ACK */
974 lsp_set_all_srmflags(lsp);
975 } else {
976 /* 7.3.15.1 e) - This lsp originated on another system */
977
978 /* 7.3.15.1 e) 1) LSP newer than the one in db or no LSP in db
979 */
980 if ((!lsp || comp == LSP_NEWER)) {
981 /*
982 * If this lsp is a frag, need to see if we have zero
983 * lsp present
984 */
af8ac8f9
CF
985 struct isis_lsp *lsp0 = NULL;
986 if (LSP_FRAGMENT(hdr.lsp_id) != 0) {
987 uint8_t lspid[ISIS_SYS_ID_LEN + 2];
988 memcpy(lspid, hdr.lsp_id, ISIS_SYS_ID_LEN + 1);
d62a17ae 989 LSP_FRAGMENT(lspid) = 0;
990 lsp0 = lsp_search(
991 lspid, circuit->area->lspdb[level - 1]);
992 if (!lsp0) {
993 zlog_debug(
994 "Got lsp frag, while zero lsp not in database");
995 return ISIS_OK;
996 }
997 }
998 /* i */
999 if (!lsp) {
af8ac8f9
CF
1000 lsp = lsp_new_from_recv(
1001 &hdr, tlvs, circuit->rcv_stream, lsp0,
d62a17ae 1002 circuit->area, level);
af8ac8f9 1003 tlvs = NULL;
d62a17ae 1004 lsp_insert(lsp,
1005 circuit->area->lspdb[level - 1]);
1006 } else /* exists, so we overwrite */
1007 {
af8ac8f9 1008 lsp_update(lsp, &hdr, tlvs, circuit->rcv_stream,
164066e4 1009 circuit->area, level, false);
af8ac8f9 1010 tlvs = NULL;
d62a17ae 1011 }
1012 /* ii */
1013 lsp_set_all_srmflags(lsp);
1014 /* iii */
1015 ISIS_CLEAR_FLAG(lsp->SRMflags, circuit);
1016
1017 /* iv */
1018 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1019 ISIS_SET_FLAG(lsp->SSNflags, circuit);
1020 /* FIXME: v) */
1021 }
1022 /* 7.3.15.1 e) 2) LSP equal to the one in db */
1023 else if (comp == LSP_EQUAL) {
1024 ISIS_CLEAR_FLAG(lsp->SRMflags, circuit);
af8ac8f9 1025 lsp_update(lsp, &hdr, tlvs, circuit->rcv_stream,
164066e4 1026 circuit->area, level, false);
af8ac8f9 1027 tlvs = NULL;
d62a17ae 1028 if (circuit->circ_type != CIRCUIT_T_BROADCAST)
1029 ISIS_SET_FLAG(lsp->SSNflags, circuit);
1030 }
1031 /* 7.3.15.1 e) 3) LSP older than the one in db */
1032 else {
1033 ISIS_SET_FLAG(lsp->SRMflags, circuit);
1034 ISIS_CLEAR_FLAG(lsp->SSNflags, circuit);
1035 }
f390d2c7 1036 }
af8ac8f9
CF
1037
1038 retval = ISIS_OK;
1039
1040out:
1041 isis_free_tlvs(tlvs);
d62a17ae 1042 return retval;
eb5d44eb 1043}
1044
1045/*
1046 * Process Sequence Numbers
1047 * ISO - 10589
1048 * Section 7.3.15.2 - Action on receipt of a sequence numbers PDU
1049 */
1050
17c9dcd5 1051static int process_snp(uint8_t pdu_type, struct isis_circuit *circuit,
d62a17ae 1052 const u_char *ssnpa)
eb5d44eb 1053{
17c9dcd5
CF
1054 bool is_csnp = (pdu_type == L1_COMPLETE_SEQ_NUM
1055 || pdu_type == L2_COMPLETE_SEQ_NUM);
1056 char typechar = is_csnp ? 'C' : 'P';
1057 int level = (pdu_type == L1_COMPLETE_SEQ_NUM
1058 || pdu_type == L1_PARTIAL_SEQ_NUM)
1059 ? ISIS_LEVEL1
1060 : ISIS_LEVEL2;
1061
1062 uint16_t pdu_len = stream_getw(circuit->rcv_stream);
1063 uint8_t rem_sys_id[ISIS_SYS_ID_LEN];
1064 stream_get(rem_sys_id, circuit->rcv_stream, ISIS_SYS_ID_LEN);
1065 stream_forward_getp(circuit->rcv_stream, 1); /* Circuit ID - unused */
1066
1067 uint8_t start_lsp_id[ISIS_SYS_ID_LEN + 2] = {};
1068 uint8_t stop_lsp_id[ISIS_SYS_ID_LEN + 2] = {};
1069
1070 if (is_csnp) {
1071 stream_get(start_lsp_id, circuit->rcv_stream,
1072 ISIS_SYS_ID_LEN + 2);
1073 stream_get(stop_lsp_id, circuit->rcv_stream,
1074 ISIS_SYS_ID_LEN + 2);
1075 }
1076
1077 if (pdu_len_validate(pdu_len, circuit)) {
1078 zlog_warn("Received a CSNP with bogus length %d", pdu_len);
1079 return ISIS_WARNING;
f390d2c7 1080 }
eb5d44eb 1081
17c9dcd5
CF
1082 if (isis->debugs & DEBUG_SNP_PACKETS) {
1083 zlog_debug(
1084 "ISIS-Snp (%s): Rcvd L%d %cSNP on %s, cirType %s, cirID %u",
1085 circuit->area->area_tag, level, typechar,
1086 circuit->interface->name,
1087 circuit_t2string(circuit->is_type),
1088 circuit->circuit_id);
1089 if (isis->debugs & DEBUG_PACKET_DUMP)
1090 zlog_dump_data(STREAM_DATA(circuit->rcv_stream),
1091 stream_get_endp(circuit->rcv_stream));
1092 }
eb5d44eb 1093
d62a17ae 1094 /* 7.3.15.2 a) 1 - external domain circuit will discard snp pdu */
1095 if (circuit->ext_domain) {
f390d2c7 1096
d62a17ae 1097 zlog_debug(
1098 "ISIS-Snp (%s): Rcvd L%d %cSNP on %s, "
1099 "skipping: circuit externalDomain = true",
1100 circuit->area->area_tag, level, typechar,
1101 circuit->interface->name);
f390d2c7 1102
d62a17ae 1103 return ISIS_OK;
1104 }
eb5d44eb 1105
d62a17ae 1106 /* 7.3.15.2 a) 2,3 - manualL2OnlyMode not implemented */
af8ac8f9 1107 if (!(circuit->is_type & level)) {
d62a17ae 1108 zlog_debug(
1109 "ISIS-Snp (%s): Rcvd L%d %cSNP on %s, "
1110 "skipping: circuit type %s does not match level %d",
1111 circuit->area->area_tag, level, typechar,
1112 circuit->interface->name,
1113 circuit_t2string(circuit->is_type), level);
eb5d44eb 1114
d62a17ae 1115 return ISIS_OK;
f390d2c7 1116 }
eb5d44eb 1117
d62a17ae 1118 /* 7.3.15.2 a) 4 - not applicable for CSNP only PSNPs on broadcast */
17c9dcd5
CF
1119 if (!is_csnp && (circuit->circ_type == CIRCUIT_T_BROADCAST)
1120 && !circuit->u.bc.is_dr[level - 1]) {
d62a17ae 1121 zlog_debug(
1122 "ISIS-Snp (%s): Rcvd L%d %cSNP from %s on %s, "
1123 "skipping: we are not the DIS",
1124 circuit->area->area_tag, level, typechar,
1125 snpa_print(ssnpa), circuit->interface->name);
1126
1127 return ISIS_OK;
1128 }
eb5d44eb 1129
d62a17ae 1130 /* 7.3.15.2 a) 5 - need to make sure IDLength matches - already checked
1131 */
1132
1133 /* 7.3.15.2 a) 6 - maximum area match, can be ommited since we only use
1134 * 3
1135 * - already checked */
1136
1137 /* 7.3.15.2 a) 7 - Must check that we have an adjacency of the same
1138 * level */
1139 /* for broadcast circuits, snpa should be compared */
1140 /* FIXME : Do we need to check SNPA? */
1141 if (circuit->circ_type == CIRCUIT_T_BROADCAST) {
17c9dcd5
CF
1142 if (!isis_adj_lookup(rem_sys_id,
1143 circuit->u.bc.adjdb[level - 1]))
d62a17ae 1144 return ISIS_OK; /* Silently discard */
1145 } else {
1146 if (!circuit->u.p2p.neighbor) {
1147 zlog_warn("no p2p neighbor on circuit %s",
1148 circuit->interface->name);
1149 return ISIS_OK; /* Silently discard */
1150 }
1151 }
eb5d44eb 1152
17c9dcd5
CF
1153 struct isis_tlvs *tlvs;
1154 int retval = ISIS_WARNING;
1155 const char *error_log;
eb5d44eb 1156
17c9dcd5
CF
1157 if (isis_unpack_tlvs(STREAM_READABLE(circuit->rcv_stream),
1158 circuit->rcv_stream, &tlvs, &error_log)) {
1159 zlog_warn("Something went wrong unpacking the SNP: %s",
1160 error_log);
1161 goto out;
f390d2c7 1162 }
eb5d44eb 1163
17c9dcd5
CF
1164 struct isis_passwd *passwd = (level == IS_LEVEL_1)
1165 ? &circuit->area->area_passwd
1166 : &circuit->area->domain_passwd;
1167 if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_RECV)
af8ac8f9
CF
1168 && !isis_tlvs_auth_is_valid(tlvs, passwd, circuit->rcv_stream,
1169 false)) {
17c9dcd5
CF
1170 isis_event_auth_failure(circuit->area->area_tag,
1171 "SNP authentication failure",
1172 rem_sys_id);
1173 goto out;
d62a17ae 1174 }
eb5d44eb 1175
17c9dcd5
CF
1176 struct isis_lsp_entry *entry_head =
1177 (struct isis_lsp_entry *)tlvs->lsp_entries.head;
1178
d62a17ae 1179 /* debug isis snp-packets */
1180 if (isis->debugs & DEBUG_SNP_PACKETS) {
1181 zlog_debug("ISIS-Snp (%s): Rcvd L%d %cSNP from %s on %s",
1182 circuit->area->area_tag, level, typechar,
1183 snpa_print(ssnpa), circuit->interface->name);
17c9dcd5
CF
1184 for (struct isis_lsp_entry *entry = entry_head; entry;
1185 entry = entry->next) {
1186 zlog_debug(
1187 "ISIS-Snp (%s): %cSNP entry %s, seq 0x%08" PRIx32
1188 ", cksum 0x%04" PRIx16 ", lifetime %" PRIu16 "s",
1189 circuit->area->area_tag, typechar,
1190 rawlspid_print(entry->id), entry->seqno,
1191 entry->checksum, entry->rem_lifetime);
f390d2c7 1192 }
f390d2c7 1193 }
3f045a08 1194
d62a17ae 1195 /* 7.3.15.2 b) Actions on LSP_ENTRIES reported */
17c9dcd5
CF
1196 for (struct isis_lsp_entry *entry = entry_head; entry;
1197 entry = entry->next) {
1198 struct isis_lsp *lsp =
1199 lsp_search(entry->id, circuit->area->lspdb[level - 1]);
1200 bool own_lsp = !memcmp(entry->id, isis->sysid, ISIS_SYS_ID_LEN);
1201 if (lsp) {
1202 /* 7.3.15.2 b) 1) is this LSP newer */
1203 int cmp = lsp_compare(circuit->area->area_tag, lsp,
1204 entry->seqno, entry->checksum,
1205 entry->rem_lifetime);
1206 /* 7.3.15.2 b) 2) if it equals, clear SRM on p2p */
1207 if (cmp == LSP_EQUAL) {
1208 /* if (circuit->circ_type !=
1209 * CIRCUIT_T_BROADCAST) */
1210 ISIS_CLEAR_FLAG(lsp->SRMflags, circuit);
1211 }
1212 /* 7.3.15.2 b) 3) if it is older, clear SSN and set SRM
1213 */
1214 else if (cmp == LSP_OLDER) {
1215 ISIS_CLEAR_FLAG(lsp->SSNflags, circuit);
1216 ISIS_SET_FLAG(lsp->SRMflags, circuit);
1217 }
1218 /* 7.3.15.2 b) 4) if it is newer, set SSN and clear SRM
1219 on p2p */
1220 else {
1221 if (own_lsp) {
af8ac8f9 1222 lsp_inc_seqno(lsp, entry->seqno);
17c9dcd5
CF
1223 ISIS_SET_FLAG(lsp->SRMflags, circuit);
1224 } else {
1225 ISIS_SET_FLAG(lsp->SSNflags, circuit);
d62a17ae 1226 /* if (circuit->circ_type !=
1227 * CIRCUIT_T_BROADCAST) */
1228 ISIS_CLEAR_FLAG(lsp->SRMflags, circuit);
1229 }
17c9dcd5
CF
1230 }
1231 } else {
1232 /* 7.3.15.2 b) 5) if it was not found, and all of those
1233 * are not 0,
1234 * insert it and set SSN on it */
1235 if (entry->rem_lifetime && entry->checksum
1236 && entry->seqno && memcmp(entry->id, isis->sysid,
1237 ISIS_SYS_ID_LEN)) {
1238 struct isis_lsp *lsp =
1239 lsp_new(circuit->area, entry->id,
1240 entry->rem_lifetime, 0, 0,
1241 entry->checksum, level);
1242 lsp_insert(lsp,
1243 circuit->area->lspdb[level - 1]);
1244 ISIS_FLAGS_CLEAR_ALL(lsp->SRMflags);
1245 ISIS_SET_FLAG(lsp->SSNflags, circuit);
d62a17ae 1246 }
1247 }
1248 }
eb5d44eb 1249
d62a17ae 1250 /* 7.3.15.2 c) on CSNP set SRM for all in range which were not reported
1251 */
17c9dcd5 1252 if (is_csnp) {
d62a17ae 1253 /*
1254 * Build a list from our own LSP db bounded with
1255 * start_lsp_id and stop_lsp_id
1256 */
17c9dcd5
CF
1257 struct list *lsp_list = list_new();
1258 lsp_build_list_nonzero_ht(start_lsp_id, stop_lsp_id, lsp_list,
d62a17ae 1259 circuit->area->lspdb[level - 1]);
1260
1261 /* Fixme: Find a better solution */
17c9dcd5
CF
1262 struct listnode *node, *nnode;
1263 struct isis_lsp *lsp;
1264 for (struct isis_lsp_entry *entry = entry_head; entry;
1265 entry = entry->next) {
1266 for (ALL_LIST_ELEMENTS(lsp_list, node, nnode, lsp)) {
af8ac8f9 1267 if (lsp_id_cmp(lsp->hdr.lsp_id, entry->id)
17c9dcd5
CF
1268 == 0) {
1269 list_delete_node(lsp_list, node);
1270 break;
d62a17ae 1271 }
1272 }
1273 }
17c9dcd5 1274
d62a17ae 1275 /* on remaining LSPs we set SRM (neighbor knew not of) */
1276 for (ALL_LIST_ELEMENTS_RO(lsp_list, node, lsp))
1277 ISIS_SET_FLAG(lsp->SRMflags, circuit);
1278 /* lets free it */
1279 list_delete(lsp_list);
1280 }
1281
17c9dcd5
CF
1282 retval = ISIS_OK;
1283out:
1284 isis_free_tlvs(tlvs);
d62a17ae 1285 return retval;
eb5d44eb 1286}
1287
88f9d911
CF
1288static int pdu_size(uint8_t pdu_type, uint8_t *size)
1289{
1290 switch (pdu_type) {
1291 case L1_LAN_HELLO:
1292 case L2_LAN_HELLO:
1293 *size = ISIS_LANHELLO_HDRLEN;
1294 break;
1295 case P2P_HELLO:
1296 *size = ISIS_P2PHELLO_HDRLEN;
1297 break;
1298 case L1_LINK_STATE:
1299 case L2_LINK_STATE:
1300 *size = ISIS_LSP_HDR_LEN;
1301 break;
1302 case L1_COMPLETE_SEQ_NUM:
1303 case L2_COMPLETE_SEQ_NUM:
1304 *size = ISIS_CSNP_HDRLEN;
1305 break;
1306 case L1_PARTIAL_SEQ_NUM:
1307 case L2_PARTIAL_SEQ_NUM:
1308 *size = ISIS_PSNP_HDRLEN;
1309 break;
1310 default:
1311 return 1;
1312 }
1313 *size += ISIS_FIXED_HDR_LEN;
1314 return 0;
1315}
1316
eb5d44eb 1317/*
1318 * PDU Dispatcher
1319 */
1320
d62a17ae 1321static int isis_handle_pdu(struct isis_circuit *circuit, u_char *ssnpa)
eb5d44eb 1322{
d62a17ae 1323 int retval = ISIS_OK;
eb5d44eb 1324
88f9d911
CF
1325 /* Verify that at least the 8 bytes fixed header have been received */
1326 if (stream_get_endp(circuit->rcv_stream) < ISIS_FIXED_HDR_LEN) {
1327 zlog_err("PDU is too short to be IS-IS.");
1328 return ISIS_ERROR;
1329 }
eb5d44eb 1330
88f9d911
CF
1331 uint8_t idrp = stream_getc(circuit->rcv_stream);
1332 uint8_t length = stream_getc(circuit->rcv_stream);
1333 uint8_t version1 = stream_getc(circuit->rcv_stream);
1334 uint8_t id_len = stream_getc(circuit->rcv_stream);
1335 uint8_t pdu_type = stream_getc(circuit->rcv_stream)
1336 & 0x1f; /* bits 6-8 are reserved */
1337 uint8_t version2 = stream_getc(circuit->rcv_stream);
1338 stream_forward_getp(circuit->rcv_stream, 1); /* reserved */
1339 uint8_t max_area_addrs = stream_getc(circuit->rcv_stream);
1340
1341 if (idrp == ISO9542_ESIS) {
1342 zlog_err("No support for ES-IS packet IDRP=%" PRIx8, idrp);
d62a17ae 1343 return ISIS_ERROR;
1344 }
eb5d44eb 1345
88f9d911
CF
1346 if (idrp != ISO10589_ISIS) {
1347 zlog_err("Not an IS-IS packet IDRP=%" PRIx8, idrp);
d62a17ae 1348 return ISIS_ERROR;
1349 }
3f045a08 1350
88f9d911
CF
1351 if (version1 != 1) {
1352 zlog_warn("Unsupported ISIS version %" PRIu8, version1);
1353 return ISIS_WARNING;
1354 }
eb5d44eb 1355
88f9d911
CF
1356 if (id_len != 0 && id_len != ISIS_SYS_ID_LEN) {
1357 zlog_err(
1358 "IDFieldLengthMismatch: ID Length field in a received PDU %" PRIu8
1359 ", while the parameter for this IS is %u",
1360 id_len, ISIS_SYS_ID_LEN);
d62a17ae 1361 return ISIS_ERROR;
1362 }
eb5d44eb 1363
88f9d911
CF
1364 uint8_t expected_length;
1365 if (pdu_size(pdu_type, &expected_length)) {
1366 zlog_warn("Unsupported ISIS PDU %" PRIu8, pdu_type);
d62a17ae 1367 return ISIS_WARNING;
1368 }
88f9d911
CF
1369
1370 if (length != expected_length) {
1371 zlog_err("Exepected fixed header length = %" PRIu8
1372 " but got %" PRIu8,
1373 expected_length, length);
1374 return ISIS_ERROR;
1375 }
1376
1377 if (stream_get_endp(circuit->rcv_stream) < length) {
d62a17ae 1378 zlog_err(
88f9d911 1379 "PDU is too short to contain fixed header of given PDU type.");
d62a17ae 1380 return ISIS_ERROR;
1381 }
eb5d44eb 1382
88f9d911
CF
1383 if (version2 != 1) {
1384 zlog_warn("Unsupported ISIS PDU version %" PRIu8, version2);
d62a17ae 1385 return ISIS_WARNING;
1386 }
3f045a08 1387
d62a17ae 1388 if (circuit->is_passive) {
1389 zlog_warn("Received ISIS PDU on passive circuit %s",
1390 circuit->interface->name);
1391 return ISIS_WARNING;
1392 }
3f045a08 1393
d62a17ae 1394 /* either 3 or 0 */
88f9d911 1395 if (max_area_addrs != 0 && max_area_addrs != isis->max_area_addrs) {
d62a17ae 1396 zlog_err(
88f9d911
CF
1397 "maximumAreaAddressesMismatch: maximumAreaAdresses in a received PDU %" PRIu8
1398 " while the parameter for this IS is %u",
1399 max_area_addrs, isis->max_area_addrs);
d62a17ae 1400 return ISIS_ERROR;
1401 }
eb5d44eb 1402
88f9d911 1403 switch (pdu_type) {
d62a17ae 1404 case L1_LAN_HELLO:
d62a17ae 1405 case L2_LAN_HELLO:
d62a17ae 1406 case P2P_HELLO:
0c1bd758 1407 retval = process_hello(pdu_type, circuit, ssnpa);
d62a17ae 1408 break;
1409 case L1_LINK_STATE:
d62a17ae 1410 case L2_LINK_STATE:
af8ac8f9 1411 retval = process_lsp(pdu_type, circuit, ssnpa);
d62a17ae 1412 break;
1413 case L1_COMPLETE_SEQ_NUM:
d62a17ae 1414 case L2_COMPLETE_SEQ_NUM:
d62a17ae 1415 case L1_PARTIAL_SEQ_NUM:
d62a17ae 1416 case L2_PARTIAL_SEQ_NUM:
17c9dcd5 1417 retval = process_snp(pdu_type, circuit, ssnpa);
d62a17ae 1418 break;
1419 default:
1420 return ISIS_ERROR;
1421 }
eb5d44eb 1422
d62a17ae 1423 return retval;
eb5d44eb 1424}
1425
d62a17ae 1426int isis_receive(struct thread *thread)
eb5d44eb 1427{
d62a17ae 1428 struct isis_circuit *circuit;
1429 u_char ssnpa[ETH_ALEN];
1430 int retval;
eb5d44eb 1431
d62a17ae 1432 /*
1433 * Get the circuit
1434 */
1435 circuit = THREAD_ARG(thread);
1436 assert(circuit);
eb5d44eb 1437
d62a17ae 1438 circuit->t_read = NULL;
eb5d44eb 1439
d62a17ae 1440 isis_circuit_stream(circuit, &circuit->rcv_stream);
eb5d44eb 1441
d62a17ae 1442 retval = circuit->rx(circuit, ssnpa);
eb5d44eb 1443
d62a17ae 1444 if (retval == ISIS_OK)
1445 retval = isis_handle_pdu(circuit, ssnpa);
eb5d44eb 1446
d62a17ae 1447 /*
1448 * prepare for next packet.
1449 */
1450 if (!circuit->is_passive)
1451 isis_circuit_prepare(circuit);
eb5d44eb 1452
d62a17ae 1453 return retval;
eb5d44eb 1454}
1455
eb5d44eb 1456/*
d62a17ae 1457 * SEND SIDE
eb5d44eb 1458 */
88f9d911 1459void fill_fixed_hdr(uint8_t pdu_type, struct stream *stream)
eb5d44eb 1460{
88f9d911
CF
1461 uint8_t length;
1462
1463 if (pdu_size(pdu_type, &length))
1464 assert(!"Unknown PDU Type");
1465
1466 stream_putc(stream, ISO10589_ISIS); /* IDRP */
1467 stream_putc(stream, length); /* Length of fixed header */
1468 stream_putc(stream, 1); /* Version/Protocol ID Extension 1 */
1469 stream_putc(stream, 0); /* ID Length, 0 => 6 */
1470 stream_putc(stream, pdu_type);
1471 stream_putc(stream, 1); /* Subversion */
1472 stream_putc(stream, 0); /* Reserved */
1473 stream_putc(stream, 0); /* Max Area Addresses 0 => 3 */
eb5d44eb 1474}
1475
0c1bd758
CF
1476static void put_hello_hdr(struct isis_circuit *circuit, int level,
1477 size_t *len_pointer)
eb5d44eb 1478{
88f9d911
CF
1479 uint8_t pdu_type;
1480
d62a17ae 1481 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
88f9d911 1482 pdu_type = (level == IS_LEVEL_1) ? L1_LAN_HELLO : L2_LAN_HELLO;
d62a17ae 1483 else
88f9d911
CF
1484 pdu_type = P2P_HELLO;
1485
0c1bd758 1486 isis_circuit_stream(circuit, &circuit->snd_stream);
88f9d911 1487 fill_fixed_hdr(pdu_type, circuit->snd_stream);
d62a17ae 1488
0c1bd758
CF
1489 stream_putc(circuit->snd_stream, circuit->is_type);
1490 stream_put(circuit->snd_stream, circuit->area->isis->sysid,
1491 ISIS_SYS_ID_LEN);
eb5d44eb 1492
0c1bd758
CF
1493 uint32_t holdtime = circuit->hello_multiplier[level - 1]
1494 * circuit->hello_interval[level - 1];
d62a17ae 1495
0c1bd758
CF
1496 if (holdtime > 0xffff)
1497 holdtime = 0xffff;
d62a17ae 1498
0c1bd758
CF
1499 stream_putw(circuit->snd_stream, holdtime);
1500 *len_pointer = stream_get_endp(circuit->snd_stream);
1501 stream_putw(circuit->snd_stream, 0); /* length is filled in later */
d62a17ae 1502
0c1bd758
CF
1503 if (circuit->circ_type == CIRCUIT_T_BROADCAST) {
1504 u_char *desig_is = (level == IS_LEVEL_1)
1505 ? circuit->u.bc.l1_desig_is
1506 : circuit->u.bc.l2_desig_is;
1507 stream_putc(circuit->snd_stream, circuit->priority[level - 1]);
1508 stream_put(circuit->snd_stream, desig_is, ISIS_SYS_ID_LEN + 1);
1509 } else {
1510 stream_putc(circuit->snd_stream, circuit->circuit_id);
d62a17ae 1511 }
0c1bd758 1512}
eb5d44eb 1513
0c1bd758
CF
1514int send_hello(struct isis_circuit *circuit, int level)
1515{
1516 size_t len_pointer;
1517 int retval;
1518
1519 if (circuit->is_passive)
1520 return ISIS_OK;
1521
1522 if (circuit->interface->mtu == 0) {
1523 zlog_warn("circuit has zero MTU");
d62a17ae 1524 return ISIS_WARNING;
0c1bd758
CF
1525 }
1526
1527 put_hello_hdr(circuit, level, &len_pointer);
1528
1529 struct isis_tlvs *tlvs = isis_alloc_tlvs();
1530
1531 isis_tlvs_add_auth(tlvs, &circuit->passwd);
1532
1533 if (!listcount(circuit->area->area_addrs))
d62a17ae 1534 return ISIS_WARNING;
0c1bd758 1535 isis_tlvs_add_area_addresses(tlvs, circuit->area->area_addrs);
d62a17ae 1536
0c1bd758
CF
1537 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
1538 isis_tlvs_add_lan_neighbors(
1539 tlvs, circuit->u.bc.lan_neighs[level - 1]);
1540
1541 isis_tlvs_set_protocols_supported(tlvs, &circuit->nlpids);
d62a17ae 1542
1543 /*
1544 * MT Supported TLV
1545 *
1546 * TLV gets included if no topology is enabled on the interface,
1547 * if one topology other than #0 is enabled, or if multiple topologies
1548 * are enabled.
1549 */
1550 struct isis_circuit_mt_setting **mt_settings;
1551 unsigned int mt_count;
1552
1553 mt_settings = circuit_mt_settings(circuit, &mt_count);
0c1bd758
CF
1554 if (mt_count == 0 && area_is_mt(circuit->area)) {
1555 tlvs->mt_router_info_empty = true;
1556 } else if ((mt_count == 1
1557 && mt_settings[0]->mtid != ISIS_MT_IPV4_UNICAST)
1558 || (mt_count > 1)) {
1559 for (unsigned int i = 0; i < mt_count; i++)
1560 isis_tlvs_add_mt_router_info(tlvs, mt_settings[i]->mtid,
1561 false, false);
d62a17ae 1562 }
eb5d44eb 1563
0c1bd758
CF
1564 if (circuit->ip_router && circuit->ip_addrs)
1565 isis_tlvs_add_ipv4_addresses(tlvs, circuit->ip_addrs);
d62a17ae 1566
0c1bd758
CF
1567 if (circuit->ipv6_router && circuit->ipv6_link)
1568 isis_tlvs_add_ipv6_addresses(tlvs, circuit->ipv6_link);
d62a17ae 1569
0c1bd758 1570 if (isis_pack_tlvs(tlvs, circuit->snd_stream, len_pointer,
af8ac8f9 1571 circuit->pad_hellos, false)) {
0c1bd758
CF
1572 isis_free_tlvs(tlvs);
1573 return ISIS_WARNING; /* XXX: Maybe Log TLV structure? */
f390d2c7 1574 }
d62a17ae 1575
1576 if (isis->debugs & DEBUG_ADJ_PACKETS) {
1577 if (circuit->circ_type == CIRCUIT_T_BROADCAST) {
1578 zlog_debug(
1579 "ISIS-Adj (%s): Sending L%d LAN IIH on %s, length %zd",
1580 circuit->area->area_tag, level,
0c1bd758
CF
1581 circuit->interface->name,
1582 stream_get_endp(circuit->snd_stream));
d62a17ae 1583 } else {
1584 zlog_debug(
1585 "ISIS-Adj (%s): Sending P2P IIH on %s, length %zd",
1586 circuit->area->area_tag,
0c1bd758
CF
1587 circuit->interface->name,
1588 stream_get_endp(circuit->snd_stream));
d62a17ae 1589 }
1590 if (isis->debugs & DEBUG_PACKET_DUMP)
1591 zlog_dump_data(STREAM_DATA(circuit->snd_stream),
1592 stream_get_endp(circuit->snd_stream));
f390d2c7 1593 }
eb5d44eb 1594
0c1bd758
CF
1595 isis_free_tlvs(tlvs);
1596
d62a17ae 1597 retval = circuit->tx(circuit, level);
1598 if (retval != ISIS_OK)
1599 zlog_err("ISIS-Adj (%s): Send L%d IIH on %s failed",
1600 circuit->area->area_tag, level,
1601 circuit->interface->name);
eb5d44eb 1602
d62a17ae 1603 return retval;
eb5d44eb 1604}
1605
d62a17ae 1606int send_lan_l1_hello(struct thread *thread)
eb5d44eb 1607{
d62a17ae 1608 struct isis_circuit *circuit;
1609 int retval;
1610
1611 circuit = THREAD_ARG(thread);
1612 assert(circuit);
1613 circuit->u.bc.t_send_lan_hello[0] = NULL;
1614
1615 if (!(circuit->area->is_type & IS_LEVEL_1)) {
1616 zlog_warn(
1617 "ISIS-Hello (%s): Trying to send L1 IIH in L2-only area",
1618 circuit->area->area_tag);
1619 return 1;
1620 }
ddfdbd32 1621
d62a17ae 1622 if (circuit->u.bc.run_dr_elect[0])
1623 isis_dr_elect(circuit, 1);
eb5d44eb 1624
d62a17ae 1625 retval = send_hello(circuit, 1);
eb5d44eb 1626
d62a17ae 1627 /* set next timer thread */
1628 thread_add_timer(master, send_lan_l1_hello, circuit,
1629 isis_jitter(circuit->hello_interval[0], IIH_JITTER),
1630 &circuit->u.bc.t_send_lan_hello[0]);
eb5d44eb 1631
d62a17ae 1632 return retval;
eb5d44eb 1633}
1634
d62a17ae 1635int send_lan_l2_hello(struct thread *thread)
eb5d44eb 1636{
d62a17ae 1637 struct isis_circuit *circuit;
1638 int retval;
eb5d44eb 1639
d62a17ae 1640 circuit = THREAD_ARG(thread);
1641 assert(circuit);
1642 circuit->u.bc.t_send_lan_hello[1] = NULL;
eb5d44eb 1643
d62a17ae 1644 if (!(circuit->area->is_type & IS_LEVEL_2)) {
1645 zlog_warn("ISIS-Hello (%s): Trying to send L2 IIH in L1 area",
1646 circuit->area->area_tag);
1647 return 1;
1648 }
ddfdbd32 1649
d62a17ae 1650 if (circuit->u.bc.run_dr_elect[1])
1651 isis_dr_elect(circuit, 2);
eb5d44eb 1652
d62a17ae 1653 retval = send_hello(circuit, 2);
eb5d44eb 1654
d62a17ae 1655 /* set next timer thread */
1656 thread_add_timer(master, send_lan_l2_hello, circuit,
1657 isis_jitter(circuit->hello_interval[1], IIH_JITTER),
1658 &circuit->u.bc.t_send_lan_hello[1]);
eb5d44eb 1659
d62a17ae 1660 return retval;
eb5d44eb 1661}
1662
d62a17ae 1663int send_p2p_hello(struct thread *thread)
eb5d44eb 1664{
d62a17ae 1665 struct isis_circuit *circuit;
eb5d44eb 1666
d62a17ae 1667 circuit = THREAD_ARG(thread);
1668 assert(circuit);
1669 circuit->u.p2p.t_send_p2p_hello = NULL;
eb5d44eb 1670
d62a17ae 1671 send_hello(circuit, 1);
eb5d44eb 1672
d62a17ae 1673 /* set next timer thread */
1674 thread_add_timer(master, send_p2p_hello, circuit,
1675 isis_jitter(circuit->hello_interval[1], IIH_JITTER),
1676 &circuit->u.p2p.t_send_p2p_hello);
eb5d44eb 1677
d62a17ae 1678 return ISIS_OK;
eb5d44eb 1679}
1680
3f045a08
JB
1681/*
1682 * Count the maximum number of lsps that can be accomodated by a given size.
1683 */
af8ac8f9 1684#define LSP_ENTRIES_LEN (10 + ISIS_SYS_ID_LEN)
d62a17ae 1685static uint16_t get_max_lsp_count(uint16_t size)
3f045a08 1686{
d62a17ae 1687 uint16_t tlv_count;
1688 uint16_t lsp_count;
1689 uint16_t remaining_size;
3f045a08 1690
d62a17ae 1691 /* First count the full size TLVs */
1692 tlv_count = size / MAX_LSP_ENTRIES_TLV_SIZE;
1693 lsp_count = tlv_count * (MAX_LSP_ENTRIES_TLV_SIZE / LSP_ENTRIES_LEN);
3f045a08 1694
d62a17ae 1695 /* The last TLV, if any */
1696 remaining_size = size % MAX_LSP_ENTRIES_TLV_SIZE;
1697 if (remaining_size - 2 >= LSP_ENTRIES_LEN)
1698 lsp_count += (remaining_size - 2) / LSP_ENTRIES_LEN;
3f045a08 1699
d62a17ae 1700 return lsp_count;
3f045a08
JB
1701}
1702
17c9dcd5 1703int send_csnp(struct isis_circuit *circuit, int level)
3f045a08 1704{
17c9dcd5
CF
1705 if (circuit->area->lspdb[level - 1] == NULL
1706 || dict_count(circuit->area->lspdb[level - 1]) == 0)
1707 return ISIS_OK;
d62a17ae 1708
17c9dcd5
CF
1709 isis_circuit_stream(circuit, &circuit->snd_stream);
1710 fill_fixed_hdr((level == ISIS_LEVEL1) ? L1_COMPLETE_SEQ_NUM
1711 : L2_COMPLETE_SEQ_NUM,
1712 circuit->snd_stream);
3f045a08 1713
17c9dcd5
CF
1714 size_t len_pointer = stream_get_endp(circuit->snd_stream);
1715 stream_putw(circuit->snd_stream, 0);
1716 stream_put(circuit->snd_stream, isis->sysid, ISIS_SYS_ID_LEN);
1717 /* with zero circuit id - ref 9.10, 9.11 */
1718 stream_putc(circuit->snd_stream, 0);
3f045a08 1719
17c9dcd5
CF
1720 size_t start_pointer = stream_get_endp(circuit->snd_stream);
1721 stream_put(circuit->snd_stream, 0, ISIS_SYS_ID_LEN + 2);
1722 size_t end_pointer = stream_get_endp(circuit->snd_stream);
1723 stream_put(circuit->snd_stream, 0, ISIS_SYS_ID_LEN + 2);
d62a17ae 1724
17c9dcd5
CF
1725 struct isis_passwd *passwd = (level == ISIS_LEVEL1)
1726 ? &circuit->area->area_passwd
1727 : &circuit->area->domain_passwd;
d62a17ae 1728
17c9dcd5 1729 struct isis_tlvs *tlvs = isis_alloc_tlvs();
3f045a08 1730
17c9dcd5
CF
1731 if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_SEND))
1732 isis_tlvs_add_auth(tlvs, passwd);
eb5d44eb 1733
17c9dcd5 1734 size_t tlv_start = stream_get_endp(circuit->snd_stream);
af8ac8f9
CF
1735 if (isis_pack_tlvs(tlvs, circuit->snd_stream, len_pointer, false,
1736 false)) {
17c9dcd5
CF
1737 isis_free_tlvs(tlvs);
1738 return ISIS_WARNING;
1739 }
1740 isis_free_tlvs(tlvs);
d62a17ae 1741
17c9dcd5
CF
1742 uint16_t num_lsps =
1743 get_max_lsp_count(STREAM_WRITEABLE(circuit->snd_stream));
d62a17ae 1744
17c9dcd5 1745 uint8_t start[ISIS_SYS_ID_LEN + 2];
d62a17ae 1746 memset(start, 0x00, ISIS_SYS_ID_LEN + 2);
17c9dcd5 1747 uint8_t stop[ISIS_SYS_ID_LEN + 2];
d62a17ae 1748 memset(stop, 0xff, ISIS_SYS_ID_LEN + 2);
1749
17c9dcd5 1750 bool loop = true;
d62a17ae 1751 while (loop) {
17c9dcd5
CF
1752 tlvs = isis_alloc_tlvs();
1753 if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_SEND))
1754 isis_tlvs_add_auth(tlvs, passwd);
1755
1756 struct isis_lsp *last_lsp;
1757 isis_tlvs_add_csnp_entries(tlvs, start, stop, num_lsps,
1758 circuit->area->lspdb[level - 1],
1759 &last_lsp);
d62a17ae 1760 /*
1761 * Update the stop lsp_id before encoding this CSNP.
1762 */
17c9dcd5 1763 if (tlvs->lsp_entries.count < num_lsps) {
d62a17ae 1764 memset(stop, 0xff, ISIS_SYS_ID_LEN + 2);
1765 } else {
af8ac8f9 1766 memcpy(stop, last_lsp->hdr.lsp_id, sizeof(stop));
d62a17ae 1767 }
3f045a08 1768
17c9dcd5
CF
1769 memcpy(STREAM_DATA(circuit->snd_stream) + start_pointer, start,
1770 ISIS_SYS_ID_LEN + 2);
1771 memcpy(STREAM_DATA(circuit->snd_stream) + end_pointer, stop,
1772 ISIS_SYS_ID_LEN + 2);
1773 stream_set_endp(circuit->snd_stream, tlv_start);
1774 if (isis_pack_tlvs(tlvs, circuit->snd_stream, len_pointer,
af8ac8f9 1775 false, false)) {
17c9dcd5
CF
1776 isis_free_tlvs(tlvs);
1777 return ISIS_WARNING;
d62a17ae 1778 }
eb5d44eb 1779
d62a17ae 1780 if (isis->debugs & DEBUG_SNP_PACKETS) {
1781 zlog_debug(
1782 "ISIS-Snp (%s): Sending L%d CSNP on %s, length %zd",
1783 circuit->area->area_tag, level,
1784 circuit->interface->name,
1785 stream_get_endp(circuit->snd_stream));
17c9dcd5
CF
1786 log_multiline(LOG_DEBUG, " ", "%s",
1787 isis_format_tlvs(tlvs));
d62a17ae 1788 if (isis->debugs & DEBUG_PACKET_DUMP)
1789 zlog_dump_data(
1790 STREAM_DATA(circuit->snd_stream),
1791 stream_get_endp(circuit->snd_stream));
1792 }
eb5d44eb 1793
17c9dcd5 1794 int retval = circuit->tx(circuit, level);
d62a17ae 1795 if (retval != ISIS_OK) {
1796 zlog_err("ISIS-Snp (%s): Send L%d CSNP on %s failed",
1797 circuit->area->area_tag, level,
1798 circuit->interface->name);
17c9dcd5 1799 isis_free_tlvs(tlvs);
d62a17ae 1800 return retval;
1801 }
3f045a08 1802
d62a17ae 1803 /*
1804 * Start lsp_id of the next CSNP should be one plus the
1805 * stop lsp_id in this current CSNP.
1806 */
1807 memcpy(start, stop, ISIS_SYS_ID_LEN + 2);
1808 loop = 0;
17c9dcd5 1809 for (int i = ISIS_SYS_ID_LEN + 1; i >= 0; --i) {
d62a17ae 1810 if (start[i] < (u_char)0xff) {
1811 start[i] += 1;
1812 loop = 1;
1813 break;
1814 }
1815 }
1816 memset(stop, 0xff, ISIS_SYS_ID_LEN + 2);
17c9dcd5 1817 isis_free_tlvs(tlvs);
d62a17ae 1818 }
3f045a08 1819
17c9dcd5 1820 return ISIS_OK;
eb5d44eb 1821}
1822
d62a17ae 1823int send_l1_csnp(struct thread *thread)
eb5d44eb 1824{
d62a17ae 1825 struct isis_circuit *circuit;
1826 int retval = ISIS_OK;
eb5d44eb 1827
d62a17ae 1828 circuit = THREAD_ARG(thread);
1829 assert(circuit);
eb5d44eb 1830
d62a17ae 1831 circuit->t_send_csnp[0] = NULL;
eb5d44eb 1832
d62a17ae 1833 if (circuit->circ_type == CIRCUIT_T_BROADCAST
1834 && circuit->u.bc.is_dr[0]) {
1835 send_csnp(circuit, 1);
1836 }
1837 /* set next timer thread */
1838 thread_add_timer(master, send_l1_csnp, circuit,
1839 isis_jitter(circuit->csnp_interval[0], CSNP_JITTER),
1840 &circuit->t_send_csnp[0]);
eb5d44eb 1841
d62a17ae 1842 return retval;
eb5d44eb 1843}
1844
d62a17ae 1845int send_l2_csnp(struct thread *thread)
eb5d44eb 1846{
d62a17ae 1847 struct isis_circuit *circuit;
1848 int retval = ISIS_OK;
eb5d44eb 1849
d62a17ae 1850 circuit = THREAD_ARG(thread);
1851 assert(circuit);
eb5d44eb 1852
d62a17ae 1853 circuit->t_send_csnp[1] = NULL;
eb5d44eb 1854
d62a17ae 1855 if (circuit->circ_type == CIRCUIT_T_BROADCAST
1856 && circuit->u.bc.is_dr[1]) {
1857 send_csnp(circuit, 2);
1858 }
1859 /* set next timer thread */
1860 thread_add_timer(master, send_l2_csnp, circuit,
1861 isis_jitter(circuit->csnp_interval[1], CSNP_JITTER),
1862 &circuit->t_send_csnp[1]);
d70f99e1 1863
d62a17ae 1864 return retval;
eb5d44eb 1865}
1866
eb5d44eb 1867/*
1868 * 7.3.15.4 action on expiration of partial SNP interval
1869 * level 1
1870 */
d62a17ae 1871static int send_psnp(int level, struct isis_circuit *circuit)
eb5d44eb 1872{
d62a17ae 1873 if (circuit->circ_type == CIRCUIT_T_BROADCAST
1874 && circuit->u.bc.is_dr[level - 1])
1875 return ISIS_OK;
eb5d44eb 1876
d62a17ae 1877 if (circuit->area->lspdb[level - 1] == NULL
1878 || dict_count(circuit->area->lspdb[level - 1]) == 0)
1879 return ISIS_OK;
f390d2c7 1880
d62a17ae 1881 if (!circuit->snd_stream)
1882 return ISIS_ERROR;
e38e0df0 1883
17c9dcd5
CF
1884 isis_circuit_stream(circuit, &circuit->snd_stream);
1885 fill_fixed_hdr((level == ISIS_LEVEL1) ? L1_PARTIAL_SEQ_NUM
1886 : L2_PARTIAL_SEQ_NUM,
1887 circuit->snd_stream);
1888
1889 size_t len_pointer = stream_get_endp(circuit->snd_stream);
1890 stream_putw(circuit->snd_stream, 0); /* length is filled in later */
1891 stream_put(circuit->snd_stream, isis->sysid, ISIS_SYS_ID_LEN);
1892 stream_putc(circuit->snd_stream, circuit->idx);
1893
1894 struct isis_passwd *passwd = (level == ISIS_LEVEL1)
1895 ? &circuit->area->area_passwd
1896 : &circuit->area->domain_passwd;
1897
1898 struct isis_tlvs *tlvs = isis_alloc_tlvs();
1899
1900 if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_SEND))
1901 isis_tlvs_add_auth(tlvs, passwd);
1902
1903 size_t tlv_start = stream_get_endp(circuit->snd_stream);
af8ac8f9
CF
1904 if (isis_pack_tlvs(tlvs, circuit->snd_stream, len_pointer, false,
1905 false)) {
17c9dcd5
CF
1906 isis_free_tlvs(tlvs);
1907 return ISIS_WARNING;
1908 }
1909 isis_free_tlvs(tlvs);
1910
1911 uint16_t num_lsps =
1912 get_max_lsp_count(STREAM_WRITEABLE(circuit->snd_stream));
f390d2c7 1913
d62a17ae 1914 while (1) {
17c9dcd5
CF
1915 tlvs = isis_alloc_tlvs();
1916 if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_SEND))
1917 isis_tlvs_add_auth(tlvs, passwd);
1918
1919 for (dnode_t *dnode =
1920 dict_first(circuit->area->lspdb[level - 1]);
1921 dnode; dnode = dict_next(circuit->area->lspdb[level - 1],
1922 dnode)) {
1923 struct isis_lsp *lsp = dnode_get(dnode);
1924
1925 if (ISIS_CHECK_FLAG(lsp->SSNflags, circuit))
1926 isis_tlvs_add_lsp_entry(tlvs, lsp);
eb5d44eb 1927
17c9dcd5
CF
1928 if (tlvs->lsp_entries.count == num_lsps)
1929 break;
1930 }
1931
1932 if (!tlvs->lsp_entries.count) {
1933 isis_free_tlvs(tlvs);
d62a17ae 1934 return ISIS_OK;
1935 }
1936
17c9dcd5
CF
1937 stream_set_endp(circuit->snd_stream, tlv_start);
1938 if (isis_pack_tlvs(tlvs, circuit->snd_stream, len_pointer,
af8ac8f9 1939 false, false)) {
17c9dcd5
CF
1940 isis_free_tlvs(tlvs);
1941 return ISIS_WARNING;
d62a17ae 1942 }
1943
1944 if (isis->debugs & DEBUG_SNP_PACKETS) {
1945 zlog_debug(
1946 "ISIS-Snp (%s): Sending L%d PSNP on %s, length %zd",
1947 circuit->area->area_tag, level,
1948 circuit->interface->name,
1949 stream_get_endp(circuit->snd_stream));
17c9dcd5
CF
1950 log_multiline(LOG_DEBUG, " ", "%s",
1951 isis_format_tlvs(tlvs));
d62a17ae 1952 if (isis->debugs & DEBUG_PACKET_DUMP)
1953 zlog_dump_data(
1954 STREAM_DATA(circuit->snd_stream),
1955 stream_get_endp(circuit->snd_stream));
1956 }
1957
17c9dcd5 1958 int retval = circuit->tx(circuit, level);
d62a17ae 1959 if (retval != ISIS_OK) {
1960 zlog_err("ISIS-Snp (%s): Send L%d PSNP on %s failed",
1961 circuit->area->area_tag, level,
1962 circuit->interface->name);
17c9dcd5 1963 isis_free_tlvs(tlvs);
d62a17ae 1964 return retval;
1965 }
1966
1967 /*
1968 * sending succeeded, we can clear SSN flags of this circuit
1969 * for the LSPs in list
1970 */
17c9dcd5
CF
1971 struct isis_lsp_entry *entry_head;
1972 entry_head = (struct isis_lsp_entry *)tlvs->lsp_entries.head;
1973 for (struct isis_lsp_entry *entry = entry_head; entry;
1974 entry = entry->next)
1975 ISIS_CLEAR_FLAG(entry->lsp->SSNflags, circuit);
1976 isis_free_tlvs(tlvs);
d62a17ae 1977 }
1978
17c9dcd5 1979 return ISIS_OK;
eb5d44eb 1980}
1981
d62a17ae 1982int send_l1_psnp(struct thread *thread)
eb5d44eb 1983{
1984
d62a17ae 1985 struct isis_circuit *circuit;
1986 int retval = ISIS_OK;
eb5d44eb 1987
d62a17ae 1988 circuit = THREAD_ARG(thread);
1989 assert(circuit);
eb5d44eb 1990
d62a17ae 1991 circuit->t_send_psnp[0] = NULL;
eb5d44eb 1992
d62a17ae 1993 send_psnp(1, circuit);
1994 /* set next timer thread */
1995 thread_add_timer(master, send_l1_psnp, circuit,
1996 isis_jitter(circuit->psnp_interval[0], PSNP_JITTER),
1997 &circuit->t_send_psnp[0]);
eb5d44eb 1998
d62a17ae 1999 return retval;
eb5d44eb 2000}
2001
2002/*
2003 * 7.3.15.4 action on expiration of partial SNP interval
2004 * level 2
2005 */
d62a17ae 2006int send_l2_psnp(struct thread *thread)
eb5d44eb 2007{
d62a17ae 2008 struct isis_circuit *circuit;
2009 int retval = ISIS_OK;
eb5d44eb 2010
d62a17ae 2011 circuit = THREAD_ARG(thread);
2012 assert(circuit);
eb5d44eb 2013
d62a17ae 2014 circuit->t_send_psnp[1] = NULL;
eb5d44eb 2015
d62a17ae 2016 send_psnp(2, circuit);
eb5d44eb 2017
d62a17ae 2018 /* set next timer thread */
2019 thread_add_timer(master, send_l2_psnp, circuit,
2020 isis_jitter(circuit->psnp_interval[1], PSNP_JITTER),
2021 &circuit->t_send_psnp[1]);
eb5d44eb 2022
d62a17ae 2023 return retval;
eb5d44eb 2024}
2025
eb5d44eb 2026/*
2027 * ISO 10589 - 7.3.14.3
2028 */
d62a17ae 2029int send_lsp(struct thread *thread)
eb5d44eb 2030{
d62a17ae 2031 struct isis_circuit *circuit;
2032 struct isis_lsp *lsp;
2033 struct listnode *node;
2034 int clear_srm = 1;
2035 int retval = ISIS_OK;
2036
2037 circuit = THREAD_ARG(thread);
2038 assert(circuit);
2039
2040 if (!circuit->lsp_queue)
2041 return ISIS_OK;
2042
2043 node = listhead(circuit->lsp_queue);
2044
2045 /*
2046 * Handle case where there are no LSPs on the queue. This can
2047 * happen, for instance, if an adjacency goes down before this
2048 * thread gets a chance to run.
2049 */
2050 if (!node)
2051 return ISIS_OK;
2052
2053 /*
2054 * Delete LSP from lsp_queue. If it's still in queue, it is assumed
2055 * as 'transmit pending', but send_lsp may never be called again.
2056 * Retry will happen because SRM flag will not be cleared.
2057 */
2058 lsp = listgetdata(node);
2059 list_delete_node(circuit->lsp_queue, node);
2060
2061 /* Set the last-cleared time if the queue is empty. */
2062 /* TODO: Is is possible that new lsps keep being added to the queue
2063 * that the queue is never empty? */
2064 if (list_isempty(circuit->lsp_queue))
2065 circuit->lsp_queue_last_cleared = time(NULL);
2066
2067 if (circuit->state != C_STATE_UP || circuit->is_passive == 1)
2068 goto out;
2069
2070 /*
2071 * Do not send if levels do not match
2072 */
2073 if (!(lsp->level & circuit->is_type))
2074 goto out;
2075
2076 /*
2077 * Do not send if we do not have adjacencies in state up on the circuit
2078 */
2079 if (circuit->upadjcount[lsp->level - 1] == 0)
2080 goto out;
2081
2082 /* stream_copy will assert and stop program execution if LSP is larger
2083 * than
2084 * the circuit's MTU. So handle and log this case here. */
2085 if (stream_get_endp(lsp->pdu) > stream_get_size(circuit->snd_stream)) {
2086 zlog_err(
af8ac8f9
CF
2087 "ISIS-Upd (%s): Can't send L%d LSP %s, seq 0x%08" PRIx32
2088 ", cksum 0x%04" PRIx16 ", lifetime %" PRIu16
2089 "s on %s. LSP Size is %zu while interface stream size is %zu.",
d62a17ae 2090 circuit->area->area_tag, lsp->level,
af8ac8f9
CF
2091 rawlspid_print(lsp->hdr.lsp_id), lsp->hdr.seqno,
2092 lsp->hdr.checksum, lsp->hdr.rem_lifetime,
d62a17ae 2093 circuit->interface->name, stream_get_endp(lsp->pdu),
2094 stream_get_size(circuit->snd_stream));
2095 if (isis->debugs & DEBUG_PACKET_DUMP)
2096 zlog_dump_data(STREAM_DATA(lsp->pdu),
2097 stream_get_endp(lsp->pdu));
2098 retval = ISIS_ERROR;
2099 goto out;
2100 }
eb5d44eb 2101
d62a17ae 2102 /* copy our lsp to the send buffer */
2103 stream_copy(circuit->snd_stream, lsp->pdu);
2104
2105 if (isis->debugs & DEBUG_UPDATE_PACKETS) {
af8ac8f9
CF
2106 zlog_debug("ISIS-Upd (%s): Sending L%d LSP %s, seq 0x%08" PRIx32
2107 ", cksum 0x%04" PRIx16 ", lifetime %" PRIu16
2108 "s on %s",
2109 circuit->area->area_tag, lsp->level,
2110 rawlspid_print(lsp->hdr.lsp_id), lsp->hdr.seqno,
2111 lsp->hdr.checksum, lsp->hdr.rem_lifetime,
2112 circuit->interface->name);
d62a17ae 2113 if (isis->debugs & DEBUG_PACKET_DUMP)
2114 zlog_dump_data(STREAM_DATA(circuit->snd_stream),
2115 stream_get_endp(circuit->snd_stream));
2116 }
3f045a08 2117
d62a17ae 2118 clear_srm = 0;
2119 retval = circuit->tx(circuit, lsp->level);
2120 if (retval != ISIS_OK) {
2121 zlog_err("ISIS-Upd (%s): Send L%d LSP on %s failed %s",
2122 circuit->area->area_tag, lsp->level,
2123 circuit->interface->name,
2124 (retval == ISIS_WARNING) ? "temporarily"
2125 : "permanently");
2126 }
f390d2c7 2127
cfd1f27b 2128out:
d62a17ae 2129 if (clear_srm
2130 || (retval == ISIS_OK && circuit->circ_type == CIRCUIT_T_BROADCAST)
2131 || (retval != ISIS_OK && retval != ISIS_WARNING)) {
2132 /* SRM flag will trigger retransmission. We will not retransmit
2133 * if we
2134 * encountered a fatal error.
2135 * On success, they should only be cleared if it's a broadcast
2136 * circuit.
2137 * On a P2P circuit, we will wait for the ack from the neighbor
2138 * to clear
2139 * the fag.
2140 */
2141 ISIS_CLEAR_FLAG(lsp->SRMflags, circuit);
2142 }
eb5d44eb 2143
d62a17ae 2144 return retval;
f390d2c7 2145}