blob: c347bf0cb294dff7a75a33b049e37dd649b8a4c6 [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
28/* uncomment if you are a developer in bug hunt */
29/* #define EXTREME_DEBUG */
30/* #define EXTREME_TLV_DEBUG */
31
32/* If you want topology stuff compiled in */
33/* #define TOPOLOGY_GENERATE */
34
hassof390d2c2004-09-10 20:48:21 +000035struct rmap
36{
jardineb5d44e2003-12-23 08:09:43 +000037 char *name;
38 struct route_map *map;
39};
40
41struct isis
42{
43 u_long process_id;
44 int sysid_set;
hassof390d2c2004-09-10 20:48:21 +000045 u_char sysid[ISIS_SYS_ID_LEN]; /* SystemID for this IS */
46 struct list *area_list; /* list of IS-IS areas */
jardineb5d44e2003-12-23 08:09:43 +000047 struct list *init_circ_list;
hassof390d2c2004-09-10 20:48:21 +000048 struct list *nexthops; /* IPv4 next hops from this IS */
jardineb5d44e2003-12-23 08:09:43 +000049#ifdef HAVE_IPV6
hassof390d2c2004-09-10 20:48:21 +000050 struct list *nexthops6; /* IPv6 next hops from this IS */
51#endif /* HAVE_IPV6 */
52 u_char max_area_addrs; /* maximumAreaAdresses */
53 struct area_addr *man_area_addrs; /* manualAreaAddresses */
54 u_int32_t debugs; /* bitmap for debug */
55 time_t uptime; /* when did we start */
56
jardineb5d44e2003-12-23 08:09:43 +000057 /* Redistributed external information. */
58 struct route_table *external_info[ZEBRA_ROUTE_MAX + 1];
59 /* Redistribute metric info. */
hassof390d2c2004-09-10 20:48:21 +000060 struct
61 {
62 int type; /* Internal or External */
63 int value; /* metric value */
64 } dmetric[ZEBRA_ROUTE_MAX + 1];
jardineb5d44e2003-12-23 08:09:43 +000065
hassof390d2c2004-09-10 20:48:21 +000066 struct
67 {
jardineb5d44e2003-12-23 08:09:43 +000068 char *name;
69 struct route_map *map;
hassof390d2c2004-09-10 20:48:21 +000070 } rmap[ZEBRA_ROUTE_MAX + 1];
jardineb5d44e2003-12-23 08:09:43 +000071#ifdef HAVE_IPV6
hassof390d2c2004-09-10 20:48:21 +000072 struct
73 {
74 struct
75 {
jardineb5d44e2003-12-23 08:09:43 +000076 char *name;
77 struct route_map *map;
hassof390d2c2004-09-10 20:48:21 +000078 } rmap[ZEBRA_ROUTE_MAX + 1];
jardineb5d44e2003-12-23 08:09:43 +000079 } inet6_afmode;
80#endif
81};
82
hassof390d2c2004-09-10 20:48:21 +000083struct isis_area
jardineb5d44e2003-12-23 08:09:43 +000084{
hassof390d2c2004-09-10 20:48:21 +000085 struct isis *isis; /* back pointer */
86 dict_t *lspdb[ISIS_LEVELS]; /* link-state dbs */
87 struct isis_spftree *spftree[ISIS_LEVELS]; /* The v4 SPTs */
88 struct route_table *route_table; /* IPv4 routes */
jardineb5d44e2003-12-23 08:09:43 +000089#ifdef HAVE_IPV6
hassof390d2c2004-09-10 20:48:21 +000090 struct isis_spftree *spftree6[ISIS_LEVELS]; /* The v4 SPTs */
91 struct route_table *route_table6; /* IPv6 routes */
jardineb5d44e2003-12-23 08:09:43 +000092#endif
hassof90a5f62004-10-11 13:11:56 +000093 unsigned int min_bcast_mtu;
hassof390d2c2004-09-10 20:48:21 +000094 struct list *circuit_list; /* IS-IS circuits */
95 struct flags flags;
96 struct thread *t_tick; /* LSP walker */
97 struct thread *t_remove_aged;
jardineb5d44e2003-12-23 08:09:43 +000098 int lsp_regenerate_pending[ISIS_LEVELS];
99 struct thread *t_lsp_refresh[ISIS_LEVELS];
hassof390d2c2004-09-10 20:48:21 +0000100
jardineb5d44e2003-12-23 08:09:43 +0000101 /*
102 * Configurables
103 */
104 struct isis_passwd area_passwd;
105 struct isis_passwd domain_passwd;
106 /* do we support dynamic hostnames? */
107 char dynhostname;
108 /* do we support new style metrics? */
hassof390d2c2004-09-10 20:48:21 +0000109 char newmetric;
jardineb5d44e2003-12-23 08:09:43 +0000110 /* identifies the routing instance */
hassof390d2c2004-09-10 20:48:21 +0000111 char *area_tag;
jardineb5d44e2003-12-23 08:09:43 +0000112 /* area addresses for this area */
hassof390d2c2004-09-10 20:48:21 +0000113 struct list *area_addrs;
114 u_int16_t max_lsp_lifetime[ISIS_LEVELS];
115 char is_type; /* level-1 level-1-2 or level-2-only */
jardineb5d44e2003-12-23 08:09:43 +0000116 u_int16_t lsp_refresh[ISIS_LEVELS];
117 /* minimum time allowed before lsp retransmission */
118 u_int16_t lsp_gen_interval[ISIS_LEVELS];
119 /* min interval between between consequtive SPFs */
hassof390d2c2004-09-10 20:48:21 +0000120 u_int16_t min_spf_interval[ISIS_LEVELS];
jardineb5d44e2003-12-23 08:09:43 +0000121 /* the percentage of LSP mtu size used, before generating a new frag */
hassof390d2c2004-09-10 20:48:21 +0000122 int lsp_frag_threshold;
jardineb5d44e2003-12-23 08:09:43 +0000123 int ip_circuits;
124#ifdef HAVE_IPV6
125 int ipv6_circuits;
hassof390d2c2004-09-10 20:48:21 +0000126#endif /* HAVE_IPV6 */
jardineb5d44e2003-12-23 08:09:43 +0000127 /* Counters */
128 u_int32_t circuit_state_changes;
129#ifdef TOPOLOGY_GENERATE
hassof390d2c2004-09-10 20:48:21 +0000130 struct list *topology;
131 char topology_baseis[ISIS_SYS_ID_LEN]; /* is for the first is emulated */
132 char top_params[200]; /* FIXME: what is reasonable? */
133#endif /* TOPOLOGY_GENERATE */
jardineb5d44e2003-12-23 08:09:43 +0000134};
135
hassof390d2c2004-09-10 20:48:21 +0000136void isis_init (void);
hassof90a5f62004-10-11 13:11:56 +0000137struct isis_area *isis_area_lookup (const char *);
jardineb5d44e2003-12-23 08:09:43 +0000138
139#define DEBUG_ADJ_PACKETS (1<<0)
140#define DEBUG_CHECKSUM_ERRORS (1<<1)
141#define DEBUG_LOCAL_UPDATES (1<<2)
142#define DEBUG_PROTOCOL_ERRORS (1<<3)
143#define DEBUG_SNP_PACKETS (1<<4)
144#define DEBUG_UPDATE_PACKETS (1<<5)
145#define DEBUG_SPF_EVENTS (1<<6)
146#define DEBUG_SPF_STATS (1<<7)
147#define DEBUG_SPF_TRIGGERS (1<<8)
148#define DEBUG_RTE_EVENTS (1<<9)
149#define DEBUG_EVENTS (1<<10)
150
151#endif /* ISISD_H */