blob: e9fe7a4e945f42656a11993cf809a567f0d6c418 [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
Paul Jakma6ac29a52008-08-15 13:45:30 +0100467static void
hasso508e53e2004-05-18 18:57:06 +0000468ospf6_show (struct vty *vty, struct ospf6 *o)
paul718e3742002-12-13 20:15:29 +0000469{
hasso52dc7ee2004-09-23 19:18:23 +0000470 struct listnode *n;
hasso508e53e2004-05-18 18:57:06 +0000471 struct ospf6_area *oa;
472 char router_id[16], duration[32];
paul718e3742002-12-13 20:15:29 +0000473 struct timeval now, running;
474
475 /* process id, router id */
hasso508e53e2004-05-18 18:57:06 +0000476 inet_ntop (AF_INET, &o->router_id, router_id, sizeof (router_id));
477 vty_out (vty, " OSPFv3 Routing Process (0) with Router-ID %s%s",
hasso049207c2004-08-04 20:02:13 +0000478 router_id, VNL);
paul718e3742002-12-13 20:15:29 +0000479
480 /* running time */
Takashi Sogabe86f72dc2009-06-22 13:07:02 +0900481 quagga_gettime (QUAGGA_CLK_MONOTONIC, &now);
hasso508e53e2004-05-18 18:57:06 +0000482 timersub (&now, &o->starttime, &running);
483 timerstring (&running, duration, sizeof (duration));
hasso049207c2004-08-04 20:02:13 +0000484 vty_out (vty, " Running %s%s", duration, VNL);
paul718e3742002-12-13 20:15:29 +0000485
hasso508e53e2004-05-18 18:57:06 +0000486 /* Redistribute configuration */
487 /* XXX */
paul718e3742002-12-13 20:15:29 +0000488
489 /* LSAs */
490 vty_out (vty, " Number of AS scoped LSAs is %u%s",
hasso049207c2004-08-04 20:02:13 +0000491 o->lsdb->count, VNL);
paul718e3742002-12-13 20:15:29 +0000492
493 /* Areas */
494 vty_out (vty, " Number of areas in this router is %u%s",
hasso049207c2004-08-04 20:02:13 +0000495 listcount (o->area_list), VNL);
paul1eb8ef22005-04-07 07:30:20 +0000496
497 for (ALL_LIST_ELEMENTS_RO (o->area_list, n, oa))
498 ospf6_area_show (vty, oa);
paul718e3742002-12-13 20:15:29 +0000499}
500
hasso508e53e2004-05-18 18:57:06 +0000501/* show top level structures */
502DEFUN (show_ipv6_ospf6,
503 show_ipv6_ospf6_cmd,
504 "show ipv6 ospf6",
505 SHOW_STR
506 IP6_STR
507 OSPF6_STR)
paul718e3742002-12-13 20:15:29 +0000508{
hasso508e53e2004-05-18 18:57:06 +0000509 OSPF6_CMD_CHECK_RUNNING ();
paul718e3742002-12-13 20:15:29 +0000510
hasso508e53e2004-05-18 18:57:06 +0000511 ospf6_show (vty, ospf6);
512 return CMD_SUCCESS;
paul718e3742002-12-13 20:15:29 +0000513}
514
515DEFUN (show_ipv6_ospf6_route,
516 show_ipv6_ospf6_route_cmd,
517 "show ipv6 ospf6 route",
518 SHOW_STR
519 IP6_STR
520 OSPF6_STR
hasso508e53e2004-05-18 18:57:06 +0000521 ROUTE_STR
paul718e3742002-12-13 20:15:29 +0000522 )
523{
hasso508e53e2004-05-18 18:57:06 +0000524 ospf6_route_table_show (vty, argc, argv, ospf6->route_table);
525 return CMD_SUCCESS;
paul718e3742002-12-13 20:15:29 +0000526}
527
528ALIAS (show_ipv6_ospf6_route,
hasso508e53e2004-05-18 18:57:06 +0000529 show_ipv6_ospf6_route_detail_cmd,
hasso4846ef62004-09-03 06:04:00 +0000530 "show ipv6 ospf6 route (X:X::X:X|X:X::X:X/M|detail|summary)",
paul718e3742002-12-13 20:15:29 +0000531 SHOW_STR
532 IP6_STR
533 OSPF6_STR
hasso508e53e2004-05-18 18:57:06 +0000534 ROUTE_STR
535 "Specify IPv6 address\n"
536 "Specify IPv6 prefix\n"
537 "Detailed information\n"
538 "Summary of route table\n"
Paul Jakma6ac29a52008-08-15 13:45:30 +0100539 )
paul718e3742002-12-13 20:15:29 +0000540
hasso508e53e2004-05-18 18:57:06 +0000541DEFUN (show_ipv6_ospf6_route_match,
542 show_ipv6_ospf6_route_match_cmd,
hasso4846ef62004-09-03 06:04:00 +0000543 "show ipv6 ospf6 route X:X::X:X/M match",
paul718e3742002-12-13 20:15:29 +0000544 SHOW_STR
545 IP6_STR
546 OSPF6_STR
hasso508e53e2004-05-18 18:57:06 +0000547 ROUTE_STR
548 "Specify IPv6 prefix\n"
549 "Display routes which match the specified route\n"
paul718e3742002-12-13 20:15:29 +0000550 )
551{
paul0c083ee2004-10-10 12:54:58 +0000552 const char *sargv[CMD_ARGC_MAX];
hasso508e53e2004-05-18 18:57:06 +0000553 int i, sargc;
554
555 /* copy argv to sargv and then append "match" */
556 for (i = 0; i < argc; i++)
557 sargv[i] = argv[i];
558 sargc = argc;
559 sargv[sargc++] = "match";
560 sargv[sargc] = NULL;
561
562 ospf6_route_table_show (vty, sargc, sargv, ospf6->route_table);
563 return CMD_SUCCESS;
paul718e3742002-12-13 20:15:29 +0000564}
565
hasso508e53e2004-05-18 18:57:06 +0000566DEFUN (show_ipv6_ospf6_route_match_detail,
567 show_ipv6_ospf6_route_match_detail_cmd,
hasso4846ef62004-09-03 06:04:00 +0000568 "show ipv6 ospf6 route X:X::X:X/M match detail",
paul718e3742002-12-13 20:15:29 +0000569 SHOW_STR
570 IP6_STR
571 OSPF6_STR
hasso508e53e2004-05-18 18:57:06 +0000572 ROUTE_STR
573 "Specify IPv6 prefix\n"
574 "Display routes which match the specified route\n"
paul718e3742002-12-13 20:15:29 +0000575 "Detailed information\n"
576 )
hasso508e53e2004-05-18 18:57:06 +0000577{
paul0c083ee2004-10-10 12:54:58 +0000578 const char *sargv[CMD_ARGC_MAX];
hasso508e53e2004-05-18 18:57:06 +0000579 int i, sargc;
paul718e3742002-12-13 20:15:29 +0000580
hasso508e53e2004-05-18 18:57:06 +0000581 /* copy argv to sargv and then append "match" and "detail" */
582 for (i = 0; i < argc; i++)
583 sargv[i] = argv[i];
584 sargc = argc;
585 sargv[sargc++] = "match";
586 sargv[sargc++] = "detail";
587 sargv[sargc] = NULL;
paul718e3742002-12-13 20:15:29 +0000588
hasso508e53e2004-05-18 18:57:06 +0000589 ospf6_route_table_show (vty, sargc, sargv, ospf6->route_table);
590 return CMD_SUCCESS;
591}
592
Paul Jakmacb4b8842006-05-15 10:39:30 +0000593ALIAS (show_ipv6_ospf6_route_match,
594 show_ipv6_ospf6_route_longer_cmd,
595 "show ipv6 ospf6 route X:X::X:X/M longer",
596 SHOW_STR
597 IP6_STR
598 OSPF6_STR
599 ROUTE_STR
600 "Specify IPv6 prefix\n"
601 "Display routes longer than the specified route\n"
Paul Jakma6ac29a52008-08-15 13:45:30 +0100602 )
Paul Jakmacb4b8842006-05-15 10:39:30 +0000603
604DEFUN (show_ipv6_ospf6_route_match_detail,
605 show_ipv6_ospf6_route_longer_detail_cmd,
606 "show ipv6 ospf6 route X:X::X:X/M longer detail",
607 SHOW_STR
608 IP6_STR
609 OSPF6_STR
610 ROUTE_STR
611 "Specify IPv6 prefix\n"
612 "Display routes longer than the specified route\n"
613 "Detailed information\n"
614 );
615
hasso4846ef62004-09-03 06:04:00 +0000616ALIAS (show_ipv6_ospf6_route,
617 show_ipv6_ospf6_route_type_cmd,
618 "show ipv6 ospf6 route (intra-area|inter-area|external-1|external-2)",
619 SHOW_STR
620 IP6_STR
621 OSPF6_STR
622 ROUTE_STR
Denis Ovsienkoea402192011-08-19 16:27:16 +0400623 "Display Intra-Area routes\n"
624 "Display Inter-Area routes\n"
625 "Display Type-1 External routes\n"
626 "Display Type-2 External routes\n"
Paul Jakma6ac29a52008-08-15 13:45:30 +0100627 )
hasso4846ef62004-09-03 06:04:00 +0000628
629DEFUN (show_ipv6_ospf6_route_type_detail,
630 show_ipv6_ospf6_route_type_detail_cmd,
631 "show ipv6 ospf6 route (intra-area|inter-area|external-1|external-2) detail",
632 SHOW_STR
633 IP6_STR
634 OSPF6_STR
635 ROUTE_STR
Denis Ovsienkoea402192011-08-19 16:27:16 +0400636 "Display Intra-Area routes\n"
637 "Display Inter-Area routes\n"
638 "Display Type-1 External routes\n"
639 "Display Type-2 External routes\n"
hasso4846ef62004-09-03 06:04:00 +0000640 "Detailed information\n"
641 )
642{
paul0c083ee2004-10-10 12:54:58 +0000643 const char *sargv[CMD_ARGC_MAX];
hasso4846ef62004-09-03 06:04:00 +0000644 int i, sargc;
645
646 /* copy argv to sargv and then append "detail" */
647 for (i = 0; i < argc; i++)
648 sargv[i] = argv[i];
649 sargc = argc;
650 sargv[sargc++] = "detail";
651 sargv[sargc] = NULL;
652
653 ospf6_route_table_show (vty, sargc, sargv, ospf6->route_table);
654 return CMD_SUCCESS;
655}
hasso508e53e2004-05-18 18:57:06 +0000656
657/* OSPF configuration write function. */
Paul Jakma6ac29a52008-08-15 13:45:30 +0100658static int
hasso508e53e2004-05-18 18:57:06 +0000659config_write_ospf6 (struct vty *vty)
660{
661 char router_id[16];
hasso52dc7ee2004-09-23 19:18:23 +0000662 struct listnode *j, *k;
hasso508e53e2004-05-18 18:57:06 +0000663 struct ospf6_area *oa;
664 struct ospf6_interface *oi;
665
666 /* OSPFv6 configuration. */
667 if (ospf6 == NULL)
668 return CMD_SUCCESS;
669 if (CHECK_FLAG (ospf6->flag, OSPF6_DISABLED))
670 return CMD_SUCCESS;
671
hassoc8a440e2004-10-11 17:02:40 +0000672 inet_ntop (AF_INET, &ospf6->router_id_static, router_id, sizeof (router_id));
hasso049207c2004-08-04 20:02:13 +0000673 vty_out (vty, "router ospf6%s", VNL);
hassoc8a440e2004-10-11 17:02:40 +0000674 if (ospf6->router_id_static != 0)
675 vty_out (vty, " router-id %s%s", router_id, VNL);
hasso508e53e2004-05-18 18:57:06 +0000676
677 ospf6_redistribute_config_write (vty);
hasso6452df02004-08-15 05:52:07 +0000678 ospf6_area_config_write (vty);
Dinesh Dutt3810e062013-08-24 07:54:09 +0000679 ospf6_spf_config_write (vty);
hasso508e53e2004-05-18 18:57:06 +0000680
paul1eb8ef22005-04-07 07:30:20 +0000681 for (ALL_LIST_ELEMENTS_RO (ospf6->area_list, j, oa))
hasso508e53e2004-05-18 18:57:06 +0000682 {
paul1eb8ef22005-04-07 07:30:20 +0000683 for (ALL_LIST_ELEMENTS_RO (oa->if_list, k, oi))
684 vty_out (vty, " interface %s area %s%s",
685 oi->interface->name, oa->name, VNL);
hasso508e53e2004-05-18 18:57:06 +0000686 }
hasso049207c2004-08-04 20:02:13 +0000687 vty_out (vty, "!%s", VNL);
hasso508e53e2004-05-18 18:57:06 +0000688 return 0;
689}
690
691/* OSPF6 node structure. */
Stephen Hemminger7fc626d2008-12-01 11:10:34 -0800692static struct cmd_node ospf6_node =
hasso508e53e2004-05-18 18:57:06 +0000693{
694 OSPF6_NODE,
695 "%s(config-ospf6)# ",
hasso69b4a812004-08-26 18:10:36 +0000696 1 /* VTYSH */
hasso508e53e2004-05-18 18:57:06 +0000697};
698
699/* Install ospf related commands. */
paul718e3742002-12-13 20:15:29 +0000700void
Paul Jakma6ac29a52008-08-15 13:45:30 +0100701ospf6_top_init (void)
paul718e3742002-12-13 20:15:29 +0000702{
hasso508e53e2004-05-18 18:57:06 +0000703 /* Install ospf6 top node. */
704 install_node (&ospf6_node, config_write_ospf6);
705
706 install_element (VIEW_NODE, &show_ipv6_ospf6_cmd);
707 install_element (ENABLE_NODE, &show_ipv6_ospf6_cmd);
708 install_element (CONFIG_NODE, &router_ospf6_cmd);
Jon6c19d262009-02-11 17:19:07 -0800709 install_element (CONFIG_NODE, &no_router_ospf6_cmd);
hasso508e53e2004-05-18 18:57:06 +0000710
paul718e3742002-12-13 20:15:29 +0000711 install_element (VIEW_NODE, &show_ipv6_ospf6_route_cmd);
hasso508e53e2004-05-18 18:57:06 +0000712 install_element (VIEW_NODE, &show_ipv6_ospf6_route_detail_cmd);
713 install_element (VIEW_NODE, &show_ipv6_ospf6_route_match_cmd);
714 install_element (VIEW_NODE, &show_ipv6_ospf6_route_match_detail_cmd);
Paul Jakmacb4b8842006-05-15 10:39:30 +0000715 install_element (VIEW_NODE, &show_ipv6_ospf6_route_longer_cmd);
716 install_element (VIEW_NODE, &show_ipv6_ospf6_route_longer_detail_cmd);
hasso4846ef62004-09-03 06:04:00 +0000717 install_element (VIEW_NODE, &show_ipv6_ospf6_route_type_cmd);
718 install_element (VIEW_NODE, &show_ipv6_ospf6_route_type_detail_cmd);
paul718e3742002-12-13 20:15:29 +0000719 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_cmd);
hasso508e53e2004-05-18 18:57:06 +0000720 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_detail_cmd);
721 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_match_cmd);
722 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_match_detail_cmd);
Paul Jakmacb4b8842006-05-15 10:39:30 +0000723 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_longer_cmd);
724 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_longer_detail_cmd);
hasso4846ef62004-09-03 06:04:00 +0000725 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_type_cmd);
726 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_type_detail_cmd);
hasso508e53e2004-05-18 18:57:06 +0000727
728 install_default (OSPF6_NODE);
729 install_element (OSPF6_NODE, &ospf6_router_id_cmd);
730 install_element (OSPF6_NODE, &ospf6_interface_area_cmd);
731 install_element (OSPF6_NODE, &no_ospf6_interface_area_cmd);
paul718e3742002-12-13 20:15:29 +0000732}
733
hasso508e53e2004-05-18 18:57:06 +0000734