blob: cb3474515c5a87694cf6864615ffe3bf1a1a18a8 [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
hasso508e53e2004-05-18 18:57:06 +000022#include <zebra.h>
paul718e3742002-12-13 20:15:29 +000023
hasso508e53e2004-05-18 18:57:06 +000024#include "memory.h"
paul718e3742002-12-13 20:15:29 +000025#include "if.h"
26#include "log.h"
27#include "command.h"
hasso508e53e2004-05-18 18:57:06 +000028#include "thread.h"
29#include "prefix.h"
30#include "plist.h"
paul718e3742002-12-13 20:15:29 +000031
hasso508e53e2004-05-18 18:57:06 +000032#include "ospf6_lsa.h"
paul718e3742002-12-13 20:15:29 +000033#include "ospf6_lsdb.h"
hasso508e53e2004-05-18 18:57:06 +000034#include "ospf6_network.h"
35#include "ospf6_message.h"
36#include "ospf6_route.h"
paul718e3742002-12-13 20:15:29 +000037#include "ospf6_top.h"
38#include "ospf6_area.h"
39#include "ospf6_interface.h"
hasso508e53e2004-05-18 18:57:06 +000040#include "ospf6_neighbor.h"
41#include "ospf6_intra.h"
42#include "ospf6_spf.h"
hasso049207c2004-08-04 20:02:13 +000043#include "ospf6d.h"
paul718e3742002-12-13 20:15:29 +000044
hasso508e53e2004-05-18 18:57:06 +000045unsigned char conf_debug_ospf6_interface = 0;
46
paul0c083ee2004-10-10 12:54:58 +000047const char *ospf6_interface_state_str[] =
paul718e3742002-12-13 20:15:29 +000048{
hasso508e53e2004-05-18 18:57:06 +000049 "None",
50 "Down",
51 "Loopback",
52 "Waiting",
53 "PointToPoint",
54 "DROther",
55 "BDR",
56 "DR",
57 NULL
paul718e3742002-12-13 20:15:29 +000058};
59
hasso508e53e2004-05-18 18:57:06 +000060struct ospf6_interface *
61ospf6_interface_lookup_by_ifindex (int ifindex)
paul718e3742002-12-13 20:15:29 +000062{
hasso508e53e2004-05-18 18:57:06 +000063 struct ospf6_interface *oi;
64 struct interface *ifp;
paul718e3742002-12-13 20:15:29 +000065
hasso508e53e2004-05-18 18:57:06 +000066 ifp = if_lookup_by_index (ifindex);
67 if (ifp == NULL)
68 return (struct ospf6_interface *) NULL;
69
70 oi = (struct ospf6_interface *) ifp->info;
71 return oi;
paul718e3742002-12-13 20:15:29 +000072}
73
hasso508e53e2004-05-18 18:57:06 +000074/* schedule routing table recalculation */
Paul Jakma6ac29a52008-08-15 13:45:30 +010075static void
hasso508e53e2004-05-18 18:57:06 +000076ospf6_interface_lsdb_hook (struct ospf6_lsa *lsa)
paul718e3742002-12-13 20:15:29 +000077{
hasso508e53e2004-05-18 18:57:06 +000078 switch (ntohs (lsa->header->type))
79 {
80 case OSPF6_LSTYPE_LINK:
hasso6452df02004-08-15 05:52:07 +000081 if (OSPF6_INTERFACE (lsa->lsdb->data)->state == OSPF6_INTERFACE_DR)
82 OSPF6_INTRA_PREFIX_LSA_SCHEDULE_TRANSIT (OSPF6_INTERFACE (lsa->lsdb->data));
83 ospf6_spf_schedule (OSPF6_INTERFACE (lsa->lsdb->data)->area);
hasso508e53e2004-05-18 18:57:06 +000084 break;
paul718e3742002-12-13 20:15:29 +000085
hasso508e53e2004-05-18 18:57:06 +000086 default:
hasso508e53e2004-05-18 18:57:06 +000087 break;
88 }
paul718e3742002-12-13 20:15:29 +000089}
90
91/* Create new ospf6 interface structure */
92struct ospf6_interface *
93ospf6_interface_create (struct interface *ifp)
94{
hasso508e53e2004-05-18 18:57:06 +000095 struct ospf6_interface *oi;
paul0c083ee2004-10-10 12:54:58 +000096 unsigned int iobuflen;
paul718e3742002-12-13 20:15:29 +000097
hasso508e53e2004-05-18 18:57:06 +000098 oi = (struct ospf6_interface *)
Stephen Hemminger393deb92008-08-18 14:13:29 -070099 XCALLOC (MTYPE_OSPF6_IF, sizeof (struct ospf6_interface));
paul718e3742002-12-13 20:15:29 +0000100
Stephen Hemminger393deb92008-08-18 14:13:29 -0700101 if (!oi)
paul718e3742002-12-13 20:15:29 +0000102 {
103 zlog_err ("Can't malloc ospf6_interface for ifindex %d", ifp->ifindex);
104 return (struct ospf6_interface *) NULL;
105 }
106
hasso508e53e2004-05-18 18:57:06 +0000107 oi->area = (struct ospf6_area *) NULL;
108 oi->neighbor_list = list_new ();
109 oi->neighbor_list->cmp = ospf6_neighbor_cmp;
110 oi->linklocal_addr = (struct in6_addr *) NULL;
111 oi->instance_id = 0;
112 oi->transdelay = 1;
113 oi->priority = 1;
paul718e3742002-12-13 20:15:29 +0000114
hasso508e53e2004-05-18 18:57:06 +0000115 oi->hello_interval = 10;
116 oi->dead_interval = 40;
117 oi->rxmt_interval = 5;
118 oi->cost = 1;
hasso508e53e2004-05-18 18:57:06 +0000119 oi->state = OSPF6_INTERFACE_DOWN;
120 oi->flag = 0;
paul718e3742002-12-13 20:15:29 +0000121
hassob596c712004-07-09 18:33:43 +0000122 /* Try to adjust I/O buffer size with IfMtu */
hasso1203e1c2004-07-23 21:34:27 +0000123 oi->ifmtu = ifp->mtu6;
124 iobuflen = ospf6_iobuf_size (ifp->mtu6);
hassob596c712004-07-09 18:33:43 +0000125 if (oi->ifmtu > iobuflen)
hasso3b4cd3a2004-05-18 19:28:32 +0000126 {
hasso1e058382004-09-01 21:36:14 +0000127 if (IS_OSPF6_DEBUG_INTERFACE)
hassoc6487d62004-12-24 06:00:11 +0000128 zlog_debug ("Interface %s: IfMtu is adjusted to I/O buffer size: %d.",
129 ifp->name, iobuflen);
hasso3b4cd3a2004-05-18 19:28:32 +0000130 oi->ifmtu = iobuflen;
131 }
hasso3b4cd3a2004-05-18 19:28:32 +0000132
hasso6452df02004-08-15 05:52:07 +0000133 oi->lsupdate_list = ospf6_lsdb_create (oi);
134 oi->lsack_list = ospf6_lsdb_create (oi);
135 oi->lsdb = ospf6_lsdb_create (oi);
hasso508e53e2004-05-18 18:57:06 +0000136 oi->lsdb->hook_add = ospf6_interface_lsdb_hook;
137 oi->lsdb->hook_remove = ospf6_interface_lsdb_hook;
hasso6452df02004-08-15 05:52:07 +0000138 oi->lsdb_self = ospf6_lsdb_create (oi);
paul718e3742002-12-13 20:15:29 +0000139
Paul Jakmacf1ce252006-05-15 10:46:07 +0000140 oi->route_connected = OSPF6_ROUTE_TABLE_CREATE (INTERFACE, CONNECTED_ROUTES);
141 oi->route_connected->scope = oi;
paul718e3742002-12-13 20:15:29 +0000142
143 /* link both */
hasso508e53e2004-05-18 18:57:06 +0000144 oi->interface = ifp;
145 ifp->info = oi;
paul718e3742002-12-13 20:15:29 +0000146
hasso508e53e2004-05-18 18:57:06 +0000147 return oi;
paul718e3742002-12-13 20:15:29 +0000148}
149
150void
hasso508e53e2004-05-18 18:57:06 +0000151ospf6_interface_delete (struct ospf6_interface *oi)
paul718e3742002-12-13 20:15:29 +0000152{
paul1eb8ef22005-04-07 07:30:20 +0000153 struct listnode *node, *nnode;
hasso508e53e2004-05-18 18:57:06 +0000154 struct ospf6_neighbor *on;
paul718e3742002-12-13 20:15:29 +0000155
paul1eb8ef22005-04-07 07:30:20 +0000156 for (ALL_LIST_ELEMENTS (oi->neighbor_list, node, nnode, on))
hasso508e53e2004-05-18 18:57:06 +0000157 ospf6_neighbor_delete (on);
paul1eb8ef22005-04-07 07:30:20 +0000158
hasso508e53e2004-05-18 18:57:06 +0000159 list_delete (oi->neighbor_list);
paul718e3742002-12-13 20:15:29 +0000160
hasso508e53e2004-05-18 18:57:06 +0000161 THREAD_OFF (oi->thread_send_hello);
162 THREAD_OFF (oi->thread_send_lsupdate);
163 THREAD_OFF (oi->thread_send_lsack);
paul718e3742002-12-13 20:15:29 +0000164
hasso508e53e2004-05-18 18:57:06 +0000165 ospf6_lsdb_remove_all (oi->lsdb);
166 ospf6_lsdb_remove_all (oi->lsupdate_list);
167 ospf6_lsdb_remove_all (oi->lsack_list);
168
169 ospf6_lsdb_delete (oi->lsdb);
hasso6452df02004-08-15 05:52:07 +0000170 ospf6_lsdb_delete (oi->lsdb_self);
171
hasso508e53e2004-05-18 18:57:06 +0000172 ospf6_lsdb_delete (oi->lsupdate_list);
173 ospf6_lsdb_delete (oi->lsack_list);
174
175 ospf6_route_table_delete (oi->route_connected);
paul718e3742002-12-13 20:15:29 +0000176
177 /* cut link */
hasso508e53e2004-05-18 18:57:06 +0000178 oi->interface->info = NULL;
paul718e3742002-12-13 20:15:29 +0000179
180 /* plist_name */
hasso508e53e2004-05-18 18:57:06 +0000181 if (oi->plist_name)
182 XFREE (MTYPE_PREFIX_LIST_STR, oi->plist_name);
paul718e3742002-12-13 20:15:29 +0000183
hasso508e53e2004-05-18 18:57:06 +0000184 XFREE (MTYPE_OSPF6_IF, oi);
185}
186
187void
188ospf6_interface_enable (struct ospf6_interface *oi)
189{
190 UNSET_FLAG (oi->flag, OSPF6_INTERFACE_DISABLE);
191
192 oi->thread_send_hello =
193 thread_add_event (master, ospf6_hello_send, oi, 0);
194}
195
196void
197ospf6_interface_disable (struct ospf6_interface *oi)
198{
paul1eb8ef22005-04-07 07:30:20 +0000199 struct listnode *node, *nnode;
hasso508e53e2004-05-18 18:57:06 +0000200 struct ospf6_neighbor *on;
201
202 SET_FLAG (oi->flag, OSPF6_INTERFACE_DISABLE);
203
paul1eb8ef22005-04-07 07:30:20 +0000204 for (ALL_LIST_ELEMENTS (oi->neighbor_list, node, nnode, on))
hasso508e53e2004-05-18 18:57:06 +0000205 ospf6_neighbor_delete (on);
paul1eb8ef22005-04-07 07:30:20 +0000206
hasso508e53e2004-05-18 18:57:06 +0000207 list_delete_all_node (oi->neighbor_list);
208
209 ospf6_lsdb_remove_all (oi->lsdb);
210 ospf6_lsdb_remove_all (oi->lsupdate_list);
211 ospf6_lsdb_remove_all (oi->lsack_list);
212
213 THREAD_OFF (oi->thread_send_hello);
214 THREAD_OFF (oi->thread_send_lsupdate);
215 THREAD_OFF (oi->thread_send_lsack);
paul718e3742002-12-13 20:15:29 +0000216}
217
218static struct in6_addr *
hasso508e53e2004-05-18 18:57:06 +0000219ospf6_interface_get_linklocal_address (struct interface *ifp)
paul718e3742002-12-13 20:15:29 +0000220{
hasso52dc7ee2004-09-23 19:18:23 +0000221 struct listnode *n;
paul718e3742002-12-13 20:15:29 +0000222 struct connected *c;
223 struct in6_addr *l = (struct in6_addr *) NULL;
224
225 /* for each connected address */
paul1eb8ef22005-04-07 07:30:20 +0000226 for (ALL_LIST_ELEMENTS_RO (ifp->connected, n, c))
paul718e3742002-12-13 20:15:29 +0000227 {
paul718e3742002-12-13 20:15:29 +0000228 /* if family not AF_INET6, ignore */
229 if (c->address->family != AF_INET6)
230 continue;
231
232 /* linklocal scope check */
233 if (IN6_IS_ADDR_LINKLOCAL (&c->address->u.prefix6))
234 l = &c->address->u.prefix6;
235 }
236 return l;
237}
238
239void
240ospf6_interface_if_add (struct interface *ifp)
241{
hasso508e53e2004-05-18 18:57:06 +0000242 struct ospf6_interface *oi;
paul0c083ee2004-10-10 12:54:58 +0000243 unsigned int iobuflen;
paul718e3742002-12-13 20:15:29 +0000244
hasso508e53e2004-05-18 18:57:06 +0000245 oi = (struct ospf6_interface *) ifp->info;
246 if (oi == NULL)
paul718e3742002-12-13 20:15:29 +0000247 return;
248
hassob596c712004-07-09 18:33:43 +0000249 /* Try to adjust I/O buffer size with IfMtu */
250 if (oi->ifmtu == 0)
hasso1203e1c2004-07-23 21:34:27 +0000251 oi->ifmtu = ifp->mtu6;
252 iobuflen = ospf6_iobuf_size (ifp->mtu6);
hassob596c712004-07-09 18:33:43 +0000253 if (oi->ifmtu > iobuflen)
hasso3b4cd3a2004-05-18 19:28:32 +0000254 {
hasso1e058382004-09-01 21:36:14 +0000255 if (IS_OSPF6_DEBUG_INTERFACE)
hassoc6487d62004-12-24 06:00:11 +0000256 zlog_debug ("Interface %s: IfMtu is adjusted to I/O buffer size: %d.",
257 ifp->name, iobuflen);
hasso3b4cd3a2004-05-18 19:28:32 +0000258 oi->ifmtu = iobuflen;
259 }
paul718e3742002-12-13 20:15:29 +0000260
261 /* interface start */
hasso508e53e2004-05-18 18:57:06 +0000262 if (oi->area)
263 thread_add_event (master, interface_up, oi, 0);
paul718e3742002-12-13 20:15:29 +0000264}
265
266void
267ospf6_interface_if_del (struct interface *ifp)
268{
hasso508e53e2004-05-18 18:57:06 +0000269 struct ospf6_interface *oi;
paul718e3742002-12-13 20:15:29 +0000270
hasso508e53e2004-05-18 18:57:06 +0000271 oi = (struct ospf6_interface *) ifp->info;
272 if (oi == NULL)
paul718e3742002-12-13 20:15:29 +0000273 return;
274
275 /* interface stop */
hasso508e53e2004-05-18 18:57:06 +0000276 if (oi->area)
277 thread_execute (master, interface_down, oi, 0);
paul718e3742002-12-13 20:15:29 +0000278
hasso508e53e2004-05-18 18:57:06 +0000279 listnode_delete (oi->area->if_list, oi);
280 oi->area = (struct ospf6_area *) NULL;
paul718e3742002-12-13 20:15:29 +0000281
282 /* cut link */
hasso508e53e2004-05-18 18:57:06 +0000283 oi->interface = NULL;
paul718e3742002-12-13 20:15:29 +0000284 ifp->info = NULL;
285
hasso508e53e2004-05-18 18:57:06 +0000286 ospf6_interface_delete (oi);
paul718e3742002-12-13 20:15:29 +0000287}
288
289void
290ospf6_interface_state_update (struct interface *ifp)
291{
hasso508e53e2004-05-18 18:57:06 +0000292 struct ospf6_interface *oi;
paul718e3742002-12-13 20:15:29 +0000293
hasso508e53e2004-05-18 18:57:06 +0000294 oi = (struct ospf6_interface *) ifp->info;
295 if (oi == NULL)
paul718e3742002-12-13 20:15:29 +0000296 return;
hasso508e53e2004-05-18 18:57:06 +0000297 if (oi->area == NULL)
paul718e3742002-12-13 20:15:29 +0000298 return;
299
300 if (if_is_up (ifp))
hasso508e53e2004-05-18 18:57:06 +0000301 thread_add_event (master, interface_up, oi, 0);
paul718e3742002-12-13 20:15:29 +0000302 else
hasso508e53e2004-05-18 18:57:06 +0000303 thread_add_event (master, interface_down, oi, 0);
paul718e3742002-12-13 20:15:29 +0000304
305 return;
306}
307
308void
hasso508e53e2004-05-18 18:57:06 +0000309ospf6_interface_connected_route_update (struct interface *ifp)
paul718e3742002-12-13 20:15:29 +0000310{
hasso508e53e2004-05-18 18:57:06 +0000311 struct ospf6_interface *oi;
312 struct ospf6_route *route;
313 struct connected *c;
paul1eb8ef22005-04-07 07:30:20 +0000314 struct listnode *node, *nnode;
paul718e3742002-12-13 20:15:29 +0000315
hasso508e53e2004-05-18 18:57:06 +0000316 oi = (struct ospf6_interface *) ifp->info;
317 if (oi == NULL)
paul718e3742002-12-13 20:15:29 +0000318 return;
319
320 /* reset linklocal pointer */
hasso508e53e2004-05-18 18:57:06 +0000321 oi->linklocal_addr = ospf6_interface_get_linklocal_address (ifp);
paul718e3742002-12-13 20:15:29 +0000322
hasso508e53e2004-05-18 18:57:06 +0000323 /* if area is null, do not make connected-route list */
324 if (oi->area == NULL)
paul718e3742002-12-13 20:15:29 +0000325 return;
326
hasso508e53e2004-05-18 18:57:06 +0000327 /* update "route to advertise" interface route table */
328 ospf6_route_remove_all (oi->route_connected);
hasso508e53e2004-05-18 18:57:06 +0000329
paul1eb8ef22005-04-07 07:30:20 +0000330 for (ALL_LIST_ELEMENTS (oi->interface->connected, node, nnode, c))
331 {
hasso508e53e2004-05-18 18:57:06 +0000332 if (c->address->family != AF_INET6)
333 continue;
334
hasso1e058382004-09-01 21:36:14 +0000335 CONTINUE_IF_ADDRESS_LINKLOCAL (IS_OSPF6_DEBUG_INTERFACE, c->address);
336 CONTINUE_IF_ADDRESS_UNSPECIFIED (IS_OSPF6_DEBUG_INTERFACE, c->address);
337 CONTINUE_IF_ADDRESS_LOOPBACK (IS_OSPF6_DEBUG_INTERFACE, c->address);
338 CONTINUE_IF_ADDRESS_V4COMPAT (IS_OSPF6_DEBUG_INTERFACE, c->address);
339 CONTINUE_IF_ADDRESS_V4MAPPED (IS_OSPF6_DEBUG_INTERFACE, c->address);
hasso508e53e2004-05-18 18:57:06 +0000340
341 /* apply filter */
342 if (oi->plist_name)
343 {
344 struct prefix_list *plist;
345 enum prefix_list_type ret;
346 char buf[128];
347
348 prefix2str (c->address, buf, sizeof (buf));
349 plist = prefix_list_lookup (AFI_IP6, oi->plist_name);
350 ret = prefix_list_apply (plist, (void *) c->address);
351 if (ret == PREFIX_DENY)
352 {
hasso1e058382004-09-01 21:36:14 +0000353 if (IS_OSPF6_DEBUG_INTERFACE)
hassoc6487d62004-12-24 06:00:11 +0000354 zlog_debug ("%s on %s filtered by prefix-list %s ",
355 buf, oi->interface->name, oi->plist_name);
hasso508e53e2004-05-18 18:57:06 +0000356 continue;
357 }
358 }
359
360 route = ospf6_route_create ();
361 memcpy (&route->prefix, c->address, sizeof (struct prefix));
362 apply_mask (&route->prefix);
363 route->type = OSPF6_DEST_TYPE_NETWORK;
364 route->path.area_id = oi->area->area_id;
365 route->path.type = OSPF6_PATH_TYPE_INTRA;
366 route->path.cost = oi->cost;
367 route->nexthop[0].ifindex = oi->interface->ifindex;
368 inet_pton (AF_INET6, "::1", &route->nexthop[0].address);
369 ospf6_route_add (route, oi->route_connected);
370 }
371
paul718e3742002-12-13 20:15:29 +0000372 /* create new Link-LSA */
hasso508e53e2004-05-18 18:57:06 +0000373 OSPF6_LINK_LSA_SCHEDULE (oi);
374 OSPF6_INTRA_PREFIX_LSA_SCHEDULE_TRANSIT (oi);
375 OSPF6_INTRA_PREFIX_LSA_SCHEDULE_STUB (oi->area);
paul718e3742002-12-13 20:15:29 +0000376}
377
hasso508e53e2004-05-18 18:57:06 +0000378static void
379ospf6_interface_state_change (u_char next_state, struct ospf6_interface *oi)
paul718e3742002-12-13 20:15:29 +0000380{
hasso508e53e2004-05-18 18:57:06 +0000381 u_char prev_state;
paul718e3742002-12-13 20:15:29 +0000382
hasso508e53e2004-05-18 18:57:06 +0000383 prev_state = oi->state;
384 oi->state = next_state;
paul718e3742002-12-13 20:15:29 +0000385
hasso508e53e2004-05-18 18:57:06 +0000386 if (prev_state == next_state)
387 return;
paul718e3742002-12-13 20:15:29 +0000388
hasso508e53e2004-05-18 18:57:06 +0000389 /* log */
390 if (IS_OSPF6_DEBUG_INTERFACE)
paul718e3742002-12-13 20:15:29 +0000391 {
hassoc6487d62004-12-24 06:00:11 +0000392 zlog_debug ("Interface state change %s: %s -> %s", oi->interface->name,
393 ospf6_interface_state_str[prev_state],
394 ospf6_interface_state_str[next_state]);
paul718e3742002-12-13 20:15:29 +0000395 }
paul718e3742002-12-13 20:15:29 +0000396
hasso508e53e2004-05-18 18:57:06 +0000397 if ((prev_state == OSPF6_INTERFACE_DR ||
398 prev_state == OSPF6_INTERFACE_BDR) &&
399 (next_state != OSPF6_INTERFACE_DR &&
400 next_state != OSPF6_INTERFACE_BDR))
401 ospf6_leave_alldrouters (oi->interface->ifindex);
402 if ((prev_state != OSPF6_INTERFACE_DR &&
403 prev_state != OSPF6_INTERFACE_BDR) &&
404 (next_state == OSPF6_INTERFACE_DR ||
405 next_state == OSPF6_INTERFACE_BDR))
406 ospf6_join_alldrouters (oi->interface->ifindex);
paul718e3742002-12-13 20:15:29 +0000407
hasso508e53e2004-05-18 18:57:06 +0000408 OSPF6_ROUTER_LSA_SCHEDULE (oi->area);
hasso6452df02004-08-15 05:52:07 +0000409 if (next_state == OSPF6_INTERFACE_DOWN)
410 {
411 OSPF6_NETWORK_LSA_EXECUTE (oi);
412 OSPF6_INTRA_PREFIX_LSA_EXECUTE_TRANSIT (oi);
413 OSPF6_INTRA_PREFIX_LSA_SCHEDULE_STUB (oi->area);
414 }
415 else if (prev_state == OSPF6_INTERFACE_DR ||
416 next_state == OSPF6_INTERFACE_DR)
paul718e3742002-12-13 20:15:29 +0000417 {
hasso508e53e2004-05-18 18:57:06 +0000418 OSPF6_NETWORK_LSA_SCHEDULE (oi);
419 OSPF6_INTRA_PREFIX_LSA_SCHEDULE_TRANSIT (oi);
420 OSPF6_INTRA_PREFIX_LSA_SCHEDULE_STUB (oi->area);
paul718e3742002-12-13 20:15:29 +0000421 }
hasso508e53e2004-05-18 18:57:06 +0000422}
423
424
425/* DR Election, RFC2328 section 9.4 */
426
427#define IS_ELIGIBLE(n) \
428 ((n)->state >= OSPF6_NEIGHBOR_TWOWAY && (n)->priority != 0)
429
430static struct ospf6_neighbor *
431better_bdrouter (struct ospf6_neighbor *a, struct ospf6_neighbor *b)
432{
433 if ((a == NULL || ! IS_ELIGIBLE (a) || a->drouter == a->router_id) &&
434 (b == NULL || ! IS_ELIGIBLE (b) || b->drouter == b->router_id))
435 return NULL;
436 else if (a == NULL || ! IS_ELIGIBLE (a) || a->drouter == a->router_id)
437 return b;
438 else if (b == NULL || ! IS_ELIGIBLE (b) || b->drouter == b->router_id)
439 return a;
440
441 if (a->bdrouter == a->router_id && b->bdrouter != b->router_id)
442 return a;
443 if (a->bdrouter != a->router_id && b->bdrouter == b->router_id)
444 return b;
445
446 if (a->priority > b->priority)
447 return a;
448 if (a->priority < b->priority)
449 return b;
450
451 if (ntohl (a->router_id) > ntohl (b->router_id))
452 return a;
453 if (ntohl (a->router_id) < ntohl (b->router_id))
454 return b;
455
456 zlog_warn ("Router-ID duplicate ?");
457 return a;
458}
459
460static struct ospf6_neighbor *
461better_drouter (struct ospf6_neighbor *a, struct ospf6_neighbor *b)
462{
463 if ((a == NULL || ! IS_ELIGIBLE (a) || a->drouter != a->router_id) &&
464 (b == NULL || ! IS_ELIGIBLE (b) || b->drouter != b->router_id))
465 return NULL;
466 else if (a == NULL || ! IS_ELIGIBLE (a) || a->drouter != a->router_id)
467 return b;
468 else if (b == NULL || ! IS_ELIGIBLE (b) || b->drouter != b->router_id)
469 return a;
470
471 if (a->drouter == a->router_id && b->drouter != b->router_id)
472 return a;
473 if (a->drouter != a->router_id && b->drouter == b->router_id)
474 return b;
475
476 if (a->priority > b->priority)
477 return a;
478 if (a->priority < b->priority)
479 return b;
480
481 if (ntohl (a->router_id) > ntohl (b->router_id))
482 return a;
483 if (ntohl (a->router_id) < ntohl (b->router_id))
484 return b;
485
486 zlog_warn ("Router-ID duplicate ?");
487 return a;
488}
489
490static u_char
491dr_election (struct ospf6_interface *oi)
492{
paul1eb8ef22005-04-07 07:30:20 +0000493 struct listnode *node, *nnode;
hasso508e53e2004-05-18 18:57:06 +0000494 struct ospf6_neighbor *on, *drouter, *bdrouter, myself;
495 struct ospf6_neighbor *best_drouter, *best_bdrouter;
496 u_char next_state = 0;
497
498 drouter = bdrouter = NULL;
499 best_drouter = best_bdrouter = NULL;
500
501 /* pseudo neighbor myself, including noting current DR/BDR (1) */
502 memset (&myself, 0, sizeof (myself));
503 inet_ntop (AF_INET, &oi->area->ospf6->router_id, myself.name,
504 sizeof (myself.name));
505 myself.state = OSPF6_NEIGHBOR_TWOWAY;
506 myself.drouter = oi->drouter;
507 myself.bdrouter = oi->bdrouter;
508 myself.priority = oi->priority;
509 myself.router_id = oi->area->ospf6->router_id;
510
511 /* Electing BDR (2) */
paul1eb8ef22005-04-07 07:30:20 +0000512 for (ALL_LIST_ELEMENTS (oi->neighbor_list, node, nnode, on))
513 bdrouter = better_bdrouter (bdrouter, on);
514
hasso508e53e2004-05-18 18:57:06 +0000515 best_bdrouter = bdrouter;
516 bdrouter = better_bdrouter (best_bdrouter, &myself);
517
518 /* Electing DR (3) */
paul1eb8ef22005-04-07 07:30:20 +0000519 for (ALL_LIST_ELEMENTS (oi->neighbor_list, node, nnode, on))
520 drouter = better_drouter (drouter, on);
521
hasso508e53e2004-05-18 18:57:06 +0000522 best_drouter = drouter;
523 drouter = better_drouter (best_drouter, &myself);
524 if (drouter == NULL)
525 drouter = bdrouter;
526
527 /* the router itself is newly/no longer DR/BDR (4) */
528 if ((drouter == &myself && myself.drouter != myself.router_id) ||
529 (drouter != &myself && myself.drouter == myself.router_id) ||
530 (bdrouter == &myself && myself.bdrouter != myself.router_id) ||
531 (bdrouter != &myself && myself.bdrouter == myself.router_id))
532 {
533 myself.drouter = (drouter ? drouter->router_id : htonl (0));
534 myself.bdrouter = (bdrouter ? bdrouter->router_id : htonl (0));
535
536 /* compatible to Electing BDR (2) */
537 bdrouter = better_bdrouter (best_bdrouter, &myself);
538
539 /* compatible to Electing DR (3) */
540 drouter = better_drouter (best_drouter, &myself);
541 if (drouter == NULL)
542 drouter = bdrouter;
543 }
544
545 /* Set interface state accordingly (5) */
546 if (drouter && drouter == &myself)
547 next_state = OSPF6_INTERFACE_DR;
548 else if (bdrouter && bdrouter == &myself)
549 next_state = OSPF6_INTERFACE_BDR;
550 else
551 next_state = OSPF6_INTERFACE_DROTHER;
552
553 /* If NBMA, schedule Start for each neighbor having priority of 0 (6) */
554 /* XXX */
555
556 /* If DR or BDR change, invoke AdjOK? for each neighbor (7) */
557 /* RFC 2328 section 12.4. Originating LSAs (3) will be handled
558 accordingly after AdjOK */
559 if (oi->drouter != (drouter ? drouter->router_id : htonl (0)) ||
560 oi->bdrouter != (bdrouter ? bdrouter->router_id : htonl (0)))
561 {
562 if (IS_OSPF6_DEBUG_INTERFACE)
hassoc6487d62004-12-24 06:00:11 +0000563 zlog_debug ("DR Election on %s: DR: %s BDR: %s", oi->interface->name,
564 (drouter ? drouter->name : "0.0.0.0"),
565 (bdrouter ? bdrouter->name : "0.0.0.0"));
hasso508e53e2004-05-18 18:57:06 +0000566
paul1eb8ef22005-04-07 07:30:20 +0000567 for (ALL_LIST_ELEMENTS_RO (oi->neighbor_list, node, on))
hasso508e53e2004-05-18 18:57:06 +0000568 {
hasso508e53e2004-05-18 18:57:06 +0000569 if (on->state < OSPF6_NEIGHBOR_TWOWAY)
570 continue;
571 /* Schedule AdjOK. */
572 thread_add_event (master, adj_ok, on, 0);
573 }
574 }
575
576 oi->drouter = (drouter ? drouter->router_id : htonl (0));
577 oi->bdrouter = (bdrouter ? bdrouter->router_id : htonl (0));
578 return next_state;
579}
580
581
582/* Interface State Machine */
583int
584interface_up (struct thread *thread)
585{
586 struct ospf6_interface *oi;
587
588 oi = (struct ospf6_interface *) THREAD_ARG (thread);
589 assert (oi && oi->interface);
590
591 if (IS_OSPF6_DEBUG_INTERFACE)
hassoc6487d62004-12-24 06:00:11 +0000592 zlog_debug ("Interface Event %s: [InterfaceUp]",
593 oi->interface->name);
hasso508e53e2004-05-18 18:57:06 +0000594
595 /* check physical interface is up */
596 if (! if_is_up (oi->interface))
597 {
598 if (IS_OSPF6_DEBUG_INTERFACE)
hassoc6487d62004-12-24 06:00:11 +0000599 zlog_debug ("Interface %s is down, can't execute [InterfaceUp]",
600 oi->interface->name);
hasso508e53e2004-05-18 18:57:06 +0000601 return 0;
602 }
603
604 /* if already enabled, do nothing */
605 if (oi->state > OSPF6_INTERFACE_DOWN)
606 {
607 if (IS_OSPF6_DEBUG_INTERFACE)
hassoc6487d62004-12-24 06:00:11 +0000608 zlog_debug ("Interface %s already enabled",
609 oi->interface->name);
hasso508e53e2004-05-18 18:57:06 +0000610 return 0;
611 }
612
613 /* Join AllSPFRouters */
614 ospf6_join_allspfrouters (oi->interface->ifindex);
615
616 /* Update interface route */
617 ospf6_interface_connected_route_update (oi->interface);
618
619 /* Schedule Hello */
620 if (! CHECK_FLAG (oi->flag, OSPF6_INTERFACE_PASSIVE))
621 thread_add_event (master, ospf6_hello_send, oi, 0);
622
623 /* decide next interface state */
624 if (if_is_pointopoint (oi->interface))
625 ospf6_interface_state_change (OSPF6_INTERFACE_POINTTOPOINT, oi);
626 else if (oi->priority == 0)
627 ospf6_interface_state_change (OSPF6_INTERFACE_DROTHER, oi);
628 else
629 {
630 ospf6_interface_state_change (OSPF6_INTERFACE_WAITING, oi);
631 thread_add_timer (master, wait_timer, oi, oi->dead_interval);
632 }
633
634 return 0;
paul718e3742002-12-13 20:15:29 +0000635}
636
637int
hasso508e53e2004-05-18 18:57:06 +0000638wait_timer (struct thread *thread)
paul718e3742002-12-13 20:15:29 +0000639{
hasso508e53e2004-05-18 18:57:06 +0000640 struct ospf6_interface *oi;
paul718e3742002-12-13 20:15:29 +0000641
hasso508e53e2004-05-18 18:57:06 +0000642 oi = (struct ospf6_interface *) THREAD_ARG (thread);
643 assert (oi && oi->interface);
paul718e3742002-12-13 20:15:29 +0000644
hasso508e53e2004-05-18 18:57:06 +0000645 if (IS_OSPF6_DEBUG_INTERFACE)
hassoc6487d62004-12-24 06:00:11 +0000646 zlog_debug ("Interface Event %s: [WaitTimer]",
647 oi->interface->name);
paul718e3742002-12-13 20:15:29 +0000648
hasso508e53e2004-05-18 18:57:06 +0000649 if (oi->state == OSPF6_INTERFACE_WAITING)
650 ospf6_interface_state_change (dr_election (oi), oi);
paul718e3742002-12-13 20:15:29 +0000651
hasso508e53e2004-05-18 18:57:06 +0000652 return 0;
paul718e3742002-12-13 20:15:29 +0000653}
654
hasso508e53e2004-05-18 18:57:06 +0000655int
656backup_seen (struct thread *thread)
paul718e3742002-12-13 20:15:29 +0000657{
hasso508e53e2004-05-18 18:57:06 +0000658 struct ospf6_interface *oi;
659
660 oi = (struct ospf6_interface *) THREAD_ARG (thread);
661 assert (oi && oi->interface);
662
663 if (IS_OSPF6_DEBUG_INTERFACE)
hassoc6487d62004-12-24 06:00:11 +0000664 zlog_debug ("Interface Event %s: [BackupSeen]",
665 oi->interface->name);
hasso508e53e2004-05-18 18:57:06 +0000666
667 if (oi->state == OSPF6_INTERFACE_WAITING)
668 ospf6_interface_state_change (dr_election (oi), oi);
669
670 return 0;
paul718e3742002-12-13 20:15:29 +0000671}
672
hasso508e53e2004-05-18 18:57:06 +0000673int
674neighbor_change (struct thread *thread)
paul718e3742002-12-13 20:15:29 +0000675{
hasso508e53e2004-05-18 18:57:06 +0000676 struct ospf6_interface *oi;
677
678 oi = (struct ospf6_interface *) THREAD_ARG (thread);
679 assert (oi && oi->interface);
680
681 if (IS_OSPF6_DEBUG_INTERFACE)
hassoc6487d62004-12-24 06:00:11 +0000682 zlog_debug ("Interface Event %s: [NeighborChange]",
683 oi->interface->name);
hasso508e53e2004-05-18 18:57:06 +0000684
685 if (oi->state == OSPF6_INTERFACE_DROTHER ||
686 oi->state == OSPF6_INTERFACE_BDR ||
687 oi->state == OSPF6_INTERFACE_DR)
688 ospf6_interface_state_change (dr_election (oi), oi);
689
690 return 0;
paul718e3742002-12-13 20:15:29 +0000691}
692
hasso508e53e2004-05-18 18:57:06 +0000693int
694interface_down (struct thread *thread)
695{
696 struct ospf6_interface *oi;
paul1eb8ef22005-04-07 07:30:20 +0000697 struct listnode *node, *nnode;
hasso508e53e2004-05-18 18:57:06 +0000698 struct ospf6_neighbor *on;
699
700 oi = (struct ospf6_interface *) THREAD_ARG (thread);
701 assert (oi && oi->interface);
702
703 if (IS_OSPF6_DEBUG_INTERFACE)
hassoc6487d62004-12-24 06:00:11 +0000704 zlog_debug ("Interface Event %s: [InterfaceDown]",
705 oi->interface->name);
hasso508e53e2004-05-18 18:57:06 +0000706
707 /* Leave AllSPFRouters */
708 if (oi->state > OSPF6_INTERFACE_DOWN)
709 ospf6_leave_allspfrouters (oi->interface->ifindex);
710
711 ospf6_interface_state_change (OSPF6_INTERFACE_DOWN, oi);
712
paul1eb8ef22005-04-07 07:30:20 +0000713 for (ALL_LIST_ELEMENTS (oi->neighbor_list, node, nnode, on))
714 ospf6_neighbor_delete (on);
715
hasso508e53e2004-05-18 18:57:06 +0000716 list_delete_all_node (oi->neighbor_list);
717
718 return 0;
719}
720
721
paul718e3742002-12-13 20:15:29 +0000722/* show specified interface structure */
Paul Jakma6ac29a52008-08-15 13:45:30 +0100723static int
hasso508e53e2004-05-18 18:57:06 +0000724ospf6_interface_show (struct vty *vty, struct interface *ifp)
paul718e3742002-12-13 20:15:29 +0000725{
hasso508e53e2004-05-18 18:57:06 +0000726 struct ospf6_interface *oi;
paul718e3742002-12-13 20:15:29 +0000727 struct connected *c;
728 struct prefix *p;
hasso52dc7ee2004-09-23 19:18:23 +0000729 struct listnode *i;
hasso508e53e2004-05-18 18:57:06 +0000730 char strbuf[64], drouter[32], bdrouter[32];
paul0c083ee2004-10-10 12:54:58 +0000731 const char *updown[3] = {"down", "up", NULL};
732 const char *type;
hasso508e53e2004-05-18 18:57:06 +0000733 struct timeval res, now;
734 char duration[32];
735 struct ospf6_lsa *lsa;
paul718e3742002-12-13 20:15:29 +0000736
737 /* check physical interface type */
hasso508e53e2004-05-18 18:57:06 +0000738 if (if_is_loopback (ifp))
paul718e3742002-12-13 20:15:29 +0000739 type = "LOOPBACK";
hasso508e53e2004-05-18 18:57:06 +0000740 else if (if_is_broadcast (ifp))
paul718e3742002-12-13 20:15:29 +0000741 type = "BROADCAST";
hasso508e53e2004-05-18 18:57:06 +0000742 else if (if_is_pointopoint (ifp))
paul718e3742002-12-13 20:15:29 +0000743 type = "POINTOPOINT";
744 else
745 type = "UNKNOWN";
746
747 vty_out (vty, "%s is %s, type %s%s",
hasso508e53e2004-05-18 18:57:06 +0000748 ifp->name, updown[if_is_up (ifp)], type,
hasso049207c2004-08-04 20:02:13 +0000749 VNL);
750 vty_out (vty, " Interface ID: %d%s", ifp->ifindex, VNL);
paul718e3742002-12-13 20:15:29 +0000751
hasso508e53e2004-05-18 18:57:06 +0000752 if (ifp->info == NULL)
paul718e3742002-12-13 20:15:29 +0000753 {
hasso049207c2004-08-04 20:02:13 +0000754 vty_out (vty, " OSPF not enabled on this interface%s", VNL);
paul718e3742002-12-13 20:15:29 +0000755 return 0;
756 }
757 else
hasso508e53e2004-05-18 18:57:06 +0000758 oi = (struct ospf6_interface *) ifp->info;
paul718e3742002-12-13 20:15:29 +0000759
hasso049207c2004-08-04 20:02:13 +0000760 vty_out (vty, " Internet Address:%s", VNL);
paul1eb8ef22005-04-07 07:30:20 +0000761
762 for (ALL_LIST_ELEMENTS_RO (ifp->connected, i, c))
paul718e3742002-12-13 20:15:29 +0000763 {
paul718e3742002-12-13 20:15:29 +0000764 p = c->address;
765 prefix2str (p, strbuf, sizeof (strbuf));
766 switch (p->family)
767 {
768 case AF_INET:
hasso508e53e2004-05-18 18:57:06 +0000769 vty_out (vty, " inet : %s%s", strbuf,
hasso049207c2004-08-04 20:02:13 +0000770 VNL);
paul718e3742002-12-13 20:15:29 +0000771 break;
772 case AF_INET6:
hasso508e53e2004-05-18 18:57:06 +0000773 vty_out (vty, " inet6: %s%s", strbuf,
hasso049207c2004-08-04 20:02:13 +0000774 VNL);
paul718e3742002-12-13 20:15:29 +0000775 break;
776 default:
hasso508e53e2004-05-18 18:57:06 +0000777 vty_out (vty, " ??? : %s%s", strbuf,
hasso049207c2004-08-04 20:02:13 +0000778 VNL);
paul718e3742002-12-13 20:15:29 +0000779 break;
780 }
781 }
782
hasso508e53e2004-05-18 18:57:06 +0000783 if (oi->area)
paul718e3742002-12-13 20:15:29 +0000784 {
hasso508e53e2004-05-18 18:57:06 +0000785 vty_out (vty, " Instance ID %d, Interface MTU %d (autodetect: %d)%s",
hasso049207c2004-08-04 20:02:13 +0000786 oi->instance_id, oi->ifmtu, ifp->mtu6, VNL);
hasso508e53e2004-05-18 18:57:06 +0000787 inet_ntop (AF_INET, &oi->area->area_id,
paul718e3742002-12-13 20:15:29 +0000788 strbuf, sizeof (strbuf));
hasso508e53e2004-05-18 18:57:06 +0000789 vty_out (vty, " Area ID %s, Cost %hu%s", strbuf, oi->cost,
hasso049207c2004-08-04 20:02:13 +0000790 VNL);
paul718e3742002-12-13 20:15:29 +0000791 }
792 else
hasso049207c2004-08-04 20:02:13 +0000793 vty_out (vty, " Not Attached to Area%s", VNL);
paul718e3742002-12-13 20:15:29 +0000794
795 vty_out (vty, " State %s, Transmit Delay %d sec, Priority %d%s",
hasso508e53e2004-05-18 18:57:06 +0000796 ospf6_interface_state_str[oi->state],
797 oi->transdelay, oi->priority,
hasso049207c2004-08-04 20:02:13 +0000798 VNL);
799 vty_out (vty, " Timer intervals configured:%s", VNL);
paul718e3742002-12-13 20:15:29 +0000800 vty_out (vty, " Hello %d, Dead %d, Retransmit %d%s",
hasso508e53e2004-05-18 18:57:06 +0000801 oi->hello_interval, oi->dead_interval, oi->rxmt_interval,
hasso049207c2004-08-04 20:02:13 +0000802 VNL);
paul718e3742002-12-13 20:15:29 +0000803
hasso508e53e2004-05-18 18:57:06 +0000804 inet_ntop (AF_INET, &oi->drouter, drouter, sizeof (drouter));
805 inet_ntop (AF_INET, &oi->bdrouter, bdrouter, sizeof (bdrouter));
hasso049207c2004-08-04 20:02:13 +0000806 vty_out (vty, " DR: %s BDR: %s%s", drouter, bdrouter, VNL);
paul718e3742002-12-13 20:15:29 +0000807
808 vty_out (vty, " Number of I/F scoped LSAs is %u%s",
hasso049207c2004-08-04 20:02:13 +0000809 oi->lsdb->count, VNL);
paul718e3742002-12-13 20:15:29 +0000810
Takashi Sogabe86f72dc2009-06-22 13:07:02 +0900811 quagga_gettime (QUAGGA_CLK_MONOTONIC, &now);
paul718e3742002-12-13 20:15:29 +0000812
hasso508e53e2004-05-18 18:57:06 +0000813 timerclear (&res);
814 if (oi->thread_send_lsupdate)
815 timersub (&oi->thread_send_lsupdate->u.sands, &now, &res);
816 timerstring (&res, duration, sizeof (duration));
817 vty_out (vty, " %d Pending LSAs for LSUpdate in Time %s [thread %s]%s",
818 oi->lsupdate_list->count, duration,
819 (oi->thread_send_lsupdate ? "on" : "off"),
hasso049207c2004-08-04 20:02:13 +0000820 VNL);
hasso508e53e2004-05-18 18:57:06 +0000821 for (lsa = ospf6_lsdb_head (oi->lsupdate_list); lsa;
822 lsa = ospf6_lsdb_next (lsa))
hasso049207c2004-08-04 20:02:13 +0000823 vty_out (vty, " %s%s", lsa->name, VNL);
paul718e3742002-12-13 20:15:29 +0000824
hasso508e53e2004-05-18 18:57:06 +0000825 timerclear (&res);
826 if (oi->thread_send_lsack)
827 timersub (&oi->thread_send_lsack->u.sands, &now, &res);
828 timerstring (&res, duration, sizeof (duration));
829 vty_out (vty, " %d Pending LSAs for LSAck in Time %s [thread %s]%s",
830 oi->lsack_list->count, duration,
831 (oi->thread_send_lsack ? "on" : "off"),
hasso049207c2004-08-04 20:02:13 +0000832 VNL);
hasso508e53e2004-05-18 18:57:06 +0000833 for (lsa = ospf6_lsdb_head (oi->lsack_list); lsa;
834 lsa = ospf6_lsdb_next (lsa))
hasso049207c2004-08-04 20:02:13 +0000835 vty_out (vty, " %s%s", lsa->name, VNL);
paul718e3742002-12-13 20:15:29 +0000836
hasso508e53e2004-05-18 18:57:06 +0000837 return 0;
paul718e3742002-12-13 20:15:29 +0000838}
839
840/* show interface */
841DEFUN (show_ipv6_ospf6_interface,
842 show_ipv6_ospf6_interface_ifname_cmd,
843 "show ipv6 ospf6 interface IFNAME",
844 SHOW_STR
845 IP6_STR
846 OSPF6_STR
847 INTERFACE_STR
848 IFNAME_STR
849 )
850{
851 struct interface *ifp;
hasso52dc7ee2004-09-23 19:18:23 +0000852 struct listnode *i;
paul718e3742002-12-13 20:15:29 +0000853
854 if (argc)
855 {
856 ifp = if_lookup_by_name (argv[0]);
hasso508e53e2004-05-18 18:57:06 +0000857 if (ifp == NULL)
paul718e3742002-12-13 20:15:29 +0000858 {
859 vty_out (vty, "No such Interface: %s%s", argv[0],
hasso049207c2004-08-04 20:02:13 +0000860 VNL);
paul718e3742002-12-13 20:15:29 +0000861 return CMD_WARNING;
862 }
863 ospf6_interface_show (vty, ifp);
864 }
865 else
866 {
paul1eb8ef22005-04-07 07:30:20 +0000867 for (ALL_LIST_ELEMENTS_RO (iflist, i, ifp))
868 ospf6_interface_show (vty, ifp);
paul718e3742002-12-13 20:15:29 +0000869 }
hasso508e53e2004-05-18 18:57:06 +0000870
paul718e3742002-12-13 20:15:29 +0000871 return CMD_SUCCESS;
872}
873
874ALIAS (show_ipv6_ospf6_interface,
875 show_ipv6_ospf6_interface_cmd,
876 "show ipv6 ospf6 interface",
877 SHOW_STR
878 IP6_STR
879 OSPF6_STR
880 INTERFACE_STR
Paul Jakma6ac29a52008-08-15 13:45:30 +0100881 )
paul718e3742002-12-13 20:15:29 +0000882
hasso508e53e2004-05-18 18:57:06 +0000883DEFUN (show_ipv6_ospf6_interface_ifname_prefix,
884 show_ipv6_ospf6_interface_ifname_prefix_cmd,
885 "show ipv6 ospf6 interface IFNAME prefix",
886 SHOW_STR
paul718e3742002-12-13 20:15:29 +0000887 IP6_STR
888 OSPF6_STR
hasso508e53e2004-05-18 18:57:06 +0000889 INTERFACE_STR
890 IFNAME_STR
891 "Display connected prefixes to advertise\n"
paul718e3742002-12-13 20:15:29 +0000892 )
893{
paul718e3742002-12-13 20:15:29 +0000894 struct interface *ifp;
hasso508e53e2004-05-18 18:57:06 +0000895 struct ospf6_interface *oi;
paul718e3742002-12-13 20:15:29 +0000896
hasso508e53e2004-05-18 18:57:06 +0000897 ifp = if_lookup_by_name (argv[0]);
898 if (ifp == NULL)
899 {
hasso049207c2004-08-04 20:02:13 +0000900 vty_out (vty, "No such Interface: %s%s", argv[0], VNL);
hasso508e53e2004-05-18 18:57:06 +0000901 return CMD_WARNING;
902 }
paul718e3742002-12-13 20:15:29 +0000903
hasso508e53e2004-05-18 18:57:06 +0000904 oi = ifp->info;
905 if (oi == NULL)
906 {
hasso049207c2004-08-04 20:02:13 +0000907 vty_out (vty, "OSPFv3 is not enabled on %s%s", argv[0], VNL);
hasso508e53e2004-05-18 18:57:06 +0000908 return CMD_WARNING;
909 }
paul718e3742002-12-13 20:15:29 +0000910
hasso508e53e2004-05-18 18:57:06 +0000911 argc--;
912 argv++;
913 ospf6_route_table_show (vty, argc, argv, oi->route_connected);
paul718e3742002-12-13 20:15:29 +0000914
915 return CMD_SUCCESS;
916}
917
hasso508e53e2004-05-18 18:57:06 +0000918ALIAS (show_ipv6_ospf6_interface_ifname_prefix,
919 show_ipv6_ospf6_interface_ifname_prefix_detail_cmd,
920 "show ipv6 ospf6 interface IFNAME prefix (X:X::X:X|X:X::X:X/M|detail)",
921 SHOW_STR
paul718e3742002-12-13 20:15:29 +0000922 IP6_STR
923 OSPF6_STR
hasso508e53e2004-05-18 18:57:06 +0000924 INTERFACE_STR
925 IFNAME_STR
926 "Display connected prefixes to advertise\n"
927 OSPF6_ROUTE_ADDRESS_STR
928 OSPF6_ROUTE_PREFIX_STR
929 "Dispaly details of the prefixes\n"
Paul Jakma6ac29a52008-08-15 13:45:30 +0100930 )
hasso508e53e2004-05-18 18:57:06 +0000931
932ALIAS (show_ipv6_ospf6_interface_ifname_prefix,
933 show_ipv6_ospf6_interface_ifname_prefix_match_cmd,
934 "show ipv6 ospf6 interface IFNAME prefix X:X::X:X/M (match|detail)",
935 SHOW_STR
936 IP6_STR
937 OSPF6_STR
938 INTERFACE_STR
939 IFNAME_STR
940 "Display connected prefixes to advertise\n"
941 OSPF6_ROUTE_PREFIX_STR
942 OSPF6_ROUTE_MATCH_STR
943 "Dispaly details of the prefixes\n"
Paul Jakma6ac29a52008-08-15 13:45:30 +0100944 )
hasso508e53e2004-05-18 18:57:06 +0000945
946DEFUN (show_ipv6_ospf6_interface_prefix,
947 show_ipv6_ospf6_interface_prefix_cmd,
948 "show ipv6 ospf6 interface prefix",
949 SHOW_STR
950 IP6_STR
951 OSPF6_STR
952 INTERFACE_STR
953 "Display connected prefixes to advertise\n"
paul718e3742002-12-13 20:15:29 +0000954 )
955{
hasso52dc7ee2004-09-23 19:18:23 +0000956 struct listnode *i;
hasso508e53e2004-05-18 18:57:06 +0000957 struct ospf6_interface *oi;
958 struct interface *ifp;
959
paul1eb8ef22005-04-07 07:30:20 +0000960 for (ALL_LIST_ELEMENTS_RO (iflist, i, ifp))
hasso508e53e2004-05-18 18:57:06 +0000961 {
hasso508e53e2004-05-18 18:57:06 +0000962 oi = (struct ospf6_interface *) ifp->info;
963 if (oi == NULL)
964 continue;
965
966 ospf6_route_table_show (vty, argc, argv, oi->route_connected);
967 }
968
969 return CMD_SUCCESS;
970}
971
972ALIAS (show_ipv6_ospf6_interface_prefix,
973 show_ipv6_ospf6_interface_prefix_detail_cmd,
974 "show ipv6 ospf6 interface prefix (X:X::X:X|X:X::X:X/M|detail)",
975 SHOW_STR
976 IP6_STR
977 OSPF6_STR
978 INTERFACE_STR
979 "Display connected prefixes to advertise\n"
980 OSPF6_ROUTE_ADDRESS_STR
981 OSPF6_ROUTE_PREFIX_STR
982 "Dispaly details of the prefixes\n"
Paul Jakma6ac29a52008-08-15 13:45:30 +0100983 )
hasso508e53e2004-05-18 18:57:06 +0000984
985ALIAS (show_ipv6_ospf6_interface_prefix,
986 show_ipv6_ospf6_interface_prefix_match_cmd,
987 "show ipv6 ospf6 interface prefix X:X::X:X/M (match|detail)",
988 SHOW_STR
989 IP6_STR
990 OSPF6_STR
991 INTERFACE_STR
992 "Display connected prefixes to advertise\n"
993 OSPF6_ROUTE_PREFIX_STR
994 OSPF6_ROUTE_MATCH_STR
995 "Dispaly details of the prefixes\n"
Paul Jakma6ac29a52008-08-15 13:45:30 +0100996 )
hasso508e53e2004-05-18 18:57:06 +0000997
998
999/* interface variable set command */
hassob596c712004-07-09 18:33:43 +00001000DEFUN (ipv6_ospf6_ifmtu,
1001 ipv6_ospf6_ifmtu_cmd,
1002 "ipv6 ospf6 ifmtu <1-65535>",
1003 IP6_STR
1004 OSPF6_STR
1005 "Interface MTU\n"
1006 "OSPFv3 Interface MTU\n"
1007 )
1008{
1009 struct ospf6_interface *oi;
1010 struct interface *ifp;
paul0c083ee2004-10-10 12:54:58 +00001011 unsigned int ifmtu, iobuflen;
paul1eb8ef22005-04-07 07:30:20 +00001012 struct listnode *node, *nnode;
hassob596c712004-07-09 18:33:43 +00001013 struct ospf6_neighbor *on;
1014
1015 ifp = (struct interface *) vty->index;
1016 assert (ifp);
1017
1018 oi = (struct ospf6_interface *) ifp->info;
1019 if (oi == NULL)
1020 oi = ospf6_interface_create (ifp);
1021 assert (oi);
1022
1023 ifmtu = strtol (argv[0], NULL, 10);
1024
1025 if (oi->ifmtu == ifmtu)
1026 return CMD_SUCCESS;
1027
hasso1203e1c2004-07-23 21:34:27 +00001028 if (ifp->mtu6 != 0 && ifp->mtu6 < ifmtu)
hassob596c712004-07-09 18:33:43 +00001029 {
1030 vty_out (vty, "%s's ospf6 ifmtu cannot go beyond physical mtu (%d)%s",
hasso049207c2004-08-04 20:02:13 +00001031 ifp->name, ifp->mtu6, VNL);
hassob596c712004-07-09 18:33:43 +00001032 return CMD_WARNING;
1033 }
1034
1035 if (oi->ifmtu < ifmtu)
1036 {
1037 iobuflen = ospf6_iobuf_size (ifmtu);
1038 if (iobuflen < ifmtu)
1039 {
1040 vty_out (vty, "%s's ifmtu is adjusted to I/O buffer size (%d).%s",
hasso049207c2004-08-04 20:02:13 +00001041 ifp->name, iobuflen, VNL);
hassob596c712004-07-09 18:33:43 +00001042 oi->ifmtu = iobuflen;
1043 }
1044 else
1045 oi->ifmtu = ifmtu;
1046 }
1047 else
1048 oi->ifmtu = ifmtu;
1049
1050 /* re-establish adjacencies */
paul1eb8ef22005-04-07 07:30:20 +00001051 for (ALL_LIST_ELEMENTS (oi->neighbor_list, node, nnode, on))
hassob596c712004-07-09 18:33:43 +00001052 {
hassob596c712004-07-09 18:33:43 +00001053 THREAD_OFF (on->inactivity_timer);
hasso3e834b12005-06-24 07:50:12 +00001054 thread_add_event (master, inactivity_timer, on, 0);
hassob596c712004-07-09 18:33:43 +00001055 }
1056
1057 return CMD_SUCCESS;
1058}
1059
hasso049207c2004-08-04 20:02:13 +00001060DEFUN (no_ipv6_ospf6_ifmtu,
1061 no_ipv6_ospf6_ifmtu_cmd,
1062 "no ipv6 ospf6 ifmtu",
1063 NO_STR
1064 IP6_STR
1065 OSPF6_STR
1066 "Interface MTU\n"
1067 )
1068{
1069 struct ospf6_interface *oi;
1070 struct interface *ifp;
paul0c083ee2004-10-10 12:54:58 +00001071 unsigned int iobuflen;
paul1eb8ef22005-04-07 07:30:20 +00001072 struct listnode *node, *nnode;
hasso049207c2004-08-04 20:02:13 +00001073 struct ospf6_neighbor *on;
1074
1075 ifp = (struct interface *) vty->index;
1076 assert (ifp);
1077
1078 oi = (struct ospf6_interface *) ifp->info;
1079 if (oi == NULL)
1080 oi = ospf6_interface_create (ifp);
1081 assert (oi);
1082
1083 if (oi->ifmtu < ifp->mtu)
1084 {
1085 iobuflen = ospf6_iobuf_size (ifp->mtu);
1086 if (iobuflen < ifp->mtu)
1087 {
1088 vty_out (vty, "%s's ifmtu is adjusted to I/O buffer size (%d).%s",
1089 ifp->name, iobuflen, VNL);
1090 oi->ifmtu = iobuflen;
1091 }
1092 else
1093 oi->ifmtu = ifp->mtu;
1094 }
1095 else
1096 oi->ifmtu = ifp->mtu;
1097
1098 /* re-establish adjacencies */
paul1eb8ef22005-04-07 07:30:20 +00001099 for (ALL_LIST_ELEMENTS (oi->neighbor_list, node, nnode, on))
hasso049207c2004-08-04 20:02:13 +00001100 {
hasso049207c2004-08-04 20:02:13 +00001101 THREAD_OFF (on->inactivity_timer);
hasso3e834b12005-06-24 07:50:12 +00001102 thread_add_event (master, inactivity_timer, on, 0);
hasso049207c2004-08-04 20:02:13 +00001103 }
1104
1105 return CMD_SUCCESS;
1106}
1107
hasso508e53e2004-05-18 18:57:06 +00001108DEFUN (ipv6_ospf6_cost,
1109 ipv6_ospf6_cost_cmd,
1110 "ipv6 ospf6 cost <1-65535>",
1111 IP6_STR
1112 OSPF6_STR
1113 "Interface cost\n"
1114 "Outgoing metric of this interface\n"
1115 )
1116{
1117 struct ospf6_interface *oi;
paul718e3742002-12-13 20:15:29 +00001118 struct interface *ifp;
paul0c083ee2004-10-10 12:54:58 +00001119 unsigned long int lcost;
paul718e3742002-12-13 20:15:29 +00001120
1121 ifp = (struct interface *) vty->index;
1122 assert (ifp);
paul718e3742002-12-13 20:15:29 +00001123
hasso508e53e2004-05-18 18:57:06 +00001124 oi = (struct ospf6_interface *) ifp->info;
1125 if (oi == NULL)
1126 oi = ospf6_interface_create (ifp);
1127 assert (oi);
1128
paul0c083ee2004-10-10 12:54:58 +00001129 lcost = strtol (argv[0], NULL, 10);
1130
1131 if (lcost > UINT32_MAX)
1132 {
1133 vty_out (vty, "Cost %ld is out of range%s", lcost, VNL);
1134 return CMD_WARNING;
1135 }
1136
1137 if (oi->cost == lcost)
hasso508e53e2004-05-18 18:57:06 +00001138 return CMD_SUCCESS;
paul0c083ee2004-10-10 12:54:58 +00001139
1140 oi->cost = lcost;
1141
hasso508e53e2004-05-18 18:57:06 +00001142 /* update cost held in route_connected list in ospf6_interface */
1143 ospf6_interface_connected_route_update (oi->interface);
1144
1145 /* execute LSA hooks */
1146 if (oi->area)
1147 {
1148 OSPF6_LINK_LSA_SCHEDULE (oi);
1149 OSPF6_ROUTER_LSA_SCHEDULE (oi->area);
1150 OSPF6_NETWORK_LSA_SCHEDULE (oi);
1151 OSPF6_INTRA_PREFIX_LSA_SCHEDULE_TRANSIT (oi);
1152 OSPF6_INTRA_PREFIX_LSA_SCHEDULE_STUB (oi->area);
1153 }
1154
1155 return CMD_SUCCESS;
1156}
1157
1158DEFUN (ipv6_ospf6_hellointerval,
1159 ipv6_ospf6_hellointerval_cmd,
1160 "ipv6 ospf6 hello-interval <1-65535>",
1161 IP6_STR
1162 OSPF6_STR
1163 "Interval time of Hello packets\n"
1164 SECONDS_STR
1165 )
1166{
1167 struct ospf6_interface *oi;
1168 struct interface *ifp;
1169
1170 ifp = (struct interface *) vty->index;
1171 assert (ifp);
1172
1173 oi = (struct ospf6_interface *) ifp->info;
1174 if (oi == NULL)
1175 oi = ospf6_interface_create (ifp);
1176 assert (oi);
1177
1178 oi->hello_interval = strtol (argv[0], NULL, 10);
paul718e3742002-12-13 20:15:29 +00001179 return CMD_SUCCESS;
1180}
1181
1182/* interface variable set command */
1183DEFUN (ipv6_ospf6_deadinterval,
1184 ipv6_ospf6_deadinterval_cmd,
hasso508e53e2004-05-18 18:57:06 +00001185 "ipv6 ospf6 dead-interval <1-65535>",
paul718e3742002-12-13 20:15:29 +00001186 IP6_STR
1187 OSPF6_STR
hasso508e53e2004-05-18 18:57:06 +00001188 "Interval time after which a neighbor is declared down\n"
paul718e3742002-12-13 20:15:29 +00001189 SECONDS_STR
1190 )
1191{
hasso508e53e2004-05-18 18:57:06 +00001192 struct ospf6_interface *oi;
paul718e3742002-12-13 20:15:29 +00001193 struct interface *ifp;
1194
1195 ifp = (struct interface *) vty->index;
1196 assert (ifp);
paul718e3742002-12-13 20:15:29 +00001197
hasso508e53e2004-05-18 18:57:06 +00001198 oi = (struct ospf6_interface *) ifp->info;
1199 if (oi == NULL)
1200 oi = ospf6_interface_create (ifp);
1201 assert (oi);
1202
1203 oi->dead_interval = strtol (argv[0], NULL, 10);
paul718e3742002-12-13 20:15:29 +00001204 return CMD_SUCCESS;
1205}
1206
1207/* interface variable set command */
1208DEFUN (ipv6_ospf6_transmitdelay,
1209 ipv6_ospf6_transmitdelay_cmd,
hasso508e53e2004-05-18 18:57:06 +00001210 "ipv6 ospf6 transmit-delay <1-3600>",
paul718e3742002-12-13 20:15:29 +00001211 IP6_STR
1212 OSPF6_STR
hasso508e53e2004-05-18 18:57:06 +00001213 "Transmit delay of this interface\n"
paul718e3742002-12-13 20:15:29 +00001214 SECONDS_STR
1215 )
1216{
hasso508e53e2004-05-18 18:57:06 +00001217 struct ospf6_interface *oi;
paul718e3742002-12-13 20:15:29 +00001218 struct interface *ifp;
1219
1220 ifp = (struct interface *) vty->index;
1221 assert (ifp);
paul718e3742002-12-13 20:15:29 +00001222
hasso508e53e2004-05-18 18:57:06 +00001223 oi = (struct ospf6_interface *) ifp->info;
1224 if (oi == NULL)
1225 oi = ospf6_interface_create (ifp);
1226 assert (oi);
1227
1228 oi->transdelay = strtol (argv[0], NULL, 10);
paul718e3742002-12-13 20:15:29 +00001229 return CMD_SUCCESS;
1230}
1231
1232/* interface variable set command */
1233DEFUN (ipv6_ospf6_retransmitinterval,
1234 ipv6_ospf6_retransmitinterval_cmd,
hasso508e53e2004-05-18 18:57:06 +00001235 "ipv6 ospf6 retransmit-interval <1-65535>",
paul718e3742002-12-13 20:15:29 +00001236 IP6_STR
1237 OSPF6_STR
1238 "Time between retransmitting lost link state advertisements\n"
1239 SECONDS_STR
1240 )
1241{
hasso508e53e2004-05-18 18:57:06 +00001242 struct ospf6_interface *oi;
paul718e3742002-12-13 20:15:29 +00001243 struct interface *ifp;
1244
1245 ifp = (struct interface *) vty->index;
1246 assert (ifp);
paul718e3742002-12-13 20:15:29 +00001247
hasso508e53e2004-05-18 18:57:06 +00001248 oi = (struct ospf6_interface *) ifp->info;
1249 if (oi == NULL)
1250 oi = ospf6_interface_create (ifp);
1251 assert (oi);
1252
1253 oi->rxmt_interval = strtol (argv[0], NULL, 10);
paul718e3742002-12-13 20:15:29 +00001254 return CMD_SUCCESS;
1255}
1256
1257/* interface variable set command */
1258DEFUN (ipv6_ospf6_priority,
1259 ipv6_ospf6_priority_cmd,
hasso508e53e2004-05-18 18:57:06 +00001260 "ipv6 ospf6 priority <0-255>",
paul718e3742002-12-13 20:15:29 +00001261 IP6_STR
1262 OSPF6_STR
1263 "Router priority\n"
hasso508e53e2004-05-18 18:57:06 +00001264 "Priority value\n"
paul718e3742002-12-13 20:15:29 +00001265 )
1266{
hasso508e53e2004-05-18 18:57:06 +00001267 struct ospf6_interface *oi;
paul718e3742002-12-13 20:15:29 +00001268 struct interface *ifp;
1269
1270 ifp = (struct interface *) vty->index;
1271 assert (ifp);
paul718e3742002-12-13 20:15:29 +00001272
hasso508e53e2004-05-18 18:57:06 +00001273 oi = (struct ospf6_interface *) ifp->info;
1274 if (oi == NULL)
1275 oi = ospf6_interface_create (ifp);
1276 assert (oi);
paul718e3742002-12-13 20:15:29 +00001277
hasso508e53e2004-05-18 18:57:06 +00001278 oi->priority = strtol (argv[0], NULL, 10);
1279
1280 if (oi->area)
1281 ospf6_interface_state_change (dr_election (oi), oi);
paul718e3742002-12-13 20:15:29 +00001282
1283 return CMD_SUCCESS;
1284}
1285
1286DEFUN (ipv6_ospf6_instance,
1287 ipv6_ospf6_instance_cmd,
hasso508e53e2004-05-18 18:57:06 +00001288 "ipv6 ospf6 instance-id <0-255>",
paul718e3742002-12-13 20:15:29 +00001289 IP6_STR
1290 OSPF6_STR
hasso508e53e2004-05-18 18:57:06 +00001291 "Instance ID for this interface\n"
1292 "Instance ID value\n"
paul718e3742002-12-13 20:15:29 +00001293 )
1294{
hasso508e53e2004-05-18 18:57:06 +00001295 struct ospf6_interface *oi;
paul718e3742002-12-13 20:15:29 +00001296 struct interface *ifp;
1297
1298 ifp = (struct interface *)vty->index;
1299 assert (ifp);
1300
hasso508e53e2004-05-18 18:57:06 +00001301 oi = (struct ospf6_interface *)ifp->info;
1302 if (oi == NULL)
1303 oi = ospf6_interface_create (ifp);
1304 assert (oi);
paul718e3742002-12-13 20:15:29 +00001305
hasso508e53e2004-05-18 18:57:06 +00001306 oi->instance_id = strtol (argv[0], NULL, 10);
paul718e3742002-12-13 20:15:29 +00001307 return CMD_SUCCESS;
1308}
1309
1310DEFUN (ipv6_ospf6_passive,
1311 ipv6_ospf6_passive_cmd,
1312 "ipv6 ospf6 passive",
1313 IP6_STR
1314 OSPF6_STR
hasso508e53e2004-05-18 18:57:06 +00001315 "passive interface, No adjacency will be formed on this interface\n"
paul718e3742002-12-13 20:15:29 +00001316 )
1317{
hasso508e53e2004-05-18 18:57:06 +00001318 struct ospf6_interface *oi;
paul718e3742002-12-13 20:15:29 +00001319 struct interface *ifp;
paul1eb8ef22005-04-07 07:30:20 +00001320 struct listnode *node, *nnode;
hasso508e53e2004-05-18 18:57:06 +00001321 struct ospf6_neighbor *on;
paul718e3742002-12-13 20:15:29 +00001322
1323 ifp = (struct interface *) vty->index;
1324 assert (ifp);
paul718e3742002-12-13 20:15:29 +00001325
hasso508e53e2004-05-18 18:57:06 +00001326 oi = (struct ospf6_interface *) ifp->info;
1327 if (oi == NULL)
1328 oi = ospf6_interface_create (ifp);
1329 assert (oi);
paul718e3742002-12-13 20:15:29 +00001330
hasso508e53e2004-05-18 18:57:06 +00001331 SET_FLAG (oi->flag, OSPF6_INTERFACE_PASSIVE);
1332 THREAD_OFF (oi->thread_send_hello);
1333
paul1eb8ef22005-04-07 07:30:20 +00001334 for (ALL_LIST_ELEMENTS (oi->neighbor_list, node, nnode, on))
paul718e3742002-12-13 20:15:29 +00001335 {
hasso508e53e2004-05-18 18:57:06 +00001336 THREAD_OFF (on->inactivity_timer);
hasso3e834b12005-06-24 07:50:12 +00001337 thread_add_event (master, inactivity_timer, on, 0);
paul718e3742002-12-13 20:15:29 +00001338 }
1339
1340 return CMD_SUCCESS;
1341}
1342
1343DEFUN (no_ipv6_ospf6_passive,
1344 no_ipv6_ospf6_passive_cmd,
1345 "no ipv6 ospf6 passive",
1346 NO_STR
1347 IP6_STR
1348 OSPF6_STR
1349 "passive interface: No Adjacency will be formed on this I/F\n"
1350 )
1351{
hasso508e53e2004-05-18 18:57:06 +00001352 struct ospf6_interface *oi;
paul718e3742002-12-13 20:15:29 +00001353 struct interface *ifp;
1354
1355 ifp = (struct interface *) vty->index;
1356 assert (ifp);
paul718e3742002-12-13 20:15:29 +00001357
hasso508e53e2004-05-18 18:57:06 +00001358 oi = (struct ospf6_interface *) ifp->info;
1359 if (oi == NULL)
1360 oi = ospf6_interface_create (ifp);
1361 assert (oi);
paul718e3742002-12-13 20:15:29 +00001362
hasso508e53e2004-05-18 18:57:06 +00001363 UNSET_FLAG (oi->flag, OSPF6_INTERFACE_PASSIVE);
1364 THREAD_OFF (oi->thread_send_hello);
1365 oi->thread_send_hello =
1366 thread_add_event (master, ospf6_hello_send, oi, 0);
paul718e3742002-12-13 20:15:29 +00001367
1368 return CMD_SUCCESS;
1369}
1370
1371DEFUN (ipv6_ospf6_advertise_prefix_list,
1372 ipv6_ospf6_advertise_prefix_list_cmd,
1373 "ipv6 ospf6 advertise prefix-list WORD",
1374 IP6_STR
1375 OSPF6_STR
1376 "Advertising options\n"
1377 "Filter prefix using prefix-list\n"
1378 "Prefix list name\n"
1379 )
1380{
hasso508e53e2004-05-18 18:57:06 +00001381 struct ospf6_interface *oi;
paul718e3742002-12-13 20:15:29 +00001382 struct interface *ifp;
1383
1384 ifp = (struct interface *) vty->index;
1385 assert (ifp);
paul718e3742002-12-13 20:15:29 +00001386
hasso508e53e2004-05-18 18:57:06 +00001387 oi = (struct ospf6_interface *) ifp->info;
1388 if (oi == NULL)
1389 oi = ospf6_interface_create (ifp);
1390 assert (oi);
paul718e3742002-12-13 20:15:29 +00001391
hasso508e53e2004-05-18 18:57:06 +00001392 if (oi->plist_name)
1393 XFREE (MTYPE_PREFIX_LIST_STR, oi->plist_name);
1394 oi->plist_name = XSTRDUP (MTYPE_PREFIX_LIST_STR, argv[0]);
paul718e3742002-12-13 20:15:29 +00001395
hasso508e53e2004-05-18 18:57:06 +00001396 ospf6_interface_connected_route_update (oi->interface);
David Ward2470e992010-01-05 02:45:39 +00001397
1398 if (oi->area)
hasso508e53e2004-05-18 18:57:06 +00001399 {
David Ward2470e992010-01-05 02:45:39 +00001400 OSPF6_LINK_LSA_SCHEDULE (oi);
1401 if (oi->state == OSPF6_INTERFACE_DR)
1402 {
1403 OSPF6_NETWORK_LSA_SCHEDULE (oi);
1404 OSPF6_INTRA_PREFIX_LSA_SCHEDULE_TRANSIT (oi);
1405 }
1406 OSPF6_INTRA_PREFIX_LSA_SCHEDULE_STUB (oi->area);
hasso508e53e2004-05-18 18:57:06 +00001407 }
paul718e3742002-12-13 20:15:29 +00001408
1409 return CMD_SUCCESS;
1410}
1411
1412DEFUN (no_ipv6_ospf6_advertise_prefix_list,
1413 no_ipv6_ospf6_advertise_prefix_list_cmd,
1414 "no ipv6 ospf6 advertise prefix-list",
1415 NO_STR
1416 IP6_STR
1417 OSPF6_STR
1418 "Advertising options\n"
1419 "Filter prefix using prefix-list\n"
1420 )
1421{
hasso508e53e2004-05-18 18:57:06 +00001422 struct ospf6_interface *oi;
paul718e3742002-12-13 20:15:29 +00001423 struct interface *ifp;
1424
1425 ifp = (struct interface *) vty->index;
1426 assert (ifp);
paul718e3742002-12-13 20:15:29 +00001427
hasso508e53e2004-05-18 18:57:06 +00001428 oi = (struct ospf6_interface *) ifp->info;
1429 if (oi == NULL)
1430 oi = ospf6_interface_create (ifp);
1431 assert (oi);
1432
1433 if (oi->plist_name)
paul718e3742002-12-13 20:15:29 +00001434 {
hasso508e53e2004-05-18 18:57:06 +00001435 XFREE (MTYPE_PREFIX_LIST_STR, oi->plist_name);
1436 oi->plist_name = NULL;
paul718e3742002-12-13 20:15:29 +00001437 }
1438
hasso508e53e2004-05-18 18:57:06 +00001439 ospf6_interface_connected_route_update (oi->interface);
David Ward2470e992010-01-05 02:45:39 +00001440
1441 if (oi->area)
hasso508e53e2004-05-18 18:57:06 +00001442 {
David Ward2470e992010-01-05 02:45:39 +00001443 OSPF6_LINK_LSA_SCHEDULE (oi);
1444 if (oi->state == OSPF6_INTERFACE_DR)
1445 {
1446 OSPF6_NETWORK_LSA_SCHEDULE (oi);
1447 OSPF6_INTRA_PREFIX_LSA_SCHEDULE_TRANSIT (oi);
1448 }
1449 OSPF6_INTRA_PREFIX_LSA_SCHEDULE_STUB (oi->area);
hasso508e53e2004-05-18 18:57:06 +00001450 }
paul718e3742002-12-13 20:15:29 +00001451
1452 return CMD_SUCCESS;
1453}
1454
Paul Jakma6ac29a52008-08-15 13:45:30 +01001455static int
hasso508e53e2004-05-18 18:57:06 +00001456config_write_ospf6_interface (struct vty *vty)
paul718e3742002-12-13 20:15:29 +00001457{
hasso52dc7ee2004-09-23 19:18:23 +00001458 struct listnode *i;
hasso508e53e2004-05-18 18:57:06 +00001459 struct ospf6_interface *oi;
paul718e3742002-12-13 20:15:29 +00001460 struct interface *ifp;
1461
paul1eb8ef22005-04-07 07:30:20 +00001462 for (ALL_LIST_ELEMENTS_RO (iflist, i, ifp))
paul718e3742002-12-13 20:15:29 +00001463 {
hasso508e53e2004-05-18 18:57:06 +00001464 oi = (struct ospf6_interface *) ifp->info;
1465 if (oi == NULL)
paul718e3742002-12-13 20:15:29 +00001466 continue;
1467
1468 vty_out (vty, "interface %s%s",
hasso049207c2004-08-04 20:02:13 +00001469 oi->interface->name, VNL);
hasso508e53e2004-05-18 18:57:06 +00001470
1471 if (ifp->desc)
hasso049207c2004-08-04 20:02:13 +00001472 vty_out (vty, " description %s%s", ifp->desc, VNL);
hasso508e53e2004-05-18 18:57:06 +00001473
hasso1203e1c2004-07-23 21:34:27 +00001474 if (ifp->mtu6 != oi->ifmtu)
hasso049207c2004-08-04 20:02:13 +00001475 vty_out (vty, " ipv6 ospf6 ifmtu %d%s", oi->ifmtu, VNL);
paul718e3742002-12-13 20:15:29 +00001476 vty_out (vty, " ipv6 ospf6 cost %d%s",
hasso049207c2004-08-04 20:02:13 +00001477 oi->cost, VNL);
paul718e3742002-12-13 20:15:29 +00001478 vty_out (vty, " ipv6 ospf6 hello-interval %d%s",
hasso049207c2004-08-04 20:02:13 +00001479 oi->hello_interval, VNL);
paul718e3742002-12-13 20:15:29 +00001480 vty_out (vty, " ipv6 ospf6 dead-interval %d%s",
hasso049207c2004-08-04 20:02:13 +00001481 oi->dead_interval, VNL);
paul718e3742002-12-13 20:15:29 +00001482 vty_out (vty, " ipv6 ospf6 retransmit-interval %d%s",
hasso049207c2004-08-04 20:02:13 +00001483 oi->rxmt_interval, VNL);
paul718e3742002-12-13 20:15:29 +00001484 vty_out (vty, " ipv6 ospf6 priority %d%s",
hasso049207c2004-08-04 20:02:13 +00001485 oi->priority, VNL);
paul718e3742002-12-13 20:15:29 +00001486 vty_out (vty, " ipv6 ospf6 transmit-delay %d%s",
hasso049207c2004-08-04 20:02:13 +00001487 oi->transdelay, VNL);
paul718e3742002-12-13 20:15:29 +00001488 vty_out (vty, " ipv6 ospf6 instance-id %d%s",
hasso049207c2004-08-04 20:02:13 +00001489 oi->instance_id, VNL);
paul718e3742002-12-13 20:15:29 +00001490
hasso508e53e2004-05-18 18:57:06 +00001491 if (oi->plist_name)
paul718e3742002-12-13 20:15:29 +00001492 vty_out (vty, " ipv6 ospf6 advertise prefix-list %s%s",
hasso049207c2004-08-04 20:02:13 +00001493 oi->plist_name, VNL);
paul718e3742002-12-13 20:15:29 +00001494
hasso508e53e2004-05-18 18:57:06 +00001495 if (CHECK_FLAG (oi->flag, OSPF6_INTERFACE_PASSIVE))
hasso049207c2004-08-04 20:02:13 +00001496 vty_out (vty, " ipv6 ospf6 passive%s", VNL);
paul718e3742002-12-13 20:15:29 +00001497
hasso049207c2004-08-04 20:02:13 +00001498 vty_out (vty, "!%s", VNL);
paul718e3742002-12-13 20:15:29 +00001499 }
1500 return 0;
1501}
1502
Stephen Hemminger7fc626d2008-12-01 11:10:34 -08001503static struct cmd_node interface_node =
paul718e3742002-12-13 20:15:29 +00001504{
1505 INTERFACE_NODE,
1506 "%s(config-if)# ",
hasso69b4a812004-08-26 18:10:36 +00001507 1 /* VTYSH */
paul718e3742002-12-13 20:15:29 +00001508};
1509
1510void
Paul Jakma6ac29a52008-08-15 13:45:30 +01001511ospf6_interface_init (void)
paul718e3742002-12-13 20:15:29 +00001512{
1513 /* Install interface node. */
hasso508e53e2004-05-18 18:57:06 +00001514 install_node (&interface_node, config_write_ospf6_interface);
paul718e3742002-12-13 20:15:29 +00001515
1516 install_element (VIEW_NODE, &show_ipv6_ospf6_interface_cmd);
hasso508e53e2004-05-18 18:57:06 +00001517 install_element (VIEW_NODE, &show_ipv6_ospf6_interface_prefix_cmd);
1518 install_element (VIEW_NODE, &show_ipv6_ospf6_interface_prefix_detail_cmd);
1519 install_element (VIEW_NODE, &show_ipv6_ospf6_interface_prefix_match_cmd);
paul718e3742002-12-13 20:15:29 +00001520 install_element (VIEW_NODE, &show_ipv6_ospf6_interface_ifname_cmd);
hasso508e53e2004-05-18 18:57:06 +00001521 install_element (VIEW_NODE, &show_ipv6_ospf6_interface_ifname_prefix_cmd);
1522 install_element (VIEW_NODE, &show_ipv6_ospf6_interface_ifname_prefix_detail_cmd);
1523 install_element (VIEW_NODE, &show_ipv6_ospf6_interface_ifname_prefix_match_cmd);
paul718e3742002-12-13 20:15:29 +00001524 install_element (ENABLE_NODE, &show_ipv6_ospf6_interface_cmd);
hasso508e53e2004-05-18 18:57:06 +00001525 install_element (ENABLE_NODE, &show_ipv6_ospf6_interface_prefix_cmd);
1526 install_element (ENABLE_NODE, &show_ipv6_ospf6_interface_prefix_detail_cmd);
1527 install_element (ENABLE_NODE, &show_ipv6_ospf6_interface_prefix_match_cmd);
paul718e3742002-12-13 20:15:29 +00001528 install_element (ENABLE_NODE, &show_ipv6_ospf6_interface_ifname_cmd);
hasso508e53e2004-05-18 18:57:06 +00001529 install_element (ENABLE_NODE, &show_ipv6_ospf6_interface_ifname_prefix_cmd);
1530 install_element (ENABLE_NODE, &show_ipv6_ospf6_interface_ifname_prefix_detail_cmd);
1531 install_element (ENABLE_NODE, &show_ipv6_ospf6_interface_ifname_prefix_match_cmd);
paul718e3742002-12-13 20:15:29 +00001532
hasso508e53e2004-05-18 18:57:06 +00001533 install_element (CONFIG_NODE, &interface_cmd);
paul718e3742002-12-13 20:15:29 +00001534 install_default (INTERFACE_NODE);
1535 install_element (INTERFACE_NODE, &interface_desc_cmd);
1536 install_element (INTERFACE_NODE, &no_interface_desc_cmd);
1537 install_element (INTERFACE_NODE, &ipv6_ospf6_cost_cmd);
hassob596c712004-07-09 18:33:43 +00001538 install_element (INTERFACE_NODE, &ipv6_ospf6_ifmtu_cmd);
hasso049207c2004-08-04 20:02:13 +00001539 install_element (INTERFACE_NODE, &no_ipv6_ospf6_ifmtu_cmd);
paul718e3742002-12-13 20:15:29 +00001540 install_element (INTERFACE_NODE, &ipv6_ospf6_deadinterval_cmd);
1541 install_element (INTERFACE_NODE, &ipv6_ospf6_hellointerval_cmd);
1542 install_element (INTERFACE_NODE, &ipv6_ospf6_priority_cmd);
1543 install_element (INTERFACE_NODE, &ipv6_ospf6_retransmitinterval_cmd);
1544 install_element (INTERFACE_NODE, &ipv6_ospf6_transmitdelay_cmd);
1545 install_element (INTERFACE_NODE, &ipv6_ospf6_instance_cmd);
hasso508e53e2004-05-18 18:57:06 +00001546
paul718e3742002-12-13 20:15:29 +00001547 install_element (INTERFACE_NODE, &ipv6_ospf6_passive_cmd);
1548 install_element (INTERFACE_NODE, &no_ipv6_ospf6_passive_cmd);
hasso508e53e2004-05-18 18:57:06 +00001549
1550 install_element (INTERFACE_NODE, &ipv6_ospf6_advertise_prefix_list_cmd);
1551 install_element (INTERFACE_NODE, &no_ipv6_ospf6_advertise_prefix_list_cmd);
1552}
1553
1554DEFUN (debug_ospf6_interface,
1555 debug_ospf6_interface_cmd,
1556 "debug ospf6 interface",
1557 DEBUG_STR
1558 OSPF6_STR
1559 "Debug OSPFv3 Interface\n"
1560 )
1561{
1562 OSPF6_DEBUG_INTERFACE_ON ();
1563 return CMD_SUCCESS;
1564}
1565
1566DEFUN (no_debug_ospf6_interface,
1567 no_debug_ospf6_interface_cmd,
1568 "no debug ospf6 interface",
1569 NO_STR
1570 DEBUG_STR
1571 OSPF6_STR
1572 "Debug OSPFv3 Interface\n"
1573 )
1574{
hasso3b687352004-08-19 06:56:53 +00001575 OSPF6_DEBUG_INTERFACE_OFF ();
hasso508e53e2004-05-18 18:57:06 +00001576 return CMD_SUCCESS;
1577}
1578
1579int
1580config_write_ospf6_debug_interface (struct vty *vty)
1581{
1582 if (IS_OSPF6_DEBUG_INTERFACE)
hasso049207c2004-08-04 20:02:13 +00001583 vty_out (vty, "debug ospf6 interface%s", VNL);
hasso508e53e2004-05-18 18:57:06 +00001584 return 0;
1585}
1586
1587void
Paul Jakma6ac29a52008-08-15 13:45:30 +01001588install_element_ospf6_debug_interface (void)
hasso508e53e2004-05-18 18:57:06 +00001589{
1590 install_element (ENABLE_NODE, &debug_ospf6_interface_cmd);
1591 install_element (ENABLE_NODE, &no_debug_ospf6_interface_cmd);
1592 install_element (CONFIG_NODE, &debug_ospf6_interface_cmd);
1593 install_element (CONFIG_NODE, &no_debug_ospf6_interface_cmd);
paul718e3742002-12-13 20:15:29 +00001594}
1595
1596