blob: dec7096cf0006dfbdb65d303bd09979dca5c1ca7 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/*
hasso508e53e2004-05-18 18:57:06 +00002 * Copyright (C) 2003 Yasuhiro Ohara
paul718e3742002-12-13 20:15:29 +00003 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with GNU Zebra; see the file COPYING. If not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
20 */
21
22#include <zebra.h>
23
24#include "log.h"
25#include "memory.h"
26#include "vty.h"
27#include "linklist.h"
28#include "prefix.h"
29#include "table.h"
30#include "thread.h"
31#include "command.h"
32
paul718e3742002-12-13 20:15:29 +000033#include "ospf6_proto.h"
hasso508e53e2004-05-18 18:57:06 +000034#include "ospf6_message.h"
paul718e3742002-12-13 20:15:29 +000035#include "ospf6_lsa.h"
36#include "ospf6_lsdb.h"
paul718e3742002-12-13 20:15:29 +000037#include "ospf6_route.h"
38#include "ospf6_zebra.h"
39
hasso508e53e2004-05-18 18:57:06 +000040#include "ospf6_top.h"
41#include "ospf6_area.h"
42#include "ospf6_interface.h"
43#include "ospf6_neighbor.h"
paul718e3742002-12-13 20:15:29 +000044
hasso6452df02004-08-15 05:52:07 +000045#include "ospf6_flood.h"
hasso508e53e2004-05-18 18:57:06 +000046#include "ospf6_asbr.h"
hasso049207c2004-08-04 20:02:13 +000047#include "ospf6_abr.h"
hasso6452df02004-08-15 05:52:07 +000048#include "ospf6_intra.h"
Dinesh Dutt3810e062013-08-24 07:54:09 +000049#include "ospf6_spf.h"
hasso049207c2004-08-04 20:02:13 +000050#include "ospf6d.h"
paul718e3742002-12-13 20:15:29 +000051
52/* global ospf6d variable */
53struct ospf6 *ospf6;
54
Tom Goffae2254a2010-11-10 13:01:41 -080055static void ospf6_disable (struct ospf6 *o);
56
Paul Jakma6ac29a52008-08-15 13:45:30 +010057static void
hasso508e53e2004-05-18 18:57:06 +000058ospf6_top_lsdb_hook_add (struct ospf6_lsa *lsa)
paul718e3742002-12-13 20:15:29 +000059{
hasso508e53e2004-05-18 18:57:06 +000060 switch (ntohs (lsa->header->type))
paul718e3742002-12-13 20:15:29 +000061 {
hasso508e53e2004-05-18 18:57:06 +000062 case OSPF6_LSTYPE_AS_EXTERNAL:
63 ospf6_asbr_lsa_add (lsa);
64 break;
65
66 default:
hasso508e53e2004-05-18 18:57:06 +000067 break;
paul718e3742002-12-13 20:15:29 +000068 }
69}
70
Paul Jakma6ac29a52008-08-15 13:45:30 +010071static void
hasso508e53e2004-05-18 18:57:06 +000072ospf6_top_lsdb_hook_remove (struct ospf6_lsa *lsa)
paul718e3742002-12-13 20:15:29 +000073{
hasso508e53e2004-05-18 18:57:06 +000074 switch (ntohs (lsa->header->type))
paul718e3742002-12-13 20:15:29 +000075 {
hasso508e53e2004-05-18 18:57:06 +000076 case OSPF6_LSTYPE_AS_EXTERNAL:
77 ospf6_asbr_lsa_remove (lsa);
78 break;
79
80 default:
hasso508e53e2004-05-18 18:57:06 +000081 break;
paul718e3742002-12-13 20:15:29 +000082 }
83}
84
Paul Jakma6ac29a52008-08-15 13:45:30 +010085static void
hasso049207c2004-08-04 20:02:13 +000086ospf6_top_route_hook_add (struct ospf6_route *route)
87{
hasso6452df02004-08-15 05:52:07 +000088 ospf6_abr_originate_summary (route);
hasso049207c2004-08-04 20:02:13 +000089 ospf6_zebra_route_update_add (route);
90}
91
Paul Jakma6ac29a52008-08-15 13:45:30 +010092static void
hasso049207c2004-08-04 20:02:13 +000093ospf6_top_route_hook_remove (struct ospf6_route *route)
94{
hasso6452df02004-08-15 05:52:07 +000095 ospf6_abr_originate_summary (route);
hasso049207c2004-08-04 20:02:13 +000096 ospf6_zebra_route_update_remove (route);
97}
98
Paul Jakma6ac29a52008-08-15 13:45:30 +010099static void
hasso6452df02004-08-15 05:52:07 +0000100ospf6_top_brouter_hook_add (struct ospf6_route *route)
101{
hassoccb59b12004-08-25 09:10:37 +0000102 ospf6_abr_examin_brouter (ADV_ROUTER_IN_PREFIX (&route->prefix));
hasso6452df02004-08-15 05:52:07 +0000103 ospf6_asbr_lsentry_add (route);
hassoccb59b12004-08-25 09:10:37 +0000104 ospf6_abr_originate_summary (route);
hasso6452df02004-08-15 05:52:07 +0000105}
106
Paul Jakma6ac29a52008-08-15 13:45:30 +0100107static void
hasso6452df02004-08-15 05:52:07 +0000108ospf6_top_brouter_hook_remove (struct ospf6_route *route)
109{
hassoccb59b12004-08-25 09:10:37 +0000110 ospf6_abr_examin_brouter (ADV_ROUTER_IN_PREFIX (&route->prefix));
hasso6452df02004-08-15 05:52:07 +0000111 ospf6_asbr_lsentry_remove (route);
hassoccb59b12004-08-25 09:10:37 +0000112 ospf6_abr_originate_summary (route);
hasso6452df02004-08-15 05:52:07 +0000113}
114
Paul Jakma6ac29a52008-08-15 13:45:30 +0100115static struct ospf6 *
116ospf6_create (void)
paul718e3742002-12-13 20:15:29 +0000117{
hasso508e53e2004-05-18 18:57:06 +0000118 struct ospf6 *o;
paul718e3742002-12-13 20:15:29 +0000119
Stephen Hemminger393deb92008-08-18 14:13:29 -0700120 o = XCALLOC (MTYPE_OSPF6_TOP, sizeof (struct ospf6));
hasso508e53e2004-05-18 18:57:06 +0000121
122 /* initialize */
Takashi Sogabe86f72dc2009-06-22 13:07:02 +0900123 quagga_gettime (QUAGGA_CLK_MONOTONIC, &o->starttime);
hasso508e53e2004-05-18 18:57:06 +0000124 o->area_list = list_new ();
125 o->area_list->cmp = ospf6_area_cmp;
hasso6452df02004-08-15 05:52:07 +0000126 o->lsdb = ospf6_lsdb_create (o);
127 o->lsdb_self = ospf6_lsdb_create (o);
hasso508e53e2004-05-18 18:57:06 +0000128 o->lsdb->hook_add = ospf6_top_lsdb_hook_add;
129 o->lsdb->hook_remove = ospf6_top_lsdb_hook_remove;
130
Dinesh Dutt3810e062013-08-24 07:54:09 +0000131 o->spf_delay = OSPF_SPF_DELAY_DEFAULT;
132 o->spf_holdtime = OSPF_SPF_HOLDTIME_DEFAULT;
133 o->spf_max_holdtime = OSPF_SPF_MAX_HOLDTIME_DEFAULT;
134 o->spf_hold_multiplier = 1;
135
Paul Jakmacf1ce252006-05-15 10:46:07 +0000136 o->route_table = OSPF6_ROUTE_TABLE_CREATE (GLOBAL, ROUTES);
137 o->route_table->scope = o;
hasso049207c2004-08-04 20:02:13 +0000138 o->route_table->hook_add = ospf6_top_route_hook_add;
139 o->route_table->hook_remove = ospf6_top_route_hook_remove;
hasso508e53e2004-05-18 18:57:06 +0000140
Paul Jakmacf1ce252006-05-15 10:46:07 +0000141 o->brouter_table = OSPF6_ROUTE_TABLE_CREATE (GLOBAL, BORDER_ROUTERS);
142 o->brouter_table->scope = o;
hasso6452df02004-08-15 05:52:07 +0000143 o->brouter_table->hook_add = ospf6_top_brouter_hook_add;
144 o->brouter_table->hook_remove = ospf6_top_brouter_hook_remove;
hasso049207c2004-08-04 20:02:13 +0000145
Paul Jakmacf1ce252006-05-15 10:46:07 +0000146 o->external_table = OSPF6_ROUTE_TABLE_CREATE (GLOBAL, EXTERNAL_ROUTES);
147 o->external_table->scope = o;
148
hasso508e53e2004-05-18 18:57:06 +0000149 o->external_id_table = route_table_init ();
150
151 return o;
152}
153
Tom Goffae2254a2010-11-10 13:01:41 -0800154void
hasso508e53e2004-05-18 18:57:06 +0000155ospf6_delete (struct ospf6 *o)
156{
paul1eb8ef22005-04-07 07:30:20 +0000157 struct listnode *node, *nnode;
hasso508e53e2004-05-18 18:57:06 +0000158 struct ospf6_area *oa;
159
Tom Goffae2254a2010-11-10 13:01:41 -0800160 ospf6_disable (ospf6);
161
paul1eb8ef22005-04-07 07:30:20 +0000162 for (ALL_LIST_ELEMENTS (o->area_list, node, nnode, oa))
163 ospf6_area_delete (oa);
Tom Goffae2254a2010-11-10 13:01:41 -0800164 list_delete (o->area_list);
hasso508e53e2004-05-18 18:57:06 +0000165
166 ospf6_lsdb_delete (o->lsdb);
hasso6452df02004-08-15 05:52:07 +0000167 ospf6_lsdb_delete (o->lsdb_self);
hasso508e53e2004-05-18 18:57:06 +0000168
169 ospf6_route_table_delete (o->route_table);
hasso049207c2004-08-04 20:02:13 +0000170 ospf6_route_table_delete (o->brouter_table);
hasso508e53e2004-05-18 18:57:06 +0000171
172 ospf6_route_table_delete (o->external_table);
173 route_table_finish (o->external_id_table);
174
175 XFREE (MTYPE_OSPF6_TOP, o);
176}
177
Paul Jakma6ac29a52008-08-15 13:45:30 +0100178static void
hasso508e53e2004-05-18 18:57:06 +0000179ospf6_enable (struct ospf6 *o)
180{
paul1eb8ef22005-04-07 07:30:20 +0000181 struct listnode *node, *nnode;
hasso508e53e2004-05-18 18:57:06 +0000182 struct ospf6_area *oa;
183
184 if (CHECK_FLAG (o->flag, OSPF6_DISABLED))
185 {
186 UNSET_FLAG (o->flag, OSPF6_DISABLED);
paul1eb8ef22005-04-07 07:30:20 +0000187 for (ALL_LIST_ELEMENTS (o->area_list, node, nnode, oa))
188 ospf6_area_enable (oa);
paul718e3742002-12-13 20:15:29 +0000189 }
190}
191
Paul Jakma6ac29a52008-08-15 13:45:30 +0100192static void
hasso508e53e2004-05-18 18:57:06 +0000193ospf6_disable (struct ospf6 *o)
paul718e3742002-12-13 20:15:29 +0000194{
paul1eb8ef22005-04-07 07:30:20 +0000195 struct listnode *node, *nnode;
hasso508e53e2004-05-18 18:57:06 +0000196 struct ospf6_area *oa;
paul718e3742002-12-13 20:15:29 +0000197
hasso508e53e2004-05-18 18:57:06 +0000198 if (! CHECK_FLAG (o->flag, OSPF6_DISABLED))
199 {
200 SET_FLAG (o->flag, OSPF6_DISABLED);
paul1eb8ef22005-04-07 07:30:20 +0000201
202 for (ALL_LIST_ELEMENTS (o->area_list, node, nnode, oa))
203 ospf6_area_disable (oa);
paul718e3742002-12-13 20:15:29 +0000204
hasso508e53e2004-05-18 18:57:06 +0000205 ospf6_lsdb_remove_all (o->lsdb);
206 ospf6_route_remove_all (o->route_table);
hasso6452df02004-08-15 05:52:07 +0000207 ospf6_route_remove_all (o->brouter_table);
hasso508e53e2004-05-18 18:57:06 +0000208 }
209}
paul718e3742002-12-13 20:15:29 +0000210
Dinesh Dutt2449fcd2013-08-24 07:54:17 +0000211int
hasso508e53e2004-05-18 18:57:06 +0000212ospf6_maxage_remover (struct thread *thread)
213{
214 struct ospf6 *o = (struct ospf6 *) THREAD_ARG (thread);
215 struct ospf6_area *oa;
216 struct ospf6_interface *oi;
217 struct ospf6_neighbor *on;
hasso52dc7ee2004-09-23 19:18:23 +0000218 struct listnode *i, *j, *k;
Dinesh Dutt2449fcd2013-08-24 07:54:17 +0000219 int reschedule = 0;
hasso508e53e2004-05-18 18:57:06 +0000220
221 o->maxage_remover = (struct thread *) NULL;
hasso508e53e2004-05-18 18:57:06 +0000222
paul1eb8ef22005-04-07 07:30:20 +0000223 for (ALL_LIST_ELEMENTS_RO (o->area_list, i, oa))
hasso508e53e2004-05-18 18:57:06 +0000224 {
paul1eb8ef22005-04-07 07:30:20 +0000225 for (ALL_LIST_ELEMENTS_RO (oa->if_list, j, oi))
hasso508e53e2004-05-18 18:57:06 +0000226 {
paul1eb8ef22005-04-07 07:30:20 +0000227 for (ALL_LIST_ELEMENTS_RO (oi->neighbor_list, k, on))
hasso508e53e2004-05-18 18:57:06 +0000228 {
hasso508e53e2004-05-18 18:57:06 +0000229 if (on->state != OSPF6_NEIGHBOR_EXCHANGE &&
230 on->state != OSPF6_NEIGHBOR_LOADING)
Dinesh Dutt2449fcd2013-08-24 07:54:17 +0000231 continue;
hasso508e53e2004-05-18 18:57:06 +0000232
Dinesh Dutt2449fcd2013-08-24 07:54:17 +0000233 ospf6_maxage_remove (o);
hasso508e53e2004-05-18 18:57:06 +0000234 return 0;
235 }
236 }
237 }
238
paul1eb8ef22005-04-07 07:30:20 +0000239 for (ALL_LIST_ELEMENTS_RO (o->area_list, i, oa))
hasso508e53e2004-05-18 18:57:06 +0000240 {
paul1eb8ef22005-04-07 07:30:20 +0000241 for (ALL_LIST_ELEMENTS_RO (oa->if_list, j, oi))
Dinesh Dutt2449fcd2013-08-24 07:54:17 +0000242 {
243 if (ospf6_lsdb_maxage_remover (oi->lsdb))
244 {
245 reschedule = 1;
246 }
247 }
paul1eb8ef22005-04-07 07:30:20 +0000248
Dinesh Dutt2449fcd2013-08-24 07:54:17 +0000249 if (ospf6_lsdb_maxage_remover (oa->lsdb))
250 {
251 reschedule = 1;
252 }
hasso508e53e2004-05-18 18:57:06 +0000253 }
Dinesh Dutt2449fcd2013-08-24 07:54:17 +0000254
255 if (ospf6_lsdb_maxage_remover (o->lsdb))
256 {
257 reschedule = 1;
258 }
259
260 if (reschedule)
261 {
262 ospf6_maxage_remove (o);
263 }
hasso508e53e2004-05-18 18:57:06 +0000264
paul718e3742002-12-13 20:15:29 +0000265 return 0;
266}
267
268void
hasso508e53e2004-05-18 18:57:06 +0000269ospf6_maxage_remove (struct ospf6 *o)
paul718e3742002-12-13 20:15:29 +0000270{
hasso508e53e2004-05-18 18:57:06 +0000271 if (o && ! o->maxage_remover)
Dinesh Dutt2449fcd2013-08-24 07:54:17 +0000272 o->maxage_remover = thread_add_timer (master, ospf6_maxage_remover, o,
273 OSPF_LSA_MAXAGE_REMOVE_DELAY_DEFAULT);
hasso508e53e2004-05-18 18:57:06 +0000274}
paul718e3742002-12-13 20:15:29 +0000275
hasso508e53e2004-05-18 18:57:06 +0000276/* start ospf6 */
277DEFUN (router_ospf6,
278 router_ospf6_cmd,
279 "router ospf6",
280 ROUTER_STR
281 OSPF6_STR)
282{
283 if (ospf6 == NULL)
284 ospf6 = ospf6_create ();
285 if (CHECK_FLAG (ospf6->flag, OSPF6_DISABLED))
286 ospf6_enable (ospf6);
287
288 /* set current ospf point. */
289 vty->node = OSPF6_NODE;
290 vty->index = ospf6;
291
292 return CMD_SUCCESS;
293}
294
295/* stop ospf6 */
296DEFUN (no_router_ospf6,
297 no_router_ospf6_cmd,
298 "no router ospf6",
299 NO_STR
300 OSPF6_ROUTER_STR)
301{
302 if (ospf6 == NULL || CHECK_FLAG (ospf6->flag, OSPF6_DISABLED))
hasso049207c2004-08-04 20:02:13 +0000303 vty_out (vty, "OSPFv3 is not running%s", VNL);
hasso508e53e2004-05-18 18:57:06 +0000304 else
305 ospf6_disable (ospf6);
306
307 /* return to config node . */
308 vty->node = CONFIG_NODE;
309 vty->index = NULL;
310
311 return CMD_SUCCESS;
312}
313
314/* change Router_ID commands. */
315DEFUN (ospf6_router_id,
316 ospf6_router_id_cmd,
317 "router-id A.B.C.D",
318 "Configure OSPF Router-ID\n"
319 V4NOTATION_STR)
320{
321 int ret;
322 u_int32_t router_id;
323 struct ospf6 *o;
324
325 o = (struct ospf6 *) vty->index;
326
327 ret = inet_pton (AF_INET, argv[0], &router_id);
328 if (ret == 0)
329 {
hasso049207c2004-08-04 20:02:13 +0000330 vty_out (vty, "malformed OSPF Router-ID: %s%s", argv[0], VNL);
hasso508e53e2004-05-18 18:57:06 +0000331 return CMD_SUCCESS;
332 }
333
hassoc8a440e2004-10-11 17:02:40 +0000334 o->router_id_static = router_id;
335 if (o->router_id == 0)
336 o->router_id = router_id;
337
hasso508e53e2004-05-18 18:57:06 +0000338 return CMD_SUCCESS;
339}
340
341DEFUN (ospf6_interface_area,
342 ospf6_interface_area_cmd,
343 "interface IFNAME area A.B.C.D",
344 "Enable routing on an IPv6 interface\n"
345 IFNAME_STR
346 "Specify the OSPF6 area ID\n"
347 "OSPF6 area ID in IPv4 address notation\n"
348 )
349{
350 struct ospf6 *o;
hasso3b687352004-08-19 06:56:53 +0000351 struct ospf6_area *oa;
hasso508e53e2004-05-18 18:57:06 +0000352 struct ospf6_interface *oi;
353 struct interface *ifp;
354 u_int32_t area_id;
355
356 o = (struct ospf6 *) vty->index;
357
358 /* find/create ospf6 interface */
359 ifp = if_get_by_name (argv[0]);
360 oi = (struct ospf6_interface *) ifp->info;
361 if (oi == NULL)
362 oi = ospf6_interface_create (ifp);
363 if (oi->area)
364 {
365 vty_out (vty, "%s already attached to Area %s%s",
hasso049207c2004-08-04 20:02:13 +0000366 oi->interface->name, oi->area->name, VNL);
hasso508e53e2004-05-18 18:57:06 +0000367 return CMD_SUCCESS;
368 }
369
370 /* parse Area-ID */
371 if (inet_pton (AF_INET, argv[1], &area_id) != 1)
372 {
hasso049207c2004-08-04 20:02:13 +0000373 vty_out (vty, "Invalid Area-ID: %s%s", argv[1], VNL);
hasso508e53e2004-05-18 18:57:06 +0000374 return CMD_SUCCESS;
375 }
376
377 /* find/create ospf6 area */
378 oa = ospf6_area_lookup (area_id, o);
379 if (oa == NULL)
380 oa = ospf6_area_create (area_id, o);
381
382 /* attach interface to area */
383 listnode_add (oa->if_list, oi); /* sort ?? */
384 oi->area = oa;
385
hasso6452df02004-08-15 05:52:07 +0000386 SET_FLAG (oa->flag, OSPF6_AREA_ENABLE);
387
hasso508e53e2004-05-18 18:57:06 +0000388 /* start up */
389 thread_add_event (master, interface_up, oi, 0);
hasso6452df02004-08-15 05:52:07 +0000390
hasso3b687352004-08-19 06:56:53 +0000391 /* If the router is ABR, originate summary routes */
392 if (ospf6_is_router_abr (o))
393 ospf6_abr_enable_area (oa);
hasso6452df02004-08-15 05:52:07 +0000394
hasso508e53e2004-05-18 18:57:06 +0000395 return CMD_SUCCESS;
396}
397
398DEFUN (no_ospf6_interface_area,
399 no_ospf6_interface_area_cmd,
400 "no interface IFNAME area A.B.C.D",
401 NO_STR
402 "Disable routing on an IPv6 interface\n"
403 IFNAME_STR
404 "Specify the OSPF6 area ID\n"
405 "OSPF6 area ID in IPv4 address notation\n"
406 )
407{
408 struct ospf6 *o;
409 struct ospf6_interface *oi;
hasso3b687352004-08-19 06:56:53 +0000410 struct ospf6_area *oa;
hasso508e53e2004-05-18 18:57:06 +0000411 struct interface *ifp;
412 u_int32_t area_id;
413
414 o = (struct ospf6 *) vty->index;
415
416 ifp = if_lookup_by_name (argv[0]);
417 if (ifp == NULL)
418 {
hasso049207c2004-08-04 20:02:13 +0000419 vty_out (vty, "No such interface %s%s", argv[0], VNL);
hasso508e53e2004-05-18 18:57:06 +0000420 return CMD_SUCCESS;
421 }
422
423 oi = (struct ospf6_interface *) ifp->info;
424 if (oi == NULL)
425 {
hasso049207c2004-08-04 20:02:13 +0000426 vty_out (vty, "Interface %s not enabled%s", ifp->name, VNL);
hasso508e53e2004-05-18 18:57:06 +0000427 return CMD_SUCCESS;
428 }
429
430 /* parse Area-ID */
431 if (inet_pton (AF_INET, argv[1], &area_id) != 1)
432 {
hasso049207c2004-08-04 20:02:13 +0000433 vty_out (vty, "Invalid Area-ID: %s%s", argv[1], VNL);
hasso508e53e2004-05-18 18:57:06 +0000434 return CMD_SUCCESS;
435 }
436
Jon56abbb82009-02-11 17:30:44 -0800437 /* Verify Area */
438 if (oi->area == NULL)
439 {
440 vty_out (vty, "No such Area-ID: %s%s", argv[1], VNL);
441 return CMD_SUCCESS;
442 }
443
hasso508e53e2004-05-18 18:57:06 +0000444 if (oi->area->area_id != area_id)
445 {
446 vty_out (vty, "Wrong Area-ID: %s is attached to area %s%s",
hasso049207c2004-08-04 20:02:13 +0000447 oi->interface->name, oi->area->name, VNL);
hasso508e53e2004-05-18 18:57:06 +0000448 return CMD_SUCCESS;
449 }
450
451 thread_execute (master, interface_down, oi, 0);
452
hasso6452df02004-08-15 05:52:07 +0000453 oa = oi->area;
hasso508e53e2004-05-18 18:57:06 +0000454 listnode_delete (oi->area->if_list, oi);
455 oi->area = (struct ospf6_area *) NULL;
456
hasso6452df02004-08-15 05:52:07 +0000457 /* Withdraw inter-area routes from this area, if necessary */
458 if (oa->if_list->count == 0)
459 {
460 UNSET_FLAG (oa->flag, OSPF6_AREA_ENABLE);
hasso3b687352004-08-19 06:56:53 +0000461 ospf6_abr_disable_area (oa);
hasso6452df02004-08-15 05:52:07 +0000462 }
463
hasso508e53e2004-05-18 18:57:06 +0000464 return CMD_SUCCESS;
paul718e3742002-12-13 20:15:29 +0000465}
466
Dinesh Duttf41b4a02013-08-24 08:00:37 +0000467DEFUN (ospf6_stub_router_admin,
468 ospf6_stub_router_admin_cmd,
469 "stub-router administrative",
470 "Make router a stub router\n"
471 "Advertise inability to be a transit router\n"
472 "Administratively applied, for an indefinite period\n")
473{
474 struct listnode *node;
475 struct ospf6_area *oa;
476
477 if (!CHECK_FLAG (ospf6->flag, OSPF6_STUB_ROUTER))
478 {
479 for (ALL_LIST_ELEMENTS_RO (ospf6->area_list, node, oa))
480 {
481 OSPF6_OPT_CLEAR (oa->options, OSPF6_OPT_V6);
482 OSPF6_OPT_CLEAR (oa->options, OSPF6_OPT_R);
483 OSPF6_ROUTER_LSA_SCHEDULE (oa);
484 }
485 SET_FLAG (ospf6->flag, OSPF6_STUB_ROUTER);
486 }
487
488 return CMD_SUCCESS;
489}
490
491DEFUN (no_ospf6_stub_router_admin,
492 no_ospf6_stub_router_admin_cmd,
493 "no stub-router administrative",
494 NO_STR
495 "Make router a stub router\n"
496 "Advertise ability to be a transit router\n"
497 "Administratively applied, for an indefinite period\n")
498{
499 struct listnode *node;
500 struct ospf6_area *oa;
501
502 if (CHECK_FLAG (ospf6->flag, OSPF6_STUB_ROUTER))
503 {
504 for (ALL_LIST_ELEMENTS_RO (ospf6->area_list, node, oa))
505 {
506 OSPF6_OPT_SET (oa->options, OSPF6_OPT_V6);
507 OSPF6_OPT_SET (oa->options, OSPF6_OPT_R);
508 OSPF6_ROUTER_LSA_SCHEDULE (oa);
509 }
510 UNSET_FLAG (ospf6->flag, OSPF6_STUB_ROUTER);
511 }
512
513 return CMD_SUCCESS;
514}
515
516DEFUN (ospf6_stub_router_startup,
517 ospf6_stub_router_startup_cmd,
518 "stub-router on-startup <5-86400>",
519 "Make router a stub router\n"
520 "Advertise inability to be a transit router\n"
521 "Automatically advertise as stub-router on startup of OSPF6\n"
522 "Time (seconds) to advertise self as stub-router\n")
523{
524 return CMD_SUCCESS;
525}
526
527DEFUN (no_ospf6_stub_router_startup,
528 no_ospf6_stub_router_startup_cmd,
529 "no stub-router on-startup",
530 NO_STR
531 "Make router a stub router\n"
532 "Advertise inability to be a transit router\n"
533 "Automatically advertise as stub-router on startup of OSPF6\n"
534 "Time (seconds) to advertise self as stub-router\n")
535{
536 return CMD_SUCCESS;
537}
538
539DEFUN (ospf6_stub_router_shutdown,
540 ospf6_stub_router_shutdown_cmd,
541 "stub-router on-shutdown <5-86400>",
542 "Make router a stub router\n"
543 "Advertise inability to be a transit router\n"
544 "Automatically advertise as stub-router before shutdown\n"
545 "Time (seconds) to advertise self as stub-router\n")
546{
547 return CMD_SUCCESS;
548}
549
550DEFUN (no_ospf6_stub_router_shutdown,
551 no_ospf6_stub_router_shutdown_cmd,
552 "no stub-router on-shutdown",
553 NO_STR
554 "Make router a stub router\n"
555 "Advertise inability to be a transit router\n"
556 "Automatically advertise as stub-router before shutdown\n"
557 "Time (seconds) to advertise self as stub-router\n")
558{
559 return CMD_SUCCESS;
560}
561
Paul Jakma6ac29a52008-08-15 13:45:30 +0100562static void
hasso508e53e2004-05-18 18:57:06 +0000563ospf6_show (struct vty *vty, struct ospf6 *o)
paul718e3742002-12-13 20:15:29 +0000564{
hasso52dc7ee2004-09-23 19:18:23 +0000565 struct listnode *n;
hasso508e53e2004-05-18 18:57:06 +0000566 struct ospf6_area *oa;
567 char router_id[16], duration[32];
paul718e3742002-12-13 20:15:29 +0000568 struct timeval now, running;
569
570 /* process id, router id */
hasso508e53e2004-05-18 18:57:06 +0000571 inet_ntop (AF_INET, &o->router_id, router_id, sizeof (router_id));
572 vty_out (vty, " OSPFv3 Routing Process (0) with Router-ID %s%s",
hasso049207c2004-08-04 20:02:13 +0000573 router_id, VNL);
paul718e3742002-12-13 20:15:29 +0000574
575 /* running time */
Takashi Sogabe86f72dc2009-06-22 13:07:02 +0900576 quagga_gettime (QUAGGA_CLK_MONOTONIC, &now);
hasso508e53e2004-05-18 18:57:06 +0000577 timersub (&now, &o->starttime, &running);
578 timerstring (&running, duration, sizeof (duration));
hasso049207c2004-08-04 20:02:13 +0000579 vty_out (vty, " Running %s%s", duration, VNL);
paul718e3742002-12-13 20:15:29 +0000580
hasso508e53e2004-05-18 18:57:06 +0000581 /* Redistribute configuration */
582 /* XXX */
paul718e3742002-12-13 20:15:29 +0000583
Dinesh Duttf41b4a02013-08-24 08:00:37 +0000584 if (CHECK_FLAG (o->flag, OSPF6_STUB_ROUTER))
585 vty_out (vty, " Router Is Stub Router%s", VNL);
586
paul718e3742002-12-13 20:15:29 +0000587 /* LSAs */
588 vty_out (vty, " Number of AS scoped LSAs is %u%s",
hasso049207c2004-08-04 20:02:13 +0000589 o->lsdb->count, VNL);
paul718e3742002-12-13 20:15:29 +0000590
591 /* Areas */
592 vty_out (vty, " Number of areas in this router is %u%s",
hasso049207c2004-08-04 20:02:13 +0000593 listcount (o->area_list), VNL);
paul1eb8ef22005-04-07 07:30:20 +0000594
595 for (ALL_LIST_ELEMENTS_RO (o->area_list, n, oa))
596 ospf6_area_show (vty, oa);
paul718e3742002-12-13 20:15:29 +0000597}
598
hasso508e53e2004-05-18 18:57:06 +0000599/* show top level structures */
600DEFUN (show_ipv6_ospf6,
601 show_ipv6_ospf6_cmd,
602 "show ipv6 ospf6",
603 SHOW_STR
604 IP6_STR
605 OSPF6_STR)
paul718e3742002-12-13 20:15:29 +0000606{
hasso508e53e2004-05-18 18:57:06 +0000607 OSPF6_CMD_CHECK_RUNNING ();
paul718e3742002-12-13 20:15:29 +0000608
hasso508e53e2004-05-18 18:57:06 +0000609 ospf6_show (vty, ospf6);
610 return CMD_SUCCESS;
paul718e3742002-12-13 20:15:29 +0000611}
612
613DEFUN (show_ipv6_ospf6_route,
614 show_ipv6_ospf6_route_cmd,
615 "show ipv6 ospf6 route",
616 SHOW_STR
617 IP6_STR
618 OSPF6_STR
hasso508e53e2004-05-18 18:57:06 +0000619 ROUTE_STR
paul718e3742002-12-13 20:15:29 +0000620 )
621{
hasso508e53e2004-05-18 18:57:06 +0000622 ospf6_route_table_show (vty, argc, argv, ospf6->route_table);
623 return CMD_SUCCESS;
paul718e3742002-12-13 20:15:29 +0000624}
625
626ALIAS (show_ipv6_ospf6_route,
hasso508e53e2004-05-18 18:57:06 +0000627 show_ipv6_ospf6_route_detail_cmd,
hasso4846ef62004-09-03 06:04:00 +0000628 "show ipv6 ospf6 route (X:X::X:X|X:X::X:X/M|detail|summary)",
paul718e3742002-12-13 20:15:29 +0000629 SHOW_STR
630 IP6_STR
631 OSPF6_STR
hasso508e53e2004-05-18 18:57:06 +0000632 ROUTE_STR
633 "Specify IPv6 address\n"
634 "Specify IPv6 prefix\n"
635 "Detailed information\n"
636 "Summary of route table\n"
Paul Jakma6ac29a52008-08-15 13:45:30 +0100637 )
paul718e3742002-12-13 20:15:29 +0000638
hasso508e53e2004-05-18 18:57:06 +0000639DEFUN (show_ipv6_ospf6_route_match,
640 show_ipv6_ospf6_route_match_cmd,
hasso4846ef62004-09-03 06:04:00 +0000641 "show ipv6 ospf6 route X:X::X:X/M match",
paul718e3742002-12-13 20:15:29 +0000642 SHOW_STR
643 IP6_STR
644 OSPF6_STR
hasso508e53e2004-05-18 18:57:06 +0000645 ROUTE_STR
646 "Specify IPv6 prefix\n"
647 "Display routes which match the specified route\n"
paul718e3742002-12-13 20:15:29 +0000648 )
649{
paul0c083ee2004-10-10 12:54:58 +0000650 const char *sargv[CMD_ARGC_MAX];
hasso508e53e2004-05-18 18:57:06 +0000651 int i, sargc;
652
653 /* copy argv to sargv and then append "match" */
654 for (i = 0; i < argc; i++)
655 sargv[i] = argv[i];
656 sargc = argc;
657 sargv[sargc++] = "match";
658 sargv[sargc] = NULL;
659
660 ospf6_route_table_show (vty, sargc, sargv, ospf6->route_table);
661 return CMD_SUCCESS;
paul718e3742002-12-13 20:15:29 +0000662}
663
hasso508e53e2004-05-18 18:57:06 +0000664DEFUN (show_ipv6_ospf6_route_match_detail,
665 show_ipv6_ospf6_route_match_detail_cmd,
hasso4846ef62004-09-03 06:04:00 +0000666 "show ipv6 ospf6 route X:X::X:X/M match detail",
paul718e3742002-12-13 20:15:29 +0000667 SHOW_STR
668 IP6_STR
669 OSPF6_STR
hasso508e53e2004-05-18 18:57:06 +0000670 ROUTE_STR
671 "Specify IPv6 prefix\n"
672 "Display routes which match the specified route\n"
paul718e3742002-12-13 20:15:29 +0000673 "Detailed information\n"
674 )
hasso508e53e2004-05-18 18:57:06 +0000675{
paul0c083ee2004-10-10 12:54:58 +0000676 const char *sargv[CMD_ARGC_MAX];
hasso508e53e2004-05-18 18:57:06 +0000677 int i, sargc;
paul718e3742002-12-13 20:15:29 +0000678
hasso508e53e2004-05-18 18:57:06 +0000679 /* copy argv to sargv and then append "match" and "detail" */
680 for (i = 0; i < argc; i++)
681 sargv[i] = argv[i];
682 sargc = argc;
683 sargv[sargc++] = "match";
684 sargv[sargc++] = "detail";
685 sargv[sargc] = NULL;
paul718e3742002-12-13 20:15:29 +0000686
hasso508e53e2004-05-18 18:57:06 +0000687 ospf6_route_table_show (vty, sargc, sargv, ospf6->route_table);
688 return CMD_SUCCESS;
689}
690
Paul Jakmacb4b8842006-05-15 10:39:30 +0000691ALIAS (show_ipv6_ospf6_route_match,
692 show_ipv6_ospf6_route_longer_cmd,
693 "show ipv6 ospf6 route X:X::X:X/M longer",
694 SHOW_STR
695 IP6_STR
696 OSPF6_STR
697 ROUTE_STR
698 "Specify IPv6 prefix\n"
699 "Display routes longer than the specified route\n"
Paul Jakma6ac29a52008-08-15 13:45:30 +0100700 )
Paul Jakmacb4b8842006-05-15 10:39:30 +0000701
702DEFUN (show_ipv6_ospf6_route_match_detail,
703 show_ipv6_ospf6_route_longer_detail_cmd,
704 "show ipv6 ospf6 route X:X::X:X/M longer detail",
705 SHOW_STR
706 IP6_STR
707 OSPF6_STR
708 ROUTE_STR
709 "Specify IPv6 prefix\n"
710 "Display routes longer than the specified route\n"
711 "Detailed information\n"
712 );
713
hasso4846ef62004-09-03 06:04:00 +0000714ALIAS (show_ipv6_ospf6_route,
715 show_ipv6_ospf6_route_type_cmd,
716 "show ipv6 ospf6 route (intra-area|inter-area|external-1|external-2)",
717 SHOW_STR
718 IP6_STR
719 OSPF6_STR
720 ROUTE_STR
Denis Ovsienkoea402192011-08-19 16:27:16 +0400721 "Display Intra-Area routes\n"
722 "Display Inter-Area routes\n"
723 "Display Type-1 External routes\n"
724 "Display Type-2 External routes\n"
Paul Jakma6ac29a52008-08-15 13:45:30 +0100725 )
hasso4846ef62004-09-03 06:04:00 +0000726
727DEFUN (show_ipv6_ospf6_route_type_detail,
728 show_ipv6_ospf6_route_type_detail_cmd,
729 "show ipv6 ospf6 route (intra-area|inter-area|external-1|external-2) detail",
730 SHOW_STR
731 IP6_STR
732 OSPF6_STR
733 ROUTE_STR
Denis Ovsienkoea402192011-08-19 16:27:16 +0400734 "Display Intra-Area routes\n"
735 "Display Inter-Area routes\n"
736 "Display Type-1 External routes\n"
737 "Display Type-2 External routes\n"
hasso4846ef62004-09-03 06:04:00 +0000738 "Detailed information\n"
739 )
740{
paul0c083ee2004-10-10 12:54:58 +0000741 const char *sargv[CMD_ARGC_MAX];
hasso4846ef62004-09-03 06:04:00 +0000742 int i, sargc;
743
744 /* copy argv to sargv and then append "detail" */
745 for (i = 0; i < argc; i++)
746 sargv[i] = argv[i];
747 sargc = argc;
748 sargv[sargc++] = "detail";
749 sargv[sargc] = NULL;
750
751 ospf6_route_table_show (vty, sargc, sargv, ospf6->route_table);
752 return CMD_SUCCESS;
753}
hasso508e53e2004-05-18 18:57:06 +0000754
Dinesh Duttf41b4a02013-08-24 08:00:37 +0000755static void
756ospf6_stub_router_config_write (struct vty *vty)
757{
758 if (CHECK_FLAG (ospf6->flag, OSPF6_STUB_ROUTER))
759 {
760 vty_out (vty, " stub-router administrative%s", VNL);
761 }
762 return;
763}
764
hasso508e53e2004-05-18 18:57:06 +0000765/* OSPF configuration write function. */
Paul Jakma6ac29a52008-08-15 13:45:30 +0100766static int
hasso508e53e2004-05-18 18:57:06 +0000767config_write_ospf6 (struct vty *vty)
768{
769 char router_id[16];
hasso52dc7ee2004-09-23 19:18:23 +0000770 struct listnode *j, *k;
hasso508e53e2004-05-18 18:57:06 +0000771 struct ospf6_area *oa;
772 struct ospf6_interface *oi;
773
774 /* OSPFv6 configuration. */
775 if (ospf6 == NULL)
776 return CMD_SUCCESS;
777 if (CHECK_FLAG (ospf6->flag, OSPF6_DISABLED))
778 return CMD_SUCCESS;
779
hassoc8a440e2004-10-11 17:02:40 +0000780 inet_ntop (AF_INET, &ospf6->router_id_static, router_id, sizeof (router_id));
hasso049207c2004-08-04 20:02:13 +0000781 vty_out (vty, "router ospf6%s", VNL);
hassoc8a440e2004-10-11 17:02:40 +0000782 if (ospf6->router_id_static != 0)
783 vty_out (vty, " router-id %s%s", router_id, VNL);
hasso508e53e2004-05-18 18:57:06 +0000784
Dinesh Duttf41b4a02013-08-24 08:00:37 +0000785 ospf6_stub_router_config_write (vty);
hasso508e53e2004-05-18 18:57:06 +0000786 ospf6_redistribute_config_write (vty);
hasso6452df02004-08-15 05:52:07 +0000787 ospf6_area_config_write (vty);
Dinesh Dutt3810e062013-08-24 07:54:09 +0000788 ospf6_spf_config_write (vty);
hasso508e53e2004-05-18 18:57:06 +0000789
paul1eb8ef22005-04-07 07:30:20 +0000790 for (ALL_LIST_ELEMENTS_RO (ospf6->area_list, j, oa))
hasso508e53e2004-05-18 18:57:06 +0000791 {
paul1eb8ef22005-04-07 07:30:20 +0000792 for (ALL_LIST_ELEMENTS_RO (oa->if_list, k, oi))
793 vty_out (vty, " interface %s area %s%s",
794 oi->interface->name, oa->name, VNL);
hasso508e53e2004-05-18 18:57:06 +0000795 }
hasso049207c2004-08-04 20:02:13 +0000796 vty_out (vty, "!%s", VNL);
hasso508e53e2004-05-18 18:57:06 +0000797 return 0;
798}
799
800/* OSPF6 node structure. */
Stephen Hemminger7fc626d2008-12-01 11:10:34 -0800801static struct cmd_node ospf6_node =
hasso508e53e2004-05-18 18:57:06 +0000802{
803 OSPF6_NODE,
804 "%s(config-ospf6)# ",
hasso69b4a812004-08-26 18:10:36 +0000805 1 /* VTYSH */
hasso508e53e2004-05-18 18:57:06 +0000806};
807
808/* Install ospf related commands. */
paul718e3742002-12-13 20:15:29 +0000809void
Paul Jakma6ac29a52008-08-15 13:45:30 +0100810ospf6_top_init (void)
paul718e3742002-12-13 20:15:29 +0000811{
hasso508e53e2004-05-18 18:57:06 +0000812 /* Install ospf6 top node. */
813 install_node (&ospf6_node, config_write_ospf6);
814
815 install_element (VIEW_NODE, &show_ipv6_ospf6_cmd);
816 install_element (ENABLE_NODE, &show_ipv6_ospf6_cmd);
817 install_element (CONFIG_NODE, &router_ospf6_cmd);
Jon6c19d262009-02-11 17:19:07 -0800818 install_element (CONFIG_NODE, &no_router_ospf6_cmd);
hasso508e53e2004-05-18 18:57:06 +0000819
paul718e3742002-12-13 20:15:29 +0000820 install_element (VIEW_NODE, &show_ipv6_ospf6_route_cmd);
hasso508e53e2004-05-18 18:57:06 +0000821 install_element (VIEW_NODE, &show_ipv6_ospf6_route_detail_cmd);
822 install_element (VIEW_NODE, &show_ipv6_ospf6_route_match_cmd);
823 install_element (VIEW_NODE, &show_ipv6_ospf6_route_match_detail_cmd);
Paul Jakmacb4b8842006-05-15 10:39:30 +0000824 install_element (VIEW_NODE, &show_ipv6_ospf6_route_longer_cmd);
825 install_element (VIEW_NODE, &show_ipv6_ospf6_route_longer_detail_cmd);
hasso4846ef62004-09-03 06:04:00 +0000826 install_element (VIEW_NODE, &show_ipv6_ospf6_route_type_cmd);
827 install_element (VIEW_NODE, &show_ipv6_ospf6_route_type_detail_cmd);
paul718e3742002-12-13 20:15:29 +0000828 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_cmd);
hasso508e53e2004-05-18 18:57:06 +0000829 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_detail_cmd);
830 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_match_cmd);
831 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_match_detail_cmd);
Paul Jakmacb4b8842006-05-15 10:39:30 +0000832 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_longer_cmd);
833 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_longer_detail_cmd);
hasso4846ef62004-09-03 06:04:00 +0000834 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_type_cmd);
835 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_type_detail_cmd);
hasso508e53e2004-05-18 18:57:06 +0000836
837 install_default (OSPF6_NODE);
838 install_element (OSPF6_NODE, &ospf6_router_id_cmd);
839 install_element (OSPF6_NODE, &ospf6_interface_area_cmd);
840 install_element (OSPF6_NODE, &no_ospf6_interface_area_cmd);
Dinesh Duttf41b4a02013-08-24 08:00:37 +0000841 install_element (OSPF6_NODE, &ospf6_stub_router_admin_cmd);
842 install_element (OSPF6_NODE, &no_ospf6_stub_router_admin_cmd);
843 /* For a later time
844 install_element (OSPF6_NODE, &ospf6_stub_router_startup_cmd);
845 install_element (OSPF6_NODE, &no_ospf6_stub_router_startup_cmd);
846 install_element (OSPF6_NODE, &ospf6_stub_router_shutdown_cmd);
847 install_element (OSPF6_NODE, &no_ospf6_stub_router_shutdown_cmd);
848 */
paul718e3742002-12-13 20:15:29 +0000849}
850
hasso508e53e2004-05-18 18:57:06 +0000851