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 */ |
| 43 | struct list *area_list; /* list of IS-IS areas */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 44 | struct list *init_circ_list; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 45 | struct list *nexthops; /* IPv4 next hops from this IS */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 46 | #ifdef HAVE_IPV6 |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 47 | struct list *nexthops6; /* IPv6 next hops from this IS */ |
| 48 | #endif /* HAVE_IPV6 */ |
| 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 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 54 | /* Redistributed external information. */ |
| 55 | struct route_table *external_info[ZEBRA_ROUTE_MAX + 1]; |
| 56 | /* Redistribute metric info. */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 57 | struct |
| 58 | { |
| 59 | int type; /* Internal or External */ |
| 60 | int value; /* metric value */ |
| 61 | } dmetric[ZEBRA_ROUTE_MAX + 1]; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 62 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 63 | struct |
| 64 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 65 | char *name; |
| 66 | struct route_map *map; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 67 | } rmap[ZEBRA_ROUTE_MAX + 1]; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 68 | #ifdef HAVE_IPV6 |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 69 | struct |
| 70 | { |
| 71 | struct |
| 72 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 73 | char *name; |
| 74 | struct route_map *map; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 75 | } rmap[ZEBRA_ROUTE_MAX + 1]; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 76 | } inet6_afmode; |
| 77 | #endif |
| 78 | }; |
| 79 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 80 | struct isis_area |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 81 | { |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 82 | struct isis *isis; /* back pointer */ |
| 83 | dict_t *lspdb[ISIS_LEVELS]; /* link-state dbs */ |
| 84 | struct isis_spftree *spftree[ISIS_LEVELS]; /* The v4 SPTs */ |
| 85 | struct route_table *route_table; /* IPv4 routes */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 86 | #ifdef HAVE_IPV6 |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 87 | struct isis_spftree *spftree6[ISIS_LEVELS]; /* The v4 SPTs */ |
| 88 | struct route_table *route_table6; /* IPv6 routes */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 89 | #endif |
hasso | f90a5f6 | 2004-10-11 13:11:56 +0000 | [diff] [blame] | 90 | unsigned int min_bcast_mtu; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 91 | struct list *circuit_list; /* IS-IS circuits */ |
| 92 | struct flags flags; |
| 93 | struct thread *t_tick; /* LSP walker */ |
| 94 | struct thread *t_remove_aged; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 95 | int lsp_regenerate_pending[ISIS_LEVELS]; |
| 96 | struct thread *t_lsp_refresh[ISIS_LEVELS]; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 97 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 98 | /* |
| 99 | * Configurables |
| 100 | */ |
| 101 | struct isis_passwd area_passwd; |
| 102 | struct isis_passwd domain_passwd; |
| 103 | /* do we support dynamic hostnames? */ |
| 104 | char dynhostname; |
| 105 | /* do we support new style metrics? */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 106 | char newmetric; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 107 | /* identifies the routing instance */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 108 | char *area_tag; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 109 | /* area addresses for this area */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 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 */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 113 | u_int16_t lsp_refresh[ISIS_LEVELS]; |
| 114 | /* minimum time allowed before lsp retransmission */ |
| 115 | u_int16_t lsp_gen_interval[ISIS_LEVELS]; |
| 116 | /* min interval between between consequtive SPFs */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 117 | u_int16_t min_spf_interval[ISIS_LEVELS]; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 118 | /* the percentage of LSP mtu size used, before generating a new frag */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 119 | int lsp_frag_threshold; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 120 | int ip_circuits; |
| 121 | #ifdef HAVE_IPV6 |
| 122 | int ipv6_circuits; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 123 | #endif /* HAVE_IPV6 */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 124 | /* Counters */ |
| 125 | u_int32_t circuit_state_changes; |
| 126 | #ifdef TOPOLOGY_GENERATE |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 127 | struct list *topology; |
| 128 | char topology_baseis[ISIS_SYS_ID_LEN]; /* is for the first is emulated */ |
| 129 | char top_params[200]; /* FIXME: what is reasonable? */ |
| 130 | #endif /* TOPOLOGY_GENERATE */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 131 | }; |
| 132 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 133 | void isis_init (void); |
hasso | f90a5f6 | 2004-10-11 13:11:56 +0000 | [diff] [blame] | 134 | struct isis_area *isis_area_lookup (const char *); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 135 | |
| 136 | #define DEBUG_ADJ_PACKETS (1<<0) |
| 137 | #define DEBUG_CHECKSUM_ERRORS (1<<1) |
| 138 | #define DEBUG_LOCAL_UPDATES (1<<2) |
| 139 | #define DEBUG_PROTOCOL_ERRORS (1<<3) |
| 140 | #define DEBUG_SNP_PACKETS (1<<4) |
| 141 | #define DEBUG_UPDATE_PACKETS (1<<5) |
| 142 | #define DEBUG_SPF_EVENTS (1<<6) |
| 143 | #define DEBUG_SPF_STATS (1<<7) |
| 144 | #define DEBUG_SPF_TRIGGERS (1<<8) |
| 145 | #define DEBUG_RTE_EVENTS (1<<9) |
| 146 | #define DEBUG_EVENTS (1<<10) |
| 147 | |
| 148 | #endif /* ISISD_H */ |