]> git.proxmox.com Git - mirror_frr.git/blob - isisd/isis_spf.c
Merge pull request #11302 from punith-shivakumar/master
[mirror_frr.git] / isisd / isis_spf.c
1 /*
2 * IS-IS Rout(e)ing protocol - isis_spf.c
3 * The SPT algorithm
4 *
5 * Copyright (C) 2001,2002 Sampo Saaristo
6 * Tampere University of Technology
7 * Institute of Communications Engineering
8 * Copyright (C) 2017 Christian Franke <chris@opensourcerouting.org>
9 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public Licenseas published by the Free
12 * Software Foundation; either version 2 of the License, or (at your option)
13 * any later version.
14 *
15 * This program is distributed in the hope that it will be useful,but WITHOUT
16 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
18 * more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; see the file COPYING; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23 */
24
25 #include <zebra.h>
26
27 #include "thread.h"
28 #include "linklist.h"
29 #include "vty.h"
30 #include "log.h"
31 #include "command.h"
32 #include "termtable.h"
33 #include "memory.h"
34 #include "prefix.h"
35 #include "filter.h"
36 #include "if.h"
37 #include "hash.h"
38 #include "table.h"
39 #include "spf_backoff.h"
40 #include "srcdest_table.h"
41 #include "vrf.h"
42
43 #include "isis_errors.h"
44 #include "isis_constants.h"
45 #include "isis_common.h"
46 #include "isis_flags.h"
47 #include "isisd.h"
48 #include "isis_misc.h"
49 #include "isis_adjacency.h"
50 #include "isis_circuit.h"
51 #include "isis_pdu.h"
52 #include "isis_lsp.h"
53 #include "isis_dynhn.h"
54 #include "isis_spf.h"
55 #include "isis_route.h"
56 #include "isis_csm.h"
57 #include "isis_mt.h"
58 #include "isis_tlvs.h"
59 #include "isis_zebra.h"
60 #include "fabricd.h"
61 #include "isis_spf_private.h"
62
63 DEFINE_MTYPE_STATIC(ISISD, ISIS_SPFTREE, "ISIS SPFtree");
64 DEFINE_MTYPE_STATIC(ISISD, ISIS_SPF_RUN, "ISIS SPF Run Info");
65 DEFINE_MTYPE_STATIC(ISISD, ISIS_SPF_ADJ, "ISIS SPF Adjacency");
66 DEFINE_MTYPE_STATIC(ISISD, ISIS_VERTEX, "ISIS vertex");
67 DEFINE_MTYPE_STATIC(ISISD, ISIS_VERTEX_ADJ, "ISIS SPF Vertex Adjacency");
68
69 static void spf_adj_list_parse_lsp(struct isis_spftree *spftree,
70 struct list *adj_list, struct isis_lsp *lsp,
71 const uint8_t *pseudo_nodeid,
72 uint32_t pseudo_metric);
73
74 /*
75 * supports the given af ?
76 */
77 static bool speaks(uint8_t *protocols, uint8_t count, int family)
78 {
79 for (uint8_t i = 0; i < count; i++) {
80 if (family == AF_INET && protocols[i] == NLPID_IP)
81 return true;
82 if (family == AF_INET6 && protocols[i] == NLPID_IPV6)
83 return true;
84 }
85 return false;
86 }
87
88 struct isis_spf_run {
89 struct isis_area *area;
90 int level;
91 };
92
93 /* 7.2.7 */
94 static void remove_excess_adjs(struct list *adjs)
95 {
96 struct listnode *node, *excess = NULL;
97 struct isis_vertex_adj *vadj, *candidate = NULL;
98 int comp;
99
100 for (ALL_LIST_ELEMENTS_RO(adjs, node, vadj)) {
101 struct isis_adjacency *adj, *candidate_adj;
102
103 adj = vadj->sadj->adj;
104 assert(adj);
105
106 if (excess == NULL)
107 excess = node;
108 candidate = listgetdata(excess);
109 candidate_adj = candidate->sadj->adj;
110
111 if (candidate_adj->sys_type < adj->sys_type) {
112 excess = node;
113 continue;
114 }
115 if (candidate_adj->sys_type > adj->sys_type)
116 continue;
117
118 comp = memcmp(candidate_adj->sysid, adj->sysid,
119 ISIS_SYS_ID_LEN);
120 if (comp > 0) {
121 excess = node;
122 continue;
123 }
124 if (comp < 0)
125 continue;
126
127 if (candidate_adj->circuit->idx > adj->circuit->idx) {
128 excess = node;
129 continue;
130 }
131
132 if (candidate_adj->circuit->idx < adj->circuit->idx)
133 continue;
134
135 comp = memcmp(candidate_adj->snpa, adj->snpa, ETH_ALEN);
136 if (comp > 0) {
137 excess = node;
138 continue;
139 }
140 }
141
142 list_delete_node(adjs, excess);
143
144 return;
145 }
146
147 const char *vtype2string(enum vertextype vtype)
148 {
149 switch (vtype) {
150 case VTYPE_PSEUDO_IS:
151 return "pseudo_IS";
152 case VTYPE_PSEUDO_TE_IS:
153 return "pseudo_TE-IS";
154 case VTYPE_NONPSEUDO_IS:
155 return "IS";
156 case VTYPE_NONPSEUDO_TE_IS:
157 return "TE-IS";
158 case VTYPE_ES:
159 return "ES";
160 case VTYPE_IPREACH_INTERNAL:
161 return "IP internal";
162 case VTYPE_IPREACH_EXTERNAL:
163 return "IP external";
164 case VTYPE_IPREACH_TE:
165 return "IP TE";
166 case VTYPE_IP6REACH_INTERNAL:
167 return "IP6 internal";
168 case VTYPE_IP6REACH_EXTERNAL:
169 return "IP6 external";
170 default:
171 return "UNKNOWN";
172 }
173 return NULL; /* Not reached */
174 }
175
176 const char *vid2string(const struct isis_vertex *vertex, char *buff, int size)
177 {
178 if (VTYPE_IS(vertex->type) || VTYPE_ES(vertex->type)) {
179 const char *hostname = print_sys_hostname(vertex->N.id);
180 strlcpy(buff, hostname, size);
181 return buff;
182 }
183
184 if (VTYPE_IP(vertex->type)) {
185 srcdest2str(&vertex->N.ip.p.dest, &vertex->N.ip.p.src, buff,
186 size);
187 return buff;
188 }
189
190 return "UNKNOWN";
191 }
192
193 static bool prefix_sid_cmp(const void *value1, const void *value2)
194 {
195 const struct isis_vertex *c1 = value1;
196 const struct isis_vertex *c2 = value2;
197
198 if (CHECK_FLAG(c1->N.ip.sr.sid.flags,
199 ISIS_PREFIX_SID_VALUE | ISIS_PREFIX_SID_LOCAL)
200 != CHECK_FLAG(c2->N.ip.sr.sid.flags,
201 ISIS_PREFIX_SID_VALUE | ISIS_PREFIX_SID_LOCAL))
202 return false;
203
204 return c1->N.ip.sr.sid.value == c2->N.ip.sr.sid.value;
205 }
206
207 static unsigned int prefix_sid_key_make(const void *value)
208 {
209 const struct isis_vertex *vertex = value;
210
211 return jhash_1word(vertex->N.ip.sr.sid.value, 0);
212 }
213
214 struct isis_vertex *isis_spf_prefix_sid_lookup(struct isis_spftree *spftree,
215 struct isis_prefix_sid *psid)
216 {
217 struct isis_vertex lookup = {};
218
219 lookup.N.ip.sr.sid = *psid;
220 return hash_lookup(spftree->prefix_sids, &lookup);
221 }
222
223 void isis_vertex_adj_free(void *arg)
224 {
225 struct isis_vertex_adj *vadj = arg;
226
227 XFREE(MTYPE_ISIS_VERTEX_ADJ, vadj);
228 }
229
230 static struct isis_vertex *isis_vertex_new(struct isis_spftree *spftree,
231 void *id,
232 enum vertextype vtype)
233 {
234 struct isis_vertex *vertex;
235
236 vertex = XCALLOC(MTYPE_ISIS_VERTEX, sizeof(struct isis_vertex));
237
238 isis_vertex_id_init(vertex, id, vtype);
239
240 vertex->Adj_N = list_new();
241 vertex->Adj_N->del = isis_vertex_adj_free;
242 vertex->parents = list_new();
243
244 if (CHECK_FLAG(spftree->flags, F_SPFTREE_HOPCOUNT_METRIC)) {
245 vertex->firsthops = hash_create(isis_vertex_queue_hash_key,
246 isis_vertex_queue_hash_cmp,
247 NULL);
248 }
249
250 return vertex;
251 }
252
253 void isis_vertex_del(struct isis_vertex *vertex)
254 {
255 list_delete(&vertex->Adj_N);
256 list_delete(&vertex->parents);
257 if (vertex->firsthops) {
258 hash_clean(vertex->firsthops, NULL);
259 hash_free(vertex->firsthops);
260 vertex->firsthops = NULL;
261 }
262
263 memset(vertex, 0, sizeof(struct isis_vertex));
264 XFREE(MTYPE_ISIS_VERTEX, vertex);
265 }
266
267 struct isis_vertex_adj *
268 isis_vertex_adj_add(struct isis_spftree *spftree, struct isis_vertex *vertex,
269 struct list *vadj_list, struct isis_spf_adj *sadj,
270 struct isis_prefix_sid *psid, bool last_hop)
271 {
272 struct isis_vertex_adj *vadj;
273
274 vadj = XCALLOC(MTYPE_ISIS_VERTEX_ADJ, sizeof(*vadj));
275 vadj->sadj = sadj;
276 if (spftree->area->srdb.enabled && psid) {
277 if (vertex->N.ip.sr.present
278 && vertex->N.ip.sr.sid.value != psid->value)
279 zlog_warn(
280 "ISIS-SPF: ignoring different Prefix-SID for route %pFX",
281 &vertex->N.ip.p.dest);
282 else {
283 vadj->sr.sid = *psid;
284 vadj->sr.label = sr_prefix_out_label(
285 spftree->lspdb, vertex->N.ip.p.dest.family,
286 psid, sadj->id, last_hop);
287 if (vadj->sr.label != MPLS_INVALID_LABEL)
288 vadj->sr.present = true;
289 }
290 }
291 listnode_add(vadj_list, vadj);
292
293 return vadj;
294 }
295
296 static void isis_vertex_adj_del(struct isis_vertex *vertex,
297 struct isis_adjacency *adj)
298 {
299 struct isis_vertex_adj *vadj;
300 struct listnode *node, *nextnode;
301
302 if (!vertex)
303 return;
304
305 for (ALL_LIST_ELEMENTS(vertex->Adj_N, node, nextnode, vadj)) {
306 if (vadj->sadj->adj == adj) {
307 listnode_delete(vertex->Adj_N, vadj);
308 isis_vertex_adj_free(vadj);
309 }
310 }
311 return;
312 }
313
314 bool isis_vertex_adj_exists(const struct isis_spftree *spftree,
315 const struct isis_vertex *vertex,
316 const struct isis_spf_adj *sadj)
317 {
318 struct isis_vertex_adj *tmp;
319 struct listnode *node;
320
321 for (ALL_LIST_ELEMENTS_RO(vertex->Adj_N, node, tmp)) {
322 if (CHECK_FLAG(spftree->flags, F_SPFTREE_NO_ADJACENCIES)) {
323 if (memcmp(sadj->id, tmp->sadj->id, sizeof(sadj->id))
324 == 0)
325 return true;
326 } else {
327 if (sadj->adj == tmp->sadj->adj)
328 return true;
329 }
330 }
331
332 return false;
333 }
334
335 static void isis_spf_adj_free(void *arg)
336 {
337 struct isis_spf_adj *sadj = arg;
338
339 XFREE(MTYPE_ISIS_SPF_ADJ, sadj);
340 }
341
342 struct isis_spftree *isis_spftree_new(struct isis_area *area,
343 struct lspdb_head *lspdb,
344 const uint8_t *sysid, int level,
345 enum spf_tree_id tree_id,
346 enum spf_type type, uint8_t flags)
347 {
348 struct isis_spftree *tree;
349
350 tree = XCALLOC(MTYPE_ISIS_SPFTREE, sizeof(struct isis_spftree));
351
352 isis_vertex_queue_init(&tree->tents, "IS-IS SPF tents", true);
353 isis_vertex_queue_init(&tree->paths, "IS-IS SPF paths", false);
354 tree->route_table = srcdest_table_init();
355 tree->route_table->cleanup = isis_route_node_cleanup;
356 tree->route_table_backup = srcdest_table_init();
357 tree->route_table_backup->cleanup = isis_route_node_cleanup;
358 tree->area = area;
359 tree->lspdb = lspdb;
360 tree->prefix_sids = hash_create(prefix_sid_key_make, prefix_sid_cmp,
361 "SR Prefix-SID Entries");
362 tree->sadj_list = list_new();
363 tree->sadj_list->del = isis_spf_adj_free;
364 tree->last_run_timestamp = 0;
365 tree->last_run_monotime = 0;
366 tree->last_run_duration = 0;
367 tree->runcount = 0;
368 tree->type = type;
369 memcpy(tree->sysid, sysid, ISIS_SYS_ID_LEN);
370 tree->level = level;
371 tree->tree_id = tree_id;
372 tree->family = (tree->tree_id == SPFTREE_IPV4) ? AF_INET : AF_INET6;
373 tree->flags = flags;
374 isis_rlfa_list_init(tree);
375 tree->lfa.remote.pc_spftrees = list_new();
376 tree->lfa.remote.pc_spftrees->del = (void (*)(void *))isis_spftree_del;
377 if (tree->type == SPF_TYPE_RLFA || tree->type == SPF_TYPE_TI_LFA) {
378 isis_spf_node_list_init(&tree->lfa.p_space);
379 isis_spf_node_list_init(&tree->lfa.q_space);
380 }
381
382 return tree;
383 }
384
385 void isis_spftree_del(struct isis_spftree *spftree)
386 {
387 hash_clean(spftree->prefix_sids, NULL);
388 hash_free(spftree->prefix_sids);
389 isis_zebra_rlfa_unregister_all(spftree);
390 isis_rlfa_list_clear(spftree);
391 list_delete(&spftree->lfa.remote.pc_spftrees);
392 if (spftree->type == SPF_TYPE_RLFA
393 || spftree->type == SPF_TYPE_TI_LFA) {
394 isis_spf_node_list_clear(&spftree->lfa.q_space);
395 isis_spf_node_list_clear(&spftree->lfa.p_space);
396 }
397 isis_spf_node_list_clear(&spftree->adj_nodes);
398 list_delete(&spftree->sadj_list);
399 isis_vertex_queue_free(&spftree->tents);
400 isis_vertex_queue_free(&spftree->paths);
401 route_table_finish(spftree->route_table);
402 route_table_finish(spftree->route_table_backup);
403 spftree->route_table = NULL;
404
405 XFREE(MTYPE_ISIS_SPFTREE, spftree);
406 return;
407 }
408
409 static void isis_spftree_adj_del(struct isis_spftree *spftree,
410 struct isis_adjacency *adj)
411 {
412 struct listnode *node;
413 struct isis_vertex *v;
414 if (!adj)
415 return;
416 assert(!isis_vertex_queue_count(&spftree->tents));
417 for (ALL_QUEUE_ELEMENTS_RO(&spftree->paths, node, v))
418 isis_vertex_adj_del(v, adj);
419 return;
420 }
421
422 void spftree_area_init(struct isis_area *area)
423 {
424 for (int tree = SPFTREE_IPV4; tree < SPFTREE_COUNT; tree++) {
425 for (int level = ISIS_LEVEL1; level <= ISIS_LEVEL2; level++) {
426 if (!(area->is_type & level))
427 continue;
428 if (area->spftree[tree][level - 1])
429 continue;
430
431 area->spftree[tree][level - 1] =
432 isis_spftree_new(area, &area->lspdb[level - 1],
433 area->isis->sysid, level, tree,
434 SPF_TYPE_FORWARD, 0);
435 }
436 }
437 }
438
439 void spftree_area_del(struct isis_area *area)
440 {
441 for (int tree = SPFTREE_IPV4; tree < SPFTREE_COUNT; tree++) {
442 for (int level = ISIS_LEVEL1; level <= ISIS_LEVEL2; level++) {
443 if (!(area->is_type & level))
444 continue;
445 if (!area->spftree[tree][level - 1])
446 continue;
447
448 isis_spftree_del(area->spftree[tree][level - 1]);
449 }
450 }
451 }
452
453 static int spf_adj_state_change(struct isis_adjacency *adj)
454 {
455 struct isis_area *area = adj->circuit->area;
456
457 if (adj->adj_state == ISIS_ADJ_UP)
458 return 0;
459
460 /* Remove adjacency from all SPF trees. */
461 for (int tree = SPFTREE_IPV4; tree < SPFTREE_COUNT; tree++) {
462 for (int level = ISIS_LEVEL1; level <= ISIS_LEVEL2; level++) {
463 if (!(area->is_type & level))
464 continue;
465 if (!area->spftree[tree][level - 1])
466 continue;
467 isis_spftree_adj_del(area->spftree[tree][level - 1],
468 adj);
469 }
470 }
471
472 if (fabricd_spftree(area) != NULL)
473 isis_spftree_adj_del(fabricd_spftree(area), adj);
474
475 return 0;
476 }
477
478 /*
479 * Find the system LSP: returns the LSP in our LSP database
480 * associated with the given system ID.
481 */
482 struct isis_lsp *isis_root_system_lsp(struct lspdb_head *lspdb,
483 const uint8_t *sysid)
484 {
485 struct isis_lsp *lsp;
486 uint8_t lspid[ISIS_SYS_ID_LEN + 2];
487
488 memcpy(lspid, sysid, ISIS_SYS_ID_LEN);
489 LSP_PSEUDO_ID(lspid) = 0;
490 LSP_FRAGMENT(lspid) = 0;
491 lsp = lsp_search(lspdb, lspid);
492 if (lsp && lsp->hdr.rem_lifetime != 0)
493 return lsp;
494 return NULL;
495 }
496
497 /*
498 * Add this IS to the root of SPT
499 */
500 static struct isis_vertex *isis_spf_add_root(struct isis_spftree *spftree)
501 {
502 struct isis_vertex *vertex;
503 #ifdef EXTREME_DEBUG
504 char buff[VID2STR_BUFFER];
505 #endif /* EXTREME_DEBUG */
506
507 vertex = isis_vertex_new(spftree, spftree->sysid,
508 spftree->area->oldmetric
509 ? VTYPE_NONPSEUDO_IS
510 : VTYPE_NONPSEUDO_TE_IS);
511 isis_vertex_queue_append(&spftree->paths, vertex);
512
513 #ifdef EXTREME_DEBUG
514 if (IS_DEBUG_SPF_EVENTS)
515 zlog_debug(
516 "ISIS-SPF: added this IS %s %s depth %d dist %d to PATHS",
517 vtype2string(vertex->type),
518 vid2string(vertex, buff, sizeof(buff)), vertex->depth,
519 vertex->d_N);
520 #endif /* EXTREME_DEBUG */
521
522 return vertex;
523 }
524
525 static void vertex_add_parent_firsthop(struct hash_bucket *bucket, void *arg)
526 {
527 struct isis_vertex *vertex = arg;
528 struct isis_vertex *hop = bucket->data;
529
530 (void)hash_get(vertex->firsthops, hop, hash_alloc_intern);
531 }
532
533 static void vertex_update_firsthops(struct isis_vertex *vertex,
534 struct isis_vertex *parent)
535 {
536 if (vertex->d_N <= 2)
537 (void)hash_get(vertex->firsthops, vertex, hash_alloc_intern);
538
539 if (vertex->d_N < 2 || !parent)
540 return;
541
542 hash_iterate(parent->firsthops, vertex_add_parent_firsthop, vertex);
543 }
544
545 /*
546 * Add a vertex to TENT sorted by cost and by vertextype on tie break situation
547 */
548 static struct isis_vertex *
549 isis_spf_add2tent(struct isis_spftree *spftree, enum vertextype vtype, void *id,
550 uint32_t cost, int depth, struct isis_spf_adj *sadj,
551 struct isis_prefix_sid *psid, struct isis_vertex *parent)
552 {
553 struct isis_vertex *vertex;
554 struct listnode *node;
555 bool last_hop;
556 char buff[VID2STR_BUFFER];
557
558 vertex = isis_find_vertex(&spftree->paths, id, vtype);
559 if (vertex != NULL) {
560 zlog_err(
561 "%s: vertex %s of type %s already in PATH; check for sysId collisions with established neighbors",
562 __func__, vid2string(vertex, buff, sizeof(buff)),
563 vtype2string(vertex->type));
564 return NULL;
565 }
566 vertex = isis_find_vertex(&spftree->tents, id, vtype);
567 if (vertex != NULL) {
568 zlog_err(
569 "%s: vertex %s of type %s already in TENT; check for sysId collisions with established neighbors",
570 __func__, vid2string(vertex, buff, sizeof(buff)),
571 vtype2string(vertex->type));
572 return NULL;
573 }
574
575 vertex = isis_vertex_new(spftree, id, vtype);
576 vertex->d_N = cost;
577 vertex->depth = depth;
578 if (VTYPE_IP(vtype) && spftree->area->srdb.enabled && psid) {
579 struct isis_area *area = spftree->area;
580 struct isis_vertex *vertex_psid;
581
582 /*
583 * Check if the Prefix-SID is already in use by another prefix.
584 */
585 vertex_psid = isis_spf_prefix_sid_lookup(spftree, psid);
586 if (vertex_psid
587 && !prefix_same(&vertex_psid->N.ip.p.dest,
588 &vertex->N.ip.p.dest)) {
589 flog_warn(
590 EC_ISIS_SID_COLLISION,
591 "ISIS-Sr (%s): collision detected, prefixes %pFX and %pFX share the same SID %s (%u)",
592 area->area_tag, &vertex->N.ip.p.dest,
593 &vertex_psid->N.ip.p.dest,
594 CHECK_FLAG(psid->flags, ISIS_PREFIX_SID_VALUE)
595 ? "label"
596 : "index",
597 psid->value);
598 psid = NULL;
599 } else {
600 bool local;
601
602 local = (vertex->depth == 1);
603 vertex->N.ip.sr.sid = *psid;
604 vertex->N.ip.sr.label =
605 sr_prefix_in_label(area, psid, local);
606 if (vertex->N.ip.sr.label != MPLS_INVALID_LABEL)
607 vertex->N.ip.sr.present = true;
608
609 (void)hash_get(spftree->prefix_sids, vertex,
610 hash_alloc_intern);
611 }
612 }
613
614 if (parent) {
615 listnode_add(vertex->parents, parent);
616 }
617
618 if (CHECK_FLAG(spftree->flags, F_SPFTREE_HOPCOUNT_METRIC))
619 vertex_update_firsthops(vertex, parent);
620
621 last_hop = (vertex->depth == 2);
622 if (parent && parent->Adj_N && listcount(parent->Adj_N) > 0) {
623 struct isis_vertex_adj *parent_vadj;
624
625 for (ALL_LIST_ELEMENTS_RO(parent->Adj_N, node, parent_vadj))
626 isis_vertex_adj_add(spftree, vertex, vertex->Adj_N,
627 parent_vadj->sadj, psid, last_hop);
628 } else if (sadj) {
629 isis_vertex_adj_add(spftree, vertex, vertex->Adj_N, sadj, psid,
630 last_hop);
631 }
632
633 #ifdef EXTREME_DEBUG
634 if (IS_DEBUG_SPF_EVENTS)
635 zlog_debug(
636 "ISIS-SPF: add to TENT %s %s %s depth %d dist %d adjcount %d",
637 print_sys_hostname(vertex->N.id),
638 vtype2string(vertex->type),
639 vid2string(vertex, buff, sizeof(buff)), vertex->depth,
640 vertex->d_N, listcount(vertex->Adj_N));
641 #endif /* EXTREME_DEBUG */
642
643 isis_vertex_queue_insert(&spftree->tents, vertex);
644 return vertex;
645 }
646
647 static void isis_spf_add_local(struct isis_spftree *spftree,
648 enum vertextype vtype, void *id,
649 struct isis_spf_adj *sadj, uint32_t cost,
650 struct isis_prefix_sid *psid,
651 struct isis_vertex *parent)
652 {
653 struct isis_vertex *vertex;
654
655 vertex = isis_find_vertex(&spftree->tents, id, vtype);
656
657 if (vertex) {
658 /* C.2.5 c) */
659 if (vertex->d_N == cost) {
660 if (sadj) {
661 bool last_hop = (vertex->depth == 2);
662
663 isis_vertex_adj_add(spftree, vertex,
664 vertex->Adj_N, sadj, psid,
665 last_hop);
666 }
667 /* d) */
668 if (!CHECK_FLAG(spftree->flags,
669 F_SPFTREE_NO_ADJACENCIES)
670 && listcount(vertex->Adj_N) > ISIS_MAX_PATH_SPLITS)
671 remove_excess_adjs(vertex->Adj_N);
672 if (parent && (listnode_lookup(vertex->parents, parent)
673 == NULL))
674 listnode_add(vertex->parents, parent);
675 return;
676 } else if (vertex->d_N < cost) {
677 /* e) do nothing */
678 return;
679 } else { /* vertex->d_N > cost */
680 /* f) */
681 isis_vertex_queue_delete(&spftree->tents, vertex);
682 isis_vertex_del(vertex);
683 }
684 }
685
686 isis_spf_add2tent(spftree, vtype, id, cost, 1, sadj, psid, parent);
687 return;
688 }
689
690 static void process_N(struct isis_spftree *spftree, enum vertextype vtype,
691 void *id, uint32_t dist, uint16_t depth,
692 struct isis_prefix_sid *psid, struct isis_vertex *parent)
693 {
694 struct isis_vertex *vertex;
695 #ifdef EXTREME_DEBUG
696 char buff[VID2STR_BUFFER];
697 #endif
698
699 assert(spftree && parent);
700
701 if (CHECK_FLAG(spftree->flags, F_SPFTREE_HOPCOUNT_METRIC)
702 && !VTYPE_IS(vtype))
703 return;
704
705 struct prefix_pair p;
706 if (vtype >= VTYPE_IPREACH_INTERNAL) {
707 memcpy(&p, id, sizeof(p));
708 apply_mask(&p.dest);
709 apply_mask(&p.src);
710 id = &p;
711 }
712
713 /* RFC3787 section 5.1 */
714 if (spftree->area->newmetric == 1) {
715 if (dist > MAX_WIDE_PATH_METRIC)
716 return;
717 }
718 /* C.2.6 b) */
719 else if (spftree->area->oldmetric == 1) {
720 if (dist > MAX_NARROW_PATH_METRIC)
721 return;
722 }
723
724 /* c) */
725 vertex = isis_find_vertex(&spftree->paths, id, vtype);
726 if (vertex) {
727 #ifdef EXTREME_DEBUG
728 if (IS_DEBUG_SPF_EVENTS)
729 zlog_debug(
730 "ISIS-SPF: process_N %s %s %s dist %d already found from PATH",
731 print_sys_hostname(vertex->N.id),
732 vtype2string(vtype),
733 vid2string(vertex, buff, sizeof(buff)), dist);
734 #endif /* EXTREME_DEBUG */
735 assert(dist >= vertex->d_N);
736 return;
737 }
738
739 vertex = isis_find_vertex(&spftree->tents, id, vtype);
740 /* d) */
741 if (vertex) {
742 /* 1) */
743 #ifdef EXTREME_DEBUG
744 if (IS_DEBUG_SPF_EVENTS)
745 zlog_debug(
746 "ISIS-SPF: process_N %s %s %s dist %d parent %s adjcount %d",
747 print_sys_hostname(vertex->N.id),
748 vtype2string(vtype),
749 vid2string(vertex, buff, sizeof(buff)), dist,
750 (parent ? print_sys_hostname(parent->N.id)
751 : "null"),
752 (parent ? listcount(parent->Adj_N) : 0));
753 #endif /* EXTREME_DEBUG */
754 if (vertex->d_N == dist) {
755 struct listnode *node;
756 struct isis_vertex_adj *parent_vadj;
757 for (ALL_LIST_ELEMENTS_RO(parent->Adj_N, node,
758 parent_vadj))
759 if (!isis_vertex_adj_exists(
760 spftree, vertex,
761 parent_vadj->sadj)) {
762 bool last_hop = (vertex->depth == 2);
763
764 isis_vertex_adj_add(spftree, vertex,
765 vertex->Adj_N,
766 parent_vadj->sadj,
767 psid, last_hop);
768 }
769 if (CHECK_FLAG(spftree->flags,
770 F_SPFTREE_HOPCOUNT_METRIC))
771 vertex_update_firsthops(vertex, parent);
772 /* 2) */
773 if (!CHECK_FLAG(spftree->flags,
774 F_SPFTREE_NO_ADJACENCIES)
775 && listcount(vertex->Adj_N) > ISIS_MAX_PATH_SPLITS)
776 remove_excess_adjs(vertex->Adj_N);
777 if (listnode_lookup(vertex->parents, parent) == NULL)
778 listnode_add(vertex->parents, parent);
779 return;
780 } else if (vertex->d_N < dist) {
781 return;
782 /* 4) */
783 } else {
784 isis_vertex_queue_delete(&spftree->tents, vertex);
785 isis_vertex_del(vertex);
786 }
787 }
788
789 #ifdef EXTREME_DEBUG
790 if (IS_DEBUG_SPF_EVENTS)
791 zlog_debug(
792 "ISIS-SPF: process_N add2tent %s %s dist %d parent %s",
793 print_sys_hostname(id), vtype2string(vtype), dist,
794 (parent ? print_sys_hostname(parent->N.id) : "null"));
795 #endif /* EXTREME_DEBUG */
796
797 isis_spf_add2tent(spftree, vtype, id, dist, depth, NULL, psid, parent);
798 return;
799 }
800
801 /*
802 * C.2.6 Step 1
803 */
804 static int isis_spf_process_lsp(struct isis_spftree *spftree,
805 struct isis_lsp *lsp, uint32_t cost,
806 uint16_t depth, uint8_t *root_sysid,
807 struct isis_vertex *parent)
808 {
809 bool pseudo_lsp = LSP_PSEUDO_ID(lsp->hdr.lsp_id);
810 struct listnode *fragnode = NULL;
811 uint32_t dist;
812 enum vertextype vtype;
813 static const uint8_t null_sysid[ISIS_SYS_ID_LEN];
814 struct isis_mt_router_info *mt_router_info = NULL;
815 struct prefix_pair ip_info;
816 bool has_valid_psid;
817
818 if (isis_lfa_excise_node_check(spftree, lsp->hdr.lsp_id)) {
819 if (IS_DEBUG_LFA)
820 zlog_debug("ISIS-LFA: excising node %s",
821 print_sys_hostname(lsp->hdr.lsp_id));
822 return ISIS_OK;
823 }
824
825 if (!lsp->tlvs)
826 return ISIS_OK;
827
828 if (spftree->mtid != ISIS_MT_IPV4_UNICAST)
829 mt_router_info = isis_tlvs_lookup_mt_router_info(lsp->tlvs,
830 spftree->mtid);
831
832 if (!pseudo_lsp && (spftree->mtid == ISIS_MT_IPV4_UNICAST
833 && !speaks(lsp->tlvs->protocols_supported.protocols,
834 lsp->tlvs->protocols_supported.count,
835 spftree->family))
836 && !mt_router_info)
837 return ISIS_OK;
838
839 /* RFC3787 section 4 SHOULD ignore overload bit in pseudo LSPs */
840 bool no_overload = (pseudo_lsp
841 || (spftree->mtid == ISIS_MT_IPV4_UNICAST
842 && !ISIS_MASK_LSP_OL_BIT(lsp->hdr.lsp_bits))
843 || (mt_router_info && !mt_router_info->overload));
844
845 lspfragloop:
846 if (lsp->hdr.seqno == 0) {
847 zlog_warn("%s: lsp with 0 seq_num - ignore", __func__);
848 return ISIS_WARNING;
849 }
850
851 #ifdef EXTREME_DEBUG
852 if (IS_DEBUG_SPF_EVENTS)
853 zlog_debug("ISIS-SPF: process_lsp %s",
854 print_sys_hostname(lsp->hdr.lsp_id));
855 #endif /* EXTREME_DEBUG */
856
857 if (no_overload) {
858 if ((pseudo_lsp || spftree->mtid == ISIS_MT_IPV4_UNICAST)
859 && spftree->area->oldmetric) {
860 struct isis_oldstyle_reach *r;
861 for (r = (struct isis_oldstyle_reach *)
862 lsp->tlvs->oldstyle_reach.head;
863 r; r = r->next) {
864 if (fabricd)
865 continue;
866
867 /* C.2.6 a) */
868 /* Two way connectivity */
869 if (!LSP_PSEUDO_ID(r->id)
870 && !memcmp(r->id, root_sysid,
871 ISIS_SYS_ID_LEN))
872 continue;
873 if (!pseudo_lsp
874 && !memcmp(r->id, null_sysid,
875 ISIS_SYS_ID_LEN))
876 continue;
877 dist = cost + r->metric;
878 process_N(spftree,
879 LSP_PSEUDO_ID(r->id)
880 ? VTYPE_PSEUDO_IS
881 : VTYPE_NONPSEUDO_IS,
882 (void *)r->id, dist, depth + 1, NULL,
883 parent);
884 }
885 }
886
887 if (spftree->area->newmetric) {
888 struct isis_item_list *te_neighs = NULL;
889 if (pseudo_lsp || spftree->mtid == ISIS_MT_IPV4_UNICAST)
890 te_neighs = &lsp->tlvs->extended_reach;
891 else
892 te_neighs = isis_lookup_mt_items(
893 &lsp->tlvs->mt_reach, spftree->mtid);
894
895 struct isis_extended_reach *er;
896 for (er = te_neighs ? (struct isis_extended_reach *)
897 te_neighs->head
898 : NULL;
899 er; er = er->next) {
900 /* C.2.6 a) */
901 /* Two way connectivity */
902 if (!LSP_PSEUDO_ID(er->id)
903 && !memcmp(er->id, root_sysid,
904 ISIS_SYS_ID_LEN))
905 continue;
906 if (!pseudo_lsp
907 && !memcmp(er->id, null_sysid,
908 ISIS_SYS_ID_LEN))
909 continue;
910 dist = cost
911 + (CHECK_FLAG(spftree->flags,
912 F_SPFTREE_HOPCOUNT_METRIC)
913 ? 1
914 : er->metric);
915 process_N(spftree,
916 LSP_PSEUDO_ID(er->id)
917 ? VTYPE_PSEUDO_TE_IS
918 : VTYPE_NONPSEUDO_TE_IS,
919 (void *)er->id, dist, depth + 1, NULL,
920 parent);
921 }
922 }
923 }
924
925 if (!fabricd && !pseudo_lsp && spftree->family == AF_INET
926 && spftree->mtid == ISIS_MT_IPV4_UNICAST
927 && spftree->area->oldmetric) {
928 struct isis_item_list *reachs[] = {
929 &lsp->tlvs->oldstyle_ip_reach,
930 &lsp->tlvs->oldstyle_ip_reach_ext};
931
932 for (unsigned int i = 0; i < array_size(reachs); i++) {
933 vtype = i ? VTYPE_IPREACH_EXTERNAL
934 : VTYPE_IPREACH_INTERNAL;
935
936 memset(&ip_info, 0, sizeof(ip_info));
937 ip_info.dest.family = AF_INET;
938
939 struct isis_oldstyle_ip_reach *r;
940 for (r = (struct isis_oldstyle_ip_reach *)reachs[i]
941 ->head;
942 r; r = r->next) {
943 dist = cost + r->metric;
944 ip_info.dest.u.prefix4 = r->prefix.prefix;
945 ip_info.dest.prefixlen = r->prefix.prefixlen;
946 process_N(spftree, vtype, &ip_info,
947 dist, depth + 1, NULL, parent);
948 }
949 }
950 }
951
952 /* we can skip all the rest if we're using metric style narrow */
953 if (!spftree->area->newmetric)
954 goto end;
955
956 if (!pseudo_lsp && spftree->family == AF_INET) {
957 struct isis_item_list *ipv4_reachs;
958 if (spftree->mtid == ISIS_MT_IPV4_UNICAST)
959 ipv4_reachs = &lsp->tlvs->extended_ip_reach;
960 else
961 ipv4_reachs = isis_lookup_mt_items(
962 &lsp->tlvs->mt_ip_reach, spftree->mtid);
963
964 memset(&ip_info, 0, sizeof(ip_info));
965 ip_info.dest.family = AF_INET;
966
967 struct isis_extended_ip_reach *r;
968 for (r = ipv4_reachs
969 ? (struct isis_extended_ip_reach *)
970 ipv4_reachs->head
971 : NULL;
972 r; r = r->next) {
973 dist = cost + r->metric;
974 ip_info.dest.u.prefix4 = r->prefix.prefix;
975 ip_info.dest.prefixlen = r->prefix.prefixlen;
976
977 /* Parse list of Prefix-SID subTLVs if SR is enabled */
978 has_valid_psid = false;
979 if (spftree->area->srdb.enabled && r->subtlvs) {
980 for (struct isis_item *i =
981 r->subtlvs->prefix_sids.head;
982 i; i = i->next) {
983 struct isis_prefix_sid *psid =
984 (struct isis_prefix_sid *)i;
985
986 if (psid->algorithm != SR_ALGORITHM_SPF)
987 continue;
988
989 has_valid_psid = true;
990 process_N(spftree, VTYPE_IPREACH_TE,
991 &ip_info, dist, depth + 1,
992 psid, parent);
993 /*
994 * Stop the Prefix-SID iteration since
995 * we only support the SPF algorithm for
996 * now.
997 */
998 break;
999 }
1000 }
1001 if (!has_valid_psid)
1002 process_N(spftree, VTYPE_IPREACH_TE, &ip_info,
1003 dist, depth + 1, NULL, parent);
1004 }
1005 }
1006
1007 if (!pseudo_lsp && spftree->family == AF_INET6) {
1008 struct isis_item_list *ipv6_reachs;
1009 if (spftree->mtid == ISIS_MT_IPV4_UNICAST)
1010 ipv6_reachs = &lsp->tlvs->ipv6_reach;
1011 else
1012 ipv6_reachs = isis_lookup_mt_items(
1013 &lsp->tlvs->mt_ipv6_reach, spftree->mtid);
1014
1015 struct isis_ipv6_reach *r;
1016 for (r = ipv6_reachs
1017 ? (struct isis_ipv6_reach *)ipv6_reachs->head
1018 : NULL;
1019 r; r = r->next) {
1020 dist = cost + r->metric;
1021 vtype = r->external ? VTYPE_IP6REACH_EXTERNAL
1022 : VTYPE_IP6REACH_INTERNAL;
1023 memset(&ip_info, 0, sizeof(ip_info));
1024 ip_info.dest.family = AF_INET6;
1025 ip_info.dest.u.prefix6 = r->prefix.prefix;
1026 ip_info.dest.prefixlen = r->prefix.prefixlen;
1027
1028 if (spftree->area->srdb.enabled && r->subtlvs &&
1029 r->subtlvs->source_prefix &&
1030 r->subtlvs->source_prefix->prefixlen) {
1031 if (spftree->tree_id != SPFTREE_DSTSRC) {
1032 char buff[VID2STR_BUFFER];
1033 zlog_warn("Ignoring dest-src route %s in non dest-src topology",
1034 srcdest2str(
1035 &ip_info.dest,
1036 r->subtlvs->source_prefix,
1037 buff, sizeof(buff)
1038 )
1039 );
1040 continue;
1041 }
1042 ip_info.src = *r->subtlvs->source_prefix;
1043 }
1044
1045 /* Parse list of Prefix-SID subTLVs */
1046 has_valid_psid = false;
1047 if (r->subtlvs) {
1048 for (struct isis_item *i =
1049 r->subtlvs->prefix_sids.head;
1050 i; i = i->next) {
1051 struct isis_prefix_sid *psid =
1052 (struct isis_prefix_sid *)i;
1053
1054 if (psid->algorithm != SR_ALGORITHM_SPF)
1055 continue;
1056
1057 has_valid_psid = true;
1058 process_N(spftree, vtype, &ip_info,
1059 dist, depth + 1, psid,
1060 parent);
1061 /*
1062 * Stop the Prefix-SID iteration since
1063 * we only support the SPF algorithm for
1064 * now.
1065 */
1066 break;
1067 }
1068 }
1069 if (!has_valid_psid)
1070 process_N(spftree, vtype, &ip_info, dist,
1071 depth + 1, NULL, parent);
1072 }
1073 }
1074
1075 end:
1076
1077 /* if attach bit set in LSP, attached-bit receive ignore is
1078 * not configured, we are a level-1 area and we have no other
1079 * level-2 | level1-2 areas then add a default route toward
1080 * this neighbor
1081 */
1082 if ((lsp->hdr.lsp_bits & LSPBIT_ATT) == LSPBIT_ATT
1083 && !spftree->area->attached_bit_rcv_ignore
1084 && (spftree->area->is_type & IS_LEVEL_1)
1085 && !isis_level2_adj_up(spftree->area)) {
1086 struct prefix_pair ip_info = { {0} };
1087 if (IS_DEBUG_RTE_EVENTS)
1088 zlog_debug("ISIS-Spf (%s): add default %s route",
1089 rawlspid_print(lsp->hdr.lsp_id),
1090 spftree->family == AF_INET ? "ipv4"
1091 : "ipv6");
1092
1093 if (spftree->family == AF_INET) {
1094 ip_info.dest.family = AF_INET;
1095 vtype = VTYPE_IPREACH_INTERNAL;
1096 } else {
1097 ip_info.dest.family = AF_INET6;
1098 vtype = VTYPE_IP6REACH_INTERNAL;
1099 }
1100 process_N(spftree, vtype, &ip_info, cost, depth + 1, NULL,
1101 parent);
1102 }
1103
1104 if (fragnode == NULL)
1105 fragnode = listhead(lsp->lspu.frags);
1106 else
1107 fragnode = listnextnode(fragnode);
1108
1109 if (fragnode) {
1110 lsp = listgetdata(fragnode);
1111 goto lspfragloop;
1112 }
1113
1114 return ISIS_OK;
1115 }
1116
1117 static struct isis_adjacency *adj_find(struct list *adj_list, const uint8_t *id,
1118 int level, uint16_t mtid, int family)
1119 {
1120 struct isis_adjacency *adj;
1121 struct listnode *node;
1122
1123 for (ALL_LIST_ELEMENTS_RO(adj_list, node, adj)) {
1124 if (!(adj->level & level))
1125 continue;
1126 if (memcmp(adj->sysid, id, ISIS_SYS_ID_LEN) != 0)
1127 continue;
1128 if (adj->adj_state != ISIS_ADJ_UP)
1129 continue;
1130 if (!adj_has_mt(adj, mtid))
1131 continue;
1132 if (mtid == ISIS_MT_IPV4_UNICAST
1133 && !speaks(adj->nlpids.nlpids, adj->nlpids.count, family))
1134 continue;
1135 return adj;
1136 }
1137
1138 return NULL;
1139 }
1140
1141 struct spf_preload_tent_ip_reach_args {
1142 struct isis_spftree *spftree;
1143 struct isis_vertex *parent;
1144 };
1145
1146 static int isis_spf_preload_tent_ip_reach_cb(const struct prefix *prefix,
1147 uint32_t metric, bool external,
1148 struct isis_subtlvs *subtlvs,
1149 void *arg)
1150 {
1151 struct spf_preload_tent_ip_reach_args *args = arg;
1152 struct isis_spftree *spftree = args->spftree;
1153 struct isis_vertex *parent = args->parent;
1154 struct prefix_pair ip_info;
1155 enum vertextype vtype;
1156 bool has_valid_psid = false;
1157
1158 if (external)
1159 return LSP_ITER_CONTINUE;
1160
1161 assert(spftree->family == prefix->family);
1162 memset(&ip_info, 0, sizeof(ip_info));
1163 prefix_copy(&ip_info.dest, prefix);
1164 apply_mask(&ip_info.dest);
1165
1166 if (prefix->family == AF_INET)
1167 vtype = VTYPE_IPREACH_INTERNAL;
1168 else
1169 vtype = VTYPE_IP6REACH_INTERNAL;
1170
1171 /* Parse list of Prefix-SID subTLVs if SR is enabled */
1172 if (spftree->area->srdb.enabled && subtlvs) {
1173 for (struct isis_item *i = subtlvs->prefix_sids.head; i;
1174 i = i->next) {
1175 struct isis_prefix_sid *psid =
1176 (struct isis_prefix_sid *)i;
1177
1178 if (psid->algorithm != SR_ALGORITHM_SPF)
1179 continue;
1180
1181 has_valid_psid = true;
1182 isis_spf_add_local(spftree, vtype, &ip_info, NULL, 0,
1183 psid, parent);
1184
1185 /*
1186 * Stop the Prefix-SID iteration since we only support
1187 * the SPF algorithm for now.
1188 */
1189 break;
1190 }
1191 }
1192 if (!has_valid_psid)
1193 isis_spf_add_local(spftree, vtype, &ip_info, NULL, 0, NULL,
1194 parent);
1195
1196 return LSP_ITER_CONTINUE;
1197 }
1198
1199 static void isis_spf_preload_tent(struct isis_spftree *spftree,
1200 uint8_t *root_sysid,
1201 struct isis_lsp *root_lsp,
1202 struct isis_vertex *parent)
1203 {
1204 struct spf_preload_tent_ip_reach_args ip_reach_args;
1205 struct isis_spf_adj *sadj;
1206 struct listnode *node;
1207
1208 if (!CHECK_FLAG(spftree->flags, F_SPFTREE_HOPCOUNT_METRIC)) {
1209 ip_reach_args.spftree = spftree;
1210 ip_reach_args.parent = parent;
1211 isis_lsp_iterate_ip_reach(
1212 root_lsp, spftree->family, spftree->mtid,
1213 isis_spf_preload_tent_ip_reach_cb, &ip_reach_args);
1214 }
1215
1216 /* Iterate over adjacencies. */
1217 for (ALL_LIST_ELEMENTS_RO(spftree->sadj_list, node, sadj)) {
1218 const uint8_t *adj_id;
1219 uint32_t metric;
1220
1221 if (CHECK_FLAG(sadj->flags, F_ISIS_SPF_ADJ_BROADCAST))
1222 adj_id = sadj->lan.desig_is_id;
1223 else
1224 adj_id = sadj->id;
1225
1226 if (isis_lfa_excise_adj_check(spftree, adj_id)) {
1227 if (IS_DEBUG_LFA)
1228 zlog_debug("ISIS-SPF: excising adjacency %s",
1229 isis_format_id(sadj->id,
1230 ISIS_SYS_ID_LEN + 1));
1231 continue;
1232 }
1233
1234 metric = CHECK_FLAG(spftree->flags, F_SPFTREE_HOPCOUNT_METRIC)
1235 ? 1
1236 : sadj->metric;
1237 if (!LSP_PSEUDO_ID(sadj->id)) {
1238 isis_spf_add_local(spftree,
1239 CHECK_FLAG(sadj->flags,
1240 F_ISIS_SPF_ADJ_OLDMETRIC)
1241 ? VTYPE_NONPSEUDO_IS
1242 : VTYPE_NONPSEUDO_TE_IS,
1243 sadj->id, sadj, metric, NULL,
1244 parent);
1245 } else if (sadj->lsp) {
1246 isis_spf_process_lsp(spftree, sadj->lsp, metric, 0,
1247 spftree->sysid, parent);
1248 }
1249 }
1250 }
1251
1252 struct spf_adj_find_reverse_metric_args {
1253 const uint8_t *id_self;
1254 uint32_t reverse_metric;
1255 };
1256
1257 static int spf_adj_find_reverse_metric_cb(const uint8_t *id, uint32_t metric,
1258 bool oldmetric,
1259 struct isis_ext_subtlvs *subtlvs,
1260 void *arg)
1261 {
1262 struct spf_adj_find_reverse_metric_args *args = arg;
1263
1264 if (memcmp(id, args->id_self, ISIS_SYS_ID_LEN))
1265 return LSP_ITER_CONTINUE;
1266
1267 args->reverse_metric = metric;
1268
1269 return LSP_ITER_STOP;
1270 }
1271
1272 /*
1273 * Change all SPF adjacencies to use the link cost in the direction from the
1274 * next hop back towards root in place of the link cost in the direction away
1275 * from root towards the next hop.
1276 */
1277 static void spf_adj_get_reverse_metrics(struct isis_spftree *spftree)
1278 {
1279 struct isis_spf_adj *sadj;
1280 struct listnode *node, *nnode;
1281
1282 for (ALL_LIST_ELEMENTS(spftree->sadj_list, node, nnode, sadj)) {
1283 uint8_t lspid[ISIS_SYS_ID_LEN + 2];
1284 struct isis_lsp *lsp_adj;
1285 const uint8_t *id_self;
1286 struct spf_adj_find_reverse_metric_args args;
1287
1288 /* Skip pseudonodes. */
1289 if (LSP_PSEUDO_ID(sadj->id))
1290 continue;
1291
1292 /* Find LSP of the corresponding adjacency. */
1293 memcpy(lspid, sadj->id, ISIS_SYS_ID_LEN);
1294 LSP_PSEUDO_ID(lspid) = 0;
1295 LSP_FRAGMENT(lspid) = 0;
1296 lsp_adj = lsp_search(spftree->lspdb, lspid);
1297 if (lsp_adj == NULL || lsp_adj->hdr.rem_lifetime == 0) {
1298 /* Delete one-way adjacency. */
1299 listnode_delete(spftree->sadj_list, sadj);
1300 continue;
1301 }
1302
1303 /* Find root node in the LSP of the adjacent router. */
1304 if (CHECK_FLAG(sadj->flags, F_ISIS_SPF_ADJ_BROADCAST))
1305 id_self = sadj->lan.desig_is_id;
1306 else
1307 id_self = spftree->sysid;
1308 args.id_self = id_self;
1309 args.reverse_metric = UINT32_MAX;
1310 isis_lsp_iterate_is_reach(lsp_adj, spftree->mtid,
1311 spf_adj_find_reverse_metric_cb,
1312 &args);
1313 if (args.reverse_metric == UINT32_MAX) {
1314 /* Delete one-way adjacency. */
1315 listnode_delete(spftree->sadj_list, sadj);
1316 continue;
1317 }
1318 sadj->metric = args.reverse_metric;
1319 }
1320 }
1321
1322 static void spf_adj_list_parse_tlv(struct isis_spftree *spftree,
1323 struct list *adj_list, const uint8_t *id,
1324 const uint8_t *desig_is_id,
1325 uint32_t pseudo_metric, uint32_t metric,
1326 bool oldmetric,
1327 struct isis_ext_subtlvs *subtlvs)
1328 {
1329 struct isis_spf_adj *sadj;
1330 uint8_t lspid[ISIS_SYS_ID_LEN + 2];
1331 struct isis_lsp *lsp;
1332 uint8_t flags = 0;
1333
1334 /* Skip self in the pseudonode. */
1335 if (desig_is_id && !memcmp(id, spftree->sysid, ISIS_SYS_ID_LEN))
1336 return;
1337
1338 /* Find LSP from the adjacency. */
1339 memcpy(lspid, id, ISIS_SYS_ID_LEN + 1);
1340 LSP_FRAGMENT(lspid) = 0;
1341 lsp = lsp_search(spftree->lspdb, lspid);
1342 if (lsp == NULL || lsp->hdr.rem_lifetime == 0) {
1343 zlog_warn("ISIS-SPF: No LSP found from root to L%d %s",
1344 spftree->level, rawlspid_print(lspid));
1345 return;
1346 }
1347
1348 sadj = XCALLOC(MTYPE_ISIS_SPF_ADJ, sizeof(*sadj));
1349 memcpy(sadj->id, id, sizeof(sadj->id));
1350 if (desig_is_id) {
1351 memcpy(sadj->lan.desig_is_id, desig_is_id,
1352 sizeof(sadj->lan.desig_is_id));
1353 SET_FLAG(flags, F_ISIS_SPF_ADJ_BROADCAST);
1354 sadj->metric = pseudo_metric;
1355 } else
1356 sadj->metric = metric;
1357 if (oldmetric)
1358 SET_FLAG(flags, F_ISIS_SPF_ADJ_OLDMETRIC);
1359 sadj->lsp = lsp;
1360 sadj->subtlvs = subtlvs;
1361 sadj->flags = flags;
1362
1363 if ((oldmetric && metric == ISIS_NARROW_METRIC_INFINITY)
1364 || (!oldmetric && metric == ISIS_WIDE_METRIC_INFINITY))
1365 SET_FLAG(flags, F_ISIS_SPF_ADJ_METRIC_INFINITY);
1366
1367 /* Set real adjacency. */
1368 if (!CHECK_FLAG(spftree->flags, F_SPFTREE_NO_ADJACENCIES)
1369 && !LSP_PSEUDO_ID(id)) {
1370 struct isis_adjacency *adj;
1371
1372 adj = adj_find(adj_list, id, spftree->level, spftree->mtid,
1373 spftree->family);
1374 if (!adj) {
1375 XFREE(MTYPE_ISIS_SPF_ADJ, sadj);
1376 return;
1377 }
1378
1379 listnode_delete(adj_list, adj);
1380 sadj->adj = adj;
1381 }
1382
1383 /* Add adjacency to the list. */
1384 listnode_add(spftree->sadj_list, sadj);
1385
1386 if (!LSP_PSEUDO_ID(id)) {
1387 struct isis_spf_node *node;
1388
1389 node = isis_spf_node_find(&spftree->adj_nodes, id);
1390 if (!node)
1391 node = isis_spf_node_new(&spftree->adj_nodes, id);
1392 if (node->best_metric == 0 || sadj->metric < node->best_metric)
1393 node->best_metric = sadj->metric;
1394 listnode_add(node->adjacencies, sadj);
1395 }
1396
1397 /* Parse pseudonode LSP too. */
1398 if (LSP_PSEUDO_ID(id))
1399 spf_adj_list_parse_lsp(spftree, adj_list, lsp, id, metric);
1400 }
1401
1402 static void spf_adj_list_parse_lsp(struct isis_spftree *spftree,
1403 struct list *adj_list, struct isis_lsp *lsp,
1404 const uint8_t *pseudo_nodeid,
1405 uint32_t pseudo_metric)
1406 {
1407 bool pseudo_lsp = LSP_PSEUDO_ID(lsp->hdr.lsp_id);
1408 struct isis_lsp *frag;
1409 struct listnode *node;
1410 struct isis_item *head;
1411 struct isis_item_list *te_neighs;
1412
1413 if (lsp->hdr.seqno == 0 || lsp->hdr.rem_lifetime == 0)
1414 return;
1415
1416 /* Parse LSP. */
1417 if (lsp->tlvs) {
1418 if (pseudo_lsp || spftree->mtid == ISIS_MT_IPV4_UNICAST) {
1419 head = lsp->tlvs->oldstyle_reach.head;
1420 for (struct isis_oldstyle_reach *reach =
1421 (struct isis_oldstyle_reach *)head;
1422 reach; reach = reach->next) {
1423 spf_adj_list_parse_tlv(
1424 spftree, adj_list, reach->id,
1425 pseudo_nodeid, pseudo_metric,
1426 reach->metric, true, NULL);
1427 }
1428 }
1429
1430 if (pseudo_lsp || spftree->mtid == ISIS_MT_IPV4_UNICAST)
1431 te_neighs = &lsp->tlvs->extended_reach;
1432 else
1433 te_neighs = isis_get_mt_items(&lsp->tlvs->mt_reach,
1434 spftree->mtid);
1435 if (te_neighs) {
1436 head = te_neighs->head;
1437 for (struct isis_extended_reach *reach =
1438 (struct isis_extended_reach *)head;
1439 reach; reach = reach->next) {
1440 spf_adj_list_parse_tlv(
1441 spftree, adj_list, reach->id,
1442 pseudo_nodeid, pseudo_metric,
1443 reach->metric, false, reach->subtlvs);
1444 }
1445 }
1446 }
1447
1448 if (LSP_FRAGMENT(lsp->hdr.lsp_id))
1449 return;
1450
1451 /* Parse LSP fragments. */
1452 for (ALL_LIST_ELEMENTS_RO(lsp->lspu.frags, node, frag)) {
1453 if (!frag->tlvs)
1454 continue;
1455
1456 spf_adj_list_parse_lsp(spftree, adj_list, frag, pseudo_nodeid,
1457 pseudo_metric);
1458 }
1459 }
1460
1461 static void isis_spf_build_adj_list(struct isis_spftree *spftree,
1462 struct isis_lsp *lsp)
1463 {
1464 struct list *adj_list = NULL;
1465
1466 if (!CHECK_FLAG(spftree->flags, F_SPFTREE_NO_ADJACENCIES))
1467 adj_list = list_dup(spftree->area->adjacency_list);
1468
1469 spf_adj_list_parse_lsp(spftree, adj_list, lsp, NULL, 0);
1470
1471 if (!CHECK_FLAG(spftree->flags, F_SPFTREE_NO_ADJACENCIES))
1472 list_delete(&adj_list);
1473
1474 if (spftree->type == SPF_TYPE_REVERSE)
1475 spf_adj_get_reverse_metrics(spftree);
1476 }
1477
1478 /*
1479 * The parent(s) for vertex is set when added to TENT list
1480 * now we just put the child pointer(s) in place
1481 */
1482 static void add_to_paths(struct isis_spftree *spftree,
1483 struct isis_vertex *vertex)
1484 {
1485 #ifdef EXTREME_DEBUG
1486 char buff[VID2STR_BUFFER];
1487 #endif /* EXTREME_DEBUG */
1488
1489 if (isis_find_vertex(&spftree->paths, &vertex->N, vertex->type))
1490 return;
1491 isis_vertex_queue_append(&spftree->paths, vertex);
1492
1493 #ifdef EXTREME_DEBUG
1494 if (IS_DEBUG_SPF_EVENTS)
1495 zlog_debug("ISIS-SPF: added %s %s %s depth %d dist %d to PATHS",
1496 print_sys_hostname(vertex->N.id),
1497 vtype2string(vertex->type),
1498 vid2string(vertex, buff, sizeof(buff)),
1499 vertex->depth, vertex->d_N);
1500 #endif /* EXTREME_DEBUG */
1501 }
1502
1503 static void init_spt(struct isis_spftree *spftree, int mtid)
1504 {
1505 /* Clear data from previous run. */
1506 hash_clean(spftree->prefix_sids, NULL);
1507 isis_spf_node_list_clear(&spftree->adj_nodes);
1508 list_delete_all_node(spftree->sadj_list);
1509 isis_vertex_queue_clear(&spftree->tents);
1510 isis_vertex_queue_clear(&spftree->paths);
1511 isis_zebra_rlfa_unregister_all(spftree);
1512 isis_rlfa_list_clear(spftree);
1513 list_delete_all_node(spftree->lfa.remote.pc_spftrees);
1514 memset(&spftree->lfa.protection_counters, 0,
1515 sizeof(spftree->lfa.protection_counters));
1516
1517 spftree->mtid = mtid;
1518 }
1519
1520 static enum spf_prefix_priority
1521 spf_prefix_priority(struct isis_spftree *spftree, struct isis_vertex *vertex)
1522 {
1523 struct isis_area *area = spftree->area;
1524 struct prefix *prefix = &vertex->N.ip.p.dest;
1525
1526 for (int priority = SPF_PREFIX_PRIO_CRITICAL;
1527 priority <= SPF_PREFIX_PRIO_MEDIUM; priority++) {
1528 struct spf_prefix_priority_acl *ppa;
1529 enum filter_type ret = FILTER_PERMIT;
1530
1531 ppa = &area->spf_prefix_priorities[priority];
1532 switch (spftree->family) {
1533 case AF_INET:
1534 ret = access_list_apply(ppa->list_v4, prefix);
1535 break;
1536 case AF_INET6:
1537 ret = access_list_apply(ppa->list_v6, prefix);
1538 break;
1539 default:
1540 break;
1541 }
1542
1543 if (ret == FILTER_PERMIT)
1544 return priority;
1545 }
1546
1547 /* Assign medium priority to loopback prefixes by default. */
1548 if (is_host_route(prefix))
1549 return SPF_PREFIX_PRIO_MEDIUM;
1550
1551 return SPF_PREFIX_PRIO_LOW;
1552 }
1553
1554 static void spf_path_process(struct isis_spftree *spftree,
1555 struct isis_vertex *vertex)
1556 {
1557 struct isis_area *area = spftree->area;
1558 int level = spftree->level;
1559 char buff[VID2STR_BUFFER];
1560
1561 if (spftree->type == SPF_TYPE_TI_LFA && VTYPE_IS(vertex->type)
1562 && !CHECK_FLAG(spftree->flags, F_SPFTREE_NO_ADJACENCIES)) {
1563 if (listcount(vertex->Adj_N) > 0) {
1564 struct isis_adjacency *adj;
1565
1566 if (isis_tilfa_check(spftree, vertex) != 0)
1567 return;
1568
1569 adj = isis_adj_find(area, level, vertex->N.id);
1570 if (adj)
1571 sr_adj_sid_add_single(adj, spftree->family,
1572 true, vertex->Adj_N);
1573 } else if (IS_DEBUG_SPF_EVENTS)
1574 zlog_debug(
1575 "ISIS-SPF: no adjacencies, do not install backup Adj-SID for %s depth %d dist %d",
1576 vid2string(vertex, buff, sizeof(buff)),
1577 vertex->depth, vertex->d_N);
1578 }
1579
1580 if (VTYPE_IP(vertex->type)
1581 && !CHECK_FLAG(spftree->flags, F_SPFTREE_NO_ROUTES)) {
1582 enum spf_prefix_priority priority;
1583
1584 priority = spf_prefix_priority(spftree, vertex);
1585 vertex->N.ip.priority = priority;
1586 if (vertex->depth == 1 || listcount(vertex->Adj_N) > 0) {
1587 struct isis_spftree *pre_spftree;
1588 struct route_table *route_table;
1589 bool allow_ecmp;
1590
1591 switch (spftree->type) {
1592 case SPF_TYPE_RLFA:
1593 case SPF_TYPE_TI_LFA:
1594 if (priority
1595 > area->lfa_priority_limit[level - 1]) {
1596 if (IS_DEBUG_LFA)
1597 zlog_debug(
1598 "ISIS-LFA: skipping %s %s (low prefix priority)",
1599 vtype2string(
1600 vertex->type),
1601 vid2string(
1602 vertex, buff,
1603 sizeof(buff)));
1604 return;
1605 }
1606 break;
1607 default:
1608 break;
1609 }
1610
1611 switch (spftree->type) {
1612 case SPF_TYPE_RLFA:
1613 isis_rlfa_check(spftree, vertex);
1614 return;
1615 case SPF_TYPE_TI_LFA:
1616 if (isis_tilfa_check(spftree, vertex) != 0)
1617 return;
1618
1619 pre_spftree = spftree->lfa.old.spftree;
1620 route_table = pre_spftree->route_table_backup;
1621 allow_ecmp = area->lfa_load_sharing[level - 1];
1622 pre_spftree->lfa.protection_counters
1623 .tilfa[vertex->N.ip.priority] += 1;
1624 break;
1625 default:
1626 route_table = spftree->route_table;
1627 allow_ecmp = true;
1628
1629 /*
1630 * Update LFA protection counters (ignore local
1631 * routes).
1632 */
1633 if (vertex->depth > 1) {
1634 spftree->lfa.protection_counters
1635 .total[priority] += 1;
1636 if (listcount(vertex->Adj_N) > 1)
1637 spftree->lfa.protection_counters
1638 .ecmp[priority] += 1;
1639 }
1640 break;
1641 }
1642
1643 isis_route_create(
1644 &vertex->N.ip.p.dest, &vertex->N.ip.p.src,
1645 vertex->d_N, vertex->depth, &vertex->N.ip.sr,
1646 vertex->Adj_N, allow_ecmp, area, route_table);
1647 } else if (IS_DEBUG_SPF_EVENTS)
1648 zlog_debug(
1649 "ISIS-SPF: no adjacencies, do not install route for %s depth %d dist %d",
1650 vid2string(vertex, buff, sizeof(buff)),
1651 vertex->depth, vertex->d_N);
1652 }
1653 }
1654
1655 static void isis_spf_loop(struct isis_spftree *spftree,
1656 uint8_t *root_sysid)
1657 {
1658 struct isis_vertex *vertex;
1659 struct isis_lsp *lsp;
1660 struct listnode *node;
1661
1662 while (isis_vertex_queue_count(&spftree->tents)) {
1663 vertex = isis_vertex_queue_pop(&spftree->tents);
1664
1665 #ifdef EXTREME_DEBUG
1666 if (IS_DEBUG_SPF_EVENTS)
1667 zlog_debug(
1668 "ISIS-SPF: get TENT node %s %s depth %d dist %d to PATHS",
1669 print_sys_hostname(vertex->N.id),
1670 vtype2string(vertex->type), vertex->depth,
1671 vertex->d_N);
1672 #endif /* EXTREME_DEBUG */
1673
1674 add_to_paths(spftree, vertex);
1675 if (!VTYPE_IS(vertex->type))
1676 continue;
1677
1678 lsp = lsp_for_vertex(spftree, vertex);
1679 if (!lsp) {
1680 zlog_warn("ISIS-SPF: No LSP found for %s",
1681 isis_format_id(vertex->N.id,
1682 sizeof(vertex->N.id)));
1683 continue;
1684 }
1685
1686 isis_spf_process_lsp(spftree, lsp, vertex->d_N, vertex->depth,
1687 root_sysid, vertex);
1688 }
1689
1690 /* Generate routes once the SPT is formed. */
1691 for (ALL_QUEUE_ELEMENTS_RO(&spftree->paths, node, vertex)) {
1692 /* New-style TLVs take precedence over the old-style TLVs. */
1693 switch (vertex->type) {
1694 case VTYPE_IPREACH_INTERNAL:
1695 case VTYPE_IPREACH_EXTERNAL:
1696 if (isis_find_vertex(&spftree->paths, &vertex->N,
1697 VTYPE_IPREACH_TE))
1698 continue;
1699 break;
1700 default:
1701 break;
1702 }
1703
1704 spf_path_process(spftree, vertex);
1705 }
1706 }
1707
1708 struct isis_spftree *isis_run_hopcount_spf(struct isis_area *area,
1709 uint8_t *sysid,
1710 struct isis_spftree *spftree)
1711 {
1712 if (!spftree)
1713 spftree = isis_spftree_new(area, &area->lspdb[IS_LEVEL_2 - 1],
1714 sysid, ISIS_LEVEL2, SPFTREE_IPV4,
1715 SPF_TYPE_FORWARD,
1716 F_SPFTREE_HOPCOUNT_METRIC);
1717
1718 init_spt(spftree, ISIS_MT_IPV4_UNICAST);
1719 if (!memcmp(sysid, area->isis->sysid, ISIS_SYS_ID_LEN)) {
1720 struct isis_lsp *root_lsp;
1721 struct isis_vertex *root_vertex;
1722
1723 root_lsp = isis_root_system_lsp(spftree->lspdb, spftree->sysid);
1724 if (root_lsp) {
1725 /*
1726 * If we are running locally, initialize with
1727 * information from adjacencies
1728 */
1729 root_vertex = isis_spf_add_root(spftree);
1730
1731 isis_spf_preload_tent(spftree, sysid, root_lsp,
1732 root_vertex);
1733 }
1734 } else {
1735 isis_vertex_queue_insert(
1736 &spftree->tents,
1737 isis_vertex_new(spftree, sysid, VTYPE_NONPSEUDO_TE_IS));
1738 }
1739
1740 isis_spf_loop(spftree, sysid);
1741
1742 return spftree;
1743 }
1744
1745 void isis_run_spf(struct isis_spftree *spftree)
1746 {
1747 struct isis_lsp *root_lsp;
1748 struct isis_vertex *root_vertex;
1749 struct timeval time_start;
1750 struct timeval time_end;
1751 struct isis_mt_router_info *mt_router_info;
1752 uint16_t mtid = 0;
1753
1754 /* Get time that can't roll backwards. */
1755 monotime(&time_start);
1756
1757 root_lsp = isis_root_system_lsp(spftree->lspdb, spftree->sysid);
1758 if (root_lsp == NULL) {
1759 zlog_err("ISIS-SPF: could not find own l%d LSP!",
1760 spftree->level);
1761 return;
1762 }
1763
1764 /* Get Multi-Topology ID. */
1765 switch (spftree->tree_id) {
1766 case SPFTREE_IPV4:
1767 mtid = ISIS_MT_IPV4_UNICAST;
1768 break;
1769 case SPFTREE_IPV6:
1770 mt_router_info = isis_tlvs_lookup_mt_router_info(
1771 root_lsp->tlvs, ISIS_MT_IPV6_UNICAST);
1772 if (mt_router_info)
1773 mtid = ISIS_MT_IPV6_UNICAST;
1774 else
1775 mtid = ISIS_MT_IPV4_UNICAST;
1776 break;
1777 case SPFTREE_DSTSRC:
1778 mtid = ISIS_MT_IPV6_DSTSRC;
1779 break;
1780 case SPFTREE_COUNT:
1781 zlog_err(
1782 "%s should never be called with SPFTREE_COUNT as argument!",
1783 __func__);
1784 exit(1);
1785 }
1786
1787 /*
1788 * C.2.5 Step 0
1789 */
1790 init_spt(spftree, mtid);
1791 /* a) */
1792 root_vertex = isis_spf_add_root(spftree);
1793 /* b) */
1794 isis_spf_build_adj_list(spftree, root_lsp);
1795 isis_spf_preload_tent(spftree, spftree->sysid, root_lsp, root_vertex);
1796
1797 /*
1798 * C.2.7 Step 2
1799 */
1800 if (!isis_vertex_queue_count(&spftree->tents)
1801 && (IS_DEBUG_SPF_EVENTS)) {
1802 zlog_warn("ISIS-SPF: TENT is empty SPF-root:%s",
1803 print_sys_hostname(spftree->sysid));
1804 }
1805
1806 isis_spf_loop(spftree, spftree->sysid);
1807 spftree->runcount++;
1808 spftree->last_run_timestamp = time(NULL);
1809 spftree->last_run_monotime = monotime(&time_end);
1810 spftree->last_run_duration =
1811 ((time_end.tv_sec - time_start.tv_sec) * 1000000)
1812 + (time_end.tv_usec - time_start.tv_usec);
1813 }
1814
1815 static void isis_run_spf_with_protection(struct isis_area *area,
1816 struct isis_spftree *spftree)
1817 {
1818 /* Run forward SPF locally. */
1819 memcpy(spftree->sysid, area->isis->sysid, ISIS_SYS_ID_LEN);
1820 isis_run_spf(spftree);
1821
1822 /* Run LFA protection if configured. */
1823 if (area->lfa_protected_links[spftree->level - 1] > 0
1824 || area->tilfa_protected_links[spftree->level - 1] > 0)
1825 isis_spf_run_lfa(area, spftree);
1826 }
1827
1828 void isis_spf_verify_routes(struct isis_area *area, struct isis_spftree **trees)
1829 {
1830 if (area->is_type == IS_LEVEL_1) {
1831 isis_route_verify_table(area, trees[0]->route_table,
1832 trees[0]->route_table_backup);
1833 } else if (area->is_type == IS_LEVEL_2) {
1834 isis_route_verify_table(area, trees[1]->route_table,
1835 trees[1]->route_table_backup);
1836 } else {
1837 isis_route_verify_merge(area, trees[0]->route_table,
1838 trees[0]->route_table_backup,
1839 trees[1]->route_table,
1840 trees[1]->route_table_backup);
1841 }
1842 }
1843
1844 void isis_spf_invalidate_routes(struct isis_spftree *tree)
1845 {
1846 isis_route_invalidate_table(tree->area, tree->route_table);
1847
1848 /* Delete backup routes. */
1849 route_table_finish(tree->route_table_backup);
1850 tree->route_table_backup = srcdest_table_init();
1851 tree->route_table_backup->cleanup = isis_route_node_cleanup;
1852 }
1853
1854 void isis_spf_switchover_routes(struct isis_area *area,
1855 struct isis_spftree **trees, int family,
1856 union g_addr *nexthop_ip, ifindex_t ifindex,
1857 int level)
1858 {
1859 isis_route_switchover_nexthop(area, trees[level - 1]->route_table,
1860 family, nexthop_ip, ifindex);
1861 }
1862
1863 static void isis_run_spf_cb(struct thread *thread)
1864 {
1865 struct isis_spf_run *run = THREAD_ARG(thread);
1866 struct isis_area *area = run->area;
1867 int level = run->level;
1868 int have_run = 0;
1869
1870 XFREE(MTYPE_ISIS_SPF_RUN, run);
1871
1872 if (!(area->is_type & level)) {
1873 if (IS_DEBUG_SPF_EVENTS)
1874 zlog_warn("ISIS-SPF (%s) area does not share level",
1875 area->area_tag);
1876 return;
1877 }
1878
1879 isis_area_delete_backup_adj_sids(area, level);
1880 isis_area_invalidate_routes(area, level);
1881
1882 if (IS_DEBUG_SPF_EVENTS)
1883 zlog_debug("ISIS-SPF (%s) L%d SPF needed, periodic SPF",
1884 area->area_tag, level);
1885
1886 if (area->ip_circuits) {
1887 isis_run_spf_with_protection(
1888 area, area->spftree[SPFTREE_IPV4][level - 1]);
1889 have_run = 1;
1890 }
1891 if (area->ipv6_circuits) {
1892 isis_run_spf_with_protection(
1893 area, area->spftree[SPFTREE_IPV6][level - 1]);
1894 have_run = 1;
1895 }
1896 if (area->ipv6_circuits && isis_area_ipv6_dstsrc_enabled(area)) {
1897 isis_run_spf_with_protection(
1898 area, area->spftree[SPFTREE_DSTSRC][level - 1]);
1899 have_run = 1;
1900 }
1901
1902 if (have_run)
1903 area->spf_run_count[level]++;
1904
1905 isis_area_verify_routes(area);
1906
1907 /* walk all circuits and reset any spf specific flags */
1908 struct listnode *node;
1909 struct isis_circuit *circuit;
1910 for (ALL_LIST_ELEMENTS_RO(area->circuit_list, node, circuit))
1911 UNSET_FLAG(circuit->flags, ISIS_CIRCUIT_FLAPPED_AFTER_SPF);
1912
1913 fabricd_run_spf(area);
1914 }
1915
1916 static struct isis_spf_run *isis_run_spf_arg(struct isis_area *area, int level)
1917 {
1918 struct isis_spf_run *run = XMALLOC(MTYPE_ISIS_SPF_RUN, sizeof(*run));
1919
1920 run->area = area;
1921 run->level = level;
1922
1923 return run;
1924 }
1925
1926 void isis_spf_timer_free(void *run)
1927 {
1928 XFREE(MTYPE_ISIS_SPF_RUN, run);
1929 }
1930
1931 int _isis_spf_schedule(struct isis_area *area, int level,
1932 const char *func, const char *file, int line)
1933 {
1934 struct isis_spftree *spftree;
1935 time_t now;
1936 long tree_diff, diff;
1937 int tree;
1938
1939 now = monotime(NULL);
1940 diff = 0;
1941 for (tree = SPFTREE_IPV4; tree < SPFTREE_COUNT; tree++) {
1942 spftree = area->spftree[tree][level - 1];
1943 tree_diff = difftime(now - spftree->last_run_monotime, 0);
1944 if (tree_diff != now && (diff == 0 || tree_diff < diff))
1945 diff = tree_diff;
1946 }
1947
1948 if (CHECK_FLAG(im->options, F_ISIS_UNIT_TEST))
1949 return 0;
1950
1951 assert(diff >= 0);
1952 assert(area->is_type & level);
1953
1954 if (IS_DEBUG_SPF_EVENTS) {
1955 zlog_debug(
1956 "ISIS-SPF (%s) L%d SPF schedule called, lastrun %ld sec ago Caller: %s %s:%d",
1957 area->area_tag, level, diff, func, file, line);
1958 }
1959
1960 THREAD_OFF(area->t_rlfa_rib_update);
1961 if (area->spf_delay_ietf[level - 1]) {
1962 /* Need to call schedule function also if spf delay is running
1963 * to
1964 * restart holdoff timer - compare
1965 * draft-ietf-rtgwg-backoff-algo-04 */
1966 long delay =
1967 spf_backoff_schedule(area->spf_delay_ietf[level - 1]);
1968 if (area->spf_timer[level - 1])
1969 return ISIS_OK;
1970
1971 thread_add_timer_msec(master, isis_run_spf_cb,
1972 isis_run_spf_arg(area, level), delay,
1973 &area->spf_timer[level - 1]);
1974 return ISIS_OK;
1975 }
1976
1977 if (area->spf_timer[level - 1])
1978 return ISIS_OK;
1979
1980 /* wait configured min_spf_interval before doing the SPF */
1981 long timer;
1982 if (diff >= area->min_spf_interval[level - 1]
1983 || area->bfd_force_spf_refresh) {
1984 /*
1985 * Last run is more than min interval ago or BFD signalled a
1986 * 'down' message, schedule immediate run
1987 */
1988 timer = 0;
1989
1990 if (area->bfd_force_spf_refresh) {
1991 zlog_debug(
1992 "ISIS-SPF (%s) L%d SPF scheduled immediately due to BFD 'down' message",
1993 area->area_tag, level);
1994 area->bfd_force_spf_refresh = false;
1995 }
1996 } else {
1997 timer = area->min_spf_interval[level - 1] - diff;
1998 }
1999
2000 thread_add_timer(master, isis_run_spf_cb, isis_run_spf_arg(area, level),
2001 timer, &area->spf_timer[level - 1]);
2002
2003 if (IS_DEBUG_SPF_EVENTS)
2004 zlog_debug("ISIS-SPF (%s) L%d SPF scheduled %ld sec from now",
2005 area->area_tag, level, timer);
2006
2007 return ISIS_OK;
2008 }
2009
2010 static void isis_print_paths(struct vty *vty, struct isis_vertex_queue *queue,
2011 uint8_t *root_sysid)
2012 {
2013 struct listnode *node;
2014 struct isis_vertex *vertex;
2015 char buff[VID2STR_BUFFER];
2016
2017 vty_out(vty,
2018 "Vertex Type Metric Next-Hop Interface Parent\n");
2019
2020 for (ALL_QUEUE_ELEMENTS_RO(queue, node, vertex)) {
2021 if (VTYPE_IS(vertex->type)
2022 && memcmp(vertex->N.id, root_sysid, ISIS_SYS_ID_LEN) == 0) {
2023 vty_out(vty, "%-20s %-12s %-6s",
2024 print_sys_hostname(root_sysid), "", "");
2025 vty_out(vty, "%-30s\n", "");
2026 continue;
2027 }
2028
2029 int rows = 0;
2030 struct listnode *anode = listhead(vertex->Adj_N);
2031 struct listnode *pnode = listhead(vertex->parents);
2032 struct isis_vertex_adj *vadj;
2033 struct isis_vertex *pvertex;
2034
2035 vty_out(vty, "%-20s %-12s %-6u ",
2036 vid2string(vertex, buff, sizeof(buff)),
2037 vtype2string(vertex->type), vertex->d_N);
2038 for (unsigned int i = 0;
2039 i < MAX(vertex->Adj_N ? listcount(vertex->Adj_N) : 0,
2040 vertex->parents ? listcount(vertex->parents) : 0);
2041 i++) {
2042 if (anode) {
2043 vadj = listgetdata(anode);
2044 anode = anode->next;
2045 } else {
2046 vadj = NULL;
2047 }
2048
2049 if (pnode) {
2050 pvertex = listgetdata(pnode);
2051 pnode = pnode->next;
2052 } else {
2053 pvertex = NULL;
2054 }
2055
2056 if (rows) {
2057 vty_out(vty, "\n");
2058 vty_out(vty, "%-20s %-12s %-6s ", "", "", "");
2059 }
2060
2061 if (vadj) {
2062 struct isis_spf_adj *sadj = vadj->sadj;
2063
2064 vty_out(vty, "%-20s %-9s ",
2065 print_sys_hostname(sadj->id),
2066 sadj->adj ? sadj->adj->circuit
2067 ->interface->name
2068 : "-");
2069 }
2070
2071 if (pvertex) {
2072 if (!vadj)
2073 vty_out(vty, "%-20s %-9s ", "", "");
2074
2075 vty_out(vty, "%s(%d)",
2076 vid2string(pvertex, buff, sizeof(buff)),
2077 pvertex->type);
2078 }
2079
2080 ++rows;
2081 }
2082 vty_out(vty, "\n");
2083 }
2084 }
2085
2086 void isis_print_spftree(struct vty *vty, struct isis_spftree *spftree)
2087 {
2088 const char *tree_id_text = NULL;
2089
2090 if (!spftree || !isis_vertex_queue_count(&spftree->paths))
2091 return;
2092
2093 switch (spftree->tree_id) {
2094 case SPFTREE_IPV4:
2095 tree_id_text = "that speak IP";
2096 break;
2097 case SPFTREE_IPV6:
2098 tree_id_text = "that speak IPv6";
2099 break;
2100 case SPFTREE_DSTSRC:
2101 tree_id_text = "that support IPv6 dst-src routing";
2102 break;
2103 case SPFTREE_COUNT:
2104 assert(!"isis_print_spftree shouldn't be called with SPFTREE_COUNT as type");
2105 return;
2106 }
2107
2108 vty_out(vty, "IS-IS paths to level-%d routers %s\n", spftree->level,
2109 tree_id_text);
2110 isis_print_paths(vty, &spftree->paths, spftree->sysid);
2111 vty_out(vty, "\n");
2112 }
2113
2114 static void show_isis_topology_common(struct vty *vty, int levels,
2115 struct isis *isis)
2116 {
2117 struct listnode *node;
2118 struct isis_area *area;
2119
2120 if (!isis->area_list || isis->area_list->count == 0)
2121 return;
2122
2123 for (ALL_LIST_ELEMENTS_RO(isis->area_list, node, area)) {
2124 vty_out(vty, "Area %s:\n",
2125 area->area_tag ? area->area_tag : "null");
2126
2127 for (int level = ISIS_LEVEL1; level <= ISIS_LEVELS; level++) {
2128 if ((level & levels) == 0)
2129 continue;
2130
2131 if (area->ip_circuits > 0) {
2132 isis_print_spftree(
2133 vty,
2134 area->spftree[SPFTREE_IPV4][level - 1]);
2135 }
2136 if (area->ipv6_circuits > 0) {
2137 isis_print_spftree(
2138 vty,
2139 area->spftree[SPFTREE_IPV6][level - 1]);
2140 }
2141 if (isis_area_ipv6_dstsrc_enabled(area)) {
2142 isis_print_spftree(vty,
2143 area->spftree[SPFTREE_DSTSRC]
2144 [level - 1]);
2145 }
2146 }
2147
2148 if (fabricd_spftree(area)) {
2149 vty_out(vty,
2150 "IS-IS paths to level-2 routers with hop-by-hop metric\n");
2151 isis_print_paths(vty, &fabricd_spftree(area)->paths, isis->sysid);
2152 vty_out(vty, "\n");
2153 }
2154
2155 vty_out(vty, "\n");
2156 }
2157 }
2158
2159 DEFUN(show_isis_topology, show_isis_topology_cmd,
2160 "show " PROTO_NAME
2161 " [vrf <NAME|all>] topology"
2162 #ifndef FABRICD
2163 " [<level-1|level-2>]"
2164 #endif
2165 ,
2166 SHOW_STR PROTO_HELP VRF_CMD_HELP_STR
2167 "All VRFs\n"
2168 "IS-IS paths to Intermediate Systems\n"
2169 #ifndef FABRICD
2170 "Paths to all level-1 routers in the area\n"
2171 "Paths to all level-2 routers in the domain\n"
2172 #endif
2173 )
2174 {
2175 int levels = ISIS_LEVELS;
2176 struct listnode *node;
2177 struct isis *isis = NULL;
2178 int idx = 0;
2179 const char *vrf_name = VRF_DEFAULT_NAME;
2180 bool all_vrf = false;
2181 int idx_vrf = 0;
2182
2183 if (argv_find(argv, argc, "topology", &idx)) {
2184 if (argc < idx + 2)
2185 levels = ISIS_LEVEL1 | ISIS_LEVEL2;
2186 else if (strmatch(argv[idx + 1]->arg, "level-1"))
2187 levels = ISIS_LEVEL1;
2188 else
2189 levels = ISIS_LEVEL2;
2190 }
2191
2192 if (!im) {
2193 vty_out(vty, "IS-IS Routing Process not enabled\n");
2194 return CMD_SUCCESS;
2195 }
2196 ISIS_FIND_VRF_ARGS(argv, argc, idx_vrf, vrf_name, all_vrf);
2197
2198 if (vrf_name) {
2199 if (all_vrf) {
2200 for (ALL_LIST_ELEMENTS_RO(im->isis, node, isis))
2201 show_isis_topology_common(vty, levels, isis);
2202 return CMD_SUCCESS;
2203 }
2204 isis = isis_lookup_by_vrfname(vrf_name);
2205 if (isis != NULL)
2206 show_isis_topology_common(vty, levels, isis);
2207 }
2208
2209 return CMD_SUCCESS;
2210 }
2211
2212 static void isis_print_route(struct ttable *tt, const struct prefix *prefix,
2213 struct isis_route_info *rinfo, bool prefix_sid,
2214 bool no_adjacencies)
2215 {
2216 struct isis_nexthop *nexthop;
2217 struct listnode *node;
2218 bool first = true;
2219 char buf_prefix[BUFSIZ];
2220
2221 (void)prefix2str(prefix, buf_prefix, sizeof(buf_prefix));
2222 for (ALL_LIST_ELEMENTS_RO(rinfo->nexthops, node, nexthop)) {
2223 struct interface *ifp;
2224 char buf_iface[BUFSIZ];
2225 char buf_nhop[BUFSIZ];
2226
2227 if (!no_adjacencies) {
2228 inet_ntop(nexthop->family, &nexthop->ip, buf_nhop,
2229 sizeof(buf_nhop));
2230 ifp = if_lookup_by_index(nexthop->ifindex, VRF_DEFAULT);
2231 if (ifp)
2232 strlcpy(buf_iface, ifp->name,
2233 sizeof(buf_iface));
2234 else
2235 snprintf(buf_iface, sizeof(buf_iface),
2236 "ifindex %u", nexthop->ifindex);
2237 } else {
2238 strlcpy(buf_nhop, print_sys_hostname(nexthop->sysid),
2239 sizeof(buf_nhop));
2240 strlcpy(buf_iface, "-", sizeof(buf_iface));
2241 }
2242
2243 if (prefix_sid) {
2244 char buf_sid[BUFSIZ] = {};
2245 char buf_lblop[BUFSIZ] = {};
2246
2247 if (nexthop->sr.present) {
2248 snprintf(buf_sid, sizeof(buf_sid), "%u",
2249 nexthop->sr.sid.value);
2250 sr_op2str(buf_lblop, sizeof(buf_lblop),
2251 rinfo->sr.label, nexthop->sr.label);
2252 } else {
2253 strlcpy(buf_sid, "-", sizeof(buf_sid));
2254 strlcpy(buf_lblop, "-", sizeof(buf_lblop));
2255 }
2256
2257 if (first) {
2258 ttable_add_row(tt, "%s|%u|%s|%s|%s|%s",
2259 buf_prefix, rinfo->cost,
2260 buf_iface, buf_nhop, buf_sid,
2261 buf_lblop);
2262 first = false;
2263 } else
2264 ttable_add_row(tt, "||%s|%s|%s|%s", buf_iface,
2265 buf_nhop, buf_sid, buf_lblop);
2266 } else {
2267 char buf_labels[BUFSIZ] = {};
2268
2269 if (nexthop->label_stack) {
2270 for (int i = 0;
2271 i < nexthop->label_stack->num_labels;
2272 i++) {
2273 char buf_label[BUFSIZ];
2274
2275 label2str(
2276 nexthop->label_stack->label[i],
2277 buf_label, sizeof(buf_label));
2278 if (i != 0)
2279 strlcat(buf_labels, "/",
2280 sizeof(buf_labels));
2281 strlcat(buf_labels, buf_label,
2282 sizeof(buf_labels));
2283 }
2284 } else if (nexthop->sr.present)
2285 label2str(nexthop->sr.label, buf_labels,
2286 sizeof(buf_labels));
2287 else
2288 strlcpy(buf_labels, "-", sizeof(buf_labels));
2289
2290 if (first) {
2291 ttable_add_row(tt, "%s|%u|%s|%s|%s", buf_prefix,
2292 rinfo->cost, buf_iface, buf_nhop,
2293 buf_labels);
2294 first = false;
2295 } else
2296 ttable_add_row(tt, "||%s|%s|%s", buf_iface,
2297 buf_nhop, buf_labels);
2298 }
2299 }
2300 if (list_isempty(rinfo->nexthops)) {
2301 if (prefix_sid) {
2302 char buf_sid[BUFSIZ] = {};
2303 char buf_lblop[BUFSIZ] = {};
2304
2305 if (rinfo->sr.present) {
2306 snprintf(buf_sid, sizeof(buf_sid), "%u",
2307 rinfo->sr.sid.value);
2308 sr_op2str(buf_lblop, sizeof(buf_lblop),
2309 rinfo->sr.label,
2310 MPLS_LABEL_IMPLICIT_NULL);
2311 } else {
2312 strlcpy(buf_sid, "-", sizeof(buf_sid));
2313 strlcpy(buf_lblop, "-", sizeof(buf_lblop));
2314 }
2315
2316 ttable_add_row(tt, "%s|%u|%s|%s|%s|%s", buf_prefix,
2317 rinfo->cost, "-", "-", buf_sid,
2318 buf_lblop);
2319 } else
2320 ttable_add_row(tt, "%s|%u|%s|%s|%s", buf_prefix,
2321 rinfo->cost, "-", "-", "-");
2322 }
2323 }
2324
2325 void isis_print_routes(struct vty *vty, struct isis_spftree *spftree,
2326 bool prefix_sid, bool backup)
2327 {
2328 struct route_table *route_table;
2329 struct ttable *tt;
2330 struct route_node *rn;
2331 bool no_adjacencies = false;
2332 const char *tree_id_text = NULL;
2333
2334 if (!spftree)
2335 return;
2336
2337 switch (spftree->tree_id) {
2338 case SPFTREE_IPV4:
2339 tree_id_text = "IPv4";
2340 break;
2341 case SPFTREE_IPV6:
2342 tree_id_text = "IPv6";
2343 break;
2344 case SPFTREE_DSTSRC:
2345 tree_id_text = "IPv6 (dst-src routing)";
2346 break;
2347 case SPFTREE_COUNT:
2348 assert(!"isis_print_routes shouldn't be called with SPFTREE_COUNT as type");
2349 return;
2350 }
2351
2352 vty_out(vty, "IS-IS %s %s routing table:\n\n",
2353 circuit_t2string(spftree->level), tree_id_text);
2354
2355 /* Prepare table. */
2356 tt = ttable_new(&ttable_styles[TTSTYLE_BLANK]);
2357 if (prefix_sid)
2358 ttable_add_row(tt, "Prefix|Metric|Interface|Nexthop|SID|Label Op.");
2359 else
2360 ttable_add_row(tt, "Prefix|Metric|Interface|Nexthop|Label(s)");
2361 tt->style.cell.rpad = 2;
2362 tt->style.corner = '+';
2363 ttable_restyle(tt);
2364 ttable_rowseps(tt, 0, BOTTOM, true, '-');
2365
2366 if (CHECK_FLAG(spftree->flags, F_SPFTREE_NO_ADJACENCIES))
2367 no_adjacencies = true;
2368
2369 route_table =
2370 (backup) ? spftree->route_table_backup : spftree->route_table;
2371 for (rn = route_top(route_table); rn; rn = route_next(rn)) {
2372 struct isis_route_info *rinfo;
2373
2374 rinfo = rn->info;
2375 if (!rinfo)
2376 continue;
2377
2378 isis_print_route(tt, &rn->p, rinfo, prefix_sid, no_adjacencies);
2379 }
2380
2381 /* Dump the generated table. */
2382 if (tt->nrows > 1) {
2383 char *table;
2384
2385 table = ttable_dump(tt, "\n");
2386 vty_out(vty, "%s\n", table);
2387 XFREE(MTYPE_TMP, table);
2388 }
2389 ttable_del(tt);
2390 }
2391
2392 static void show_isis_route_common(struct vty *vty, int levels,
2393 struct isis *isis, bool prefix_sid,
2394 bool backup)
2395 {
2396 struct listnode *node;
2397 struct isis_area *area;
2398
2399 if (!isis->area_list || isis->area_list->count == 0)
2400 return;
2401
2402 for (ALL_LIST_ELEMENTS_RO(isis->area_list, node, area)) {
2403 vty_out(vty, "Area %s:\n",
2404 area->area_tag ? area->area_tag : "null");
2405
2406 for (int level = ISIS_LEVEL1; level <= ISIS_LEVELS; level++) {
2407 if ((level & levels) == 0)
2408 continue;
2409
2410 if (area->ip_circuits > 0) {
2411 isis_print_routes(
2412 vty,
2413 area->spftree[SPFTREE_IPV4][level - 1],
2414 prefix_sid, backup);
2415 }
2416 if (area->ipv6_circuits > 0) {
2417 isis_print_routes(
2418 vty,
2419 area->spftree[SPFTREE_IPV6][level - 1],
2420 prefix_sid, backup);
2421 }
2422 if (isis_area_ipv6_dstsrc_enabled(area)) {
2423 isis_print_routes(vty,
2424 area->spftree[SPFTREE_DSTSRC]
2425 [level - 1],
2426 prefix_sid, backup);
2427 }
2428 }
2429 }
2430 }
2431
2432 DEFUN(show_isis_route, show_isis_route_cmd,
2433 "show " PROTO_NAME
2434 " [vrf <NAME|all>] route"
2435 #ifndef FABRICD
2436 " [<level-1|level-2>]"
2437 #endif
2438 " [<prefix-sid|backup>]",
2439 SHOW_STR PROTO_HELP VRF_FULL_CMD_HELP_STR
2440 "IS-IS routing table\n"
2441 #ifndef FABRICD
2442 "level-1 routes\n"
2443 "level-2 routes\n"
2444 #endif
2445 "Show Prefix-SID information\n"
2446 "Show backup routes\n")
2447 {
2448 int levels;
2449 struct isis *isis;
2450 struct listnode *node;
2451 const char *vrf_name = VRF_DEFAULT_NAME;
2452 bool all_vrf = false;
2453 bool prefix_sid = false;
2454 bool backup = false;
2455 int idx = 0;
2456
2457 if (argv_find(argv, argc, "level-1", &idx))
2458 levels = ISIS_LEVEL1;
2459 else if (argv_find(argv, argc, "level-2", &idx))
2460 levels = ISIS_LEVEL2;
2461 else
2462 levels = ISIS_LEVEL1 | ISIS_LEVEL2;
2463
2464 if (!im) {
2465 vty_out(vty, "IS-IS Routing Process not enabled\n");
2466 return CMD_SUCCESS;
2467 }
2468 ISIS_FIND_VRF_ARGS(argv, argc, idx, vrf_name, all_vrf);
2469
2470 if (argv_find(argv, argc, "prefix-sid", &idx))
2471 prefix_sid = true;
2472 if (argv_find(argv, argc, "backup", &idx))
2473 backup = true;
2474
2475 if (vrf_name) {
2476 if (all_vrf) {
2477 for (ALL_LIST_ELEMENTS_RO(im->isis, node, isis))
2478 show_isis_route_common(vty, levels, isis,
2479 prefix_sid, backup);
2480 return CMD_SUCCESS;
2481 }
2482 isis = isis_lookup_by_vrfname(vrf_name);
2483 if (isis != NULL)
2484 show_isis_route_common(vty, levels, isis, prefix_sid,
2485 backup);
2486 }
2487
2488 return CMD_SUCCESS;
2489 }
2490
2491 static void isis_print_frr_summary_line(struct ttable *tt,
2492 const char *protection,
2493 uint32_t counters[SPF_PREFIX_PRIO_MAX])
2494 {
2495 uint32_t critical, high, medium, low, total;
2496
2497 critical = counters[SPF_PREFIX_PRIO_CRITICAL];
2498 high = counters[SPF_PREFIX_PRIO_HIGH];
2499 medium = counters[SPF_PREFIX_PRIO_MEDIUM];
2500 low = counters[SPF_PREFIX_PRIO_LOW];
2501 total = critical + high + medium + low;
2502
2503 ttable_add_row(tt, "%s|%u|%u|%u|%u|%u", protection, critical, high,
2504 medium, low, total);
2505 }
2506
2507 static void
2508 isis_print_frr_summary_line_coverage(struct ttable *tt, const char *protection,
2509 double counters[SPF_PREFIX_PRIO_MAX],
2510 double total)
2511 {
2512 double critical, high, medium, low;
2513
2514 critical = counters[SPF_PREFIX_PRIO_CRITICAL] * 100;
2515 high = counters[SPF_PREFIX_PRIO_HIGH] * 100;
2516 medium = counters[SPF_PREFIX_PRIO_MEDIUM] * 100;
2517 low = counters[SPF_PREFIX_PRIO_LOW] * 100;
2518 total *= 100;
2519
2520 ttable_add_row(tt, "%s|%.2f%%|%.2f%%|%.2f%%|%.2f%%|%.2f%%", protection,
2521 critical, high, medium, low, total);
2522 }
2523
2524 static void isis_print_frr_summary(struct vty *vty,
2525 struct isis_spftree *spftree)
2526 {
2527 struct ttable *tt;
2528 char *table;
2529 const char *tree_id_text = NULL;
2530 uint32_t protectd[SPF_PREFIX_PRIO_MAX] = {0};
2531 uint32_t unprotected[SPF_PREFIX_PRIO_MAX] = {0};
2532 double coverage[SPF_PREFIX_PRIO_MAX] = {0};
2533 uint32_t protected_total = 0, grand_total = 0;
2534 double coverage_total;
2535
2536 if (!spftree)
2537 return;
2538
2539 switch (spftree->tree_id) {
2540 case SPFTREE_IPV4:
2541 tree_id_text = "IPv4";
2542 break;
2543 case SPFTREE_IPV6:
2544 tree_id_text = "IPv6";
2545 break;
2546 case SPFTREE_DSTSRC:
2547 tree_id_text = "IPv6 (dst-src routing)";
2548 break;
2549 case SPFTREE_COUNT:
2550 assert(!"isis_print_frr_summary shouldn't be called with SPFTREE_COUNT as type");
2551 return;
2552 }
2553
2554 vty_out(vty, " IS-IS %s %s Fast ReRoute summary:\n\n",
2555 circuit_t2string(spftree->level), tree_id_text);
2556
2557 /* Prepare table. */
2558 tt = ttable_new(&ttable_styles[TTSTYLE_BLANK]);
2559 ttable_add_row(
2560 tt,
2561 "Protection \\ Priority|Critical|High |Medium |Low |Total");
2562 tt->style.cell.rpad = 2;
2563 tt->style.corner = '+';
2564 ttable_restyle(tt);
2565 ttable_rowseps(tt, 0, BOTTOM, true, '-');
2566
2567 /* Compute unprotected and coverage totals. */
2568 for (int priority = SPF_PREFIX_PRIO_CRITICAL;
2569 priority < SPF_PREFIX_PRIO_MAX; priority++) {
2570 uint32_t *lfa = spftree->lfa.protection_counters.lfa;
2571 uint32_t *rlfa = spftree->lfa.protection_counters.rlfa;
2572 uint32_t *tilfa = spftree->lfa.protection_counters.tilfa;
2573 uint32_t *ecmp = spftree->lfa.protection_counters.ecmp;
2574 uint32_t *total = spftree->lfa.protection_counters.total;
2575
2576 protectd[priority] = lfa[priority] + rlfa[priority]
2577 + tilfa[priority] + ecmp[priority];
2578 /* Safeguard to protect against possible inconsistencies. */
2579 if (protectd[priority] > total[priority])
2580 protectd[priority] = total[priority];
2581 unprotected[priority] = total[priority] - protectd[priority];
2582 protected_total += protectd[priority];
2583 grand_total += total[priority];
2584
2585 if (!total[priority])
2586 coverage[priority] = 0;
2587 else
2588 coverage[priority] =
2589 protectd[priority] / (double)total[priority];
2590 }
2591
2592 if (!grand_total)
2593 coverage_total = 0;
2594 else
2595 coverage_total = protected_total / (double)grand_total;
2596
2597 /* Add rows. */
2598 isis_print_frr_summary_line(tt, "Classic LFA",
2599 spftree->lfa.protection_counters.lfa);
2600 isis_print_frr_summary_line(tt, "Remote LFA",
2601 spftree->lfa.protection_counters.rlfa);
2602 isis_print_frr_summary_line(tt, "Topology Independent LFA",
2603 spftree->lfa.protection_counters.tilfa);
2604 isis_print_frr_summary_line(tt, "ECMP",
2605 spftree->lfa.protection_counters.ecmp);
2606 isis_print_frr_summary_line(tt, "Unprotected", unprotected);
2607 isis_print_frr_summary_line_coverage(tt, "Protection coverage",
2608 coverage, coverage_total);
2609
2610 /* Dump the generated table. */
2611 table = ttable_dump(tt, "\n");
2612 vty_out(vty, "%s\n", table);
2613 XFREE(MTYPE_TMP, table);
2614 ttable_del(tt);
2615 }
2616
2617 static void show_isis_frr_summary_common(struct vty *vty, int levels,
2618 struct isis *isis)
2619 {
2620 struct listnode *node;
2621 struct isis_area *area;
2622
2623 if (!isis->area_list || isis->area_list->count == 0)
2624 return;
2625
2626 for (ALL_LIST_ELEMENTS_RO(isis->area_list, node, area)) {
2627 vty_out(vty, "Area %s:\n",
2628 area->area_tag ? area->area_tag : "null");
2629
2630 for (int level = ISIS_LEVEL1; level <= ISIS_LEVELS; level++) {
2631 if ((level & levels) == 0)
2632 continue;
2633
2634 if (area->ip_circuits > 0) {
2635 isis_print_frr_summary(
2636 vty,
2637 area->spftree[SPFTREE_IPV4][level - 1]);
2638 }
2639 if (area->ipv6_circuits > 0) {
2640 isis_print_frr_summary(
2641 vty,
2642 area->spftree[SPFTREE_IPV6][level - 1]);
2643 }
2644 if (isis_area_ipv6_dstsrc_enabled(area)) {
2645 isis_print_frr_summary(
2646 vty, area->spftree[SPFTREE_DSTSRC]
2647 [level - 1]);
2648 }
2649 }
2650 }
2651 }
2652
2653 DEFUN(show_isis_frr_summary, show_isis_frr_summary_cmd,
2654 "show " PROTO_NAME
2655 " [vrf <NAME|all>] fast-reroute summary"
2656 #ifndef FABRICD
2657 " [<level-1|level-2>]"
2658 #endif
2659 ,
2660 SHOW_STR PROTO_HELP VRF_FULL_CMD_HELP_STR
2661 "IS-IS FRR information\n"
2662 "FRR summary\n"
2663 #ifndef FABRICD
2664 "level-1 routes\n"
2665 "level-2 routes\n"
2666 #endif
2667 )
2668 {
2669 int levels;
2670 struct isis *isis;
2671 struct listnode *node;
2672 const char *vrf_name = VRF_DEFAULT_NAME;
2673 bool all_vrf = false;
2674 int idx = 0;
2675
2676 if (argv_find(argv, argc, "level-1", &idx))
2677 levels = ISIS_LEVEL1;
2678 else if (argv_find(argv, argc, "level-2", &idx))
2679 levels = ISIS_LEVEL2;
2680 else
2681 levels = ISIS_LEVEL1 | ISIS_LEVEL2;
2682
2683 if (!im) {
2684 vty_out(vty, "IS-IS Routing Process not enabled\n");
2685 return CMD_SUCCESS;
2686 }
2687 ISIS_FIND_VRF_ARGS(argv, argc, idx, vrf_name, all_vrf);
2688
2689 if (vrf_name) {
2690 if (all_vrf) {
2691 for (ALL_LIST_ELEMENTS_RO(im->isis, node, isis))
2692 show_isis_frr_summary_common(vty, levels, isis);
2693 return CMD_SUCCESS;
2694 }
2695 isis = isis_lookup_by_vrfname(vrf_name);
2696 if (isis != NULL)
2697 show_isis_frr_summary_common(vty, levels, isis);
2698 }
2699
2700 return CMD_SUCCESS;
2701 }
2702
2703 void isis_spf_init(void)
2704 {
2705 install_element(VIEW_NODE, &show_isis_topology_cmd);
2706 install_element(VIEW_NODE, &show_isis_route_cmd);
2707 install_element(VIEW_NODE, &show_isis_frr_summary_cmd);
2708
2709 /* Register hook(s). */
2710 hook_register(isis_adj_state_change_hook, spf_adj_state_change);
2711 }
2712
2713 void isis_spf_print(struct isis_spftree *spftree, struct vty *vty)
2714 {
2715 vty_out(vty, " last run elapsed : ");
2716 vty_out_timestr(vty, spftree->last_run_timestamp);
2717 vty_out(vty, "\n");
2718
2719 vty_out(vty, " last run duration : %u usec\n",
2720 (uint32_t)spftree->last_run_duration);
2721
2722 vty_out(vty, " run count : %u\n", spftree->runcount);
2723 }
2724 void isis_spf_print_json(struct isis_spftree *spftree, struct json_object *json)
2725 {
2726 char uptime[MONOTIME_STRLEN];
2727 time_t cur;
2728 cur = time(NULL);
2729 cur -= spftree->last_run_timestamp;
2730 frrtime_to_interval(cur, uptime, sizeof(uptime));
2731 json_object_string_add(json, "last-run-elapsed", uptime);
2732 json_object_int_add(json, "last-run-duration-usec",
2733 spftree->last_run_duration);
2734 json_object_int_add(json, "last-run-count", spftree->runcount);
2735 }