blob: 540ef382ee90ced77a28a71aed81d67b224ed689 [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
Paul Jakma6ac29a52008-08-15 13:45:30 +0100211static int
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;
hasso508e53e2004-05-18 18:57:06 +0000219
220 o->maxage_remover = (struct thread *) NULL;
hasso508e53e2004-05-18 18:57:06 +0000221
paul1eb8ef22005-04-07 07:30:20 +0000222 for (ALL_LIST_ELEMENTS_RO (o->area_list, i, oa))
hasso508e53e2004-05-18 18:57:06 +0000223 {
paul1eb8ef22005-04-07 07:30:20 +0000224 for (ALL_LIST_ELEMENTS_RO (oa->if_list, j, oi))
hasso508e53e2004-05-18 18:57:06 +0000225 {
paul1eb8ef22005-04-07 07:30:20 +0000226 for (ALL_LIST_ELEMENTS_RO (oi->neighbor_list, k, on))
hasso508e53e2004-05-18 18:57:06 +0000227 {
hasso508e53e2004-05-18 18:57:06 +0000228 if (on->state != OSPF6_NEIGHBOR_EXCHANGE &&
229 on->state != OSPF6_NEIGHBOR_LOADING)
230 continue;
231
hasso508e53e2004-05-18 18:57:06 +0000232 return 0;
233 }
234 }
235 }
236
paul1eb8ef22005-04-07 07:30:20 +0000237 for (ALL_LIST_ELEMENTS_RO (o->area_list, i, oa))
hasso508e53e2004-05-18 18:57:06 +0000238 {
paul1eb8ef22005-04-07 07:30:20 +0000239 for (ALL_LIST_ELEMENTS_RO (oa->if_list, j, oi))
240 OSPF6_LSDB_MAXAGE_REMOVER (oi->lsdb);
241
hasso508e53e2004-05-18 18:57:06 +0000242 OSPF6_LSDB_MAXAGE_REMOVER (oa->lsdb);
243 }
244 OSPF6_LSDB_MAXAGE_REMOVER (o->lsdb);
245
paul718e3742002-12-13 20:15:29 +0000246 return 0;
247}
248
249void
hasso508e53e2004-05-18 18:57:06 +0000250ospf6_maxage_remove (struct ospf6 *o)
paul718e3742002-12-13 20:15:29 +0000251{
hasso508e53e2004-05-18 18:57:06 +0000252 if (o && ! o->maxage_remover)
253 o->maxage_remover = thread_add_event (master, ospf6_maxage_remover, o, 0);
254}
paul718e3742002-12-13 20:15:29 +0000255
hasso508e53e2004-05-18 18:57:06 +0000256/* start ospf6 */
257DEFUN (router_ospf6,
258 router_ospf6_cmd,
259 "router ospf6",
260 ROUTER_STR
261 OSPF6_STR)
262{
263 if (ospf6 == NULL)
264 ospf6 = ospf6_create ();
265 if (CHECK_FLAG (ospf6->flag, OSPF6_DISABLED))
266 ospf6_enable (ospf6);
267
268 /* set current ospf point. */
269 vty->node = OSPF6_NODE;
270 vty->index = ospf6;
271
272 return CMD_SUCCESS;
273}
274
275/* stop ospf6 */
276DEFUN (no_router_ospf6,
277 no_router_ospf6_cmd,
278 "no router ospf6",
279 NO_STR
280 OSPF6_ROUTER_STR)
281{
282 if (ospf6 == NULL || CHECK_FLAG (ospf6->flag, OSPF6_DISABLED))
hasso049207c2004-08-04 20:02:13 +0000283 vty_out (vty, "OSPFv3 is not running%s", VNL);
hasso508e53e2004-05-18 18:57:06 +0000284 else
285 ospf6_disable (ospf6);
286
287 /* return to config node . */
288 vty->node = CONFIG_NODE;
289 vty->index = NULL;
290
291 return CMD_SUCCESS;
292}
293
294/* change Router_ID commands. */
295DEFUN (ospf6_router_id,
296 ospf6_router_id_cmd,
297 "router-id A.B.C.D",
298 "Configure OSPF Router-ID\n"
299 V4NOTATION_STR)
300{
301 int ret;
302 u_int32_t router_id;
303 struct ospf6 *o;
304
305 o = (struct ospf6 *) vty->index;
306
307 ret = inet_pton (AF_INET, argv[0], &router_id);
308 if (ret == 0)
309 {
hasso049207c2004-08-04 20:02:13 +0000310 vty_out (vty, "malformed OSPF Router-ID: %s%s", argv[0], VNL);
hasso508e53e2004-05-18 18:57:06 +0000311 return CMD_SUCCESS;
312 }
313
hassoc8a440e2004-10-11 17:02:40 +0000314 o->router_id_static = router_id;
315 if (o->router_id == 0)
316 o->router_id = router_id;
317
hasso508e53e2004-05-18 18:57:06 +0000318 return CMD_SUCCESS;
319}
320
321DEFUN (ospf6_interface_area,
322 ospf6_interface_area_cmd,
323 "interface IFNAME area A.B.C.D",
324 "Enable routing on an IPv6 interface\n"
325 IFNAME_STR
326 "Specify the OSPF6 area ID\n"
327 "OSPF6 area ID in IPv4 address notation\n"
328 )
329{
330 struct ospf6 *o;
hasso3b687352004-08-19 06:56:53 +0000331 struct ospf6_area *oa;
hasso508e53e2004-05-18 18:57:06 +0000332 struct ospf6_interface *oi;
333 struct interface *ifp;
334 u_int32_t area_id;
335
336 o = (struct ospf6 *) vty->index;
337
338 /* find/create ospf6 interface */
339 ifp = if_get_by_name (argv[0]);
340 oi = (struct ospf6_interface *) ifp->info;
341 if (oi == NULL)
342 oi = ospf6_interface_create (ifp);
343 if (oi->area)
344 {
345 vty_out (vty, "%s already attached to Area %s%s",
hasso049207c2004-08-04 20:02:13 +0000346 oi->interface->name, oi->area->name, VNL);
hasso508e53e2004-05-18 18:57:06 +0000347 return CMD_SUCCESS;
348 }
349
350 /* parse Area-ID */
351 if (inet_pton (AF_INET, argv[1], &area_id) != 1)
352 {
hasso049207c2004-08-04 20:02:13 +0000353 vty_out (vty, "Invalid Area-ID: %s%s", argv[1], VNL);
hasso508e53e2004-05-18 18:57:06 +0000354 return CMD_SUCCESS;
355 }
356
357 /* find/create ospf6 area */
358 oa = ospf6_area_lookup (area_id, o);
359 if (oa == NULL)
360 oa = ospf6_area_create (area_id, o);
361
362 /* attach interface to area */
363 listnode_add (oa->if_list, oi); /* sort ?? */
364 oi->area = oa;
365
hasso6452df02004-08-15 05:52:07 +0000366 SET_FLAG (oa->flag, OSPF6_AREA_ENABLE);
367
hasso508e53e2004-05-18 18:57:06 +0000368 /* start up */
369 thread_add_event (master, interface_up, oi, 0);
hasso6452df02004-08-15 05:52:07 +0000370
hasso3b687352004-08-19 06:56:53 +0000371 /* If the router is ABR, originate summary routes */
372 if (ospf6_is_router_abr (o))
373 ospf6_abr_enable_area (oa);
hasso6452df02004-08-15 05:52:07 +0000374
hasso508e53e2004-05-18 18:57:06 +0000375 return CMD_SUCCESS;
376}
377
378DEFUN (no_ospf6_interface_area,
379 no_ospf6_interface_area_cmd,
380 "no interface IFNAME area A.B.C.D",
381 NO_STR
382 "Disable routing on an IPv6 interface\n"
383 IFNAME_STR
384 "Specify the OSPF6 area ID\n"
385 "OSPF6 area ID in IPv4 address notation\n"
386 )
387{
388 struct ospf6 *o;
389 struct ospf6_interface *oi;
hasso3b687352004-08-19 06:56:53 +0000390 struct ospf6_area *oa;
hasso508e53e2004-05-18 18:57:06 +0000391 struct interface *ifp;
392 u_int32_t area_id;
393
394 o = (struct ospf6 *) vty->index;
395
396 ifp = if_lookup_by_name (argv[0]);
397 if (ifp == NULL)
398 {
hasso049207c2004-08-04 20:02:13 +0000399 vty_out (vty, "No such interface %s%s", argv[0], VNL);
hasso508e53e2004-05-18 18:57:06 +0000400 return CMD_SUCCESS;
401 }
402
403 oi = (struct ospf6_interface *) ifp->info;
404 if (oi == NULL)
405 {
hasso049207c2004-08-04 20:02:13 +0000406 vty_out (vty, "Interface %s not enabled%s", ifp->name, VNL);
hasso508e53e2004-05-18 18:57:06 +0000407 return CMD_SUCCESS;
408 }
409
410 /* parse Area-ID */
411 if (inet_pton (AF_INET, argv[1], &area_id) != 1)
412 {
hasso049207c2004-08-04 20:02:13 +0000413 vty_out (vty, "Invalid Area-ID: %s%s", argv[1], VNL);
hasso508e53e2004-05-18 18:57:06 +0000414 return CMD_SUCCESS;
415 }
416
Jon56abbb82009-02-11 17:30:44 -0800417 /* Verify Area */
418 if (oi->area == NULL)
419 {
420 vty_out (vty, "No such Area-ID: %s%s", argv[1], VNL);
421 return CMD_SUCCESS;
422 }
423
hasso508e53e2004-05-18 18:57:06 +0000424 if (oi->area->area_id != area_id)
425 {
426 vty_out (vty, "Wrong Area-ID: %s is attached to area %s%s",
hasso049207c2004-08-04 20:02:13 +0000427 oi->interface->name, oi->area->name, VNL);
hasso508e53e2004-05-18 18:57:06 +0000428 return CMD_SUCCESS;
429 }
430
431 thread_execute (master, interface_down, oi, 0);
432
hasso6452df02004-08-15 05:52:07 +0000433 oa = oi->area;
hasso508e53e2004-05-18 18:57:06 +0000434 listnode_delete (oi->area->if_list, oi);
435 oi->area = (struct ospf6_area *) NULL;
436
hasso6452df02004-08-15 05:52:07 +0000437 /* Withdraw inter-area routes from this area, if necessary */
438 if (oa->if_list->count == 0)
439 {
440 UNSET_FLAG (oa->flag, OSPF6_AREA_ENABLE);
hasso3b687352004-08-19 06:56:53 +0000441 ospf6_abr_disable_area (oa);
hasso6452df02004-08-15 05:52:07 +0000442 }
443
hasso508e53e2004-05-18 18:57:06 +0000444 return CMD_SUCCESS;
paul718e3742002-12-13 20:15:29 +0000445}
446
Paul Jakma6ac29a52008-08-15 13:45:30 +0100447static void
hasso508e53e2004-05-18 18:57:06 +0000448ospf6_show (struct vty *vty, struct ospf6 *o)
paul718e3742002-12-13 20:15:29 +0000449{
hasso52dc7ee2004-09-23 19:18:23 +0000450 struct listnode *n;
hasso508e53e2004-05-18 18:57:06 +0000451 struct ospf6_area *oa;
452 char router_id[16], duration[32];
paul718e3742002-12-13 20:15:29 +0000453 struct timeval now, running;
454
455 /* process id, router id */
hasso508e53e2004-05-18 18:57:06 +0000456 inet_ntop (AF_INET, &o->router_id, router_id, sizeof (router_id));
457 vty_out (vty, " OSPFv3 Routing Process (0) with Router-ID %s%s",
hasso049207c2004-08-04 20:02:13 +0000458 router_id, VNL);
paul718e3742002-12-13 20:15:29 +0000459
460 /* running time */
Takashi Sogabe86f72dc2009-06-22 13:07:02 +0900461 quagga_gettime (QUAGGA_CLK_MONOTONIC, &now);
hasso508e53e2004-05-18 18:57:06 +0000462 timersub (&now, &o->starttime, &running);
463 timerstring (&running, duration, sizeof (duration));
hasso049207c2004-08-04 20:02:13 +0000464 vty_out (vty, " Running %s%s", duration, VNL);
paul718e3742002-12-13 20:15:29 +0000465
hasso508e53e2004-05-18 18:57:06 +0000466 /* Redistribute configuration */
467 /* XXX */
paul718e3742002-12-13 20:15:29 +0000468
469 /* LSAs */
470 vty_out (vty, " Number of AS scoped LSAs is %u%s",
hasso049207c2004-08-04 20:02:13 +0000471 o->lsdb->count, VNL);
paul718e3742002-12-13 20:15:29 +0000472
473 /* Areas */
474 vty_out (vty, " Number of areas in this router is %u%s",
hasso049207c2004-08-04 20:02:13 +0000475 listcount (o->area_list), VNL);
paul1eb8ef22005-04-07 07:30:20 +0000476
477 for (ALL_LIST_ELEMENTS_RO (o->area_list, n, oa))
478 ospf6_area_show (vty, oa);
paul718e3742002-12-13 20:15:29 +0000479}
480
hasso508e53e2004-05-18 18:57:06 +0000481/* show top level structures */
482DEFUN (show_ipv6_ospf6,
483 show_ipv6_ospf6_cmd,
484 "show ipv6 ospf6",
485 SHOW_STR
486 IP6_STR
487 OSPF6_STR)
paul718e3742002-12-13 20:15:29 +0000488{
hasso508e53e2004-05-18 18:57:06 +0000489 OSPF6_CMD_CHECK_RUNNING ();
paul718e3742002-12-13 20:15:29 +0000490
hasso508e53e2004-05-18 18:57:06 +0000491 ospf6_show (vty, ospf6);
492 return CMD_SUCCESS;
paul718e3742002-12-13 20:15:29 +0000493}
494
495DEFUN (show_ipv6_ospf6_route,
496 show_ipv6_ospf6_route_cmd,
497 "show ipv6 ospf6 route",
498 SHOW_STR
499 IP6_STR
500 OSPF6_STR
hasso508e53e2004-05-18 18:57:06 +0000501 ROUTE_STR
paul718e3742002-12-13 20:15:29 +0000502 )
503{
hasso508e53e2004-05-18 18:57:06 +0000504 ospf6_route_table_show (vty, argc, argv, ospf6->route_table);
505 return CMD_SUCCESS;
paul718e3742002-12-13 20:15:29 +0000506}
507
508ALIAS (show_ipv6_ospf6_route,
hasso508e53e2004-05-18 18:57:06 +0000509 show_ipv6_ospf6_route_detail_cmd,
hasso4846ef62004-09-03 06:04:00 +0000510 "show ipv6 ospf6 route (X:X::X:X|X:X::X:X/M|detail|summary)",
paul718e3742002-12-13 20:15:29 +0000511 SHOW_STR
512 IP6_STR
513 OSPF6_STR
hasso508e53e2004-05-18 18:57:06 +0000514 ROUTE_STR
515 "Specify IPv6 address\n"
516 "Specify IPv6 prefix\n"
517 "Detailed information\n"
518 "Summary of route table\n"
Paul Jakma6ac29a52008-08-15 13:45:30 +0100519 )
paul718e3742002-12-13 20:15:29 +0000520
hasso508e53e2004-05-18 18:57:06 +0000521DEFUN (show_ipv6_ospf6_route_match,
522 show_ipv6_ospf6_route_match_cmd,
hasso4846ef62004-09-03 06:04:00 +0000523 "show ipv6 ospf6 route X:X::X:X/M match",
paul718e3742002-12-13 20:15:29 +0000524 SHOW_STR
525 IP6_STR
526 OSPF6_STR
hasso508e53e2004-05-18 18:57:06 +0000527 ROUTE_STR
528 "Specify IPv6 prefix\n"
529 "Display routes which match the specified route\n"
paul718e3742002-12-13 20:15:29 +0000530 )
531{
paul0c083ee2004-10-10 12:54:58 +0000532 const char *sargv[CMD_ARGC_MAX];
hasso508e53e2004-05-18 18:57:06 +0000533 int i, sargc;
534
535 /* copy argv to sargv and then append "match" */
536 for (i = 0; i < argc; i++)
537 sargv[i] = argv[i];
538 sargc = argc;
539 sargv[sargc++] = "match";
540 sargv[sargc] = NULL;
541
542 ospf6_route_table_show (vty, sargc, sargv, ospf6->route_table);
543 return CMD_SUCCESS;
paul718e3742002-12-13 20:15:29 +0000544}
545
hasso508e53e2004-05-18 18:57:06 +0000546DEFUN (show_ipv6_ospf6_route_match_detail,
547 show_ipv6_ospf6_route_match_detail_cmd,
hasso4846ef62004-09-03 06:04:00 +0000548 "show ipv6 ospf6 route X:X::X:X/M match detail",
paul718e3742002-12-13 20:15:29 +0000549 SHOW_STR
550 IP6_STR
551 OSPF6_STR
hasso508e53e2004-05-18 18:57:06 +0000552 ROUTE_STR
553 "Specify IPv6 prefix\n"
554 "Display routes which match the specified route\n"
paul718e3742002-12-13 20:15:29 +0000555 "Detailed information\n"
556 )
hasso508e53e2004-05-18 18:57:06 +0000557{
paul0c083ee2004-10-10 12:54:58 +0000558 const char *sargv[CMD_ARGC_MAX];
hasso508e53e2004-05-18 18:57:06 +0000559 int i, sargc;
paul718e3742002-12-13 20:15:29 +0000560
hasso508e53e2004-05-18 18:57:06 +0000561 /* copy argv to sargv and then append "match" and "detail" */
562 for (i = 0; i < argc; i++)
563 sargv[i] = argv[i];
564 sargc = argc;
565 sargv[sargc++] = "match";
566 sargv[sargc++] = "detail";
567 sargv[sargc] = NULL;
paul718e3742002-12-13 20:15:29 +0000568
hasso508e53e2004-05-18 18:57:06 +0000569 ospf6_route_table_show (vty, sargc, sargv, ospf6->route_table);
570 return CMD_SUCCESS;
571}
572
Paul Jakmacb4b8842006-05-15 10:39:30 +0000573ALIAS (show_ipv6_ospf6_route_match,
574 show_ipv6_ospf6_route_longer_cmd,
575 "show ipv6 ospf6 route X:X::X:X/M longer",
576 SHOW_STR
577 IP6_STR
578 OSPF6_STR
579 ROUTE_STR
580 "Specify IPv6 prefix\n"
581 "Display routes longer than the specified route\n"
Paul Jakma6ac29a52008-08-15 13:45:30 +0100582 )
Paul Jakmacb4b8842006-05-15 10:39:30 +0000583
584DEFUN (show_ipv6_ospf6_route_match_detail,
585 show_ipv6_ospf6_route_longer_detail_cmd,
586 "show ipv6 ospf6 route X:X::X:X/M longer detail",
587 SHOW_STR
588 IP6_STR
589 OSPF6_STR
590 ROUTE_STR
591 "Specify IPv6 prefix\n"
592 "Display routes longer than the specified route\n"
593 "Detailed information\n"
594 );
595
hasso4846ef62004-09-03 06:04:00 +0000596ALIAS (show_ipv6_ospf6_route,
597 show_ipv6_ospf6_route_type_cmd,
598 "show ipv6 ospf6 route (intra-area|inter-area|external-1|external-2)",
599 SHOW_STR
600 IP6_STR
601 OSPF6_STR
602 ROUTE_STR
Denis Ovsienkoea402192011-08-19 16:27:16 +0400603 "Display Intra-Area routes\n"
604 "Display Inter-Area routes\n"
605 "Display Type-1 External routes\n"
606 "Display Type-2 External routes\n"
Paul Jakma6ac29a52008-08-15 13:45:30 +0100607 )
hasso4846ef62004-09-03 06:04:00 +0000608
609DEFUN (show_ipv6_ospf6_route_type_detail,
610 show_ipv6_ospf6_route_type_detail_cmd,
611 "show ipv6 ospf6 route (intra-area|inter-area|external-1|external-2) detail",
612 SHOW_STR
613 IP6_STR
614 OSPF6_STR
615 ROUTE_STR
Denis Ovsienkoea402192011-08-19 16:27:16 +0400616 "Display Intra-Area routes\n"
617 "Display Inter-Area routes\n"
618 "Display Type-1 External routes\n"
619 "Display Type-2 External routes\n"
hasso4846ef62004-09-03 06:04:00 +0000620 "Detailed information\n"
621 )
622{
paul0c083ee2004-10-10 12:54:58 +0000623 const char *sargv[CMD_ARGC_MAX];
hasso4846ef62004-09-03 06:04:00 +0000624 int i, sargc;
625
626 /* copy argv to sargv and then append "detail" */
627 for (i = 0; i < argc; i++)
628 sargv[i] = argv[i];
629 sargc = argc;
630 sargv[sargc++] = "detail";
631 sargv[sargc] = NULL;
632
633 ospf6_route_table_show (vty, sargc, sargv, ospf6->route_table);
634 return CMD_SUCCESS;
635}
hasso508e53e2004-05-18 18:57:06 +0000636
637/* OSPF configuration write function. */
Paul Jakma6ac29a52008-08-15 13:45:30 +0100638static int
hasso508e53e2004-05-18 18:57:06 +0000639config_write_ospf6 (struct vty *vty)
640{
641 char router_id[16];
hasso52dc7ee2004-09-23 19:18:23 +0000642 struct listnode *j, *k;
hasso508e53e2004-05-18 18:57:06 +0000643 struct ospf6_area *oa;
644 struct ospf6_interface *oi;
645
646 /* OSPFv6 configuration. */
647 if (ospf6 == NULL)
648 return CMD_SUCCESS;
649 if (CHECK_FLAG (ospf6->flag, OSPF6_DISABLED))
650 return CMD_SUCCESS;
651
hassoc8a440e2004-10-11 17:02:40 +0000652 inet_ntop (AF_INET, &ospf6->router_id_static, router_id, sizeof (router_id));
hasso049207c2004-08-04 20:02:13 +0000653 vty_out (vty, "router ospf6%s", VNL);
hassoc8a440e2004-10-11 17:02:40 +0000654 if (ospf6->router_id_static != 0)
655 vty_out (vty, " router-id %s%s", router_id, VNL);
hasso508e53e2004-05-18 18:57:06 +0000656
657 ospf6_redistribute_config_write (vty);
hasso6452df02004-08-15 05:52:07 +0000658 ospf6_area_config_write (vty);
Dinesh Dutt3810e062013-08-24 07:54:09 +0000659 ospf6_spf_config_write (vty);
hasso508e53e2004-05-18 18:57:06 +0000660
paul1eb8ef22005-04-07 07:30:20 +0000661 for (ALL_LIST_ELEMENTS_RO (ospf6->area_list, j, oa))
hasso508e53e2004-05-18 18:57:06 +0000662 {
paul1eb8ef22005-04-07 07:30:20 +0000663 for (ALL_LIST_ELEMENTS_RO (oa->if_list, k, oi))
664 vty_out (vty, " interface %s area %s%s",
665 oi->interface->name, oa->name, VNL);
hasso508e53e2004-05-18 18:57:06 +0000666 }
hasso049207c2004-08-04 20:02:13 +0000667 vty_out (vty, "!%s", VNL);
hasso508e53e2004-05-18 18:57:06 +0000668 return 0;
669}
670
671/* OSPF6 node structure. */
Stephen Hemminger7fc626d2008-12-01 11:10:34 -0800672static struct cmd_node ospf6_node =
hasso508e53e2004-05-18 18:57:06 +0000673{
674 OSPF6_NODE,
675 "%s(config-ospf6)# ",
hasso69b4a812004-08-26 18:10:36 +0000676 1 /* VTYSH */
hasso508e53e2004-05-18 18:57:06 +0000677};
678
679/* Install ospf related commands. */
paul718e3742002-12-13 20:15:29 +0000680void
Paul Jakma6ac29a52008-08-15 13:45:30 +0100681ospf6_top_init (void)
paul718e3742002-12-13 20:15:29 +0000682{
hasso508e53e2004-05-18 18:57:06 +0000683 /* Install ospf6 top node. */
684 install_node (&ospf6_node, config_write_ospf6);
685
686 install_element (VIEW_NODE, &show_ipv6_ospf6_cmd);
687 install_element (ENABLE_NODE, &show_ipv6_ospf6_cmd);
688 install_element (CONFIG_NODE, &router_ospf6_cmd);
Jon6c19d262009-02-11 17:19:07 -0800689 install_element (CONFIG_NODE, &no_router_ospf6_cmd);
hasso508e53e2004-05-18 18:57:06 +0000690
paul718e3742002-12-13 20:15:29 +0000691 install_element (VIEW_NODE, &show_ipv6_ospf6_route_cmd);
hasso508e53e2004-05-18 18:57:06 +0000692 install_element (VIEW_NODE, &show_ipv6_ospf6_route_detail_cmd);
693 install_element (VIEW_NODE, &show_ipv6_ospf6_route_match_cmd);
694 install_element (VIEW_NODE, &show_ipv6_ospf6_route_match_detail_cmd);
Paul Jakmacb4b8842006-05-15 10:39:30 +0000695 install_element (VIEW_NODE, &show_ipv6_ospf6_route_longer_cmd);
696 install_element (VIEW_NODE, &show_ipv6_ospf6_route_longer_detail_cmd);
hasso4846ef62004-09-03 06:04:00 +0000697 install_element (VIEW_NODE, &show_ipv6_ospf6_route_type_cmd);
698 install_element (VIEW_NODE, &show_ipv6_ospf6_route_type_detail_cmd);
paul718e3742002-12-13 20:15:29 +0000699 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_cmd);
hasso508e53e2004-05-18 18:57:06 +0000700 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_detail_cmd);
701 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_match_cmd);
702 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_match_detail_cmd);
Paul Jakmacb4b8842006-05-15 10:39:30 +0000703 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_longer_cmd);
704 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_longer_detail_cmd);
hasso4846ef62004-09-03 06:04:00 +0000705 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_type_cmd);
706 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_type_detail_cmd);
hasso508e53e2004-05-18 18:57:06 +0000707
708 install_default (OSPF6_NODE);
709 install_element (OSPF6_NODE, &ospf6_router_id_cmd);
710 install_element (OSPF6_NODE, &ospf6_interface_area_cmd);
711 install_element (OSPF6_NODE, &no_ospf6_interface_area_cmd);
paul718e3742002-12-13 20:15:29 +0000712}
713
hasso508e53e2004-05-18 18:57:06 +0000714