blob: a8e60d6d52a1f1161a0ff81a2c14712aa73ed097 [file] [log] [blame]
jardineb5d44e2003-12-23 08:09:43 +00001/*
2 * IS-IS Rout(e)ing protocol - isis_events.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#include <stdlib.h>
23#include <stdio.h>
24#include <ctype.h>
25#include <zebra.h>
jardineb5d44e2003-12-23 08:09:43 +000026
27#include "log.h"
28#include "memory.h"
29#include "if.h"
30#include "linklist.h"
31#include "command.h"
32#include "thread.h"
33#include "hash.h"
34#include "prefix.h"
35#include "stream.h"
36
37#include "isisd/dict.h"
38#include "isisd/include-netbsd/iso.h"
39#include "isisd/isis_constants.h"
40#include "isisd/isis_common.h"
41#include "isisd/isis_circuit.h"
42#include "isisd/isis_tlv.h"
43#include "isisd/isis_lsp.h"
44#include "isisd/isis_pdu.h"
45#include "isisd/isis_network.h"
46#include "isisd/isis_misc.h"
47#include "isisd/isis_constants.h"
48#include "isisd/isis_adjacency.h"
49#include "isisd/isis_dr.h"
50#include "isisd/isis_flags.h"
51#include "isisd/isisd.h"
52#include "isisd/isis_csm.h"
53#include "isisd/isis_events.h"
54#include "isisd/isis_spf.h"
55
56extern struct thread_master *master;
57extern struct isis *isis;
58
59/* debug isis-spf spf-events
60 4w4d: ISIS-Spf (tlt): L2 SPF needed, new adjacency, from 0x609229F4
61 4w4d: ISIS-Spf (tlt): L2, 0000.0000.0042.01-00 TLV contents changed, code 0x2
62 4w4d: ISIS-Spf (tlt): L2, new LSP 0 DEAD.BEEF.0043.00-00
63 4w5d: ISIS-Spf (tlt): L1 SPF needed, periodic SPF, from 0x6091C844
64 4w5d: ISIS-Spf (tlt): L2 SPF needed, periodic SPF, from 0x6091C844
65*/
66
hassof390d2c2004-09-10 20:48:21 +000067void
jardineb5d44e2003-12-23 08:09:43 +000068isis_event_circuit_state_change (struct isis_circuit *circuit, int up)
69{
70 struct isis_area *area;
hassof390d2c2004-09-10 20:48:21 +000071
jardineb5d44e2003-12-23 08:09:43 +000072 area = circuit->area;
73 assert (area);
74 area->circuit_state_changes++;
hassof390d2c2004-09-10 20:48:21 +000075
76 if (isis->debugs & DEBUG_EVENTS)
hasso529d65b2004-12-24 00:14:50 +000077 zlog_debug ("ISIS-Evt (%s) circuit %s", circuit->area->area_tag,
jardineb5d44e2003-12-23 08:09:43 +000078 up ? "up" : "down");
hassof390d2c2004-09-10 20:48:21 +000079
jardineb5d44e2003-12-23 08:09:43 +000080 /*
81 * Regenerate LSPs this affects
82 */
83 lsp_regenerate_schedule (area);
84
85 return;
86}
87
hassof390d2c2004-09-10 20:48:21 +000088void
jardineb5d44e2003-12-23 08:09:43 +000089isis_event_system_type_change (struct isis_area *area, int newtype)
90{
paul1eb8ef22005-04-07 07:30:20 +000091 struct listnode *node, *nnode;
jardineb5d44e2003-12-23 08:09:43 +000092 struct isis_circuit *circuit;
93
hassof390d2c2004-09-10 20:48:21 +000094 if (isis->debugs & DEBUG_EVENTS)
hasso529d65b2004-12-24 00:14:50 +000095 zlog_debug ("ISIS-Evt (%s) system type change %s -> %s", area->area_tag,
jardineb5d44e2003-12-23 08:09:43 +000096 circuit_t2string (area->is_type), circuit_t2string (newtype));
hassof390d2c2004-09-10 20:48:21 +000097
jardineb5d44e2003-12-23 08:09:43 +000098 if (area->is_type == newtype)
hassof390d2c2004-09-10 20:48:21 +000099 return; /* No change */
100
101 switch (area->is_type)
102 {
103 case IS_LEVEL_1:
104 if (area->lspdb[1] == NULL)
105 area->lspdb[1] = lsp_db_init ();
106 lsp_l2_generate (area);
107 break;
108 case IS_LEVEL_1_AND_2:
109 if (newtype == IS_LEVEL_1)
110 {
111 lsp_db_destroy (area->lspdb[1]);
112 }
113 else
114 {
115 lsp_db_destroy (area->lspdb[0]);
116 }
117 break;
118 case IS_LEVEL_2:
119 if (area->lspdb[0] == NULL)
120 area->lspdb[0] = lsp_db_init ();
121 lsp_l1_generate (area);
122 break;
123 default:
124 break;
125 }
126
jardineb5d44e2003-12-23 08:09:43 +0000127 area->is_type = newtype;
paul1eb8ef22005-04-07 07:30:20 +0000128 for (ALL_LIST_ELEMENTS (area->circuit_list, node, nnode, circuit))
129 isis_event_circuit_type_change (circuit, newtype);
jardineb5d44e2003-12-23 08:09:43 +0000130
131 spftree_area_init (area);
132 lsp_regenerate_schedule (area);
133
134 return;
135}
136
hassof390d2c2004-09-10 20:48:21 +0000137void
jardineb5d44e2003-12-23 08:09:43 +0000138isis_event_area_addr_change (struct isis_area *area)
139{
140
141}
142
hasso92365882005-01-18 13:53:33 +0000143static void
jardineb5d44e2003-12-23 08:09:43 +0000144circuit_commence_level (struct isis_circuit *circuit, int level)
145{
hassof390d2c2004-09-10 20:48:21 +0000146 if (level == 1)
147 {
148 THREAD_TIMER_ON (master, circuit->t_send_psnp[0], send_l1_psnp, circuit,
149 isis_jitter (circuit->psnp_interval[0], PSNP_JITTER));
hassod70f99e2004-02-11 20:26:31 +0000150
hassof390d2c2004-09-10 20:48:21 +0000151 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
152 {
hassof390d2c2004-09-10 20:48:21 +0000153 THREAD_TIMER_ON (master, circuit->u.bc.t_run_dr[0], isis_run_dr_l1,
hassoa211d652004-09-20 14:55:29 +0000154 circuit, 2 * circuit->hello_interval[1]);
hassof390d2c2004-09-10 20:48:21 +0000155
156 THREAD_TIMER_ON (master, circuit->u.bc.t_send_lan_hello[0],
157 send_lan_l1_hello, circuit,
158 isis_jitter (circuit->hello_interval[0],
159 IIH_JITTER));
160
161 circuit->u.bc.lan_neighs[0] = list_new ();
162 }
jardineb5d44e2003-12-23 08:09:43 +0000163 }
hassof390d2c2004-09-10 20:48:21 +0000164 else
165 {
166 THREAD_TIMER_ON (master, circuit->t_send_psnp[1], send_l2_psnp, circuit,
167 isis_jitter (circuit->psnp_interval[1], PSNP_JITTER));
168
169 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
170 {
hassof390d2c2004-09-10 20:48:21 +0000171 THREAD_TIMER_ON (master, circuit->u.bc.t_run_dr[1], isis_run_dr_l2,
hassoa211d652004-09-20 14:55:29 +0000172 circuit, 2 * circuit->hello_interval[1]);
hassof390d2c2004-09-10 20:48:21 +0000173
174 THREAD_TIMER_ON (master, circuit->u.bc.t_send_lan_hello[1],
175 send_lan_l2_hello, circuit,
176 isis_jitter (circuit->hello_interval[1],
177 IIH_JITTER));
178
179 circuit->u.bc.lan_neighs[1] = list_new ();
180 }
181 }
182
jardineb5d44e2003-12-23 08:09:43 +0000183 return;
184}
185
hasso92365882005-01-18 13:53:33 +0000186static void
jardineb5d44e2003-12-23 08:09:43 +0000187circuit_resign_level (struct isis_circuit *circuit, int level)
188{
189 int idx = level - 1;
jardineb5d44e2003-12-23 08:09:43 +0000190
hassof390d2c2004-09-10 20:48:21 +0000191 THREAD_TIMER_OFF (circuit->t_send_csnp[idx]);
192 THREAD_TIMER_OFF (circuit->t_send_psnp[idx]);
193
194 if (circuit->circ_type == CIRCUIT_T_BROADCAST)
195 {
196 THREAD_TIMER_OFF (circuit->u.bc.t_send_lan_hello[idx]);
197 THREAD_TIMER_OFF (circuit->u.bc.t_run_dr[idx]);
198 circuit->u.bc.run_dr_elect[idx] = 0;
199 }
200
jardineb5d44e2003-12-23 08:09:43 +0000201 return;
202}
203
hassof390d2c2004-09-10 20:48:21 +0000204void
205isis_event_circuit_type_change (struct isis_circuit *circuit, int newtype)
jardineb5d44e2003-12-23 08:09:43 +0000206{
hassof390d2c2004-09-10 20:48:21 +0000207
208 if (isis->debugs & DEBUG_EVENTS)
hasso529d65b2004-12-24 00:14:50 +0000209 zlog_debug ("ISIS-Evt (%s) circuit type change %s -> %s",
hassof390d2c2004-09-10 20:48:21 +0000210 circuit->area->area_tag,
211 circuit_t2string (circuit->circuit_is_type),
jardineb5d44e2003-12-23 08:09:43 +0000212 circuit_t2string (newtype));
213
214 if (circuit->circuit_is_type == newtype)
hassof390d2c2004-09-10 20:48:21 +0000215 return; /* No change */
jardineb5d44e2003-12-23 08:09:43 +0000216
hassof390d2c2004-09-10 20:48:21 +0000217 if (!(newtype & circuit->area->is_type))
218 {
219 zlog_err ("ISIS-Evt (%s) circuit type change - invalid level %s because"
220 " area is %s", circuit->area->area_tag,
221 circuit_t2string (newtype),
222 circuit_t2string (circuit->area->is_type));
223 return;
224 }
225
226 switch (circuit->circuit_is_type)
227 {
228 case IS_LEVEL_1:
229 if (newtype == IS_LEVEL_2)
230 circuit_resign_level (circuit, 1);
231 circuit_commence_level (circuit, 2);
232 break;
233 case IS_LEVEL_1_AND_2:
234 if (newtype == IS_LEVEL_1)
235 circuit_resign_level (circuit, 2);
236 else
237 circuit_resign_level (circuit, 1);
238 break;
239 case IS_LEVEL_2:
240 if (newtype == IS_LEVEL_1)
241 circuit_resign_level (circuit, 2);
242 circuit_commence_level (circuit, 1);
243 break;
244 default:
245 break;
246 }
247
jardineb5d44e2003-12-23 08:09:43 +0000248 circuit->circuit_is_type = newtype;
249 lsp_regenerate_schedule (circuit->area);
250
251 return;
252}
253
254 /* 04/18/2002 by Gwak. */
255 /**************************************************************************
256 *
257 * EVENTS for LSP generation
258 *
259 * 1) an Adajacency or Circuit Up/Down event
260 * 2) a chnage in Circuit metric
261 * 3) a change in Reachable Address metric
262 * 4) a change in manualAreaAddresses
263 * 5) a change in systemID
264 * 6) a change in DIS status
265 * 7) a chnage in the waiting status
266 *
267 * ***********************************************************************
268 *
269 * current support event
270 *
271 * 1) Adjacency Up/Down event
272 * 6) a change in DIS status
273 *
274 * ***********************************************************************/
275
hassof390d2c2004-09-10 20:48:21 +0000276void
jardineb5d44e2003-12-23 08:09:43 +0000277isis_event_adjacency_state_change (struct isis_adjacency *adj, int newstate)
278{
279 /* adjacency state change event.
280 * - the only proto-type was supported */
hassof390d2c2004-09-10 20:48:21 +0000281
282 /* invalid arguments */
283 if (!adj || !adj->circuit || !adj->circuit->area)
284 return;
285
hassoc89c05d2005-09-04 21:36:36 +0000286 if (isis->debugs & DEBUG_EVENTS)
287 zlog_debug ("ISIS-Evt (%s) Adjacency State change",
288 adj->circuit->area->area_tag);
hassof390d2c2004-09-10 20:48:21 +0000289
jardineb5d44e2003-12-23 08:09:43 +0000290 /* LSP generation again */
291 lsp_regenerate_schedule (adj->circuit->area);
292
293 return;
294}
295
296/* events supporting code */
297
298int
299isis_event_dis_status_change (struct thread *thread)
300{
301 struct isis_circuit *circuit;
hassof390d2c2004-09-10 20:48:21 +0000302
jardineb5d44e2003-12-23 08:09:43 +0000303 circuit = THREAD_ARG (thread);
hassof390d2c2004-09-10 20:48:21 +0000304
jardineb5d44e2003-12-23 08:09:43 +0000305 /* invalid arguments */
hassof390d2c2004-09-10 20:48:21 +0000306 if (!circuit || !circuit->area)
307 return 0;
hassoc89c05d2005-09-04 21:36:36 +0000308 if (isis->debugs & DEBUG_EVENTS)
309 zlog_debug ("ISIS-Evt (%s) DIS status change", circuit->area->area_tag);
jardineb5d44e2003-12-23 08:09:43 +0000310
311 /* LSP generation again */
312 lsp_regenerate_schedule (circuit->area);
hassof390d2c2004-09-10 20:48:21 +0000313
jardineb5d44e2003-12-23 08:09:43 +0000314 return 0;
315}
316
hassof390d2c2004-09-10 20:48:21 +0000317void
hasso1cd80842004-10-07 20:07:40 +0000318isis_event_auth_failure (char *area_tag, const char *error_string, u_char *sysid)
jardineb5d44e2003-12-23 08:09:43 +0000319{
hassoc89c05d2005-09-04 21:36:36 +0000320 if (isis->debugs & DEBUG_EVENTS)
321 zlog_debug ("ISIS-Evt (%s) Authentication failure %s from %s",
322 area_tag, error_string, sysid_print (sysid));
hassof390d2c2004-09-10 20:48:21 +0000323
jardineb5d44e2003-12-23 08:09:43 +0000324 return;
325}