blob: 7083c96601587d577908b11f5106a32ec33ca3d2 [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>
23
24#include "log.h"
25#include "vty.h"
26#include "command.h"
27#include "prefix.h"
28#include "stream.h"
29#include "zclient.h"
30#include "memory.h"
31
hasso508e53e2004-05-18 18:57:06 +000032#include "ospf6_proto.h"
33#include "ospf6_top.h"
paul718e3742002-12-13 20:15:29 +000034#include "ospf6_interface.h"
hasso508e53e2004-05-18 18:57:06 +000035#include "ospf6_route.h"
36#include "ospf6_lsa.h"
hasso049207c2004-08-04 20:02:13 +000037#include "ospf6_lsdb.h"
paul718e3742002-12-13 20:15:29 +000038#include "ospf6_asbr.h"
hasso508e53e2004-05-18 18:57:06 +000039#include "ospf6_zebra.h"
hasso049207c2004-08-04 20:02:13 +000040#include "ospf6d.h"
paul718e3742002-12-13 20:15:29 +000041
hasso508e53e2004-05-18 18:57:06 +000042unsigned char conf_debug_ospf6_zebra = 0;
paul718e3742002-12-13 20:15:29 +000043
44/* information about zebra. */
45struct zclient *zclient = NULL;
46
hasso18a6dce2004-10-03 18:18:34 +000047struct in_addr router_id_zebra;
48
49/* Router-id update message from zebra. */
Paul Jakma6ac29a52008-08-15 13:45:30 +010050static int
hasso18a6dce2004-10-03 18:18:34 +000051ospf6_router_id_update_zebra (int command, struct zclient *zclient,
52 zebra_size_t length)
53{
54 struct prefix router_id;
55 struct ospf6 *o = ospf6;
56
57 zebra_router_id_update_read(zclient->ibuf,&router_id);
58 router_id_zebra = router_id.u.prefix4;
59
jardinc1ba9e82005-03-02 22:43:26 +000060 if (o == NULL)
61 return 0;
62
hasso18a6dce2004-10-03 18:18:34 +000063 if (o->router_id == 0)
64 o->router_id = (u_int32_t) router_id_zebra.s_addr;
65
66 return 0;
67}
68
paul718e3742002-12-13 20:15:29 +000069/* redistribute function */
70void
71ospf6_zebra_redistribute (int type)
72{
paul718e3742002-12-13 20:15:29 +000073 if (zclient->redist[type])
74 return;
paul718e3742002-12-13 20:15:29 +000075 zclient->redist[type] = 1;
paul718e3742002-12-13 20:15:29 +000076 if (zclient->sock > 0)
ajs634f9ea2005-04-11 15:51:40 +000077 zebra_redistribute_send (ZEBRA_REDISTRIBUTE_ADD, zclient, type);
paul718e3742002-12-13 20:15:29 +000078}
79
80void
81ospf6_zebra_no_redistribute (int type)
82{
hasso508e53e2004-05-18 18:57:06 +000083 if (! zclient->redist[type])
paul718e3742002-12-13 20:15:29 +000084 return;
paul718e3742002-12-13 20:15:29 +000085 zclient->redist[type] = 0;
paul718e3742002-12-13 20:15:29 +000086 if (zclient->sock > 0)
ajs634f9ea2005-04-11 15:51:40 +000087 zebra_redistribute_send (ZEBRA_REDISTRIBUTE_DELETE, zclient, type);
paul718e3742002-12-13 20:15:29 +000088}
89
paul718e3742002-12-13 20:15:29 +000090/* Inteface addition message from zebra. */
Paul Jakma6ac29a52008-08-15 13:45:30 +010091static int
paul718e3742002-12-13 20:15:29 +000092ospf6_zebra_if_add (int command, struct zclient *zclient, zebra_size_t length)
93{
94 struct interface *ifp;
95
96 ifp = zebra_interface_add_read (zclient->ibuf);
hasso508e53e2004-05-18 18:57:06 +000097 if (IS_OSPF6_DEBUG_ZEBRA (RECV))
hassoc6487d62004-12-24 06:00:11 +000098 zlog_debug ("Zebra Interface add: %s index %d mtu %d",
99 ifp->name, ifp->ifindex, ifp->mtu6);
paul718e3742002-12-13 20:15:29 +0000100 ospf6_interface_if_add (ifp);
paul718e3742002-12-13 20:15:29 +0000101 return 0;
102}
103
Paul Jakma6ac29a52008-08-15 13:45:30 +0100104static int
paul718e3742002-12-13 20:15:29 +0000105ospf6_zebra_if_del (int command, struct zclient *zclient, zebra_size_t length)
106{
hasso508e53e2004-05-18 18:57:06 +0000107 struct interface *ifp;
paul718e3742002-12-13 20:15:29 +0000108
ajsd2fc8892005-04-02 18:38:43 +0000109 if (!(ifp = zebra_interface_state_read(zclient->ibuf)))
110 return 0;
111
112 if (if_is_up (ifp))
113 zlog_warn ("Zebra: got delete of %s, but interface is still up", ifp->name);
114
hasso508e53e2004-05-18 18:57:06 +0000115 if (IS_OSPF6_DEBUG_ZEBRA (RECV))
hassoc6487d62004-12-24 06:00:11 +0000116 zlog_debug ("Zebra Interface delete: %s index %d mtu %d",
117 ifp->name, ifp->ifindex, ifp->mtu6);
paul718e3742002-12-13 20:15:29 +0000118
ajsd2fc8892005-04-02 18:38:43 +0000119#if 0
120 /* Why is this commented out? */
paul718e3742002-12-13 20:15:29 +0000121 ospf6_interface_if_del (ifp);
hasso508e53e2004-05-18 18:57:06 +0000122#endif /*0*/
ajsd2fc8892005-04-02 18:38:43 +0000123
124 ifp->ifindex = IFINDEX_INTERNAL;
paul718e3742002-12-13 20:15:29 +0000125 return 0;
126}
127
Paul Jakma6ac29a52008-08-15 13:45:30 +0100128static int
paul718e3742002-12-13 20:15:29 +0000129ospf6_zebra_if_state_update (int command, struct zclient *zclient,
130 zebra_size_t length)
131{
132 struct interface *ifp;
133
134 ifp = zebra_interface_state_read (zclient->ibuf);
hasso508e53e2004-05-18 18:57:06 +0000135 if (IS_OSPF6_DEBUG_ZEBRA (RECV))
hassoc6487d62004-12-24 06:00:11 +0000136 zlog_debug ("Zebra Interface state change: "
137 "%s index %d flags %ld metric %d mtu %d",
138 ifp->name, ifp->ifindex, ifp->flags, ifp->metric, ifp->mtu6);
paul718e3742002-12-13 20:15:29 +0000139
140 ospf6_interface_state_update (ifp);
141 return 0;
142}
143
Paul Jakma6ac29a52008-08-15 13:45:30 +0100144static int
paul718e3742002-12-13 20:15:29 +0000145ospf6_zebra_if_address_update_add (int command, struct zclient *zclient,
hasso508e53e2004-05-18 18:57:06 +0000146 zebra_size_t length)
paul718e3742002-12-13 20:15:29 +0000147{
148 struct connected *c;
149 char buf[128];
150
paul0a589352004-05-08 11:48:26 +0000151 c = zebra_interface_address_read (ZEBRA_INTERFACE_ADDRESS_ADD, zclient->ibuf);
paul718e3742002-12-13 20:15:29 +0000152 if (c == NULL)
153 return 0;
154
hasso508e53e2004-05-18 18:57:06 +0000155 if (IS_OSPF6_DEBUG_ZEBRA (RECV))
hassoc6487d62004-12-24 06:00:11 +0000156 zlog_debug ("Zebra Interface address add: %s %5s %s/%d",
157 c->ifp->name, prefix_family_str (c->address),
158 inet_ntop (c->address->family, &c->address->u.prefix,
159 buf, sizeof (buf)), c->address->prefixlen);
paul718e3742002-12-13 20:15:29 +0000160
161 if (c->address->family == AF_INET6)
hasso508e53e2004-05-18 18:57:06 +0000162 ospf6_interface_connected_route_update (c->ifp);
paul718e3742002-12-13 20:15:29 +0000163
164 return 0;
165}
166
Paul Jakma6ac29a52008-08-15 13:45:30 +0100167static int
paul718e3742002-12-13 20:15:29 +0000168ospf6_zebra_if_address_update_delete (int command, struct zclient *zclient,
169 zebra_size_t length)
170{
171 struct connected *c;
172 char buf[128];
173
paul0a589352004-05-08 11:48:26 +0000174 c = zebra_interface_address_read (ZEBRA_INTERFACE_ADDRESS_DELETE, zclient->ibuf);
paul718e3742002-12-13 20:15:29 +0000175 if (c == NULL)
176 return 0;
177
hasso508e53e2004-05-18 18:57:06 +0000178 if (IS_OSPF6_DEBUG_ZEBRA (RECV))
hassoc6487d62004-12-24 06:00:11 +0000179 zlog_debug ("Zebra Interface address delete: %s %5s %s/%d",
180 c->ifp->name, prefix_family_str (c->address),
181 inet_ntop (c->address->family, &c->address->u.prefix,
182 buf, sizeof (buf)), c->address->prefixlen);
paul718e3742002-12-13 20:15:29 +0000183
184 if (c->address->family == AF_INET6)
hasso508e53e2004-05-18 18:57:06 +0000185 ospf6_interface_connected_route_update (c->ifp);
paul718e3742002-12-13 20:15:29 +0000186
187 return 0;
188}
189
Paul Jakma6ac29a52008-08-15 13:45:30 +0100190static int
paul718e3742002-12-13 20:15:29 +0000191ospf6_zebra_read_ipv6 (int command, struct zclient *zclient,
192 zebra_size_t length)
193{
194 struct stream *s;
195 struct zapi_ipv6 api;
196 unsigned long ifindex;
197 struct prefix_ipv6 p;
198 struct in6_addr *nexthop;
paul718e3742002-12-13 20:15:29 +0000199
200 s = zclient->ibuf;
201 ifindex = 0;
202 nexthop = NULL;
203 memset (&api, 0, sizeof (api));
204
205 /* Type, flags, message. */
206 api.type = stream_getc (s);
207 api.flags = stream_getc (s);
208 api.message = stream_getc (s);
209
210 /* IPv6 prefix. */
211 memset (&p, 0, sizeof (struct prefix_ipv6));
212 p.family = AF_INET6;
213 p.prefixlen = stream_getc (s);
214 stream_get (&p.prefix, s, PSIZE (p.prefixlen));
215
216 /* Nexthop, ifindex, distance, metric. */
217 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP))
218 {
219 api.nexthop_num = stream_getc (s);
220 nexthop = (struct in6_addr *)
221 malloc (api.nexthop_num * sizeof (struct in6_addr));
222 stream_get (nexthop, s, api.nexthop_num * sizeof (struct in6_addr));
223 }
224 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_IFINDEX))
225 {
226 api.ifindex_num = stream_getc (s);
227 ifindex = stream_getl (s);
228 }
229 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_DISTANCE))
230 api.distance = stream_getc (s);
231 else
232 api.distance = 0;
233 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_METRIC))
234 api.metric = stream_getl (s);
235 else
236 api.metric = 0;
237
hasso508e53e2004-05-18 18:57:06 +0000238 if (IS_OSPF6_DEBUG_ZEBRA (RECV))
paul718e3742002-12-13 20:15:29 +0000239 {
hasso508e53e2004-05-18 18:57:06 +0000240 char prefixstr[128], nexthopstr[128];
paul718e3742002-12-13 20:15:29 +0000241 prefix2str ((struct prefix *)&p, prefixstr, sizeof (prefixstr));
hasso508e53e2004-05-18 18:57:06 +0000242 if (nexthop)
243 inet_ntop (AF_INET6, nexthop, nexthopstr, sizeof (nexthopstr));
paul718e3742002-12-13 20:15:29 +0000244 else
hasso508e53e2004-05-18 18:57:06 +0000245 snprintf (nexthopstr, sizeof (nexthopstr), "::");
246
hassoc6487d62004-12-24 06:00:11 +0000247 zlog_debug ("Zebra Receive route %s: %s %s nexthop %s ifindex %ld",
248 (command == ZEBRA_IPV6_ROUTE_ADD ? "add" : "delete"),
ajsf52d13c2005-10-01 17:38:06 +0000249 zebra_route_string(api.type), prefixstr, nexthopstr, ifindex);
paul718e3742002-12-13 20:15:29 +0000250 }
251
252 if (command == ZEBRA_IPV6_ROUTE_ADD)
hasso508e53e2004-05-18 18:57:06 +0000253 ospf6_asbr_redistribute_add (api.type, ifindex, (struct prefix *) &p,
254 api.nexthop_num, nexthop);
paul718e3742002-12-13 20:15:29 +0000255 else
hasso508e53e2004-05-18 18:57:06 +0000256 ospf6_asbr_redistribute_remove (api.type, ifindex, (struct prefix *) &p);
paul718e3742002-12-13 20:15:29 +0000257
258 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP))
259 free (nexthop);
260
261 return 0;
262}
263
hasso508e53e2004-05-18 18:57:06 +0000264
265
paul718e3742002-12-13 20:15:29 +0000266
267DEFUN (show_zebra,
268 show_zebra_cmd,
269 "show zebra",
270 SHOW_STR
271 "Zebra information\n")
272{
273 int i;
hasso508e53e2004-05-18 18:57:06 +0000274 if (zclient == NULL)
275 {
hasso049207c2004-08-04 20:02:13 +0000276 vty_out (vty, "Not connected to zebra%s", VNL);
hasso508e53e2004-05-18 18:57:06 +0000277 return CMD_SUCCESS;
278 }
paul718e3742002-12-13 20:15:29 +0000279
hasso049207c2004-08-04 20:02:13 +0000280 vty_out (vty, "Zebra Infomation%s", VNL);
hasso508e53e2004-05-18 18:57:06 +0000281 vty_out (vty, " enable: %d fail: %d%s",
hasso049207c2004-08-04 20:02:13 +0000282 zclient->enable, zclient->fail, VNL);
paul718e3742002-12-13 20:15:29 +0000283 vty_out (vty, " redistribute default: %d%s", zclient->redist_default,
hasso049207c2004-08-04 20:02:13 +0000284 VNL);
hasso508e53e2004-05-18 18:57:06 +0000285 vty_out (vty, " redistribute:");
paul718e3742002-12-13 20:15:29 +0000286 for (i = 0; i < ZEBRA_ROUTE_MAX; i++)
hasso508e53e2004-05-18 18:57:06 +0000287 {
288 if (zclient->redist[i])
ajsf52d13c2005-10-01 17:38:06 +0000289 vty_out (vty, " %s", zebra_route_string(i));
hasso508e53e2004-05-18 18:57:06 +0000290 }
hasso049207c2004-08-04 20:02:13 +0000291 vty_out (vty, "%s", VNL);
paul718e3742002-12-13 20:15:29 +0000292 return CMD_SUCCESS;
293}
294
295DEFUN (router_zebra,
296 router_zebra_cmd,
297 "router zebra",
298 "Enable a routing process\n"
299 "Make connection to zebra daemon\n")
300{
paul718e3742002-12-13 20:15:29 +0000301 vty->node = ZEBRA_NODE;
302 zclient->enable = 1;
303 zclient_start (zclient);
304 return CMD_SUCCESS;
305}
306
307DEFUN (no_router_zebra,
308 no_router_zebra_cmd,
309 "no router zebra",
310 NO_STR
311 "Configure routing process\n"
312 "Disable connection to zebra daemon\n")
313{
paul718e3742002-12-13 20:15:29 +0000314 zclient->enable = 0;
315 zclient_stop (zclient);
316 return CMD_SUCCESS;
317}
318
319/* Zebra configuration write function. */
Paul Jakma6ac29a52008-08-15 13:45:30 +0100320static int
hasso508e53e2004-05-18 18:57:06 +0000321config_write_ospf6_zebra (struct vty *vty)
paul718e3742002-12-13 20:15:29 +0000322{
323 if (! zclient->enable)
324 {
hasso049207c2004-08-04 20:02:13 +0000325 vty_out (vty, "no router zebra%s", VNL);
326 vty_out (vty, "!%s", VNL);
paul718e3742002-12-13 20:15:29 +0000327 }
328 else if (! zclient->redist[ZEBRA_ROUTE_OSPF6])
329 {
hasso049207c2004-08-04 20:02:13 +0000330 vty_out (vty, "router zebra%s", VNL);
331 vty_out (vty, " no redistribute ospf6%s", VNL);
332 vty_out (vty, "!%s", VNL);
paul718e3742002-12-13 20:15:29 +0000333 }
334 return 0;
335}
336
337/* Zebra node structure. */
Stephen Hemminger7fc626d2008-12-01 11:10:34 -0800338static struct cmd_node zebra_node =
paul718e3742002-12-13 20:15:29 +0000339{
340 ZEBRA_NODE,
341 "%s(config-zebra)# ",
paul718e3742002-12-13 20:15:29 +0000342};
343
344#define ADD 0
hasso508e53e2004-05-18 18:57:06 +0000345#define REM 1
paul718e3742002-12-13 20:15:29 +0000346static void
hasso508e53e2004-05-18 18:57:06 +0000347ospf6_zebra_route_update (int type, struct ospf6_route *request)
paul718e3742002-12-13 20:15:29 +0000348{
paul718e3742002-12-13 20:15:29 +0000349 struct zapi_ipv6 api;
ajsd2fc8892005-04-02 18:38:43 +0000350 char buf[64];
hasso508e53e2004-05-18 18:57:06 +0000351 int nhcount;
paul718e3742002-12-13 20:15:29 +0000352 struct in6_addr **nexthops;
353 unsigned int *ifindexes;
paul718e3742002-12-13 20:15:29 +0000354 int i, ret = 0;
hasso508e53e2004-05-18 18:57:06 +0000355 struct prefix_ipv6 *dest;
paul718e3742002-12-13 20:15:29 +0000356
hasso508e53e2004-05-18 18:57:06 +0000357 if (IS_OSPF6_DEBUG_ZEBRA (SEND))
paul718e3742002-12-13 20:15:29 +0000358 {
hasso508e53e2004-05-18 18:57:06 +0000359 prefix2str (&request->prefix, buf, sizeof (buf));
hassoc6487d62004-12-24 06:00:11 +0000360 zlog_debug ("Send %s route: %s",
361 (type == REM ? "remove" : "add"), buf);
paul718e3742002-12-13 20:15:29 +0000362 }
363
364 if (zclient->sock < 0)
365 {
hasso508e53e2004-05-18 18:57:06 +0000366 if (IS_OSPF6_DEBUG_ZEBRA (SEND))
hassoc6487d62004-12-24 06:00:11 +0000367 zlog_debug (" Not connected to Zebra");
paul718e3742002-12-13 20:15:29 +0000368 return;
369 }
370
371 if (request->path.origin.adv_router == ospf6->router_id &&
372 (request->path.type == OSPF6_PATH_TYPE_EXTERNAL1 ||
373 request->path.type == OSPF6_PATH_TYPE_EXTERNAL2))
374 {
hasso508e53e2004-05-18 18:57:06 +0000375 if (IS_OSPF6_DEBUG_ZEBRA (SEND))
hassoc6487d62004-12-24 06:00:11 +0000376 zlog_debug (" Ignore self-originated external route");
paul718e3742002-12-13 20:15:29 +0000377 return;
378 }
379
hasso508e53e2004-05-18 18:57:06 +0000380 /* If removing is the best path and if there's another path,
381 treat this request as add the secondary path */
382 if (type == REM && ospf6_route_is_best (request) &&
383 request->next && ospf6_route_is_same (request, request->next))
384 {
385 if (IS_OSPF6_DEBUG_ZEBRA (SEND))
hassoc6487d62004-12-24 06:00:11 +0000386 zlog_debug (" Best-path removal resulted Sencondary addition");
hasso508e53e2004-05-18 18:57:06 +0000387 type = ADD;
388 request = request->next;
389 }
390
391 /* Only the best path will be sent to zebra. */
392 if (! ospf6_route_is_best (request))
paul718e3742002-12-13 20:15:29 +0000393 {
394 /* this is not preferred best route, ignore */
hasso508e53e2004-05-18 18:57:06 +0000395 if (IS_OSPF6_DEBUG_ZEBRA (SEND))
hassoc6487d62004-12-24 06:00:11 +0000396 zlog_debug (" Ignore non-best route");
paul718e3742002-12-13 20:15:29 +0000397 return;
398 }
399
hasso508e53e2004-05-18 18:57:06 +0000400 nhcount = 0;
401 for (i = 0; i < OSPF6_MULTI_PATH_LIMIT; i++)
402 if (ospf6_nexthop_is_set (&request->nexthop[i]))
403 nhcount++;
paul718e3742002-12-13 20:15:29 +0000404
hasso508e53e2004-05-18 18:57:06 +0000405 if (nhcount == 0)
paul718e3742002-12-13 20:15:29 +0000406 {
hasso508e53e2004-05-18 18:57:06 +0000407 if (IS_OSPF6_DEBUG_ZEBRA (SEND))
hassoc6487d62004-12-24 06:00:11 +0000408 zlog_debug (" No nexthop, ignore");
paul718e3742002-12-13 20:15:29 +0000409 return;
410 }
411
412 /* allocate memory for nexthop_list */
413 nexthops = XCALLOC (MTYPE_OSPF6_OTHER,
hasso508e53e2004-05-18 18:57:06 +0000414 nhcount * sizeof (struct in6_addr *));
415 if (nexthops == NULL)
paul718e3742002-12-13 20:15:29 +0000416 {
hasso508e53e2004-05-18 18:57:06 +0000417 zlog_warn ("Can't send route to zebra: malloc failed");
paul718e3742002-12-13 20:15:29 +0000418 return;
419 }
420
421 /* allocate memory for ifindex_list */
422 ifindexes = XCALLOC (MTYPE_OSPF6_OTHER,
hasso508e53e2004-05-18 18:57:06 +0000423 nhcount * sizeof (unsigned int));
424 if (ifindexes == NULL)
paul718e3742002-12-13 20:15:29 +0000425 {
hasso508e53e2004-05-18 18:57:06 +0000426 zlog_warn ("Can't send route to zebra: malloc failed");
paul718e3742002-12-13 20:15:29 +0000427 XFREE (MTYPE_OSPF6_OTHER, nexthops);
428 return;
429 }
430
hasso508e53e2004-05-18 18:57:06 +0000431 for (i = 0; i < nhcount; i++)
paul718e3742002-12-13 20:15:29 +0000432 {
hasso508e53e2004-05-18 18:57:06 +0000433 if (IS_OSPF6_DEBUG_ZEBRA (SEND))
ajsd2fc8892005-04-02 18:38:43 +0000434 {
435 char ifname[IFNAMSIZ];
436 inet_ntop (AF_INET6, &request->nexthop[i].address,
437 buf, sizeof (buf));
438 if (!if_indextoname(request->nexthop[i].ifindex, ifname))
439 strlcpy(ifname, "unknown", sizeof(ifname));
440 zlog_debug (" nexthop: %s%%%.*s(%d)", buf, IFNAMSIZ, ifname,
hassoc6487d62004-12-24 06:00:11 +0000441 request->nexthop[i].ifindex);
ajsd2fc8892005-04-02 18:38:43 +0000442 }
hasso508e53e2004-05-18 18:57:06 +0000443 nexthops[i] = &request->nexthop[i].address;
444 ifindexes[i] = request->nexthop[i].ifindex;
paul718e3742002-12-13 20:15:29 +0000445 }
446
447 api.type = ZEBRA_ROUTE_OSPF6;
448 api.flags = 0;
449 api.message = 0;
450 SET_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP);
hasso508e53e2004-05-18 18:57:06 +0000451 api.nexthop_num = nhcount;
paul718e3742002-12-13 20:15:29 +0000452 api.nexthop = nexthops;
hasso508e53e2004-05-18 18:57:06 +0000453 SET_FLAG (api.message, ZAPI_MESSAGE_IFINDEX);
454 api.ifindex_num = nhcount;
paul718e3742002-12-13 20:15:29 +0000455 api.ifindex = ifindexes;
hasso508e53e2004-05-18 18:57:06 +0000456 SET_FLAG (api.message, ZAPI_MESSAGE_METRIC);
457 api.metric = (request->path.metric_type == 2 ?
458 request->path.cost_e2 : request->path.cost);
paul718e3742002-12-13 20:15:29 +0000459
hasso508e53e2004-05-18 18:57:06 +0000460 dest = (struct prefix_ipv6 *) &request->prefix;
461 if (type == REM)
462 ret = zapi_ipv6_route (ZEBRA_IPV6_ROUTE_DELETE, zclient, dest, &api);
paul718e3742002-12-13 20:15:29 +0000463 else
hasso508e53e2004-05-18 18:57:06 +0000464 ret = zapi_ipv6_route (ZEBRA_IPV6_ROUTE_ADD, zclient, dest, &api);
paul718e3742002-12-13 20:15:29 +0000465
466 if (ret < 0)
hasso508e53e2004-05-18 18:57:06 +0000467 zlog_err ("zapi_ipv6_route() %s failed: %s",
ajs6099b3b2004-11-20 02:06:59 +0000468 (type == REM ? "delete" : "add"), safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +0000469
paul718e3742002-12-13 20:15:29 +0000470 XFREE (MTYPE_OSPF6_OTHER, nexthops);
471 XFREE (MTYPE_OSPF6_OTHER, ifindexes);
472
473 return;
474}
475
476void
hasso508e53e2004-05-18 18:57:06 +0000477ospf6_zebra_route_update_add (struct ospf6_route *request)
paul718e3742002-12-13 20:15:29 +0000478{
hasso508e53e2004-05-18 18:57:06 +0000479 if (! zclient->redist[ZEBRA_ROUTE_OSPF6])
480 {
481 ospf6->route_table->hook_add = NULL;
482 ospf6->route_table->hook_remove = NULL;
483 return;
484 }
paul718e3742002-12-13 20:15:29 +0000485 ospf6_zebra_route_update (ADD, request);
486}
487
488void
hasso508e53e2004-05-18 18:57:06 +0000489ospf6_zebra_route_update_remove (struct ospf6_route *request)
paul718e3742002-12-13 20:15:29 +0000490{
hasso508e53e2004-05-18 18:57:06 +0000491 if (! zclient->redist[ZEBRA_ROUTE_OSPF6])
paul718e3742002-12-13 20:15:29 +0000492 {
hasso508e53e2004-05-18 18:57:06 +0000493 ospf6->route_table->hook_add = NULL;
494 ospf6->route_table->hook_remove = NULL;
495 return;
paul718e3742002-12-13 20:15:29 +0000496 }
hasso508e53e2004-05-18 18:57:06 +0000497 ospf6_zebra_route_update (REM, request);
paul718e3742002-12-13 20:15:29 +0000498}
499
paul718e3742002-12-13 20:15:29 +0000500DEFUN (redistribute_ospf6,
501 redistribute_ospf6_cmd,
502 "redistribute ospf6",
503 "Redistribute control\n"
504 "OSPF6 route\n")
505{
hasso508e53e2004-05-18 18:57:06 +0000506 struct ospf6_route *route;
507
508 if (zclient->redist[ZEBRA_ROUTE_OSPF6])
509 return CMD_SUCCESS;
paul718e3742002-12-13 20:15:29 +0000510
511 zclient->redist[ZEBRA_ROUTE_OSPF6] = 1;
512
hasso508e53e2004-05-18 18:57:06 +0000513 if (ospf6 == NULL)
514 return CMD_SUCCESS;
515
516 /* send ospf6 route to zebra route table */
517 for (route = ospf6_route_head (ospf6->route_table); route;
518 route = ospf6_route_next (route))
519 ospf6_zebra_route_update_add (route);
520
521 ospf6->route_table->hook_add = ospf6_zebra_route_update_add;
522 ospf6->route_table->hook_remove = ospf6_zebra_route_update_remove;
paul718e3742002-12-13 20:15:29 +0000523
524 return CMD_SUCCESS;
525}
526
527DEFUN (no_redistribute_ospf6,
528 no_redistribute_ospf6_cmd,
529 "no redistribute ospf6",
530 NO_STR
531 "Redistribute control\n"
532 "OSPF6 route\n")
533{
hasso508e53e2004-05-18 18:57:06 +0000534 struct ospf6_route *route;
535
536 if (! zclient->redist[ZEBRA_ROUTE_OSPF6])
537 return CMD_SUCCESS;
paul718e3742002-12-13 20:15:29 +0000538
539 zclient->redist[ZEBRA_ROUTE_OSPF6] = 0;
540
hasso508e53e2004-05-18 18:57:06 +0000541 if (ospf6 == NULL)
paul718e3742002-12-13 20:15:29 +0000542 return CMD_SUCCESS;
543
hasso508e53e2004-05-18 18:57:06 +0000544 ospf6->route_table->hook_add = NULL;
545 ospf6->route_table->hook_remove = NULL;
paul718e3742002-12-13 20:15:29 +0000546
hasso508e53e2004-05-18 18:57:06 +0000547 /* withdraw ospf6 route from zebra route table */
548 for (route = ospf6_route_head (ospf6->route_table); route;
549 route = ospf6_route_next (route))
550 ospf6_zebra_route_update_remove (route);
paul718e3742002-12-13 20:15:29 +0000551
552 return CMD_SUCCESS;
553}
554
555void
Paul Jakma6ac29a52008-08-15 13:45:30 +0100556ospf6_zebra_init (void)
paul718e3742002-12-13 20:15:29 +0000557{
558 /* Allocate zebra structure. */
559 zclient = zclient_new ();
560 zclient_init (zclient, ZEBRA_ROUTE_OSPF6);
hasso18a6dce2004-10-03 18:18:34 +0000561 zclient->router_id_update = ospf6_router_id_update_zebra;
paul718e3742002-12-13 20:15:29 +0000562 zclient->interface_add = ospf6_zebra_if_add;
563 zclient->interface_delete = ospf6_zebra_if_del;
564 zclient->interface_up = ospf6_zebra_if_state_update;
565 zclient->interface_down = ospf6_zebra_if_state_update;
566 zclient->interface_address_add = ospf6_zebra_if_address_update_add;
567 zclient->interface_address_delete = ospf6_zebra_if_address_update_delete;
568 zclient->ipv4_route_add = NULL;
569 zclient->ipv4_route_delete = NULL;
570 zclient->ipv6_route_add = ospf6_zebra_read_ipv6;
571 zclient->ipv6_route_delete = ospf6_zebra_read_ipv6;
572
573 /* redistribute connected route by default */
574 /* ospf6_zebra_redistribute (ZEBRA_ROUTE_CONNECT); */
575
576 /* Install zebra node. */
hasso508e53e2004-05-18 18:57:06 +0000577 install_node (&zebra_node, config_write_ospf6_zebra);
paul718e3742002-12-13 20:15:29 +0000578
579 /* Install command element for zebra node. */
580 install_element (VIEW_NODE, &show_zebra_cmd);
581 install_element (ENABLE_NODE, &show_zebra_cmd);
582 install_element (CONFIG_NODE, &router_zebra_cmd);
583 install_element (CONFIG_NODE, &no_router_zebra_cmd);
hasso508e53e2004-05-18 18:57:06 +0000584
paul718e3742002-12-13 20:15:29 +0000585 install_default (ZEBRA_NODE);
586 install_element (ZEBRA_NODE, &redistribute_ospf6_cmd);
587 install_element (ZEBRA_NODE, &no_redistribute_ospf6_cmd);
588
paul718e3742002-12-13 20:15:29 +0000589 return;
590}
591
hasso508e53e2004-05-18 18:57:06 +0000592/* Debug */
593
594DEFUN (debug_ospf6_zebra_sendrecv,
595 debug_ospf6_zebra_sendrecv_cmd,
596 "debug ospf6 zebra (send|recv)",
597 DEBUG_STR
598 OSPF6_STR
599 "Debug connection between zebra\n"
600 "Debug Sending zebra\n"
601 "Debug Receiving zebra\n"
602 )
paul718e3742002-12-13 20:15:29 +0000603{
hasso508e53e2004-05-18 18:57:06 +0000604 unsigned char level = 0;
605
606 if (argc)
607 {
608 if (! strncmp (argv[0], "s", 1))
609 level = OSPF6_DEBUG_ZEBRA_SEND;
610 else if (! strncmp (argv[0], "r", 1))
611 level = OSPF6_DEBUG_ZEBRA_RECV;
612 }
613 else
614 level = OSPF6_DEBUG_ZEBRA_SEND | OSPF6_DEBUG_ZEBRA_RECV;
615
616 OSPF6_DEBUG_ZEBRA_ON (level);
617 return CMD_SUCCESS;
paul718e3742002-12-13 20:15:29 +0000618}
619
hasso508e53e2004-05-18 18:57:06 +0000620ALIAS (debug_ospf6_zebra_sendrecv,
621 debug_ospf6_zebra_cmd,
622 "debug ospf6 zebra",
623 DEBUG_STR
624 OSPF6_STR
625 "Debug connection between zebra\n"
Paul Jakma6ac29a52008-08-15 13:45:30 +0100626 )
hasso508e53e2004-05-18 18:57:06 +0000627
628
629DEFUN (no_debug_ospf6_zebra_sendrecv,
630 no_debug_ospf6_zebra_sendrecv_cmd,
631 "no debug ospf6 zebra (send|recv)",
632 NO_STR
633 DEBUG_STR
634 OSPF6_STR
635 "Debug connection between zebra\n"
636 "Debug Sending zebra\n"
637 "Debug Receiving zebra\n"
638 )
639{
640 unsigned char level = 0;
641
642 if (argc)
643 {
644 if (! strncmp (argv[0], "s", 1))
645 level = OSPF6_DEBUG_ZEBRA_SEND;
646 else if (! strncmp (argv[0], "r", 1))
647 level = OSPF6_DEBUG_ZEBRA_RECV;
648 }
649 else
650 level = OSPF6_DEBUG_ZEBRA_SEND | OSPF6_DEBUG_ZEBRA_RECV;
651
652 OSPF6_DEBUG_ZEBRA_OFF (level);
653 return CMD_SUCCESS;
654}
655
656ALIAS (no_debug_ospf6_zebra_sendrecv,
657 no_debug_ospf6_zebra_cmd,
658 "no debug ospf6 zebra",
659 NO_STR
660 DEBUG_STR
661 OSPF6_STR
662 "Debug connection between zebra\n"
Paul Jakma6ac29a52008-08-15 13:45:30 +0100663 )
hasso508e53e2004-05-18 18:57:06 +0000664
665int
666config_write_ospf6_debug_zebra (struct vty *vty)
667{
668 if (IS_OSPF6_DEBUG_ZEBRA (SEND) && IS_OSPF6_DEBUG_ZEBRA (RECV))
hasso049207c2004-08-04 20:02:13 +0000669 vty_out (vty, "debug ospf6 zebra%s", VNL);
hasso508e53e2004-05-18 18:57:06 +0000670 else
671 {
672 if (IS_OSPF6_DEBUG_ZEBRA (SEND))
hasso049207c2004-08-04 20:02:13 +0000673 vty_out (vty, "debug ospf6 zebra send%s", VNL);
hasso508e53e2004-05-18 18:57:06 +0000674 if (IS_OSPF6_DEBUG_ZEBRA (RECV))
hasso049207c2004-08-04 20:02:13 +0000675 vty_out (vty, "debug ospf6 zebra recv%s", VNL);
hasso508e53e2004-05-18 18:57:06 +0000676 }
677 return 0;
678}
679
680void
Paul Jakma6ac29a52008-08-15 13:45:30 +0100681install_element_ospf6_debug_zebra (void)
hasso508e53e2004-05-18 18:57:06 +0000682{
683 install_element (ENABLE_NODE, &debug_ospf6_zebra_cmd);
684 install_element (ENABLE_NODE, &no_debug_ospf6_zebra_cmd);
685 install_element (ENABLE_NODE, &debug_ospf6_zebra_sendrecv_cmd);
686 install_element (ENABLE_NODE, &no_debug_ospf6_zebra_sendrecv_cmd);
687 install_element (CONFIG_NODE, &debug_ospf6_zebra_cmd);
688 install_element (CONFIG_NODE, &no_debug_ospf6_zebra_cmd);
689 install_element (CONFIG_NODE, &debug_ospf6_zebra_sendrecv_cmd);
690 install_element (CONFIG_NODE, &no_debug_ospf6_zebra_sendrecv_cmd);
691}
692
693