]> git.proxmox.com Git - mirror_frr.git/blob - isisd/isisd.h
Merge pull request #1007 from donaldsharp/clear_help_str
[mirror_frr.git] / isisd / isisd.h
1 /*
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; 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 #ifndef ISISD_H
24 #define ISISD_H
25
26 #include "vty.h"
27
28 #include "isisd/isis_constants.h"
29 #include "isisd/isis_common.h"
30 #include "isisd/isis_redist.h"
31 #include "isis_flags.h"
32 #include "dict.h"
33 #include "isis_memory.h"
34 #include "qobj.h"
35
36 /* uncomment if you are a developer in bug hunt */
37 /* #define EXTREME_DEBUG */
38 /* #define EXTREME_DICT_DEBUG */
39
40 struct isis {
41 u_long process_id;
42 int sysid_set;
43 u_char sysid[ISIS_SYS_ID_LEN]; /* SystemID for this IS */
44 u_int32_t router_id; /* Router ID from zebra */
45 struct list *area_list; /* list of IS-IS areas */
46 struct list *init_circ_list;
47 struct list *nexthops; /* IPv4 next hops from this IS */
48 struct list *nexthops6; /* IPv6 next hops from this IS */
49 u_char max_area_addrs; /* maximumAreaAdresses */
50 struct area_addr *man_area_addrs; /* manualAreaAddresses */
51 u_int32_t debugs; /* bitmap for debug */
52 time_t uptime; /* when did we start */
53 struct thread *t_dync_clean; /* dynamic hostname cache cleanup thread */
54
55 struct route_table *ext_info[REDIST_PROTOCOL_COUNT];
56
57 QOBJ_FIELDS
58 };
59
60 extern struct isis *isis;
61 DECLARE_QOBJ_TYPE(isis_area)
62
63 struct isis_area {
64 struct isis *isis; /* back pointer */
65 dict_t *lspdb[ISIS_LEVELS]; /* link-state dbs */
66 struct isis_spftree *spftree[ISIS_LEVELS]; /* The v4 SPTs */
67 struct route_table *route_table[ISIS_LEVELS]; /* IPv4 routes */
68 struct isis_spftree *spftree6[ISIS_LEVELS]; /* The v6 SPTs */
69 struct route_table *route_table6[ISIS_LEVELS]; /* IPv6 routes */
70 /* $FRR indent$ */
71 /* clang-format off */
72 #define DEFAULT_LSP_MTU 1497
73 unsigned int lsp_mtu; /* Size of LSPs to generate */
74 struct list *circuit_list; /* IS-IS circuits */
75 struct flags flags;
76 struct thread *t_tick; /* LSP walker */
77 struct thread *t_lsp_refresh[ISIS_LEVELS];
78 /* t_lsp_refresh is used in two ways:
79 * a) regular refresh of LSPs
80 * b) (possibly throttled) updates to LSPs
81 *
82 * The lsp_regenerate_pending flag tracks whether the timer is active
83 * for the a) or the b) case.
84 *
85 * It is of utmost importance to clear this flag when the timer is
86 * rescheduled for normal refresh, because otherwise, updates will
87 * be delayed until the next regular refresh.
88 */
89 int lsp_regenerate_pending[ISIS_LEVELS];
90
91 /*
92 * Configurables
93 */
94 struct isis_passwd area_passwd;
95 struct isis_passwd domain_passwd;
96 /* do we support dynamic hostnames? */
97 char dynhostname;
98 /* do we support new style metrics? */
99 char newmetric;
100 char oldmetric;
101 /* identifies the routing instance */
102 char *area_tag;
103 /* area addresses for this area */
104 struct list *area_addrs;
105 u_int16_t max_lsp_lifetime[ISIS_LEVELS];
106 char is_type; /* level-1 level-1-2 or level-2-only */
107 /* are we overloaded? */
108 char overload_bit;
109 /* L1/L2 router identifier for inter-area traffic */
110 char attached_bit;
111 u_int16_t lsp_refresh[ISIS_LEVELS];
112 /* minimum time allowed before lsp retransmission */
113 u_int16_t lsp_gen_interval[ISIS_LEVELS];
114 /* min interval between between consequtive SPFs */
115 u_int16_t min_spf_interval[ISIS_LEVELS];
116 /* the percentage of LSP mtu size used, before generating a new frag */
117 int lsp_frag_threshold;
118 int ip_circuits;
119 /* logging adjacency changes? */
120 u_char log_adj_changes;
121 /* multi topology settings */
122 struct list *mt_settings;
123 int ipv6_circuits;
124 /* Counters */
125 u_int32_t circuit_state_changes;
126 struct isis_redist redist_settings[REDIST_PROTOCOL_COUNT]
127 [ZEBRA_ROUTE_MAX + 1][ISIS_LEVELS];
128 struct route_table *ext_reach[REDIST_PROTOCOL_COUNT][ISIS_LEVELS];
129
130 struct spf_backoff *spf_delay_ietf[ISIS_LEVELS]; /*Structure with IETF
131 SPF algo
132 parameters*/
133 struct thread *spf_timer[ISIS_LEVELS];
134
135 QOBJ_FIELDS
136 };
137 DECLARE_QOBJ_TYPE(isis_area)
138
139 void isis_init(void);
140 void isis_new(unsigned long);
141 struct isis_area *isis_area_create(const char *);
142 struct isis_area *isis_area_lookup(const char *);
143 int isis_area_get(struct vty *vty, const char *area_tag);
144 void print_debug(struct vty *, int, int);
145
146 void isis_area_overload_bit_set(struct isis_area *area, bool overload_bit);
147 void isis_area_attached_bit_set(struct isis_area *area, bool attached_bit);
148 void isis_area_dynhostname_set(struct isis_area *area, bool dynhostname);
149 void isis_area_metricstyle_set(struct isis_area *area, bool old_metric,
150 bool new_metric);
151 void isis_area_lsp_mtu_set(struct isis_area *area, unsigned int lsp_mtu);
152 void isis_area_is_type_set(struct isis_area *area, int is_type);
153 void isis_area_max_lsp_lifetime_set(struct isis_area *area, int level,
154 uint16_t max_lsp_lifetime);
155 void isis_area_lsp_refresh_set(struct isis_area *area, int level,
156 uint16_t lsp_refresh);
157 /* IS_LEVEL_1 sets area_passwd, IS_LEVEL_2 domain_passwd */
158 int isis_area_passwd_unset(struct isis_area *area, int level);
159 int isis_area_passwd_cleartext_set(struct isis_area *area, int level,
160 const char *passwd, u_char snp_auth);
161 int isis_area_passwd_hmac_md5_set(struct isis_area *area, int level,
162 const char *passwd, u_char snp_auth);
163 void isis_vty_init(void);
164
165 /* Master of threads. */
166 extern struct thread_master *master;
167
168 #define DEBUG_ADJ_PACKETS (1<<0)
169 #define DEBUG_CHECKSUM_ERRORS (1<<1)
170 #define DEBUG_LOCAL_UPDATES (1<<2)
171 #define DEBUG_PROTOCOL_ERRORS (1<<3)
172 #define DEBUG_SNP_PACKETS (1<<4)
173 #define DEBUG_UPDATE_PACKETS (1<<5)
174 #define DEBUG_SPF_EVENTS (1<<6)
175 #define DEBUG_SPF_STATS (1<<7)
176 #define DEBUG_SPF_TRIGGERS (1<<8)
177 #define DEBUG_RTE_EVENTS (1<<9)
178 #define DEBUG_EVENTS (1<<10)
179 #define DEBUG_ZEBRA (1<<11)
180 #define DEBUG_PACKET_DUMP (1<<12)
181 #define DEBUG_LSP_GEN (1<<13)
182 #define DEBUG_LSP_SCHED (1<<14)
183
184 #define lsp_debug(...) \
185 do { \
186 if (isis->debugs & DEBUG_LSP_GEN) \
187 zlog_debug(__VA_ARGS__); \
188 } while (0)
189
190 #define sched_debug(...) \
191 do { \
192 if (isis->debugs & DEBUG_LSP_SCHED) \
193 zlog_debug(__VA_ARGS__); \
194 } while (0)
195
196 #define DEBUG_TE (1<<13)
197
198 #define IS_DEBUG_ISIS(x) (isis->debugs & x)
199
200 #endif /* ISISD_H */