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