jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 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 | |
| 26 | #define ISISD_VERSION "0.0.7" |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 27 | |
| 28 | /* uncomment if you are a developer in bug hunt */ |
| 29 | /* #define EXTREME_DEBUG */ |
| 30 | /* #define EXTREME_TLV_DEBUG */ |
| 31 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 32 | struct rmap |
| 33 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 34 | char *name; |
| 35 | struct route_map *map; |
| 36 | }; |
| 37 | |
| 38 | struct isis |
| 39 | { |
| 40 | u_long process_id; |
| 41 | int sysid_set; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 42 | u_char sysid[ISIS_SYS_ID_LEN]; /* SystemID for this IS */ |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 43 | u_int32_t router_id; /* Router ID from zebra */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 44 | struct list *area_list; /* list of IS-IS areas */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 45 | struct list *init_circ_list; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 46 | struct list *nexthops; /* IPv4 next hops from this IS */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 47 | #ifdef HAVE_IPV6 |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 48 | 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 */ |
hasso | d3d7474 | 2005-09-28 18:30:51 +0000 | [diff] [blame] | 54 | struct thread *t_dync_clean; /* dynamic hostname cache cleanup thread */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 55 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 56 | /* Redistributed external information. */ |
| 57 | struct route_table *external_info[ZEBRA_ROUTE_MAX + 1]; |
| 58 | /* Redistribute metric info. */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 59 | struct |
| 60 | { |
| 61 | int type; /* Internal or External */ |
| 62 | int value; /* metric value */ |
| 63 | } dmetric[ZEBRA_ROUTE_MAX + 1]; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 64 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 65 | struct |
| 66 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 67 | char *name; |
| 68 | struct route_map *map; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 69 | } rmap[ZEBRA_ROUTE_MAX + 1]; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 70 | #ifdef HAVE_IPV6 |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 71 | struct |
| 72 | { |
| 73 | struct |
| 74 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 75 | char *name; |
| 76 | struct route_map *map; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 77 | } rmap[ZEBRA_ROUTE_MAX + 1]; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 78 | } inet6_afmode; |
| 79 | #endif |
| 80 | }; |
| 81 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 82 | extern struct isis *isis; |
| 83 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 84 | struct isis_area |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 85 | { |
hasso | fac1f7c | 2005-09-26 18:26:26 +0000 | [diff] [blame] | 86 | struct isis *isis; /* back pointer */ |
| 87 | dict_t *lspdb[ISIS_LEVELS]; /* link-state dbs */ |
| 88 | struct isis_spftree *spftree[ISIS_LEVELS]; /* The v4 SPTs */ |
| 89 | struct route_table *route_table[ISIS_LEVELS]; /* IPv4 routes */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 90 | #ifdef HAVE_IPV6 |
hasso | fac1f7c | 2005-09-26 18:26:26 +0000 | [diff] [blame] | 91 | struct isis_spftree *spftree6[ISIS_LEVELS]; /* The v6 SPTs */ |
| 92 | struct route_table *route_table6[ISIS_LEVELS]; /* IPv6 routes */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 93 | #endif |
Christian Franke | f1fc1db | 2015-11-10 18:43:31 +0100 | [diff] [blame] | 94 | #define DEFAULT_LSP_MTU 1497 |
| 95 | unsigned int lsp_mtu; /* Size of LSPs to generate */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 96 | struct list *circuit_list; /* IS-IS circuits */ |
| 97 | struct flags flags; |
| 98 | struct thread *t_tick; /* LSP walker */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 99 | struct thread *t_lsp_refresh[ISIS_LEVELS]; |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 100 | int lsp_regenerate_pending[ISIS_LEVELS]; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 101 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 102 | /* |
| 103 | * Configurables |
| 104 | */ |
| 105 | struct isis_passwd area_passwd; |
| 106 | struct isis_passwd domain_passwd; |
| 107 | /* do we support dynamic hostnames? */ |
| 108 | char dynhostname; |
| 109 | /* do we support new style metrics? */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 110 | char newmetric; |
hasso | 2984d26 | 2005-09-26 16:49:07 +0000 | [diff] [blame] | 111 | char oldmetric; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 112 | /* identifies the routing instance */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 113 | char *area_tag; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 114 | /* area addresses for this area */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 115 | struct list *area_addrs; |
| 116 | u_int16_t max_lsp_lifetime[ISIS_LEVELS]; |
| 117 | char is_type; /* level-1 level-1-2 or level-2-only */ |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 118 | /* are we overloaded? */ |
| 119 | char overload_bit; |
Amritha Nambiar | c8ee940 | 2015-08-24 16:40:14 -0700 | [diff] [blame] | 120 | /* L1/L2 router identifier for inter-area traffic */ |
| 121 | char attached_bit; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 122 | u_int16_t lsp_refresh[ISIS_LEVELS]; |
| 123 | /* minimum time allowed before lsp retransmission */ |
| 124 | u_int16_t lsp_gen_interval[ISIS_LEVELS]; |
| 125 | /* min interval between between consequtive SPFs */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 126 | u_int16_t min_spf_interval[ISIS_LEVELS]; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 127 | /* the percentage of LSP mtu size used, before generating a new frag */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 128 | int lsp_frag_threshold; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 129 | int ip_circuits; |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 130 | /* logging adjacency changes? */ |
| 131 | u_char log_adj_changes; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 132 | #ifdef HAVE_IPV6 |
| 133 | int ipv6_circuits; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 134 | #endif /* HAVE_IPV6 */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 135 | /* Counters */ |
| 136 | u_int32_t circuit_state_changes; |
hasso | f1082d1 | 2005-09-19 04:23:34 +0000 | [diff] [blame] | 137 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 138 | #ifdef TOPOLOGY_GENERATE |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 139 | struct list *topology; |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 140 | u_char topology_baseis[ISIS_SYS_ID_LEN]; /* IS for the first IS emulated. */ |
hasso | f1082d1 | 2005-09-19 04:23:34 +0000 | [diff] [blame] | 141 | char *topology_basedynh; /* Dynamic hostname base. */ |
| 142 | char top_params[200]; /* FIXME: what is reasonable? */ |
| 143 | #endif /* TOPOLOGY_GENERATE */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 144 | }; |
| 145 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 146 | void isis_init (void); |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 147 | void isis_new(unsigned long); |
| 148 | struct isis_area *isis_area_create(const char *); |
hasso | f90a5f6 | 2004-10-11 13:11:56 +0000 | [diff] [blame] | 149 | struct isis_area *isis_area_lookup (const char *); |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 150 | int isis_area_get (struct vty *vty, const char *area_tag); |
| 151 | void print_debug(struct vty *, int, int); |
| 152 | |
| 153 | /* Master of threads. */ |
| 154 | extern struct thread_master *master; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 155 | |
| 156 | #define DEBUG_ADJ_PACKETS (1<<0) |
| 157 | #define DEBUG_CHECKSUM_ERRORS (1<<1) |
| 158 | #define DEBUG_LOCAL_UPDATES (1<<2) |
| 159 | #define DEBUG_PROTOCOL_ERRORS (1<<3) |
| 160 | #define DEBUG_SNP_PACKETS (1<<4) |
| 161 | #define DEBUG_UPDATE_PACKETS (1<<5) |
| 162 | #define DEBUG_SPF_EVENTS (1<<6) |
| 163 | #define DEBUG_SPF_STATS (1<<7) |
| 164 | #define DEBUG_SPF_TRIGGERS (1<<8) |
| 165 | #define DEBUG_RTE_EVENTS (1<<9) |
| 166 | #define DEBUG_EVENTS (1<<10) |
hasso | c89c05d | 2005-09-04 21:36:36 +0000 | [diff] [blame] | 167 | #define DEBUG_ZEBRA (1<<11) |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 168 | #define DEBUG_PACKET_DUMP (1<<12) |
Christian Franke | 80a8f72 | 2015-11-12 14:21:47 +0100 | [diff] [blame^] | 169 | #define DEBUG_LSP_GEN (1<<13) |
| 170 | |
| 171 | #define lsp_debug(...) \ |
| 172 | do \ |
| 173 | { \ |
| 174 | if (isis->debugs & DEBUG_LSP_GEN) \ |
| 175 | zlog_debug(__VA_ARGS__); \ |
| 176 | } \ |
| 177 | while (0) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 178 | |
| 179 | #endif /* ISISD_H */ |