blob: eedb451dd74a73da2165b10c6bdad114664efcfe [file] [log] [blame]
jardineb5d44e2003-12-23 08:09:43 +00001/*
2 * IS-IS Rout(e)ing protocol - isisd.h
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; if not, write to the Free Software Foundation, Inc.,
20 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 */
22
23#ifndef ISISD_H
24#define ISISD_H
25
26#define ISISD_VERSION "0.0.7"
jardineb5d44e2003-12-23 08:09:43 +000027
David Lamparter3732cba2016-07-29 16:19:40 +020028#include "isisd/isis_constants.h"
29#include "isisd/isis_common.h"
Christian Frankeacf98652015-11-12 14:24:22 +010030#include "isisd/isis_redist.h"
David Lamparter3732cba2016-07-29 16:19:40 +020031#include "isis_flags.h"
32#include "dict.h"
Christian Frankeacf98652015-11-12 14:24:22 +010033
jardineb5d44e2003-12-23 08:09:43 +000034/* uncomment if you are a developer in bug hunt */
35/* #define EXTREME_DEBUG */
36/* #define EXTREME_TLV_DEBUG */
37
jardineb5d44e2003-12-23 08:09:43 +000038struct isis
39{
40 u_long process_id;
41 int sysid_set;
hassof390d2c2004-09-10 20:48:21 +000042 u_char sysid[ISIS_SYS_ID_LEN]; /* SystemID for this IS */
Josh Bailey3f045a02012-03-24 08:35:20 -070043 u_int32_t router_id; /* Router ID from zebra */
hassof390d2c2004-09-10 20:48:21 +000044 struct list *area_list; /* list of IS-IS areas */
jardineb5d44e2003-12-23 08:09:43 +000045 struct list *init_circ_list;
hassof390d2c2004-09-10 20:48:21 +000046 struct list *nexthops; /* IPv4 next hops from this IS */
jardineb5d44e2003-12-23 08:09:43 +000047#ifdef HAVE_IPV6
hassof390d2c2004-09-10 20:48:21 +000048 struct list *nexthops6; /* IPv6 next hops from this IS */
49#endif /* HAVE_IPV6 */
50 u_char max_area_addrs; /* maximumAreaAdresses */
51 struct area_addr *man_area_addrs; /* manualAreaAddresses */
52 u_int32_t debugs; /* bitmap for debug */
53 time_t uptime; /* when did we start */
hassod3d74742005-09-28 18:30:51 +000054 struct thread *t_dync_clean; /* dynamic hostname cache cleanup thread */
hassof390d2c2004-09-10 20:48:21 +000055
Christian Frankeacf98652015-11-12 14:24:22 +010056 struct route_table *ext_info[REDIST_PROTOCOL_COUNT];
jardineb5d44e2003-12-23 08:09:43 +000057};
58
Josh Bailey3f045a02012-03-24 08:35:20 -070059extern struct isis *isis;
60
hassof390d2c2004-09-10 20:48:21 +000061struct isis_area
jardineb5d44e2003-12-23 08:09:43 +000062{
hassofac1f7c2005-09-26 18:26:26 +000063 struct isis *isis; /* back pointer */
64 dict_t *lspdb[ISIS_LEVELS]; /* link-state dbs */
65 struct isis_spftree *spftree[ISIS_LEVELS]; /* The v4 SPTs */
66 struct route_table *route_table[ISIS_LEVELS]; /* IPv4 routes */
jardineb5d44e2003-12-23 08:09:43 +000067#ifdef HAVE_IPV6
hassofac1f7c2005-09-26 18:26:26 +000068 struct isis_spftree *spftree6[ISIS_LEVELS]; /* The v6 SPTs */
69 struct route_table *route_table6[ISIS_LEVELS]; /* IPv6 routes */
jardineb5d44e2003-12-23 08:09:43 +000070#endif
Christian Frankef1fc1db2015-11-10 18:43:31 +010071#define DEFAULT_LSP_MTU 1497
72 unsigned int lsp_mtu; /* Size of LSPs to generate */
hassof390d2c2004-09-10 20:48:21 +000073 struct list *circuit_list; /* IS-IS circuits */
74 struct flags flags;
75 struct thread *t_tick; /* LSP walker */
jardineb5d44e2003-12-23 08:09:43 +000076 struct thread *t_lsp_refresh[ISIS_LEVELS];
Christian Franke61010c32015-11-10 18:43:34 +010077 /* t_lsp_refresh is used in two ways:
78 * a) regular refresh of LSPs
79 * b) (possibly throttled) updates to LSPs
80 *
81 * The lsp_regenerate_pending flag tracks whether the timer is active
82 * for the a) or the b) case.
83 *
84 * It is of utmost importance to clear this flag when the timer is
85 * rescheduled for normal refresh, because otherwise, updates will
86 * be delayed until the next regular refresh.
87 */
Josh Bailey3f045a02012-03-24 08:35:20 -070088 int lsp_regenerate_pending[ISIS_LEVELS];
hassof390d2c2004-09-10 20:48:21 +000089
jardineb5d44e2003-12-23 08:09:43 +000090 /*
91 * Configurables
92 */
93 struct isis_passwd area_passwd;
94 struct isis_passwd domain_passwd;
95 /* do we support dynamic hostnames? */
96 char dynhostname;
97 /* do we support new style metrics? */
hassof390d2c2004-09-10 20:48:21 +000098 char newmetric;
hasso2984d262005-09-26 16:49:07 +000099 char oldmetric;
jardineb5d44e2003-12-23 08:09:43 +0000100 /* identifies the routing instance */
hassof390d2c2004-09-10 20:48:21 +0000101 char *area_tag;
jardineb5d44e2003-12-23 08:09:43 +0000102 /* area addresses for this area */
hassof390d2c2004-09-10 20:48:21 +0000103 struct list *area_addrs;
104 u_int16_t max_lsp_lifetime[ISIS_LEVELS];
105 char is_type; /* level-1 level-1-2 or level-2-only */
Josh Bailey3f045a02012-03-24 08:35:20 -0700106 /* are we overloaded? */
107 char overload_bit;
Amritha Nambiarc8ee9402015-08-24 16:40:14 -0700108 /* L1/L2 router identifier for inter-area traffic */
109 char attached_bit;
jardineb5d44e2003-12-23 08:09:43 +0000110 u_int16_t lsp_refresh[ISIS_LEVELS];
111 /* minimum time allowed before lsp retransmission */
112 u_int16_t lsp_gen_interval[ISIS_LEVELS];
113 /* min interval between between consequtive SPFs */
hassof390d2c2004-09-10 20:48:21 +0000114 u_int16_t min_spf_interval[ISIS_LEVELS];
jardineb5d44e2003-12-23 08:09:43 +0000115 /* the percentage of LSP mtu size used, before generating a new frag */
hassof390d2c2004-09-10 20:48:21 +0000116 int lsp_frag_threshold;
jardineb5d44e2003-12-23 08:09:43 +0000117 int ip_circuits;
Josh Bailey3f045a02012-03-24 08:35:20 -0700118 /* logging adjacency changes? */
119 u_char log_adj_changes;
jardineb5d44e2003-12-23 08:09:43 +0000120#ifdef HAVE_IPV6
121 int ipv6_circuits;
hassof390d2c2004-09-10 20:48:21 +0000122#endif /* HAVE_IPV6 */
jardineb5d44e2003-12-23 08:09:43 +0000123 /* Counters */
124 u_int32_t circuit_state_changes;
Christian Frankeacf98652015-11-12 14:24:22 +0100125 struct isis_redist redist_settings[REDIST_PROTOCOL_COUNT]
126 [ZEBRA_ROUTE_MAX + 1][ISIS_LEVELS];
127 struct route_table *ext_reach[REDIST_PROTOCOL_COUNT][ISIS_LEVELS];
hassof1082d12005-09-19 04:23:34 +0000128
jardineb5d44e2003-12-23 08:09:43 +0000129#ifdef TOPOLOGY_GENERATE
hassof390d2c2004-09-10 20:48:21 +0000130 struct list *topology;
Josh Bailey3f045a02012-03-24 08:35:20 -0700131 u_char topology_baseis[ISIS_SYS_ID_LEN]; /* IS for the first IS emulated. */
hassof1082d12005-09-19 04:23:34 +0000132 char *topology_basedynh; /* Dynamic hostname base. */
133 char top_params[200]; /* FIXME: what is reasonable? */
134#endif /* TOPOLOGY_GENERATE */
jardineb5d44e2003-12-23 08:09:43 +0000135};
136
hassof390d2c2004-09-10 20:48:21 +0000137void isis_init (void);
Josh Bailey3f045a02012-03-24 08:35:20 -0700138void isis_new(unsigned long);
139struct isis_area *isis_area_create(const char *);
hassof90a5f62004-10-11 13:11:56 +0000140struct isis_area *isis_area_lookup (const char *);
Josh Bailey3f045a02012-03-24 08:35:20 -0700141int isis_area_get (struct vty *vty, const char *area_tag);
142void print_debug(struct vty *, int, int);
143
Christian Frankeccd485d2016-07-28 17:23:26 +0200144void isis_area_overload_bit_set(struct isis_area *area, bool overload_bit);
145void isis_area_attached_bit_set(struct isis_area *area, bool attached_bit);
146void isis_area_dynhostname_set(struct isis_area *area, bool dynhostname);
147void isis_area_metricstyle_set(struct isis_area *area, bool old_metric,
148 bool new_metric);
Christian Franke304c7da2016-07-28 17:23:29 +0200149void isis_area_lsp_mtu_set(struct isis_area *area, unsigned int lsp_mtu);
150void isis_area_is_type_set(struct isis_area *area, int is_type);
Christian Franke4570ca42016-07-28 17:23:30 +0200151void isis_area_max_lsp_lifetime_set(struct isis_area *area, int level,
152 uint16_t max_lsp_lifetime);
153void isis_area_lsp_refresh_set(struct isis_area *area, int level,
154 uint16_t lsp_refresh);
Christian Franke68845c12016-07-28 17:23:31 +0200155/* IS_LEVEL_1 sets area_passwd, IS_LEVEL_2 domain_passwd */
156int isis_area_passwd_unset (struct isis_area *area, int level);
157int isis_area_passwd_cleartext_set (struct isis_area *area, int level,
158 const char *passwd, u_char snp_auth);
159int isis_area_passwd_hmac_md5_set (struct isis_area *area, int level,
160 const char *passwd, u_char snp_auth);
David Lamparter3732cba2016-07-29 16:19:40 +0200161void isis_vty_init (void);
162
Josh Bailey3f045a02012-03-24 08:35:20 -0700163/* Master of threads. */
164extern struct thread_master *master;
jardineb5d44e2003-12-23 08:09:43 +0000165
166#define DEBUG_ADJ_PACKETS (1<<0)
167#define DEBUG_CHECKSUM_ERRORS (1<<1)
168#define DEBUG_LOCAL_UPDATES (1<<2)
169#define DEBUG_PROTOCOL_ERRORS (1<<3)
170#define DEBUG_SNP_PACKETS (1<<4)
171#define DEBUG_UPDATE_PACKETS (1<<5)
172#define DEBUG_SPF_EVENTS (1<<6)
173#define DEBUG_SPF_STATS (1<<7)
174#define DEBUG_SPF_TRIGGERS (1<<8)
175#define DEBUG_RTE_EVENTS (1<<9)
176#define DEBUG_EVENTS (1<<10)
hassoc89c05d2005-09-04 21:36:36 +0000177#define DEBUG_ZEBRA (1<<11)
Josh Bailey3f045a02012-03-24 08:35:20 -0700178#define DEBUG_PACKET_DUMP (1<<12)
Christian Franke80a8f722015-11-12 14:21:47 +0100179#define DEBUG_LSP_GEN (1<<13)
Christian Franke61010c32015-11-10 18:43:34 +0100180#define DEBUG_LSP_SCHED (1<<14)
Christian Franke80a8f722015-11-12 14:21:47 +0100181
182#define lsp_debug(...) \
183 do \
184 { \
185 if (isis->debugs & DEBUG_LSP_GEN) \
186 zlog_debug(__VA_ARGS__); \
187 } \
188 while (0)
jardineb5d44e2003-12-23 08:09:43 +0000189
Christian Franke61010c32015-11-10 18:43:34 +0100190#define sched_debug(...) \
191 do \
192 { \
193 if (isis->debugs & DEBUG_LSP_SCHED) \
194 zlog_debug(__VA_ARGS__); \
195 } \
196 while (0)
197
Olivier Dugeon4f593572016-04-19 19:03:05 +0200198#define DEBUG_TE (1<<13)
199
200#define IS_DEBUG_ISIS(x) (isis->debugs & x)
201
jardineb5d44e2003-12-23 08:09:43 +0000202#endif /* ISISD_H */