]> git.proxmox.com Git - mirror_frr.git/blob - isisd/isisd.c
isisd: retrofit 'router isis' and 'ip router isis' cmds
[mirror_frr.git] / isisd / isisd.c
1 /*
2 * IS-IS Rout(e)ing protocol - isisd.c
3 *
4 * Copyright (C) 2001,2002 Sampo Saaristo
5 * Tampere University of Technology
6 * Institute of Communications Engineering
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public Licenseas published by the Free
10 * Software Foundation; either version 2 of the License, or (at your option)
11 * any later version.
12 *
13 * This program is distributed in the hope that it will be useful,but WITHOUT
14 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 * more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; see the file COPYING; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23 #include <zebra.h>
24
25 #include "thread.h"
26 #include "vty.h"
27 #include "command.h"
28 #include "log.h"
29 #include "memory.h"
30 #include "time.h"
31 #include "linklist.h"
32 #include "if.h"
33 #include "hash.h"
34 #include "stream.h"
35 #include "prefix.h"
36 #include "table.h"
37 #include "qobj.h"
38 #include "spf_backoff.h"
39 #include "lib/northbound_cli.h"
40
41 #include "isisd/dict.h"
42 #include "isisd/isis_constants.h"
43 #include "isisd/isis_common.h"
44 #include "isisd/isis_flags.h"
45 #include "isisd/isis_circuit.h"
46 #include "isisd/isis_csm.h"
47 #include "isisd/isisd.h"
48 #include "isisd/isis_dynhn.h"
49 #include "isisd/isis_adjacency.h"
50 #include "isisd/isis_pdu.h"
51 #include "isisd/isis_misc.h"
52 #include "isisd/isis_constants.h"
53 #include "isisd/isis_lsp.h"
54 #include "isisd/isis_spf.h"
55 #include "isisd/isis_route.h"
56 #include "isisd/isis_zebra.h"
57 #include "isisd/isis_events.h"
58 #include "isisd/isis_te.h"
59 #include "isisd/isis_mt.h"
60 #include "isisd/fabricd.h"
61
62 struct isis *isis = NULL;
63
64 DEFINE_QOBJ_TYPE(isis)
65 DEFINE_QOBJ_TYPE(isis_area)
66
67 /*
68 * Prototypes.
69 */
70 int isis_area_get(struct vty *, const char *);
71 int area_net_title(struct vty *, const char *);
72 int area_clear_net_title(struct vty *, const char *);
73 int show_isis_interface_common(struct vty *, const char *ifname, char);
74 int show_isis_neighbor_common(struct vty *, const char *id, char);
75 int clear_isis_neighbor_common(struct vty *, const char *id);
76 int isis_config_write(struct vty *);
77
78
79 void isis_new(unsigned long process_id)
80 {
81 isis = XCALLOC(MTYPE_ISIS, sizeof(struct isis));
82 /*
83 * Default values
84 */
85 isis->max_area_addrs = 3;
86 isis->process_id = process_id;
87 isis->router_id = 0;
88 isis->area_list = list_new();
89 isis->init_circ_list = list_new();
90 isis->uptime = time(NULL);
91 isis->nexthops = list_new();
92 isis->nexthops6 = list_new();
93 dyn_cache_init();
94 /*
95 * uncomment the next line for full debugs
96 */
97 /* isis->debugs = 0xFFFF; */
98 isisMplsTE.status = disable; /* Only support TE metric */
99
100 QOBJ_REG(isis, isis);
101 }
102
103 struct isis_area *isis_area_create(const char *area_tag)
104 {
105 struct isis_area *area;
106
107 area = XCALLOC(MTYPE_ISIS_AREA, sizeof(struct isis_area));
108
109 /*
110 * Fabricd runs only as level-2.
111 * For IS-IS, the first instance is level-1-2 rest are level-1,
112 * unless otherwise configured
113 */
114 if (fabricd) {
115 area->is_type = IS_LEVEL_2;
116 } else if (listcount(isis->area_list) > 0)
117 area->is_type = IS_LEVEL_1;
118 else
119 area->is_type = IS_LEVEL_1_AND_2;
120
121 /*
122 * intialize the databases
123 */
124 if (area->is_type & IS_LEVEL_1) {
125 area->lspdb[0] = lsp_db_init();
126 }
127 if (area->is_type & IS_LEVEL_2) {
128 area->lspdb[1] = lsp_db_init();
129 }
130
131 spftree_area_init(area);
132
133 area->circuit_list = list_new();
134 area->area_addrs = list_new();
135 thread_add_timer(master, lsp_tick, area, 1, &area->t_tick);
136 flags_initialize(&area->flags);
137
138 /*
139 * Default values
140 */
141 area->max_lsp_lifetime[0] = DEFAULT_LSP_LIFETIME; /* 1200 */
142 area->max_lsp_lifetime[1] = DEFAULT_LSP_LIFETIME; /* 1200 */
143 area->lsp_refresh[0] = DEFAULT_MAX_LSP_GEN_INTERVAL; /* 900 */
144 area->lsp_refresh[1] = DEFAULT_MAX_LSP_GEN_INTERVAL; /* 900 */
145 area->lsp_gen_interval[0] = DEFAULT_MIN_LSP_GEN_INTERVAL;
146 area->lsp_gen_interval[1] = DEFAULT_MIN_LSP_GEN_INTERVAL;
147 area->min_spf_interval[0] = MINIMUM_SPF_INTERVAL;
148 area->min_spf_interval[1] = MINIMUM_SPF_INTERVAL;
149 area->dynhostname = 1;
150 area->oldmetric = 0;
151 area->newmetric = 1;
152 area->lsp_frag_threshold = 90;
153 area->lsp_mtu = DEFAULT_LSP_MTU;
154
155 area_mt_init(area);
156
157 area->area_tag = strdup(area_tag);
158 listnode_add(isis->area_list, area);
159 area->isis = isis;
160
161 if (fabricd)
162 area->fabricd = fabricd_new(area);
163
164 area->lsp_refresh_arg[0].area = area;
165 area->lsp_refresh_arg[0].level = IS_LEVEL_1;
166 area->lsp_refresh_arg[1].area = area;
167 area->lsp_refresh_arg[1].level = IS_LEVEL_2;
168
169
170 QOBJ_REG(area, isis_area);
171
172 return area;
173 }
174
175 struct isis_area *isis_area_lookup(const char *area_tag)
176 {
177 struct isis_area *area;
178 struct listnode *node;
179
180 for (ALL_LIST_ELEMENTS_RO(isis->area_list, node, area))
181 if ((area->area_tag == NULL && area_tag == NULL)
182 || (area->area_tag && area_tag
183 && strcmp(area->area_tag, area_tag) == 0))
184 return area;
185
186 return NULL;
187 }
188
189 int isis_area_get(struct vty *vty, const char *area_tag)
190 {
191 struct isis_area *area;
192
193 area = isis_area_lookup(area_tag);
194
195 if (area) {
196 VTY_PUSH_CONTEXT(ROUTER_NODE, area);
197 return CMD_SUCCESS;
198 }
199
200 area = isis_area_create(area_tag);
201
202 if (isis->debugs & DEBUG_EVENTS)
203 zlog_debug("New IS-IS area instance %s", area->area_tag);
204
205 VTY_PUSH_CONTEXT(ROUTER_NODE, area);
206
207 return CMD_SUCCESS;
208 }
209
210 int isis_area_destroy(const char *area_tag)
211 {
212 struct isis_area *area;
213 struct listnode *node, *nnode;
214 struct isis_circuit *circuit;
215 struct area_addr *addr;
216
217 area = isis_area_lookup(area_tag);
218
219 if (area == NULL) {
220 zlog_warn("%s: could not find area with area-tag %s",
221 __func__, area_tag);
222 return CMD_ERR_NO_MATCH;
223 }
224
225 QOBJ_UNREG(area);
226
227 if (fabricd)
228 fabricd_finish(area->fabricd);
229
230 if (area->circuit_list) {
231 for (ALL_LIST_ELEMENTS(area->circuit_list, node, nnode,
232 circuit)) {
233 circuit->ip_router = 0;
234 circuit->ipv6_router = 0;
235 isis_csm_state_change(ISIS_DISABLE, circuit, area);
236 }
237 list_delete(&area->circuit_list);
238 }
239
240 if (area->lspdb[0] != NULL) {
241 lsp_db_destroy(area->lspdb[0]);
242 area->lspdb[0] = NULL;
243 }
244 if (area->lspdb[1] != NULL) {
245 lsp_db_destroy(area->lspdb[1]);
246 area->lspdb[1] = NULL;
247 }
248
249 /* invalidate and verify to delete all routes from zebra */
250 isis_area_invalidate_routes(area, ISIS_LEVEL1 & ISIS_LEVEL2);
251 isis_area_verify_routes(area);
252
253 spftree_area_del(area);
254
255 THREAD_TIMER_OFF(area->spf_timer[0]);
256 THREAD_TIMER_OFF(area->spf_timer[1]);
257
258 spf_backoff_free(area->spf_delay_ietf[0]);
259 spf_backoff_free(area->spf_delay_ietf[1]);
260
261 isis_redist_area_finish(area);
262
263 for (ALL_LIST_ELEMENTS(area->area_addrs, node, nnode, addr)) {
264 list_delete_node(area->area_addrs, node);
265 XFREE(MTYPE_ISIS_AREA_ADDR, addr);
266 }
267 area->area_addrs = NULL;
268
269 THREAD_TIMER_OFF(area->t_tick);
270 THREAD_TIMER_OFF(area->t_lsp_refresh[0]);
271 THREAD_TIMER_OFF(area->t_lsp_refresh[1]);
272
273 thread_cancel_event(master, area);
274
275 listnode_delete(isis->area_list, area);
276
277 free(area->area_tag);
278
279 area_mt_finish(area);
280
281 XFREE(MTYPE_ISIS_AREA, area);
282
283 if (listcount(isis->area_list) == 0) {
284 memset(isis->sysid, 0, ISIS_SYS_ID_LEN);
285 isis->sysid_set = 0;
286 }
287
288 return CMD_SUCCESS;
289 }
290
291 static void area_set_mt_enabled(struct isis_area *area, uint16_t mtid,
292 bool enabled)
293 {
294 struct isis_area_mt_setting *setting;
295
296 setting = area_get_mt_setting(area, mtid);
297 if (setting->enabled != enabled) {
298 setting->enabled = enabled;
299 lsp_regenerate_schedule(area, IS_LEVEL_1 | IS_LEVEL_2, 0);
300 }
301 }
302
303 static void area_set_mt_overload(struct isis_area *area, uint16_t mtid,
304 bool overload)
305 {
306 struct isis_area_mt_setting *setting;
307
308 setting = area_get_mt_setting(area, mtid);
309 if (setting->overload != overload) {
310 setting->overload = overload;
311 if (setting->enabled)
312 lsp_regenerate_schedule(area, IS_LEVEL_1 | IS_LEVEL_2,
313 0);
314 }
315 }
316
317 int area_net_title(struct vty *vty, const char *net_title)
318 {
319 VTY_DECLVAR_CONTEXT(isis_area, area);
320 struct area_addr *addr;
321 struct area_addr *addrp;
322 struct listnode *node;
323
324 uint8_t buff[255];
325
326 /* We check that we are not over the maximal number of addresses */
327 if (listcount(area->area_addrs) >= isis->max_area_addrs) {
328 vty_out(vty,
329 "Maximum of area addresses (%d) already reached \n",
330 isis->max_area_addrs);
331 return CMD_ERR_NOTHING_TODO;
332 }
333
334 addr = XMALLOC(MTYPE_ISIS_AREA_ADDR, sizeof(struct area_addr));
335 addr->addr_len = dotformat2buff(buff, net_title);
336 memcpy(addr->area_addr, buff, addr->addr_len);
337 #ifdef EXTREME_DEBUG
338 zlog_debug("added area address %s for area %s (address length %d)",
339 net_title, area->area_tag, addr->addr_len);
340 #endif /* EXTREME_DEBUG */
341 if (addr->addr_len < 8 || addr->addr_len > 20) {
342 vty_out(vty,
343 "area address must be at least 8..20 octets long (%d)\n",
344 addr->addr_len);
345 XFREE(MTYPE_ISIS_AREA_ADDR, addr);
346 return CMD_WARNING_CONFIG_FAILED;
347 }
348
349 if (addr->area_addr[addr->addr_len - 1] != 0) {
350 vty_out(vty,
351 "nsel byte (last byte) in area address must be 0\n");
352 XFREE(MTYPE_ISIS_AREA_ADDR, addr);
353 return CMD_WARNING_CONFIG_FAILED;
354 }
355
356 if (isis->sysid_set == 0) {
357 /*
358 * First area address - get the SystemID for this router
359 */
360 memcpy(isis->sysid, GETSYSID(addr), ISIS_SYS_ID_LEN);
361 isis->sysid_set = 1;
362 if (isis->debugs & DEBUG_EVENTS)
363 zlog_debug("Router has SystemID %s",
364 sysid_print(isis->sysid));
365 } else {
366 /*
367 * Check that the SystemID portions match
368 */
369 if (memcmp(isis->sysid, GETSYSID(addr), ISIS_SYS_ID_LEN)) {
370 vty_out(vty,
371 "System ID must not change when defining additional area addresses\n");
372 XFREE(MTYPE_ISIS_AREA_ADDR, addr);
373 return CMD_WARNING_CONFIG_FAILED;
374 }
375
376 /* now we see that we don't already have this address */
377 for (ALL_LIST_ELEMENTS_RO(area->area_addrs, node, addrp)) {
378 if ((addrp->addr_len + ISIS_SYS_ID_LEN + ISIS_NSEL_LEN)
379 != (addr->addr_len))
380 continue;
381 if (!memcmp(addrp->area_addr, addr->area_addr,
382 addr->addr_len)) {
383 XFREE(MTYPE_ISIS_AREA_ADDR, addr);
384 return CMD_SUCCESS; /* silent fail */
385 }
386 }
387 }
388
389 /*
390 * Forget the systemID part of the address
391 */
392 addr->addr_len -= (ISIS_SYS_ID_LEN + ISIS_NSEL_LEN);
393 listnode_add(area->area_addrs, addr);
394
395 /* only now we can safely generate our LSPs for this area */
396 if (listcount(area->area_addrs) > 0) {
397 if (area->is_type & IS_LEVEL_1)
398 lsp_generate(area, IS_LEVEL_1);
399 if (area->is_type & IS_LEVEL_2)
400 lsp_generate(area, IS_LEVEL_2);
401 }
402
403 return CMD_SUCCESS;
404 }
405
406 int area_clear_net_title(struct vty *vty, const char *net_title)
407 {
408 VTY_DECLVAR_CONTEXT(isis_area, area);
409 struct area_addr addr, *addrp = NULL;
410 struct listnode *node;
411 uint8_t buff[255];
412
413 addr.addr_len = dotformat2buff(buff, net_title);
414 if (addr.addr_len < 8 || addr.addr_len > 20) {
415 vty_out(vty,
416 "Unsupported area address length %d, should be 8...20 \n",
417 addr.addr_len);
418 return CMD_WARNING_CONFIG_FAILED;
419 }
420
421 memcpy(addr.area_addr, buff, (int)addr.addr_len);
422
423 for (ALL_LIST_ELEMENTS_RO(area->area_addrs, node, addrp))
424 if ((addrp->addr_len + ISIS_SYS_ID_LEN + 1) == addr.addr_len
425 && !memcmp(addrp->area_addr, addr.area_addr, addr.addr_len))
426 break;
427
428 if (!addrp) {
429 vty_out(vty, "No area address %s for area %s \n", net_title,
430 area->area_tag);
431 return CMD_ERR_NO_MATCH;
432 }
433
434 listnode_delete(area->area_addrs, addrp);
435 XFREE(MTYPE_ISIS_AREA_ADDR, addrp);
436
437 /*
438 * Last area address - reset the SystemID for this router
439 */
440 if (listcount(area->area_addrs) == 0) {
441 memset(isis->sysid, 0, ISIS_SYS_ID_LEN);
442 isis->sysid_set = 0;
443 if (isis->debugs & DEBUG_EVENTS)
444 zlog_debug("Router has no SystemID");
445 }
446
447 return CMD_SUCCESS;
448 }
449
450 /*
451 * 'show isis interface' command
452 */
453
454 int show_isis_interface_common(struct vty *vty, const char *ifname, char detail)
455 {
456 struct listnode *anode, *cnode;
457 struct isis_area *area;
458 struct isis_circuit *circuit;
459
460 if (!isis) {
461 vty_out(vty, "IS-IS Routing Process not enabled\n");
462 return CMD_SUCCESS;
463 }
464
465 for (ALL_LIST_ELEMENTS_RO(isis->area_list, anode, area)) {
466 vty_out(vty, "Area %s:\n", area->area_tag);
467
468 if (detail == ISIS_UI_LEVEL_BRIEF)
469 vty_out(vty,
470 " Interface CircId State Type Level\n");
471
472 for (ALL_LIST_ELEMENTS_RO(area->circuit_list, cnode, circuit))
473 if (!ifname)
474 isis_circuit_print_vty(circuit, vty, detail);
475 else if (strcmp(circuit->interface->name, ifname) == 0)
476 isis_circuit_print_vty(circuit, vty, detail);
477 }
478
479 return CMD_SUCCESS;
480 }
481
482 DEFUN (show_isis_interface,
483 show_isis_interface_cmd,
484 "show " PROTO_NAME " interface",
485 SHOW_STR
486 PROTO_HELP
487 "ISIS interface\n")
488 {
489 return show_isis_interface_common(vty, NULL, ISIS_UI_LEVEL_BRIEF);
490 }
491
492 DEFUN (show_isis_interface_detail,
493 show_isis_interface_detail_cmd,
494 "show " PROTO_NAME " interface detail",
495 SHOW_STR
496 PROTO_HELP
497 "ISIS interface\n"
498 "show detailed information\n")
499 {
500 return show_isis_interface_common(vty, NULL, ISIS_UI_LEVEL_DETAIL);
501 }
502
503 DEFUN (show_isis_interface_arg,
504 show_isis_interface_arg_cmd,
505 "show " PROTO_NAME " interface WORD",
506 SHOW_STR
507 PROTO_HELP
508 "ISIS interface\n"
509 "ISIS interface name\n")
510 {
511 int idx_word = 3;
512 return show_isis_interface_common(vty, argv[idx_word]->arg,
513 ISIS_UI_LEVEL_DETAIL);
514 }
515
516 /*
517 * 'show isis neighbor' command
518 */
519
520 int show_isis_neighbor_common(struct vty *vty, const char *id, char detail)
521 {
522 struct listnode *anode, *cnode, *node;
523 struct isis_area *area;
524 struct isis_circuit *circuit;
525 struct list *adjdb;
526 struct isis_adjacency *adj;
527 struct isis_dynhn *dynhn;
528 uint8_t sysid[ISIS_SYS_ID_LEN];
529 int i;
530
531 if (!isis) {
532 vty_out(vty, "IS-IS Routing Process not enabled\n");
533 return CMD_SUCCESS;
534 }
535
536 memset(sysid, 0, ISIS_SYS_ID_LEN);
537 if (id) {
538 if (sysid2buff(sysid, id) == 0) {
539 dynhn = dynhn_find_by_name(id);
540 if (dynhn == NULL) {
541 vty_out(vty, "Invalid system id %s\n", id);
542 return CMD_SUCCESS;
543 }
544 memcpy(sysid, dynhn->id, ISIS_SYS_ID_LEN);
545 }
546 }
547
548 for (ALL_LIST_ELEMENTS_RO(isis->area_list, anode, area)) {
549 vty_out(vty, "Area %s:\n", area->area_tag);
550
551 if (detail == ISIS_UI_LEVEL_BRIEF)
552 vty_out(vty,
553 " System Id Interface L State Holdtime SNPA\n");
554
555 for (ALL_LIST_ELEMENTS_RO(area->circuit_list, cnode, circuit)) {
556 if (circuit->circ_type == CIRCUIT_T_BROADCAST) {
557 for (i = 0; i < 2; i++) {
558 adjdb = circuit->u.bc.adjdb[i];
559 if (adjdb && adjdb->count) {
560 for (ALL_LIST_ELEMENTS_RO(
561 adjdb, node, adj))
562 if (!id
563 || !memcmp(adj->sysid,
564 sysid,
565 ISIS_SYS_ID_LEN))
566 isis_adj_print_vty(
567 adj,
568 vty,
569 detail);
570 }
571 }
572 } else if (circuit->circ_type == CIRCUIT_T_P2P
573 && circuit->u.p2p.neighbor) {
574 adj = circuit->u.p2p.neighbor;
575 if (!id
576 || !memcmp(adj->sysid, sysid,
577 ISIS_SYS_ID_LEN))
578 isis_adj_print_vty(adj, vty, detail);
579 }
580 }
581 }
582
583 return CMD_SUCCESS;
584 }
585
586 /*
587 * 'clear isis neighbor' command
588 */
589 int clear_isis_neighbor_common(struct vty *vty, const char *id)
590 {
591 struct listnode *anode, *cnode, *cnextnode, *node, *nnode;
592 struct isis_area *area;
593 struct isis_circuit *circuit;
594 struct list *adjdb;
595 struct isis_adjacency *adj;
596 struct isis_dynhn *dynhn;
597 uint8_t sysid[ISIS_SYS_ID_LEN];
598 int i;
599
600 if (!isis) {
601 vty_out(vty, "IS-IS Routing Process not enabled\n");
602 return CMD_SUCCESS;
603 }
604
605 memset(sysid, 0, ISIS_SYS_ID_LEN);
606 if (id) {
607 if (sysid2buff(sysid, id) == 0) {
608 dynhn = dynhn_find_by_name(id);
609 if (dynhn == NULL) {
610 vty_out(vty, "Invalid system id %s\n", id);
611 return CMD_SUCCESS;
612 }
613 memcpy(sysid, dynhn->id, ISIS_SYS_ID_LEN);
614 }
615 }
616
617 for (ALL_LIST_ELEMENTS_RO(isis->area_list, anode, area)) {
618 for (ALL_LIST_ELEMENTS(area->circuit_list, cnode, cnextnode,
619 circuit)) {
620 if (circuit->circ_type == CIRCUIT_T_BROADCAST) {
621 for (i = 0; i < 2; i++) {
622 adjdb = circuit->u.bc.adjdb[i];
623 if (adjdb && adjdb->count) {
624 for (ALL_LIST_ELEMENTS(
625 adjdb, node, nnode,
626 adj))
627 if (!id
628 || !memcmp(adj->sysid,
629 sysid,
630 ISIS_SYS_ID_LEN))
631 isis_adj_state_change(
632 adj,
633 ISIS_ADJ_DOWN,
634 "clear user request");
635 }
636 }
637 } else if (circuit->circ_type == CIRCUIT_T_P2P
638 && circuit->u.p2p.neighbor) {
639 adj = circuit->u.p2p.neighbor;
640 if (!id
641 || !memcmp(adj->sysid, sysid,
642 ISIS_SYS_ID_LEN))
643 isis_adj_state_change(
644 adj, ISIS_ADJ_DOWN,
645 "clear user request");
646 }
647 }
648 }
649
650 return CMD_SUCCESS;
651 }
652
653 DEFUN (show_isis_neighbor,
654 show_isis_neighbor_cmd,
655 "show " PROTO_NAME " neighbor",
656 SHOW_STR
657 PROTO_HELP
658 "ISIS neighbor adjacencies\n")
659 {
660 return show_isis_neighbor_common(vty, NULL, ISIS_UI_LEVEL_BRIEF);
661 }
662
663 DEFUN (show_isis_neighbor_detail,
664 show_isis_neighbor_detail_cmd,
665 "show " PROTO_NAME " neighbor detail",
666 SHOW_STR
667 PROTO_HELP
668 "ISIS neighbor adjacencies\n"
669 "show detailed information\n")
670 {
671 return show_isis_neighbor_common(vty, NULL, ISIS_UI_LEVEL_DETAIL);
672 }
673
674 DEFUN (show_isis_neighbor_arg,
675 show_isis_neighbor_arg_cmd,
676 "show " PROTO_NAME " neighbor WORD",
677 SHOW_STR
678 PROTO_HELP
679 "ISIS neighbor adjacencies\n"
680 "System id\n")
681 {
682 int idx_word = 3;
683 return show_isis_neighbor_common(vty, argv[idx_word]->arg,
684 ISIS_UI_LEVEL_DETAIL);
685 }
686
687 DEFUN (clear_isis_neighbor,
688 clear_isis_neighbor_cmd,
689 "clear " PROTO_NAME " neighbor",
690 CLEAR_STR
691 PROTO_HELP
692 "ISIS neighbor adjacencies\n")
693 {
694 return clear_isis_neighbor_common(vty, NULL);
695 }
696
697 DEFUN (clear_isis_neighbor_arg,
698 clear_isis_neighbor_arg_cmd,
699 "clear " PROTO_NAME " neighbor WORD",
700 CLEAR_STR
701 PROTO_HELP
702 "ISIS neighbor adjacencies\n"
703 "System id\n")
704 {
705 int idx_word = 3;
706 return clear_isis_neighbor_common(vty, argv[idx_word]->arg);
707 }
708
709 /*
710 * 'isis debug', 'show debugging'
711 */
712 void print_debug(struct vty *vty, int flags, int onoff)
713 {
714 char onoffs[4];
715 if (onoff)
716 strcpy(onoffs, "on");
717 else
718 strcpy(onoffs, "off");
719
720 if (flags & DEBUG_ADJ_PACKETS)
721 vty_out(vty,
722 "IS-IS Adjacency related packets debugging is %s\n",
723 onoffs);
724 if (flags & DEBUG_TX_QUEUE)
725 vty_out(vty, "IS-IS TX queue debugging is %s\n",
726 onoffs);
727 if (flags & DEBUG_SNP_PACKETS)
728 vty_out(vty, "IS-IS CSNP/PSNP packets debugging is %s\n",
729 onoffs);
730 if (flags & DEBUG_SPF_EVENTS)
731 vty_out(vty, "IS-IS SPF events debugging is %s\n", onoffs);
732 if (flags & DEBUG_UPDATE_PACKETS)
733 vty_out(vty, "IS-IS Update related packet debugging is %s\n",
734 onoffs);
735 if (flags & DEBUG_RTE_EVENTS)
736 vty_out(vty, "IS-IS Route related debuggin is %s\n", onoffs);
737 if (flags & DEBUG_EVENTS)
738 vty_out(vty, "IS-IS Event debugging is %s\n", onoffs);
739 if (flags & DEBUG_PACKET_DUMP)
740 vty_out(vty, "IS-IS Packet dump debugging is %s\n", onoffs);
741 if (flags & DEBUG_LSP_GEN)
742 vty_out(vty, "IS-IS LSP generation debugging is %s\n", onoffs);
743 if (flags & DEBUG_LSP_SCHED)
744 vty_out(vty, "IS-IS LSP scheduling debugging is %s\n", onoffs);
745 if (flags & DEBUG_FLOODING)
746 vty_out(vty, "IS-IS Flooding debugging is %s\n", onoffs);
747 if (flags & DEBUG_BFD)
748 vty_out(vty, "IS-IS BFD debugging is %s\n", onoffs);
749 }
750
751 DEFUN_NOSH (show_debugging,
752 show_debugging_isis_cmd,
753 "show debugging [" PROTO_NAME "]",
754 SHOW_STR
755 "State of each debugging option\n"
756 PROTO_HELP)
757 {
758 vty_out(vty, PROTO_NAME " debugging status:\n");
759
760 if (isis->debugs)
761 print_debug(vty, isis->debugs, 1);
762
763 return CMD_SUCCESS;
764 }
765
766 /* Debug node. */
767 static struct cmd_node debug_node = {DEBUG_NODE, "", 1};
768
769 static int config_write_debug(struct vty *vty)
770 {
771 int write = 0;
772 int flags = isis->debugs;
773
774 if (flags & DEBUG_ADJ_PACKETS) {
775 vty_out(vty, "debug " PROTO_NAME " adj-packets\n");
776 write++;
777 }
778 if (flags & DEBUG_TX_QUEUE) {
779 vty_out(vty, "debug " PROTO_NAME " tx-queue\n");
780 write++;
781 }
782 if (flags & DEBUG_SNP_PACKETS) {
783 vty_out(vty, "debug " PROTO_NAME " snp-packets\n");
784 write++;
785 }
786 if (flags & DEBUG_SPF_EVENTS) {
787 vty_out(vty, "debug " PROTO_NAME " spf-events\n");
788 write++;
789 }
790 if (flags & DEBUG_UPDATE_PACKETS) {
791 vty_out(vty, "debug " PROTO_NAME " update-packets\n");
792 write++;
793 }
794 if (flags & DEBUG_RTE_EVENTS) {
795 vty_out(vty, "debug " PROTO_NAME " route-events\n");
796 write++;
797 }
798 if (flags & DEBUG_EVENTS) {
799 vty_out(vty, "debug " PROTO_NAME " events\n");
800 write++;
801 }
802 if (flags & DEBUG_PACKET_DUMP) {
803 vty_out(vty, "debug " PROTO_NAME " packet-dump\n");
804 write++;
805 }
806 if (flags & DEBUG_LSP_GEN) {
807 vty_out(vty, "debug " PROTO_NAME " lsp-gen\n");
808 write++;
809 }
810 if (flags & DEBUG_LSP_SCHED) {
811 vty_out(vty, "debug " PROTO_NAME " lsp-sched\n");
812 write++;
813 }
814 if (flags & DEBUG_FLOODING) {
815 vty_out(vty, "debug " PROTO_NAME " flooding\n");
816 write++;
817 }
818 if (flags & DEBUG_BFD) {
819 vty_out(vty, "debug " PROTO_NAME " bfd\n");
820 write++;
821 }
822 write += spf_backoff_write_config(vty);
823
824 return write;
825 }
826
827 DEFUN (debug_isis_adj,
828 debug_isis_adj_cmd,
829 "debug " PROTO_NAME " adj-packets",
830 DEBUG_STR
831 PROTO_HELP
832 "IS-IS Adjacency related packets\n")
833 {
834 isis->debugs |= DEBUG_ADJ_PACKETS;
835 print_debug(vty, DEBUG_ADJ_PACKETS, 1);
836
837 return CMD_SUCCESS;
838 }
839
840 DEFUN (no_debug_isis_adj,
841 no_debug_isis_adj_cmd,
842 "no debug " PROTO_NAME " adj-packets",
843 NO_STR
844 UNDEBUG_STR
845 PROTO_HELP
846 "IS-IS Adjacency related packets\n")
847 {
848 isis->debugs &= ~DEBUG_ADJ_PACKETS;
849 print_debug(vty, DEBUG_ADJ_PACKETS, 0);
850
851 return CMD_SUCCESS;
852 }
853
854 DEFUN (debug_isis_tx_queue,
855 debug_isis_tx_queue_cmd,
856 "debug " PROTO_NAME " tx-queue",
857 DEBUG_STR
858 PROTO_HELP
859 "IS-IS TX queues\n")
860 {
861 isis->debugs |= DEBUG_TX_QUEUE;
862 print_debug(vty, DEBUG_TX_QUEUE, 1);
863
864 return CMD_SUCCESS;
865 }
866
867 DEFUN (no_debug_isis_tx_queue,
868 no_debug_isis_tx_queue_cmd,
869 "no debug " PROTO_NAME " tx-queue",
870 NO_STR
871 UNDEBUG_STR
872 PROTO_HELP
873 "IS-IS TX queues\n")
874 {
875 isis->debugs &= ~DEBUG_TX_QUEUE;
876 print_debug(vty, DEBUG_TX_QUEUE, 0);
877
878 return CMD_SUCCESS;
879 }
880
881 DEFUN (debug_isis_flooding,
882 debug_isis_flooding_cmd,
883 "debug " PROTO_NAME " flooding",
884 DEBUG_STR
885 PROTO_HELP
886 "Flooding algorithm\n")
887 {
888 isis->debugs |= DEBUG_FLOODING;
889 print_debug(vty, DEBUG_FLOODING, 1);
890
891 return CMD_SUCCESS;
892 }
893
894 DEFUN (no_debug_isis_flooding,
895 no_debug_isis_flooding_cmd,
896 "no debug " PROTO_NAME " flooding",
897 NO_STR
898 UNDEBUG_STR
899 PROTO_HELP
900 "Flooding algorithm\n")
901 {
902 isis->debugs &= ~DEBUG_FLOODING;
903 print_debug(vty, DEBUG_FLOODING, 0);
904
905 return CMD_SUCCESS;
906 }
907
908 DEFUN (debug_isis_snp,
909 debug_isis_snp_cmd,
910 "debug " PROTO_NAME " snp-packets",
911 DEBUG_STR
912 PROTO_HELP
913 "IS-IS CSNP/PSNP packets\n")
914 {
915 isis->debugs |= DEBUG_SNP_PACKETS;
916 print_debug(vty, DEBUG_SNP_PACKETS, 1);
917
918 return CMD_SUCCESS;
919 }
920
921 DEFUN (no_debug_isis_snp,
922 no_debug_isis_snp_cmd,
923 "no debug " PROTO_NAME " snp-packets",
924 NO_STR
925 UNDEBUG_STR
926 PROTO_HELP
927 "IS-IS CSNP/PSNP packets\n")
928 {
929 isis->debugs &= ~DEBUG_SNP_PACKETS;
930 print_debug(vty, DEBUG_SNP_PACKETS, 0);
931
932 return CMD_SUCCESS;
933 }
934
935 DEFUN (debug_isis_upd,
936 debug_isis_upd_cmd,
937 "debug " PROTO_NAME " update-packets",
938 DEBUG_STR
939 PROTO_HELP
940 "IS-IS Update related packets\n")
941 {
942 isis->debugs |= DEBUG_UPDATE_PACKETS;
943 print_debug(vty, DEBUG_UPDATE_PACKETS, 1);
944
945 return CMD_SUCCESS;
946 }
947
948 DEFUN (no_debug_isis_upd,
949 no_debug_isis_upd_cmd,
950 "no debug " PROTO_NAME " update-packets",
951 NO_STR
952 UNDEBUG_STR
953 PROTO_HELP
954 "IS-IS Update related packets\n")
955 {
956 isis->debugs &= ~DEBUG_UPDATE_PACKETS;
957 print_debug(vty, DEBUG_UPDATE_PACKETS, 0);
958
959 return CMD_SUCCESS;
960 }
961
962 DEFUN (debug_isis_spfevents,
963 debug_isis_spfevents_cmd,
964 "debug " PROTO_NAME " spf-events",
965 DEBUG_STR
966 PROTO_HELP
967 "IS-IS Shortest Path First Events\n")
968 {
969 isis->debugs |= DEBUG_SPF_EVENTS;
970 print_debug(vty, DEBUG_SPF_EVENTS, 1);
971
972 return CMD_SUCCESS;
973 }
974
975 DEFUN (no_debug_isis_spfevents,
976 no_debug_isis_spfevents_cmd,
977 "no debug " PROTO_NAME " spf-events",
978 NO_STR
979 UNDEBUG_STR
980 PROTO_HELP
981 "IS-IS Shortest Path First Events\n")
982 {
983 isis->debugs &= ~DEBUG_SPF_EVENTS;
984 print_debug(vty, DEBUG_SPF_EVENTS, 0);
985
986 return CMD_SUCCESS;
987 }
988
989 DEFUN (debug_isis_rtevents,
990 debug_isis_rtevents_cmd,
991 "debug " PROTO_NAME " route-events",
992 DEBUG_STR
993 PROTO_HELP
994 "IS-IS Route related events\n")
995 {
996 isis->debugs |= DEBUG_RTE_EVENTS;
997 print_debug(vty, DEBUG_RTE_EVENTS, 1);
998
999 return CMD_SUCCESS;
1000 }
1001
1002 DEFUN (no_debug_isis_rtevents,
1003 no_debug_isis_rtevents_cmd,
1004 "no debug " PROTO_NAME " route-events",
1005 NO_STR
1006 UNDEBUG_STR
1007 PROTO_HELP
1008 "IS-IS Route related events\n")
1009 {
1010 isis->debugs &= ~DEBUG_RTE_EVENTS;
1011 print_debug(vty, DEBUG_RTE_EVENTS, 0);
1012
1013 return CMD_SUCCESS;
1014 }
1015
1016 DEFUN (debug_isis_events,
1017 debug_isis_events_cmd,
1018 "debug " PROTO_NAME " events",
1019 DEBUG_STR
1020 PROTO_HELP
1021 "IS-IS Events\n")
1022 {
1023 isis->debugs |= DEBUG_EVENTS;
1024 print_debug(vty, DEBUG_EVENTS, 1);
1025
1026 return CMD_SUCCESS;
1027 }
1028
1029 DEFUN (no_debug_isis_events,
1030 no_debug_isis_events_cmd,
1031 "no debug " PROTO_NAME " events",
1032 NO_STR
1033 UNDEBUG_STR
1034 PROTO_HELP
1035 "IS-IS Events\n")
1036 {
1037 isis->debugs &= ~DEBUG_EVENTS;
1038 print_debug(vty, DEBUG_EVENTS, 0);
1039
1040 return CMD_SUCCESS;
1041 }
1042
1043 DEFUN (debug_isis_packet_dump,
1044 debug_isis_packet_dump_cmd,
1045 "debug " PROTO_NAME " packet-dump",
1046 DEBUG_STR
1047 PROTO_HELP
1048 "IS-IS packet dump\n")
1049 {
1050 isis->debugs |= DEBUG_PACKET_DUMP;
1051 print_debug(vty, DEBUG_PACKET_DUMP, 1);
1052
1053 return CMD_SUCCESS;
1054 }
1055
1056 DEFUN (no_debug_isis_packet_dump,
1057 no_debug_isis_packet_dump_cmd,
1058 "no debug " PROTO_NAME " packet-dump",
1059 NO_STR
1060 UNDEBUG_STR
1061 PROTO_HELP
1062 "IS-IS packet dump\n")
1063 {
1064 isis->debugs &= ~DEBUG_PACKET_DUMP;
1065 print_debug(vty, DEBUG_PACKET_DUMP, 0);
1066
1067 return CMD_SUCCESS;
1068 }
1069
1070 DEFUN (debug_isis_lsp_gen,
1071 debug_isis_lsp_gen_cmd,
1072 "debug " PROTO_NAME " lsp-gen",
1073 DEBUG_STR
1074 PROTO_HELP
1075 "IS-IS generation of own LSPs\n")
1076 {
1077 isis->debugs |= DEBUG_LSP_GEN;
1078 print_debug(vty, DEBUG_LSP_GEN, 1);
1079
1080 return CMD_SUCCESS;
1081 }
1082
1083 DEFUN (no_debug_isis_lsp_gen,
1084 no_debug_isis_lsp_gen_cmd,
1085 "no debug " PROTO_NAME " lsp-gen",
1086 NO_STR
1087 UNDEBUG_STR
1088 PROTO_HELP
1089 "IS-IS generation of own LSPs\n")
1090 {
1091 isis->debugs &= ~DEBUG_LSP_GEN;
1092 print_debug(vty, DEBUG_LSP_GEN, 0);
1093
1094 return CMD_SUCCESS;
1095 }
1096
1097 DEFUN (debug_isis_lsp_sched,
1098 debug_isis_lsp_sched_cmd,
1099 "debug " PROTO_NAME " lsp-sched",
1100 DEBUG_STR
1101 PROTO_HELP
1102 "IS-IS scheduling of LSP generation\n")
1103 {
1104 isis->debugs |= DEBUG_LSP_SCHED;
1105 print_debug(vty, DEBUG_LSP_SCHED, 1);
1106
1107 return CMD_SUCCESS;
1108 }
1109
1110 DEFUN (no_debug_isis_lsp_sched,
1111 no_debug_isis_lsp_sched_cmd,
1112 "no debug " PROTO_NAME " lsp-sched",
1113 NO_STR
1114 UNDEBUG_STR
1115 PROTO_HELP
1116 "IS-IS scheduling of LSP generation\n")
1117 {
1118 isis->debugs &= ~DEBUG_LSP_SCHED;
1119 print_debug(vty, DEBUG_LSP_SCHED, 0);
1120
1121 return CMD_SUCCESS;
1122 }
1123
1124 DEFUN (debug_isis_bfd,
1125 debug_isis_bfd_cmd,
1126 "debug " PROTO_NAME " bfd",
1127 DEBUG_STR
1128 PROTO_HELP
1129 PROTO_NAME " interaction with BFD\n")
1130 {
1131 isis->debugs |= DEBUG_BFD;
1132 print_debug(vty, DEBUG_BFD, 1);
1133
1134 return CMD_SUCCESS;
1135 }
1136
1137 DEFUN (no_debug_isis_bfd,
1138 no_debug_isis_bfd_cmd,
1139 "no debug " PROTO_NAME " bfd",
1140 NO_STR
1141 UNDEBUG_STR
1142 PROTO_HELP
1143 PROTO_NAME " interaction with BFD\n")
1144 {
1145 isis->debugs &= ~DEBUG_BFD;
1146 print_debug(vty, DEBUG_BFD, 0);
1147
1148 return CMD_SUCCESS;
1149 }
1150
1151 DEFUN (show_hostname,
1152 show_hostname_cmd,
1153 "show " PROTO_NAME " hostname",
1154 SHOW_STR
1155 PROTO_HELP
1156 "IS-IS Dynamic hostname mapping\n")
1157 {
1158 dynhn_print_all(vty);
1159
1160 return CMD_SUCCESS;
1161 }
1162
1163 DEFUN (show_isis_spf_ietf,
1164 show_isis_spf_ietf_cmd,
1165 "show " PROTO_NAME " spf-delay-ietf",
1166 SHOW_STR
1167 PROTO_HELP
1168 "SPF delay IETF information\n")
1169 {
1170 if (!isis) {
1171 vty_out(vty, "ISIS is not running\n");
1172 return CMD_SUCCESS;
1173 }
1174
1175 struct listnode *node;
1176 struct isis_area *area;
1177
1178 for (ALL_LIST_ELEMENTS_RO(isis->area_list, node, area)) {
1179 vty_out(vty, "Area %s:\n",
1180 area->area_tag ? area->area_tag : "null");
1181
1182 for (int level = ISIS_LEVEL1; level <= ISIS_LEVELS; level++) {
1183 if ((area->is_type & level) == 0)
1184 continue;
1185
1186 vty_out(vty, " Level-%d:\n", level);
1187 vty_out(vty, " SPF delay status: ");
1188 if (area->spf_timer[level - 1]) {
1189 struct timeval remain = thread_timer_remain(
1190 area->spf_timer[level - 1]);
1191 vty_out(vty, "Pending, due in %lld msec\n",
1192 (long long)remain.tv_sec * 1000
1193 + remain.tv_usec / 1000);
1194 } else {
1195 vty_out(vty, "Not scheduled\n");
1196 }
1197
1198 if (area->spf_delay_ietf[level - 1]) {
1199 vty_out(vty,
1200 " Using draft-ietf-rtgwg-backoff-algo-04\n");
1201 spf_backoff_show(
1202 area->spf_delay_ietf[level - 1], vty,
1203 " ");
1204 } else {
1205 vty_out(vty, " Using legacy backoff algo\n");
1206 }
1207 }
1208 }
1209 return CMD_SUCCESS;
1210 }
1211
1212 DEFUN (show_isis_summary,
1213 show_isis_summary_cmd,
1214 "show " PROTO_NAME " summary",
1215 SHOW_STR PROTO_HELP "summary\n")
1216 {
1217 struct listnode *node, *node2;
1218 struct isis_area *area;
1219 int level;
1220
1221 if (isis == NULL) {
1222 vty_out(vty, PROTO_NAME " is not running\n");
1223 return CMD_SUCCESS;
1224 }
1225
1226 vty_out(vty, "Process Id : %ld\n", isis->process_id);
1227 if (isis->sysid_set)
1228 vty_out(vty, "System Id : %s\n",
1229 sysid_print(isis->sysid));
1230
1231 vty_out(vty, "Up time : ");
1232 vty_out_timestr(vty, isis->uptime);
1233 vty_out(vty, "\n");
1234
1235 if (isis->area_list)
1236 vty_out(vty, "Number of areas : %d\n", isis->area_list->count);
1237
1238 for (ALL_LIST_ELEMENTS_RO(isis->area_list, node, area)) {
1239 vty_out(vty, "Area %s:\n",
1240 area->area_tag ? area->area_tag : "null");
1241
1242 if (fabricd) {
1243 uint8_t tier = fabricd_tier(area);
1244 if (tier == ISIS_TIER_UNDEFINED)
1245 vty_out(vty, " Tier: undefined\n");
1246 else
1247 vty_out(vty, " Tier: %" PRIu8 "\n", tier);
1248 }
1249
1250 if (listcount(area->area_addrs) > 0) {
1251 struct area_addr *area_addr;
1252 for (ALL_LIST_ELEMENTS_RO(area->area_addrs, node2,
1253 area_addr)) {
1254 vty_out(vty, " Net: %s\n",
1255 isonet_print(area_addr->area_addr,
1256 area_addr->addr_len
1257 + ISIS_SYS_ID_LEN
1258 + 1));
1259 }
1260 }
1261
1262 vty_out(vty, " TX counters per PDU type:\n");
1263 pdu_counter_print(vty, " ", area->pdu_tx_counters);
1264 vty_out(vty, " LSP RXMT: %" PRIu64 "\n",
1265 area->lsp_rxmt_count);
1266 vty_out(vty, " RX counters per PDU type:\n");
1267 pdu_counter_print(vty, " ", area->pdu_rx_counters);
1268
1269 for (level = ISIS_LEVEL1; level <= ISIS_LEVELS; level++) {
1270 if ((area->is_type & level) == 0)
1271 continue;
1272
1273 vty_out(vty, " Level-%d:\n", level);
1274
1275 vty_out(vty, " LSP0 regenerated: %" PRIu64 "\n",
1276 area->lsp_gen_count[level - 1]);
1277
1278 vty_out(vty, " LSPs purged: %" PRIu64 "\n",
1279 area->lsp_purge_count[level - 1]);
1280
1281 if (area->spf_timer[level - 1])
1282 vty_out(vty, " SPF: (pending)\n");
1283 else
1284 vty_out(vty, " SPF:\n");
1285
1286 vty_out(vty, " minimum interval : %d",
1287 area->min_spf_interval[level - 1]);
1288 if (area->spf_delay_ietf[level - 1])
1289 vty_out(vty,
1290 " (not used, IETF SPF delay activated)");
1291 vty_out(vty, "\n");
1292
1293 vty_out(vty, " IPv4 route computation:\n");
1294 isis_spf_print(area->spftree[SPFTREE_IPV4][level - 1],
1295 vty);
1296
1297 vty_out(vty, " IPv6 route computation:\n");
1298 isis_spf_print(area->spftree[SPFTREE_IPV6][level - 1],
1299 vty);
1300
1301 vty_out(vty, " IPv6 dst-src route computation:\n");
1302 isis_spf_print(area->spftree[SPFTREE_DSTSRC][level-1],
1303 vty);
1304 }
1305 }
1306 vty_out(vty, "\n");
1307
1308 return CMD_SUCCESS;
1309 }
1310
1311 struct isis_lsp *lsp_for_arg(const char *argv, dict_t *lspdb)
1312 {
1313 char sysid[255] = {0};
1314 uint8_t number[3];
1315 const char *pos;
1316 uint8_t lspid[ISIS_SYS_ID_LEN + 2] = {0};
1317 struct isis_dynhn *dynhn;
1318 struct isis_lsp *lsp = NULL;
1319
1320 if (!argv)
1321 return NULL;
1322
1323 /*
1324 * extract fragment and pseudo id from the string argv
1325 * in the forms:
1326 * (a) <systemid/hostname>.<pseudo-id>-<framenent> or
1327 * (b) <systemid/hostname>.<pseudo-id> or
1328 * (c) <systemid/hostname> or
1329 * Where systemid is in the form:
1330 * xxxx.xxxx.xxxx
1331 */
1332 if (argv)
1333 strncpy(sysid, argv, 254);
1334 if (argv && strlen(argv) > 3) {
1335 pos = argv + strlen(argv) - 3;
1336 if (strncmp(pos, "-", 1) == 0) {
1337 memcpy(number, ++pos, 2);
1338 lspid[ISIS_SYS_ID_LEN + 1] =
1339 (uint8_t)strtol((char *)number, NULL, 16);
1340 pos -= 4;
1341 if (strncmp(pos, ".", 1) != 0)
1342 return NULL;
1343 }
1344 if (strncmp(pos, ".", 1) == 0) {
1345 memcpy(number, ++pos, 2);
1346 lspid[ISIS_SYS_ID_LEN] =
1347 (uint8_t)strtol((char *)number, NULL, 16);
1348 sysid[pos - argv - 1] = '\0';
1349 }
1350 }
1351
1352 /*
1353 * Try to find the lsp-id if the argv
1354 * string is in
1355 * the form
1356 * hostname.<pseudo-id>-<fragment>
1357 */
1358 if (sysid2buff(lspid, sysid)) {
1359 lsp = lsp_search(lspid, lspdb);
1360 } else if ((dynhn = dynhn_find_by_name(sysid))) {
1361 memcpy(lspid, dynhn->id, ISIS_SYS_ID_LEN);
1362 lsp = lsp_search(lspid, lspdb);
1363 } else if (strncmp(cmd_hostname_get(), sysid, 15) == 0) {
1364 memcpy(lspid, isis->sysid, ISIS_SYS_ID_LEN);
1365 lsp = lsp_search(lspid, lspdb);
1366 }
1367
1368 return lsp;
1369 }
1370
1371 /*
1372 * This function supports following display options:
1373 * [ show isis database [detail] ]
1374 * [ show isis database <sysid> [detail] ]
1375 * [ show isis database <hostname> [detail] ]
1376 * [ show isis database <sysid>.<pseudo-id> [detail] ]
1377 * [ show isis database <hostname>.<pseudo-id> [detail] ]
1378 * [ show isis database <sysid>.<pseudo-id>-<fragment-number> [detail] ]
1379 * [ show isis database <hostname>.<pseudo-id>-<fragment-number> [detail] ]
1380 * [ show isis database detail <sysid> ]
1381 * [ show isis database detail <hostname> ]
1382 * [ show isis database detail <sysid>.<pseudo-id> ]
1383 * [ show isis database detail <hostname>.<pseudo-id> ]
1384 * [ show isis database detail <sysid>.<pseudo-id>-<fragment-number> ]
1385 * [ show isis database detail <hostname>.<pseudo-id>-<fragment-number> ]
1386 */
1387 static int show_isis_database(struct vty *vty, const char *argv, int ui_level)
1388 {
1389 struct listnode *node;
1390 struct isis_area *area;
1391 struct isis_lsp *lsp;
1392 int level, lsp_count;
1393
1394 if (isis->area_list->count == 0)
1395 return CMD_SUCCESS;
1396
1397 for (ALL_LIST_ELEMENTS_RO(isis->area_list, node, area)) {
1398 vty_out(vty, "Area %s:\n",
1399 area->area_tag ? area->area_tag : "null");
1400
1401 for (level = 0; level < ISIS_LEVELS; level++) {
1402 if (area->lspdb[level]
1403 && dict_count(area->lspdb[level]) > 0) {
1404 lsp = lsp_for_arg(argv, area->lspdb[level]);
1405
1406 if (lsp != NULL || argv == NULL) {
1407 vty_out(vty,
1408 "IS-IS Level-%d link-state database:\n",
1409 level + 1);
1410
1411 /* print the title in all cases */
1412 vty_out(vty,
1413 "LSP ID PduLen SeqNumber Chksum Holdtime ATT/P/OL\n");
1414 }
1415
1416 if (lsp) {
1417 if (ui_level == ISIS_UI_LEVEL_DETAIL)
1418 lsp_print_detail(
1419 lsp, vty,
1420 area->dynhostname);
1421 else
1422 lsp_print(lsp, vty,
1423 area->dynhostname);
1424 } else if (argv == NULL) {
1425 lsp_count = lsp_print_all(
1426 vty, area->lspdb[level],
1427 ui_level, area->dynhostname);
1428
1429 vty_out(vty, " %u LSPs\n\n",
1430 lsp_count);
1431 }
1432 }
1433 }
1434 }
1435
1436 return CMD_SUCCESS;
1437 }
1438
1439 DEFUN (show_database,
1440 show_database_cmd,
1441 "show " PROTO_NAME " database [detail] [WORD]",
1442 SHOW_STR
1443 PROTO_HELP
1444 "Link state database\n"
1445 "Detailed information\n"
1446 "LSP ID\n")
1447 {
1448 int idx = 0;
1449 int uilevel = argv_find(argv, argc, "detail", &idx)
1450 ? ISIS_UI_LEVEL_DETAIL
1451 : ISIS_UI_LEVEL_BRIEF;
1452 char *id = argv_find(argv, argc, "WORD", &idx) ? argv[idx]->arg : NULL;
1453 return show_isis_database(vty, id, uilevel);
1454 }
1455
1456 #ifdef FABRICD
1457 /*
1458 * 'router openfabric' command
1459 */
1460 DEFUN_NOSH (router_openfabric,
1461 router_openfabric_cmd,
1462 "router openfabric WORD",
1463 ROUTER_STR
1464 PROTO_HELP
1465 "ISO Routing area tag\n")
1466 {
1467 int idx_word = 2;
1468 return isis_area_get(vty, argv[idx_word]->arg);
1469 }
1470
1471 /*
1472 *'no router openfabric' command
1473 */
1474 DEFUN (no_router_openfabric,
1475 no_router_openfabric_cmd,
1476 "no router openfabric WORD",
1477 NO_STR
1478 ROUTER_STR
1479 PROTO_HELP
1480 "ISO Routing area tag\n")
1481 {
1482 int idx_word = 3;
1483 return isis_area_destroy(argv[idx_word]->arg);
1484 }
1485 #endif /* ifdef FABRICD */
1486 /*
1487 * 'net' command
1488 */
1489 DEFUN (net,
1490 net_cmd,
1491 "net WORD",
1492 "A Network Entity Title for this process (OSI only)\n"
1493 "XX.XXXX. ... .XXX.XX Network entity title (NET)\n")
1494 {
1495 int idx_word = 1;
1496 return area_net_title(vty, argv[idx_word]->arg);
1497 }
1498
1499 /*
1500 * 'no net' command
1501 */
1502 DEFUN (no_net,
1503 no_net_cmd,
1504 "no net WORD",
1505 NO_STR
1506 "A Network Entity Title for this process (OSI only)\n"
1507 "XX.XXXX. ... .XXX.XX Network entity title (NET)\n")
1508 {
1509 int idx_word = 2;
1510 return area_clear_net_title(vty, argv[idx_word]->arg);
1511 }
1512
1513 DEFUN (isis_topology,
1514 isis_topology_cmd,
1515 "topology " ISIS_MT_NAMES " [overload]",
1516 "Configure IS-IS topologies\n"
1517 ISIS_MT_DESCRIPTIONS
1518 "Set overload bit for topology\n")
1519 {
1520 VTY_DECLVAR_CONTEXT(isis_area, area);
1521
1522 const char *arg = argv[1]->arg;
1523 uint16_t mtid = isis_str2mtid(arg);
1524
1525 if (area->oldmetric) {
1526 vty_out(vty,
1527 "Multi topology IS-IS can only be used with wide metrics\n");
1528 return CMD_WARNING_CONFIG_FAILED;
1529 }
1530
1531 if (mtid == (uint16_t)-1) {
1532 vty_out(vty, "Don't know topology '%s'\n", arg);
1533 return CMD_WARNING_CONFIG_FAILED;
1534 }
1535 if (mtid == ISIS_MT_IPV4_UNICAST) {
1536 vty_out(vty, "Cannot configure IPv4 unicast topology\n");
1537 return CMD_WARNING_CONFIG_FAILED;
1538 }
1539
1540 area_set_mt_enabled(area, mtid, true);
1541 area_set_mt_overload(area, mtid, (argc == 3));
1542 return CMD_SUCCESS;
1543 }
1544
1545 DEFUN (no_isis_topology,
1546 no_isis_topology_cmd,
1547 "no topology " ISIS_MT_NAMES " [overload]",
1548 NO_STR
1549 "Configure IS-IS topologies\n"
1550 ISIS_MT_DESCRIPTIONS
1551 "Set overload bit for topology\n")
1552 {
1553 VTY_DECLVAR_CONTEXT(isis_area, area);
1554
1555 const char *arg = argv[2]->arg;
1556 uint16_t mtid = isis_str2mtid(arg);
1557
1558 if (area->oldmetric) {
1559 vty_out(vty,
1560 "Multi topology IS-IS can only be used with wide metrics\n");
1561 return CMD_WARNING_CONFIG_FAILED;
1562 }
1563
1564 if (mtid == (uint16_t)-1) {
1565 vty_out(vty, "Don't know topology '%s'\n", arg);
1566 return CMD_WARNING_CONFIG_FAILED;
1567 }
1568 if (mtid == ISIS_MT_IPV4_UNICAST) {
1569 vty_out(vty, "Cannot configure IPv4 unicast topology\n");
1570 return CMD_WARNING_CONFIG_FAILED;
1571 }
1572
1573 area_set_mt_enabled(area, mtid, false);
1574 area_set_mt_overload(area, mtid, false);
1575 return CMD_SUCCESS;
1576 }
1577
1578 void isis_area_lsp_mtu_set(struct isis_area *area, unsigned int lsp_mtu)
1579 {
1580 area->lsp_mtu = lsp_mtu;
1581 lsp_regenerate_schedule(area, IS_LEVEL_1_AND_2, 1);
1582 }
1583
1584 static int isis_area_passwd_set(struct isis_area *area, int level,
1585 uint8_t passwd_type, const char *passwd,
1586 uint8_t snp_auth)
1587 {
1588 struct isis_passwd *dest;
1589 struct isis_passwd modified;
1590 int len;
1591
1592 assert((level == IS_LEVEL_1) || (level == IS_LEVEL_2));
1593 dest = (level == IS_LEVEL_1) ? &area->area_passwd
1594 : &area->domain_passwd;
1595 memset(&modified, 0, sizeof(modified));
1596
1597 if (passwd_type != ISIS_PASSWD_TYPE_UNUSED) {
1598 if (!passwd)
1599 return -1;
1600
1601 len = strlen(passwd);
1602 if (len > 254)
1603 return -1;
1604
1605 modified.len = len;
1606 strncpy((char *)modified.passwd, passwd, 255);
1607 modified.type = passwd_type;
1608 modified.snp_auth = snp_auth;
1609 }
1610
1611 if (memcmp(&modified, dest, sizeof(modified))) {
1612 memcpy(dest, &modified, sizeof(modified));
1613 lsp_regenerate_schedule(area, IS_LEVEL_1 | IS_LEVEL_2, 1);
1614 }
1615
1616 return 0;
1617 }
1618
1619 int isis_area_passwd_unset(struct isis_area *area, int level)
1620 {
1621 return isis_area_passwd_set(area, level, ISIS_PASSWD_TYPE_UNUSED, NULL,
1622 0);
1623 }
1624
1625 int isis_area_passwd_cleartext_set(struct isis_area *area, int level,
1626 const char *passwd, uint8_t snp_auth)
1627 {
1628 return isis_area_passwd_set(area, level, ISIS_PASSWD_TYPE_CLEARTXT,
1629 passwd, snp_auth);
1630 }
1631
1632 int isis_area_passwd_hmac_md5_set(struct isis_area *area, int level,
1633 const char *passwd, uint8_t snp_auth)
1634 {
1635 return isis_area_passwd_set(area, level, ISIS_PASSWD_TYPE_HMAC_MD5,
1636 passwd, snp_auth);
1637 }
1638
1639 void isis_area_invalidate_routes(struct isis_area *area, int levels)
1640 {
1641 for (int level = ISIS_LEVEL1; level <= ISIS_LEVEL2; level++) {
1642 if (!(level & levels))
1643 continue;
1644 for (int tree = SPFTREE_IPV4; tree < SPFTREE_COUNT; tree++) {
1645 isis_spf_invalidate_routes(
1646 area->spftree[tree][level - 1]);
1647 }
1648 }
1649 }
1650
1651 void isis_area_verify_routes(struct isis_area *area)
1652 {
1653 for (int tree = SPFTREE_IPV4; tree < SPFTREE_COUNT; tree++)
1654 isis_spf_verify_routes(area, area->spftree[tree]);
1655 }
1656
1657 static void area_resign_level(struct isis_area *area, int level)
1658 {
1659 isis_area_invalidate_routes(area, level);
1660 isis_area_verify_routes(area);
1661
1662 if (area->lspdb[level - 1]) {
1663 lsp_db_destroy(area->lspdb[level - 1]);
1664 area->lspdb[level - 1] = NULL;
1665 }
1666
1667 for (int tree = SPFTREE_IPV4; tree < SPFTREE_COUNT; tree++) {
1668 if (area->spftree[tree][level - 1]) {
1669 isis_spftree_del(area->spftree[tree][level - 1]);
1670 area->spftree[tree][level - 1] = NULL;
1671 }
1672 }
1673
1674 THREAD_TIMER_OFF(area->spf_timer[level - 1]);
1675
1676 sched_debug(
1677 "ISIS (%s): Resigned from L%d - canceling LSP regeneration timer.",
1678 area->area_tag, level);
1679 THREAD_TIMER_OFF(area->t_lsp_refresh[level - 1]);
1680 area->lsp_regenerate_pending[level - 1] = 0;
1681 }
1682
1683 void isis_area_is_type_set(struct isis_area *area, int is_type)
1684 {
1685 struct listnode *node;
1686 struct isis_circuit *circuit;
1687
1688 if (isis->debugs & DEBUG_EVENTS)
1689 zlog_debug("ISIS-Evt (%s) system type change %s -> %s",
1690 area->area_tag, circuit_t2string(area->is_type),
1691 circuit_t2string(is_type));
1692
1693 if (area->is_type == is_type)
1694 return; /* No change */
1695
1696 switch (area->is_type) {
1697 case IS_LEVEL_1:
1698 if (is_type == IS_LEVEL_2)
1699 area_resign_level(area, IS_LEVEL_1);
1700
1701 if (area->lspdb[1] == NULL)
1702 area->lspdb[1] = lsp_db_init();
1703 break;
1704
1705 case IS_LEVEL_1_AND_2:
1706 if (is_type == IS_LEVEL_1)
1707 area_resign_level(area, IS_LEVEL_2);
1708 else
1709 area_resign_level(area, IS_LEVEL_1);
1710 break;
1711
1712 case IS_LEVEL_2:
1713 if (is_type == IS_LEVEL_1)
1714 area_resign_level(area, IS_LEVEL_2);
1715
1716 if (area->lspdb[0] == NULL)
1717 area->lspdb[0] = lsp_db_init();
1718 break;
1719
1720 default:
1721 break;
1722 }
1723
1724 area->is_type = is_type;
1725
1726 /* override circuit's is_type */
1727 if (area->is_type != IS_LEVEL_1_AND_2) {
1728 for (ALL_LIST_ELEMENTS_RO(area->circuit_list, node, circuit))
1729 isis_circuit_is_type_set(circuit, is_type);
1730 }
1731
1732 spftree_area_init(area);
1733
1734 if (listcount(area->area_addrs) > 0) {
1735 if (is_type & IS_LEVEL_1)
1736 lsp_generate(area, IS_LEVEL_1);
1737 if (is_type & IS_LEVEL_2)
1738 lsp_generate(area, IS_LEVEL_2);
1739 }
1740 lsp_regenerate_schedule(area, IS_LEVEL_1 | IS_LEVEL_2, 1);
1741
1742 return;
1743 }
1744
1745 void isis_area_metricstyle_set(struct isis_area *area, bool old_metric,
1746 bool new_metric)
1747 {
1748 if (area->oldmetric != old_metric || area->newmetric != new_metric) {
1749 area->oldmetric = old_metric;
1750 area->newmetric = new_metric;
1751 lsp_regenerate_schedule(area, IS_LEVEL_1 | IS_LEVEL_2, 1);
1752 }
1753 }
1754
1755 void isis_area_overload_bit_set(struct isis_area *area, bool overload_bit)
1756 {
1757 char new_overload_bit = overload_bit ? LSPBIT_OL : 0;
1758
1759 if (new_overload_bit != area->overload_bit) {
1760 area->overload_bit = new_overload_bit;
1761 lsp_regenerate_schedule(area, IS_LEVEL_1 | IS_LEVEL_2, 1);
1762 }
1763 }
1764
1765 void isis_area_attached_bit_set(struct isis_area *area, bool attached_bit)
1766 {
1767 char new_attached_bit = attached_bit ? LSPBIT_ATT : 0;
1768
1769 if (new_attached_bit != area->attached_bit) {
1770 area->attached_bit = new_attached_bit;
1771 lsp_regenerate_schedule(area, IS_LEVEL_1 | IS_LEVEL_2, 1);
1772 }
1773 }
1774
1775 void isis_area_dynhostname_set(struct isis_area *area, bool dynhostname)
1776 {
1777 if (area->dynhostname != dynhostname) {
1778 area->dynhostname = dynhostname;
1779 lsp_regenerate_schedule(area, IS_LEVEL_1 | IS_LEVEL_2, 0);
1780 }
1781 }
1782
1783 void isis_area_max_lsp_lifetime_set(struct isis_area *area, int level,
1784 uint16_t max_lsp_lifetime)
1785 {
1786 assert((level == IS_LEVEL_1) || (level == IS_LEVEL_2));
1787
1788 if (area->max_lsp_lifetime[level - 1] == max_lsp_lifetime)
1789 return;
1790
1791 area->max_lsp_lifetime[level - 1] = max_lsp_lifetime;
1792 lsp_regenerate_schedule(area, level, 1);
1793 }
1794
1795 void isis_area_lsp_refresh_set(struct isis_area *area, int level,
1796 uint16_t lsp_refresh)
1797 {
1798 assert((level == IS_LEVEL_1) || (level == IS_LEVEL_2));
1799
1800 if (area->lsp_refresh[level - 1] == lsp_refresh)
1801 return;
1802
1803 area->lsp_refresh[level - 1] = lsp_refresh;
1804 lsp_regenerate_schedule(area, level, 1);
1805 }
1806
1807 DEFUN (log_adj_changes,
1808 log_adj_changes_cmd,
1809 "log-adjacency-changes",
1810 "Log changes in adjacency state\n")
1811 {
1812 VTY_DECLVAR_CONTEXT(isis_area, area);
1813
1814 area->log_adj_changes = 1;
1815
1816 return CMD_SUCCESS;
1817 }
1818
1819 DEFUN (no_log_adj_changes,
1820 no_log_adj_changes_cmd,
1821 "no log-adjacency-changes",
1822 NO_STR
1823 "Stop logging changes in adjacency state\n")
1824 {
1825 VTY_DECLVAR_CONTEXT(isis_area, area);
1826
1827 area->log_adj_changes = 0;
1828
1829 return CMD_SUCCESS;
1830 }
1831
1832 /* IS-IS configuration write function */
1833 int isis_config_write(struct vty *vty)
1834 {
1835 int write = 0;
1836
1837 if (isis != NULL) {
1838 struct isis_area *area;
1839 struct listnode *node, *node2;
1840
1841 for (ALL_LIST_ELEMENTS_RO(isis->area_list, node, area)) {
1842 /* ISIS - Area name */
1843 vty_out(vty, "router " PROTO_NAME " %s\n", area->area_tag);
1844 write++;
1845 /* ISIS - Net */
1846 if (listcount(area->area_addrs) > 0) {
1847 struct area_addr *area_addr;
1848 for (ALL_LIST_ELEMENTS_RO(area->area_addrs,
1849 node2, area_addr)) {
1850 vty_out(vty, " net %s\n",
1851 isonet_print(
1852 area_addr->area_addr,
1853 area_addr->addr_len
1854 + ISIS_SYS_ID_LEN
1855 + 1));
1856 write++;
1857 }
1858 }
1859 /* ISIS - Dynamic hostname - Defaults to true so only
1860 * display if
1861 * false. */
1862 if (!area->dynhostname) {
1863 vty_out(vty, " no hostname dynamic\n");
1864 write++;
1865 }
1866 /* ISIS - Metric-Style - when true displays wide */
1867 if (!fabricd) {
1868 if (area->newmetric) {
1869 if (!area->oldmetric)
1870 vty_out(vty, " metric-style wide\n");
1871 else
1872 vty_out(vty,
1873 " metric-style transition\n");
1874 write++;
1875 } else {
1876 vty_out(vty, " metric-style narrow\n");
1877 write++;
1878 }
1879 }
1880 /* ISIS - overload-bit */
1881 if (area->overload_bit) {
1882 vty_out(vty, " set-overload-bit\n");
1883 write++;
1884 }
1885 /* ISIS - Area is-type (level-1-2 is default) */
1886 if (!fabricd) {
1887 if (area->is_type == IS_LEVEL_1) {
1888 vty_out(vty, " is-type level-1\n");
1889 write++;
1890 } else if (area->is_type == IS_LEVEL_2) {
1891 vty_out(vty, " is-type level-2-only\n");
1892 write++;
1893 }
1894 }
1895 write += isis_redist_config_write(vty, area, AF_INET);
1896 write += isis_redist_config_write(vty, area, AF_INET6);
1897 /* ISIS - Lsp generation interval */
1898 if (area->lsp_gen_interval[0]
1899 == area->lsp_gen_interval[1]) {
1900 if (area->lsp_gen_interval[0]
1901 != DEFAULT_MIN_LSP_GEN_INTERVAL) {
1902 vty_out(vty, " lsp-gen-interval %d\n",
1903 area->lsp_gen_interval[0]);
1904 write++;
1905 }
1906 } else {
1907 if (area->lsp_gen_interval[0]
1908 != DEFAULT_MIN_LSP_GEN_INTERVAL) {
1909 vty_out(vty,
1910 " lsp-gen-interval level-1 %d\n",
1911 area->lsp_gen_interval[0]);
1912 write++;
1913 }
1914 if (area->lsp_gen_interval[1]
1915 != DEFAULT_MIN_LSP_GEN_INTERVAL) {
1916 vty_out(vty,
1917 " lsp-gen-interval level-2 %d\n",
1918 area->lsp_gen_interval[1]);
1919 write++;
1920 }
1921 }
1922 /* ISIS - LSP lifetime */
1923 if (area->max_lsp_lifetime[0]
1924 == area->max_lsp_lifetime[1]) {
1925 if (area->max_lsp_lifetime[0]
1926 != DEFAULT_LSP_LIFETIME) {
1927 vty_out(vty, " max-lsp-lifetime %u\n",
1928 area->max_lsp_lifetime[0]);
1929 write++;
1930 }
1931 } else {
1932 if (area->max_lsp_lifetime[0]
1933 != DEFAULT_LSP_LIFETIME) {
1934 vty_out(vty,
1935 " max-lsp-lifetime level-1 %u\n",
1936 area->max_lsp_lifetime[0]);
1937 write++;
1938 }
1939 if (area->max_lsp_lifetime[1]
1940 != DEFAULT_LSP_LIFETIME) {
1941 vty_out(vty,
1942 " max-lsp-lifetime level-2 %u\n",
1943 area->max_lsp_lifetime[1]);
1944 write++;
1945 }
1946 }
1947 /* ISIS - LSP refresh interval */
1948 if (area->lsp_refresh[0] == area->lsp_refresh[1]) {
1949 if (area->lsp_refresh[0]
1950 != DEFAULT_MAX_LSP_GEN_INTERVAL) {
1951 vty_out(vty,
1952 " lsp-refresh-interval %u\n",
1953 area->lsp_refresh[0]);
1954 write++;
1955 }
1956 } else {
1957 if (area->lsp_refresh[0]
1958 != DEFAULT_MAX_LSP_GEN_INTERVAL) {
1959 vty_out(vty,
1960 " lsp-refresh-interval level-1 %u\n",
1961 area->lsp_refresh[0]);
1962 write++;
1963 }
1964 if (area->lsp_refresh[1]
1965 != DEFAULT_MAX_LSP_GEN_INTERVAL) {
1966 vty_out(vty,
1967 " lsp-refresh-interval level-2 %u\n",
1968 area->lsp_refresh[1]);
1969 write++;
1970 }
1971 }
1972 if (area->lsp_mtu != DEFAULT_LSP_MTU) {
1973 vty_out(vty, " lsp-mtu %u\n", area->lsp_mtu);
1974 write++;
1975 }
1976 if (area->purge_originator) {
1977 vty_out(vty, " purge-originator\n");
1978 write++;
1979 }
1980
1981 /* Minimum SPF interval. */
1982 if (area->min_spf_interval[0]
1983 == area->min_spf_interval[1]) {
1984 if (area->min_spf_interval[0]
1985 != MINIMUM_SPF_INTERVAL) {
1986 vty_out(vty, " spf-interval %d\n",
1987 area->min_spf_interval[0]);
1988 write++;
1989 }
1990 } else {
1991 if (area->min_spf_interval[0]
1992 != MINIMUM_SPF_INTERVAL) {
1993 vty_out(vty,
1994 " spf-interval level-1 %d\n",
1995 area->min_spf_interval[0]);
1996 write++;
1997 }
1998 if (area->min_spf_interval[1]
1999 != MINIMUM_SPF_INTERVAL) {
2000 vty_out(vty,
2001 " spf-interval level-2 %d\n",
2002 area->min_spf_interval[1]);
2003 write++;
2004 }
2005 }
2006
2007 /* IETF SPF interval */
2008 if (area->spf_delay_ietf[0]) {
2009 vty_out(vty,
2010 " spf-delay-ietf init-delay %ld short-delay %ld long-delay %ld holddown %ld time-to-learn %ld\n",
2011 spf_backoff_init_delay(
2012 area->spf_delay_ietf[0]),
2013 spf_backoff_short_delay(
2014 area->spf_delay_ietf[0]),
2015 spf_backoff_long_delay(
2016 area->spf_delay_ietf[0]),
2017 spf_backoff_holddown(
2018 area->spf_delay_ietf[0]),
2019 spf_backoff_timetolearn(
2020 area->spf_delay_ietf[0]));
2021 write++;
2022 }
2023
2024 /* Authentication passwords. */
2025 if (area->area_passwd.type
2026 == ISIS_PASSWD_TYPE_HMAC_MD5) {
2027 vty_out(vty, " area-password md5 %s",
2028 area->area_passwd.passwd);
2029 if (CHECK_FLAG(area->area_passwd.snp_auth,
2030 SNP_AUTH_SEND)) {
2031 vty_out(vty, " authenticate snp ");
2032 if (CHECK_FLAG(
2033 area->area_passwd.snp_auth,
2034 SNP_AUTH_RECV))
2035 vty_out(vty, "validate");
2036 else
2037 vty_out(vty, "send-only");
2038 }
2039 vty_out(vty, "\n");
2040 write++;
2041 } else if (area->area_passwd.type
2042 == ISIS_PASSWD_TYPE_CLEARTXT) {
2043 vty_out(vty, " area-password clear %s",
2044 area->area_passwd.passwd);
2045 if (CHECK_FLAG(area->area_passwd.snp_auth,
2046 SNP_AUTH_SEND)) {
2047 vty_out(vty, " authenticate snp ");
2048 if (CHECK_FLAG(
2049 area->area_passwd.snp_auth,
2050 SNP_AUTH_RECV))
2051 vty_out(vty, "validate");
2052 else
2053 vty_out(vty, "send-only");
2054 }
2055 vty_out(vty, "\n");
2056 write++;
2057 }
2058 if (area->domain_passwd.type
2059 == ISIS_PASSWD_TYPE_HMAC_MD5) {
2060 vty_out(vty, " domain-password md5 %s",
2061 area->domain_passwd.passwd);
2062 if (CHECK_FLAG(area->domain_passwd.snp_auth,
2063 SNP_AUTH_SEND)) {
2064 vty_out(vty, " authenticate snp ");
2065 if (CHECK_FLAG(area->domain_passwd
2066 .snp_auth,
2067 SNP_AUTH_RECV))
2068 vty_out(vty, "validate");
2069 else
2070 vty_out(vty, "send-only");
2071 }
2072 vty_out(vty, "\n");
2073 write++;
2074 } else if (area->domain_passwd.type
2075 == ISIS_PASSWD_TYPE_CLEARTXT) {
2076 vty_out(vty, " domain-password clear %s",
2077 area->domain_passwd.passwd);
2078 if (CHECK_FLAG(area->domain_passwd.snp_auth,
2079 SNP_AUTH_SEND)) {
2080 vty_out(vty, " authenticate snp ");
2081 if (CHECK_FLAG(area->domain_passwd
2082 .snp_auth,
2083 SNP_AUTH_RECV))
2084 vty_out(vty, "validate");
2085 else
2086 vty_out(vty, "send-only");
2087 }
2088 vty_out(vty, "\n");
2089 write++;
2090 }
2091
2092 if (area->log_adj_changes) {
2093 vty_out(vty, " log-adjacency-changes\n");
2094 write++;
2095 }
2096
2097 write += area_write_mt_settings(area, vty);
2098 write += fabricd_write_settings(area, vty);
2099 }
2100 isis_mpls_te_config_write_router(vty);
2101 }
2102
2103 return write;
2104 }
2105
2106 struct cmd_node router_node = {ROUTER_NODE, "%s(config-router)# ", 1};
2107
2108 void isis_init()
2109 {
2110 /* Install IS-IS top node */
2111 install_node(&router_node, isis_config_write);
2112
2113 install_element(VIEW_NODE, &show_isis_summary_cmd);
2114
2115 install_element(VIEW_NODE, &show_isis_spf_ietf_cmd);
2116
2117 install_element(VIEW_NODE, &show_isis_interface_cmd);
2118 install_element(VIEW_NODE, &show_isis_interface_detail_cmd);
2119 install_element(VIEW_NODE, &show_isis_interface_arg_cmd);
2120
2121 install_element(VIEW_NODE, &show_isis_neighbor_cmd);
2122 install_element(VIEW_NODE, &show_isis_neighbor_detail_cmd);
2123 install_element(VIEW_NODE, &show_isis_neighbor_arg_cmd);
2124 install_element(VIEW_NODE, &clear_isis_neighbor_cmd);
2125 install_element(VIEW_NODE, &clear_isis_neighbor_arg_cmd);
2126
2127 install_element(VIEW_NODE, &show_hostname_cmd);
2128 install_element(VIEW_NODE, &show_database_cmd);
2129
2130 install_element(ENABLE_NODE, &show_debugging_isis_cmd);
2131
2132 install_node(&debug_node, config_write_debug);
2133
2134 install_element(ENABLE_NODE, &debug_isis_adj_cmd);
2135 install_element(ENABLE_NODE, &no_debug_isis_adj_cmd);
2136 install_element(ENABLE_NODE, &debug_isis_tx_queue_cmd);
2137 install_element(ENABLE_NODE, &no_debug_isis_tx_queue_cmd);
2138 install_element(ENABLE_NODE, &debug_isis_flooding_cmd);
2139 install_element(ENABLE_NODE, &no_debug_isis_flooding_cmd);
2140 install_element(ENABLE_NODE, &debug_isis_snp_cmd);
2141 install_element(ENABLE_NODE, &no_debug_isis_snp_cmd);
2142 install_element(ENABLE_NODE, &debug_isis_upd_cmd);
2143 install_element(ENABLE_NODE, &no_debug_isis_upd_cmd);
2144 install_element(ENABLE_NODE, &debug_isis_spfevents_cmd);
2145 install_element(ENABLE_NODE, &no_debug_isis_spfevents_cmd);
2146 install_element(ENABLE_NODE, &debug_isis_rtevents_cmd);
2147 install_element(ENABLE_NODE, &no_debug_isis_rtevents_cmd);
2148 install_element(ENABLE_NODE, &debug_isis_events_cmd);
2149 install_element(ENABLE_NODE, &no_debug_isis_events_cmd);
2150 install_element(ENABLE_NODE, &debug_isis_packet_dump_cmd);
2151 install_element(ENABLE_NODE, &no_debug_isis_packet_dump_cmd);
2152 install_element(ENABLE_NODE, &debug_isis_lsp_gen_cmd);
2153 install_element(ENABLE_NODE, &no_debug_isis_lsp_gen_cmd);
2154 install_element(ENABLE_NODE, &debug_isis_lsp_sched_cmd);
2155 install_element(ENABLE_NODE, &no_debug_isis_lsp_sched_cmd);
2156 install_element(ENABLE_NODE, &debug_isis_bfd_cmd);
2157 install_element(ENABLE_NODE, &no_debug_isis_bfd_cmd);
2158
2159 install_element(CONFIG_NODE, &debug_isis_adj_cmd);
2160 install_element(CONFIG_NODE, &no_debug_isis_adj_cmd);
2161 install_element(CONFIG_NODE, &debug_isis_tx_queue_cmd);
2162 install_element(CONFIG_NODE, &no_debug_isis_tx_queue_cmd);
2163 install_element(CONFIG_NODE, &debug_isis_flooding_cmd);
2164 install_element(CONFIG_NODE, &no_debug_isis_flooding_cmd);
2165 install_element(CONFIG_NODE, &debug_isis_snp_cmd);
2166 install_element(CONFIG_NODE, &no_debug_isis_snp_cmd);
2167 install_element(CONFIG_NODE, &debug_isis_upd_cmd);
2168 install_element(CONFIG_NODE, &no_debug_isis_upd_cmd);
2169 install_element(CONFIG_NODE, &debug_isis_spfevents_cmd);
2170 install_element(CONFIG_NODE, &no_debug_isis_spfevents_cmd);
2171 install_element(CONFIG_NODE, &debug_isis_rtevents_cmd);
2172 install_element(CONFIG_NODE, &no_debug_isis_rtevents_cmd);
2173 install_element(CONFIG_NODE, &debug_isis_events_cmd);
2174 install_element(CONFIG_NODE, &no_debug_isis_events_cmd);
2175 install_element(CONFIG_NODE, &debug_isis_packet_dump_cmd);
2176 install_element(CONFIG_NODE, &no_debug_isis_packet_dump_cmd);
2177 install_element(CONFIG_NODE, &debug_isis_lsp_gen_cmd);
2178 install_element(CONFIG_NODE, &no_debug_isis_lsp_gen_cmd);
2179 install_element(CONFIG_NODE, &debug_isis_lsp_sched_cmd);
2180 install_element(CONFIG_NODE, &no_debug_isis_lsp_sched_cmd);
2181 install_element(CONFIG_NODE, &debug_isis_bfd_cmd);
2182 install_element(CONFIG_NODE, &no_debug_isis_bfd_cmd);
2183
2184 install_default(ROUTER_NODE);
2185
2186 #ifdef FABRICD
2187 install_element(CONFIG_NODE, &router_openfabric_cmd);
2188 install_element(CONFIG_NODE, &no_router_openfabric_cmd);
2189 #endif /* ifdef FABRICD */
2190 install_element(ROUTER_NODE, &net_cmd);
2191 install_element(ROUTER_NODE, &no_net_cmd);
2192
2193 install_element(ROUTER_NODE, &isis_topology_cmd);
2194 install_element(ROUTER_NODE, &no_isis_topology_cmd);
2195
2196 install_element(ROUTER_NODE, &log_adj_changes_cmd);
2197 install_element(ROUTER_NODE, &no_log_adj_changes_cmd);
2198
2199 spf_backoff_cmd_init();
2200 }