jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1 | /* |
| 2 | * IS-IS Rout(e)ing protocol - isis_adjacency.c |
| 3 | * handling of IS-IS adjacencies |
| 4 | * |
| 5 | * Copyright (C) 2001,2002 Sampo Saaristo |
| 6 | * Tampere University of Technology |
| 7 | * Institute of Communications Engineering |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify it |
| 10 | * under the terms of the GNU General Public Licenseas published by the Free |
| 11 | * Software Foundation; either version 2 of the License, or (at your option) |
| 12 | * any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful,but WITHOUT |
| 15 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 16 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 17 | * more details. |
| 18 | |
| 19 | * You should have received a copy of the GNU General Public License along |
| 20 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 21 | * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 22 | */ |
| 23 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 24 | #include <zebra.h> |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 25 | |
| 26 | #include "log.h" |
| 27 | #include "memory.h" |
| 28 | #include "hash.h" |
| 29 | #include "vty.h" |
| 30 | #include "linklist.h" |
| 31 | #include "thread.h" |
| 32 | #include "if.h" |
| 33 | #include "stream.h" |
| 34 | |
| 35 | #include "isisd/dict.h" |
| 36 | #include "isisd/include-netbsd/iso.h" |
| 37 | #include "isisd/isis_constants.h" |
| 38 | #include "isisd/isis_common.h" |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 39 | #include "isisd/isis_flags.h" |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 40 | #include "isisd/isisd.h" |
| 41 | #include "isisd/isis_circuit.h" |
| 42 | #include "isisd/isis_adjacency.h" |
| 43 | #include "isisd/isis_misc.h" |
| 44 | #include "isisd/isis_dr.h" |
| 45 | #include "isisd/isis_dynhn.h" |
| 46 | #include "isisd/isis_pdu.h" |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 47 | #include "isisd/isis_tlv.h" |
| 48 | #include "isisd/isis_lsp.h" |
| 49 | #include "isisd/isis_spf.h" |
| 50 | #include "isisd/isis_events.h" |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 51 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 52 | extern struct isis *isis; |
| 53 | |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 54 | static struct isis_adjacency * |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 55 | adj_alloc (u_char * id) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 56 | { |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 57 | struct isis_adjacency *adj; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 58 | |
hasso | aac372f | 2005-09-01 17:52:33 +0000 | [diff] [blame] | 59 | adj = XCALLOC (MTYPE_ISIS_ADJACENCY, sizeof (struct isis_adjacency)); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 60 | memcpy (adj->sysid, id, ISIS_SYS_ID_LEN); |
| 61 | |
| 62 | return adj; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 63 | } |
| 64 | |
| 65 | struct isis_adjacency * |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 66 | isis_new_adj (u_char * id, u_char * snpa, int level, |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 67 | struct isis_circuit *circuit) |
| 68 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 69 | struct isis_adjacency *adj; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 70 | int i; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 71 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 72 | adj = adj_alloc (id); /* P2P kludge */ |
| 73 | |
| 74 | if (adj == NULL) |
| 75 | { |
| 76 | zlog_err ("Out of memory!"); |
| 77 | return NULL; |
| 78 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 79 | |
Paul Jakma | 41b36e9 | 2006-12-08 01:09:50 +0000 | [diff] [blame] | 80 | if (snpa) { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 81 | memcpy (adj->snpa, snpa, ETH_ALEN); |
Paul Jakma | 41b36e9 | 2006-12-08 01:09:50 +0000 | [diff] [blame] | 82 | } else { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 83 | memset (adj->snpa, ' ', ETH_ALEN); |
Paul Jakma | 41b36e9 | 2006-12-08 01:09:50 +0000 | [diff] [blame] | 84 | } |
| 85 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 86 | adj->circuit = circuit; |
| 87 | adj->level = level; |
| 88 | adj->flaps = 0; |
| 89 | adj->last_flap = time (NULL); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 90 | if (circuit->circ_type == CIRCUIT_T_BROADCAST) |
| 91 | { |
| 92 | listnode_add (circuit->u.bc.adjdb[level - 1], adj); |
| 93 | adj->dischanges[level - 1] = 0; |
| 94 | for (i = 0; i < DIS_RECORDS; i++) /* clear N DIS state change records */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 95 | { |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 96 | adj->dis_record[(i * ISIS_LEVELS) + level - 1].dis |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 97 | = ISIS_UNKNOWN_DIS; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 98 | adj->dis_record[(i * ISIS_LEVELS) + level - 1].last_dis_change |
| 99 | = time (NULL); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 100 | } |
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 | return adj; |
| 104 | } |
| 105 | |
| 106 | struct isis_adjacency * |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 107 | isis_adj_lookup (u_char * sysid, struct list *adjdb) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 108 | { |
| 109 | struct isis_adjacency *adj; |
| 110 | struct listnode *node; |
| 111 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 112 | for (ALL_LIST_ELEMENTS_RO (adjdb, node, adj)) |
| 113 | if (memcmp (adj->sysid, sysid, ISIS_SYS_ID_LEN) == 0) |
| 114 | return adj; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 115 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 116 | return NULL; |
| 117 | } |
| 118 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 119 | struct isis_adjacency * |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 120 | isis_adj_lookup_snpa (u_char * ssnpa, struct list *adjdb) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 121 | { |
| 122 | struct listnode *node; |
| 123 | struct isis_adjacency *adj; |
| 124 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 125 | for (ALL_LIST_ELEMENTS_RO (adjdb, node, adj)) |
| 126 | if (memcmp (adj->snpa, ssnpa, ETH_ALEN) == 0) |
| 127 | return adj; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 128 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 129 | return NULL; |
| 130 | } |
| 131 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 132 | void |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 133 | isis_delete_adj (void *arg) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 134 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 135 | struct isis_adjacency *adj = arg; |
| 136 | |
hasso | 3fdb2dd | 2005-09-28 18:45:54 +0000 | [diff] [blame] | 137 | if (!adj) |
| 138 | return; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 139 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 140 | THREAD_TIMER_OFF (adj->t_expire); |
hasso | 13fb40a | 2005-10-01 06:03:04 +0000 | [diff] [blame] | 141 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 142 | /* remove from SPF trees */ |
| 143 | spftree_area_adj_del (adj->circuit->area, adj); |
| 144 | |
| 145 | if (adj->area_addrs) |
| 146 | list_delete (adj->area_addrs); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 147 | if (adj->ipv4_addrs) |
| 148 | list_delete (adj->ipv4_addrs); |
| 149 | #ifdef HAVE_IPV6 |
| 150 | if (adj->ipv6_addrs) |
| 151 | list_delete (adj->ipv6_addrs); |
| 152 | #endif |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 153 | |
hasso | 3fdb2dd | 2005-09-28 18:45:54 +0000 | [diff] [blame] | 154 | XFREE (MTYPE_ISIS_ADJACENCY, adj); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 155 | return; |
| 156 | } |
| 157 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 158 | static const char * |
| 159 | adj_state2string (int state) |
| 160 | { |
| 161 | |
| 162 | switch (state) |
| 163 | { |
| 164 | case ISIS_ADJ_INITIALIZING: |
| 165 | return "Initializing"; |
| 166 | case ISIS_ADJ_UP: |
| 167 | return "Up"; |
| 168 | case ISIS_ADJ_DOWN: |
| 169 | return "Down"; |
| 170 | default: |
| 171 | return "Unknown"; |
| 172 | } |
| 173 | |
| 174 | return NULL; /* not reached */ |
| 175 | } |
| 176 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 177 | void |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 178 | isis_adj_state_change (struct isis_adjacency *adj, enum isis_adj_state new_state, |
hasso | 1cd8084 | 2004-10-07 20:07:40 +0000 | [diff] [blame] | 179 | const char *reason) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 180 | { |
| 181 | int old_state; |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 182 | int level; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 183 | struct isis_circuit *circuit; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 184 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 185 | old_state = adj->adj_state; |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 186 | adj->adj_state = new_state; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 187 | |
| 188 | circuit = adj->circuit; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 189 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 190 | if (isis->debugs & DEBUG_ADJ_PACKETS) |
| 191 | { |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 192 | zlog_debug ("ISIS-Adj (%s): Adjacency state change %d->%d: %s", |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 193 | circuit->area->area_tag, |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 194 | old_state, new_state, reason ? reason : "unspecified"); |
| 195 | } |
| 196 | |
| 197 | if (circuit->area->log_adj_changes) |
| 198 | { |
| 199 | const char *adj_name; |
| 200 | struct isis_dynhn *dyn; |
| 201 | |
| 202 | dyn = dynhn_find_by_id (adj->sysid); |
| 203 | if (dyn) |
| 204 | adj_name = (const char *)dyn->name.name; |
| 205 | else |
| 206 | adj_name = adj->sysid ? sysid_print (adj->sysid) : "unknown"; |
| 207 | |
| 208 | zlog_info ("%%ADJCHANGE: Adjacency to %s (%s) changed from %s to %s, %s", |
| 209 | adj_name, |
David Lamparter | e8aca32 | 2012-11-27 01:10:30 +0000 | [diff] [blame] | 210 | adj->circuit->interface->name, |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 211 | adj_state2string (old_state), |
| 212 | adj_state2string (new_state), |
| 213 | reason ? reason : "unspecified"); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 214 | } |
| 215 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 216 | if (circuit->circ_type == CIRCUIT_T_BROADCAST) |
| 217 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 218 | for (level = IS_LEVEL_1; level <= IS_LEVEL_2; level++) |
| 219 | { |
| 220 | if ((adj->level & level) == 0) |
| 221 | continue; |
| 222 | if (new_state == ISIS_ADJ_UP) |
Subbaiah Venkata | e38e0df | 2012-03-27 23:48:05 -0700 | [diff] [blame] | 223 | { |
| 224 | circuit->upadjcount[level - 1]++; |
| 225 | isis_event_adjacency_state_change (adj, new_state); |
| 226 | /* update counter & timers for debugging purposes */ |
| 227 | adj->last_flap = time (NULL); |
| 228 | adj->flaps++; |
| 229 | } |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 230 | else if (new_state == ISIS_ADJ_DOWN) |
Subbaiah Venkata | e38e0df | 2012-03-27 23:48:05 -0700 | [diff] [blame] | 231 | { |
| 232 | listnode_delete (circuit->u.bc.adjdb[level - 1], adj); |
| 233 | circuit->upadjcount[level - 1]--; |
| 234 | if (circuit->upadjcount[level - 1] == 0) |
| 235 | { |
| 236 | /* Clean lsp_queue when no adj is up. */ |
| 237 | if (circuit->lsp_queue) |
| 238 | list_delete_all_node (circuit->lsp_queue); |
| 239 | } |
| 240 | isis_event_adjacency_state_change (adj, new_state); |
| 241 | isis_delete_adj (adj); |
| 242 | } |
| 243 | |
| 244 | if (circuit->u.bc.lan_neighs[level - 1]) |
| 245 | { |
| 246 | list_delete_all_node (circuit->u.bc.lan_neighs[level - 1]); |
| 247 | isis_adj_build_neigh_list (circuit->u.bc.adjdb[level - 1], |
| 248 | circuit->u.bc.lan_neighs[level - 1]); |
| 249 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 250 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 251 | /* On adjacency state change send new pseudo LSP if we are the DR */ |
| 252 | if (circuit->u.bc.is_dr[level - 1]) |
| 253 | lsp_regenerate_schedule_pseudo (circuit, level); |
| 254 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 255 | } |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 256 | else if (circuit->circ_type == CIRCUIT_T_P2P) |
| 257 | { |
| 258 | for (level = IS_LEVEL_1; level <= IS_LEVEL_2; level++) |
| 259 | { |
| 260 | if ((adj->level & level) == 0) |
| 261 | continue; |
| 262 | if (new_state == ISIS_ADJ_UP) |
Subbaiah Venkata | e38e0df | 2012-03-27 23:48:05 -0700 | [diff] [blame] | 263 | { |
| 264 | circuit->upadjcount[level - 1]++; |
| 265 | isis_event_adjacency_state_change (adj, new_state); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 266 | |
Subbaiah Venkata | e38e0df | 2012-03-27 23:48:05 -0700 | [diff] [blame] | 267 | if (adj->sys_type == ISIS_SYSTYPE_UNKNOWN) |
| 268 | send_hello (circuit, level); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 269 | |
Subbaiah Venkata | e38e0df | 2012-03-27 23:48:05 -0700 | [diff] [blame] | 270 | /* update counter & timers for debugging purposes */ |
| 271 | adj->last_flap = time (NULL); |
| 272 | adj->flaps++; |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 273 | |
Subbaiah Venkata | e38e0df | 2012-03-27 23:48:05 -0700 | [diff] [blame] | 274 | /* 7.3.17 - going up on P2P -> send CSNP */ |
| 275 | /* FIXME: yup, I know its wrong... but i will do it! (for now) */ |
| 276 | send_csnp (circuit, level); |
| 277 | } |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 278 | else if (new_state == ISIS_ADJ_DOWN) |
Subbaiah Venkata | e38e0df | 2012-03-27 23:48:05 -0700 | [diff] [blame] | 279 | { |
| 280 | if (adj->circuit->u.p2p.neighbor == adj) |
| 281 | adj->circuit->u.p2p.neighbor = NULL; |
| 282 | circuit->upadjcount[level - 1]--; |
| 283 | if (circuit->upadjcount[level - 1] == 0) |
| 284 | { |
| 285 | /* Clean lsp_queue when no adj is up. */ |
| 286 | if (circuit->lsp_queue) |
| 287 | list_delete_all_node (circuit->lsp_queue); |
| 288 | } |
| 289 | isis_event_adjacency_state_change (adj, new_state); |
| 290 | isis_delete_adj (adj); |
| 291 | } |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 292 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 293 | } |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 294 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 295 | return; |
| 296 | } |
| 297 | |
| 298 | |
| 299 | void |
| 300 | isis_adj_print (struct isis_adjacency *adj) |
| 301 | { |
| 302 | struct isis_dynhn *dyn; |
| 303 | struct listnode *node; |
| 304 | struct in_addr *ipv4_addr; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 305 | #ifdef HAVE_IPV6 |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 306 | struct in6_addr *ipv6_addr; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 307 | u_char ip6[INET6_ADDRSTRLEN]; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 308 | #endif /* HAVE_IPV6 */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 309 | |
| 310 | if (!adj) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 311 | return; |
| 312 | dyn = dynhn_find_by_id (adj->sysid); |
| 313 | if (dyn) |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 314 | zlog_debug ("%s", dyn->name.name); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 315 | |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 316 | zlog_debug ("SystemId %20s SNPA %s, level %d\nHolding Time %d", |
| 317 | adj->sysid ? sysid_print (adj->sysid) : "unknown", |
| 318 | snpa_print (adj->snpa), adj->level, adj->hold_time); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 319 | if (adj->ipv4_addrs && listcount (adj->ipv4_addrs) > 0) |
| 320 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 321 | zlog_debug ("IPv4 Address(es):"); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 322 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 323 | for (ALL_LIST_ELEMENTS_RO (adj->ipv4_addrs, node, ipv4_addr)) |
| 324 | zlog_debug ("%s", inet_ntoa (*ipv4_addr)); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 325 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 326 | |
| 327 | #ifdef HAVE_IPV6 |
| 328 | if (adj->ipv6_addrs && listcount (adj->ipv6_addrs) > 0) |
| 329 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 330 | zlog_debug ("IPv6 Address(es):"); |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 331 | for (ALL_LIST_ELEMENTS_RO (adj->ipv6_addrs, node, ipv6_addr)) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 332 | { |
hasso | f7c43dc | 2004-09-26 16:24:14 +0000 | [diff] [blame] | 333 | inet_ntop (AF_INET6, ipv6_addr, (char *)ip6, INET6_ADDRSTRLEN); |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 334 | zlog_debug ("%s", ip6); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 335 | } |
| 336 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 337 | #endif /* HAVE_IPV6 */ |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 338 | zlog_debug ("Speaks: %s", nlpid2string (&adj->nlpids)); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 339 | |
| 340 | return; |
| 341 | } |
| 342 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 343 | int |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 344 | isis_adj_expire (struct thread *thread) |
| 345 | { |
| 346 | struct isis_adjacency *adj; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 347 | |
| 348 | /* |
| 349 | * Get the adjacency |
| 350 | */ |
| 351 | adj = THREAD_ARG (thread); |
| 352 | assert (adj); |
hasso | 83fe45e | 2004-02-09 11:09:39 +0000 | [diff] [blame] | 353 | adj->t_expire = NULL; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 354 | |
| 355 | /* trigger the adj expire event */ |
| 356 | isis_adj_state_change (adj, ISIS_ADJ_DOWN, "holding time expired"); |
| 357 | |
| 358 | return 0; |
| 359 | } |
| 360 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 361 | /* |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 362 | * show isis neighbor [detail] |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 363 | */ |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 364 | void |
| 365 | isis_adj_print_vty (struct isis_adjacency *adj, struct vty *vty, char detail) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 366 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 367 | #ifdef HAVE_IPV6 |
| 368 | struct in6_addr *ipv6_addr; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 369 | u_char ip6[INET6_ADDRSTRLEN]; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 370 | #endif /* HAVE_IPV6 */ |
| 371 | struct in_addr *ip_addr; |
| 372 | time_t now; |
| 373 | struct isis_dynhn *dyn; |
| 374 | int level; |
| 375 | struct listnode *node; |
| 376 | |
| 377 | dyn = dynhn_find_by_id (adj->sysid); |
| 378 | if (dyn) |
| 379 | vty_out (vty, " %-20s", dyn->name.name); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 380 | else if (adj->sysid) |
| 381 | { |
| 382 | vty_out (vty, " %-20s", sysid_print (adj->sysid)); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 383 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 384 | else |
| 385 | { |
| 386 | vty_out (vty, " unknown "); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 387 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 388 | |
| 389 | if (detail == ISIS_UI_LEVEL_BRIEF) |
| 390 | { |
| 391 | if (adj->circuit) |
| 392 | vty_out (vty, "%-12s", adj->circuit->interface->name); |
| 393 | else |
| 394 | vty_out (vty, "NULL circuit!"); |
| 395 | vty_out (vty, "%-3u", adj->level); /* level */ |
| 396 | vty_out (vty, "%-13s", adj_state2string (adj->adj_state)); |
| 397 | now = time (NULL); |
| 398 | if (adj->last_upd) |
David Lamparter | ef008d2 | 2015-03-03 08:48:11 +0100 | [diff] [blame] | 399 | vty_out (vty, "%-9llu", |
| 400 | (unsigned long long)adj->last_upd + adj->hold_time - now); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 401 | else |
| 402 | vty_out (vty, "- "); |
| 403 | vty_out (vty, "%-10s", snpa_print (adj->snpa)); |
| 404 | vty_out (vty, "%s", VTY_NEWLINE); |
| 405 | } |
| 406 | |
| 407 | if (detail == ISIS_UI_LEVEL_DETAIL) |
| 408 | { |
| 409 | level = adj->level; |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 410 | vty_out (vty, "%s", VTY_NEWLINE); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 411 | if (adj->circuit) |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 412 | vty_out (vty, " Interface: %s", adj->circuit->interface->name); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 413 | else |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 414 | vty_out (vty, " Interface: NULL circuit"); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 415 | vty_out (vty, ", Level: %u", adj->level); /* level */ |
| 416 | vty_out (vty, ", State: %s", adj_state2string (adj->adj_state)); |
| 417 | now = time (NULL); |
| 418 | if (adj->last_upd) |
| 419 | vty_out (vty, ", Expires in %s", |
| 420 | time2string (adj->last_upd + adj->hold_time - now)); |
| 421 | else |
| 422 | vty_out (vty, ", Expires in %s", time2string (adj->hold_time)); |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 423 | vty_out (vty, "%s", VTY_NEWLINE); |
| 424 | vty_out (vty, " Adjacency flaps: %u", adj->flaps); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 425 | vty_out (vty, ", Last: %s ago", time2string (now - adj->last_flap)); |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 426 | vty_out (vty, "%s", VTY_NEWLINE); |
| 427 | vty_out (vty, " Circuit type: %s", circuit_t2string (adj->circuit_t)); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 428 | vty_out (vty, ", Speaks: %s", nlpid2string (&adj->nlpids)); |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 429 | vty_out (vty, "%s", VTY_NEWLINE); |
| 430 | vty_out (vty, " SNPA: %s", snpa_print (adj->snpa)); |
David Lamparter | e8aca32 | 2012-11-27 01:10:30 +0000 | [diff] [blame] | 431 | if (adj->circuit && (adj->circuit->circ_type == CIRCUIT_T_BROADCAST)) |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 432 | { |
| 433 | dyn = dynhn_find_by_id (adj->lanid); |
| 434 | if (dyn) |
| 435 | vty_out (vty, ", LAN id: %s.%02x", |
| 436 | dyn->name.name, adj->lanid[ISIS_SYS_ID_LEN]); |
| 437 | else |
| 438 | vty_out (vty, ", LAN id: %s.%02x", |
| 439 | sysid_print (adj->lanid), adj->lanid[ISIS_SYS_ID_LEN]); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 440 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 441 | vty_out (vty, "%s", VTY_NEWLINE); |
| 442 | vty_out (vty, " LAN Priority: %u", adj->prio[adj->level - 1]); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 443 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 444 | vty_out (vty, ", %s, DIS flaps: %u, Last: %s ago", |
| 445 | isis_disflag2string (adj->dis_record[ISIS_LEVELS + level - 1]. |
| 446 | dis), adj->dischanges[level - 1], |
| 447 | time2string (now - |
| 448 | (adj->dis_record[ISIS_LEVELS + level - 1]. |
| 449 | last_dis_change))); |
| 450 | } |
| 451 | vty_out (vty, "%s", VTY_NEWLINE); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 452 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 453 | if (adj->area_addrs && listcount (adj->area_addrs) > 0) |
| 454 | { |
| 455 | struct area_addr *area_addr; |
| 456 | vty_out (vty, " Area Address(es):%s", VTY_NEWLINE); |
| 457 | for (ALL_LIST_ELEMENTS_RO (adj->area_addrs, node, area_addr)) |
| 458 | vty_out (vty, " %s%s", isonet_print (area_addr->area_addr, |
| 459 | area_addr->addr_len), VTY_NEWLINE); |
| 460 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 461 | if (adj->ipv4_addrs && listcount (adj->ipv4_addrs) > 0) |
| 462 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 463 | vty_out (vty, " IPv4 Address(es):%s", VTY_NEWLINE); |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 464 | for (ALL_LIST_ELEMENTS_RO (adj->ipv4_addrs, node, ip_addr)) |
| 465 | vty_out (vty, " %s%s", inet_ntoa (*ip_addr), VTY_NEWLINE); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 466 | } |
| 467 | #ifdef HAVE_IPV6 |
| 468 | if (adj->ipv6_addrs && listcount (adj->ipv6_addrs) > 0) |
| 469 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 470 | vty_out (vty, " IPv6 Address(es):%s", VTY_NEWLINE); |
hasso | 5d6e269 | 2005-04-12 14:48:19 +0000 | [diff] [blame] | 471 | for (ALL_LIST_ELEMENTS_RO (adj->ipv6_addrs, node, ipv6_addr)) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 472 | { |
hasso | f7c43dc | 2004-09-26 16:24:14 +0000 | [diff] [blame] | 473 | inet_ntop (AF_INET6, ipv6_addr, (char *)ip6, INET6_ADDRSTRLEN); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 474 | vty_out (vty, " %s%s", ip6, VTY_NEWLINE); |
| 475 | } |
| 476 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 477 | #endif /* HAVE_IPV6 */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 478 | vty_out (vty, "%s", VTY_NEWLINE); |
| 479 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 480 | return; |
| 481 | } |
| 482 | |
| 483 | void |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 484 | isis_adj_build_neigh_list (struct list *adjdb, struct list *list) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 485 | { |
| 486 | struct isis_adjacency *adj; |
| 487 | struct listnode *node; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 488 | |
| 489 | if (!list) |
| 490 | { |
| 491 | zlog_warn ("isis_adj_build_neigh_list(): NULL list"); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 492 | return; |
| 493 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 494 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 495 | for (ALL_LIST_ELEMENTS_RO (adjdb, node, adj)) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 496 | { |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 497 | if (!adj) |
| 498 | { |
| 499 | zlog_warn ("isis_adj_build_neigh_list(): NULL adj"); |
| 500 | return; |
| 501 | } |
| 502 | |
| 503 | if ((adj->adj_state == ISIS_ADJ_UP || |
| 504 | adj->adj_state == ISIS_ADJ_INITIALIZING)) |
| 505 | listnode_add (list, adj->snpa); |
| 506 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 507 | return; |
| 508 | } |
| 509 | |
| 510 | void |
| 511 | isis_adj_build_up_list (struct list *adjdb, struct list *list) |
| 512 | { |
| 513 | struct isis_adjacency *adj; |
| 514 | struct listnode *node; |
| 515 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 516 | if (!list) |
| 517 | { |
| 518 | zlog_warn ("isis_adj_build_up_list(): NULL list"); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 519 | return; |
| 520 | } |
| 521 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 522 | for (ALL_LIST_ELEMENTS_RO (adjdb, node, adj)) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 523 | { |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 524 | if (!adj) |
| 525 | { |
| 526 | zlog_warn ("isis_adj_build_up_list(): NULL adj"); |
| 527 | return; |
| 528 | } |
| 529 | |
| 530 | if (adj->adj_state == ISIS_ADJ_UP) |
| 531 | listnode_add (list, adj); |
| 532 | } |
| 533 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 534 | return; |
| 535 | } |