blob: f80bb23f96c4c713587a3151a5004dcb1a17439a [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,
Feng Luc99f3482014-10-16 09:52:36 +080052 zebra_size_t length, vrf_id_t vrf_id)
hasso18a6dce2004-10-03 18:18:34 +000053{
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{
Feng Luc99f3482014-10-16 09:52:36 +080073 if (vrf_bitmap_check (zclient->redist[type], VRF_DEFAULT))
paul718e3742002-12-13 20:15:29 +000074 return;
Feng Luc99f3482014-10-16 09:52:36 +080075 vrf_bitmap_set (zclient->redist[type], VRF_DEFAULT);
paul718e3742002-12-13 20:15:29 +000076 if (zclient->sock > 0)
Feng Luc99f3482014-10-16 09:52:36 +080077 zebra_redistribute_send (ZEBRA_REDISTRIBUTE_ADD, zclient, type,
78 VRF_DEFAULT);
paul718e3742002-12-13 20:15:29 +000079}
80
81void
82ospf6_zebra_no_redistribute (int type)
83{
Feng Luc99f3482014-10-16 09:52:36 +080084 if (! vrf_bitmap_check (zclient->redist[type], VRF_DEFAULT))
paul718e3742002-12-13 20:15:29 +000085 return;
Feng Luc99f3482014-10-16 09:52:36 +080086 vrf_bitmap_unset (zclient->redist[type], VRF_DEFAULT);
paul718e3742002-12-13 20:15:29 +000087 if (zclient->sock > 0)
Feng Luc99f3482014-10-16 09:52:36 +080088 zebra_redistribute_send (ZEBRA_REDISTRIBUTE_DELETE, zclient, type,
89 VRF_DEFAULT);
paul718e3742002-12-13 20:15:29 +000090}
91
paul718e3742002-12-13 20:15:29 +000092/* Inteface addition message from zebra. */
Paul Jakma6ac29a52008-08-15 13:45:30 +010093static int
Feng Luc99f3482014-10-16 09:52:36 +080094ospf6_zebra_if_add (int command, struct zclient *zclient, zebra_size_t length,
95 vrf_id_t vrf_id)
paul718e3742002-12-13 20:15:29 +000096{
97 struct interface *ifp;
98
Feng Luc99f3482014-10-16 09:52:36 +080099 ifp = zebra_interface_add_read (zclient->ibuf, vrf_id);
hasso508e53e2004-05-18 18:57:06 +0000100 if (IS_OSPF6_DEBUG_ZEBRA (RECV))
hassoc6487d62004-12-24 06:00:11 +0000101 zlog_debug ("Zebra Interface add: %s index %d mtu %d",
102 ifp->name, ifp->ifindex, ifp->mtu6);
paul718e3742002-12-13 20:15:29 +0000103 ospf6_interface_if_add (ifp);
paul718e3742002-12-13 20:15:29 +0000104 return 0;
105}
106
Paul Jakma6ac29a52008-08-15 13:45:30 +0100107static int
Feng Luc99f3482014-10-16 09:52:36 +0800108ospf6_zebra_if_del (int command, struct zclient *zclient, zebra_size_t length,
109 vrf_id_t vrf_id)
paul718e3742002-12-13 20:15:29 +0000110{
hasso508e53e2004-05-18 18:57:06 +0000111 struct interface *ifp;
paul718e3742002-12-13 20:15:29 +0000112
Feng Luc99f3482014-10-16 09:52:36 +0800113 if (!(ifp = zebra_interface_state_read (zclient->ibuf, vrf_id)))
ajsd2fc8892005-04-02 18:38:43 +0000114 return 0;
115
116 if (if_is_up (ifp))
117 zlog_warn ("Zebra: got delete of %s, but interface is still up", ifp->name);
118
hasso508e53e2004-05-18 18:57:06 +0000119 if (IS_OSPF6_DEBUG_ZEBRA (RECV))
hassoc6487d62004-12-24 06:00:11 +0000120 zlog_debug ("Zebra Interface delete: %s index %d mtu %d",
121 ifp->name, ifp->ifindex, ifp->mtu6);
paul718e3742002-12-13 20:15:29 +0000122
ajsd2fc8892005-04-02 18:38:43 +0000123 ifp->ifindex = IFINDEX_INTERNAL;
paul718e3742002-12-13 20:15:29 +0000124 return 0;
125}
126
Paul Jakma6ac29a52008-08-15 13:45:30 +0100127static int
paul718e3742002-12-13 20:15:29 +0000128ospf6_zebra_if_state_update (int command, struct zclient *zclient,
Feng Luc99f3482014-10-16 09:52:36 +0800129 zebra_size_t length, vrf_id_t vrf_id)
paul718e3742002-12-13 20:15:29 +0000130{
131 struct interface *ifp;
132
Feng Luc99f3482014-10-16 09:52:36 +0800133 ifp = zebra_interface_state_read (zclient->ibuf, vrf_id);
Ingo Flaschberger57c4f4f2011-04-04 11:17:45 +0100134 if (ifp == NULL)
135 return 0;
136
hasso508e53e2004-05-18 18:57:06 +0000137 if (IS_OSPF6_DEBUG_ZEBRA (RECV))
hassoc6487d62004-12-24 06:00:11 +0000138 zlog_debug ("Zebra Interface state change: "
Vincent Bernatc19543b2012-10-24 14:45:53 +0000139 "%s index %d flags %llx metric %d mtu %d bandwidth %d",
Stephen Hemminger30d20592009-07-28 11:58:51 +0100140 ifp->name, ifp->ifindex, (unsigned long long)ifp->flags,
Vincent Bernatc19543b2012-10-24 14:45:53 +0000141 ifp->metric, ifp->mtu6, ifp->bandwidth);
paul718e3742002-12-13 20:15:29 +0000142
143 ospf6_interface_state_update (ifp);
144 return 0;
145}
146
Paul Jakma6ac29a52008-08-15 13:45:30 +0100147static int
paul718e3742002-12-13 20:15:29 +0000148ospf6_zebra_if_address_update_add (int command, struct zclient *zclient,
Feng Luc99f3482014-10-16 09:52:36 +0800149 zebra_size_t length, vrf_id_t vrf_id)
paul718e3742002-12-13 20:15:29 +0000150{
151 struct connected *c;
152 char buf[128];
153
Feng Luc99f3482014-10-16 09:52:36 +0800154 c = zebra_interface_address_read (ZEBRA_INTERFACE_ADDRESS_ADD, zclient->ibuf,
155 vrf_id);
paul718e3742002-12-13 20:15:29 +0000156 if (c == NULL)
157 return 0;
158
hasso508e53e2004-05-18 18:57:06 +0000159 if (IS_OSPF6_DEBUG_ZEBRA (RECV))
hassoc6487d62004-12-24 06:00:11 +0000160 zlog_debug ("Zebra Interface address add: %s %5s %s/%d",
161 c->ifp->name, prefix_family_str (c->address),
162 inet_ntop (c->address->family, &c->address->u.prefix,
163 buf, sizeof (buf)), c->address->prefixlen);
paul718e3742002-12-13 20:15:29 +0000164
165 if (c->address->family == AF_INET6)
Christian Frankeb13c1d92012-12-13 16:11:16 +0100166 {
167 ospf6_interface_state_update (c->ifp);
168 ospf6_interface_connected_route_update (c->ifp);
169 }
paul718e3742002-12-13 20:15:29 +0000170 return 0;
171}
172
Paul Jakma6ac29a52008-08-15 13:45:30 +0100173static int
paul718e3742002-12-13 20:15:29 +0000174ospf6_zebra_if_address_update_delete (int command, struct zclient *zclient,
Feng Luc99f3482014-10-16 09:52:36 +0800175 zebra_size_t length, vrf_id_t vrf_id)
paul718e3742002-12-13 20:15:29 +0000176{
177 struct connected *c;
178 char buf[128];
179
Feng Luc99f3482014-10-16 09:52:36 +0800180 c = zebra_interface_address_read (ZEBRA_INTERFACE_ADDRESS_DELETE, zclient->ibuf,
181 vrf_id);
paul718e3742002-12-13 20:15:29 +0000182 if (c == NULL)
183 return 0;
184
hasso508e53e2004-05-18 18:57:06 +0000185 if (IS_OSPF6_DEBUG_ZEBRA (RECV))
hassoc6487d62004-12-24 06:00:11 +0000186 zlog_debug ("Zebra Interface address delete: %s %5s %s/%d",
187 c->ifp->name, prefix_family_str (c->address),
188 inet_ntop (c->address->family, &c->address->u.prefix,
189 buf, sizeof (buf)), c->address->prefixlen);
paul718e3742002-12-13 20:15:29 +0000190
191 if (c->address->family == AF_INET6)
Christian Frankeb13c1d92012-12-13 16:11:16 +0100192 {
193 ospf6_interface_connected_route_update (c->ifp);
194 ospf6_interface_state_update (c->ifp);
195 }
paul718e3742002-12-13 20:15:29 +0000196
197 return 0;
198}
199
Paul Jakma6ac29a52008-08-15 13:45:30 +0100200static int
paul718e3742002-12-13 20:15:29 +0000201ospf6_zebra_read_ipv6 (int command, struct zclient *zclient,
Feng Luc99f3482014-10-16 09:52:36 +0800202 zebra_size_t length, vrf_id_t vrf_id)
paul718e3742002-12-13 20:15:29 +0000203{
204 struct stream *s;
205 struct zapi_ipv6 api;
206 unsigned long ifindex;
207 struct prefix_ipv6 p;
208 struct in6_addr *nexthop;
Donald Sharp5e57b5f2016-03-11 16:28:34 -0500209 unsigned char plength = 0;
paul718e3742002-12-13 20:15:29 +0000210
211 s = zclient->ibuf;
212 ifindex = 0;
213 nexthop = NULL;
214 memset (&api, 0, sizeof (api));
215
216 /* Type, flags, message. */
217 api.type = stream_getc (s);
218 api.flags = stream_getc (s);
219 api.message = stream_getc (s);
220
221 /* IPv6 prefix. */
222 memset (&p, 0, sizeof (struct prefix_ipv6));
223 p.family = AF_INET6;
Donald Sharp5e57b5f2016-03-11 16:28:34 -0500224 plength = stream_getc (s);
225 p.prefixlen = MIN(IPV6_MAX_PREFIXLEN, plength);
paul718e3742002-12-13 20:15:29 +0000226 stream_get (&p.prefix, s, PSIZE (p.prefixlen));
227
228 /* Nexthop, ifindex, distance, metric. */
229 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP))
230 {
231 api.nexthop_num = stream_getc (s);
232 nexthop = (struct in6_addr *)
233 malloc (api.nexthop_num * sizeof (struct in6_addr));
234 stream_get (nexthop, s, api.nexthop_num * sizeof (struct in6_addr));
235 }
236 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_IFINDEX))
237 {
238 api.ifindex_num = stream_getc (s);
239 ifindex = stream_getl (s);
240 }
241 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_DISTANCE))
242 api.distance = stream_getc (s);
243 else
244 api.distance = 0;
245 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_METRIC))
246 api.metric = stream_getl (s);
247 else
248 api.metric = 0;
249
hasso508e53e2004-05-18 18:57:06 +0000250 if (IS_OSPF6_DEBUG_ZEBRA (RECV))
paul718e3742002-12-13 20:15:29 +0000251 {
hasso508e53e2004-05-18 18:57:06 +0000252 char prefixstr[128], nexthopstr[128];
paul718e3742002-12-13 20:15:29 +0000253 prefix2str ((struct prefix *)&p, prefixstr, sizeof (prefixstr));
hasso508e53e2004-05-18 18:57:06 +0000254 if (nexthop)
255 inet_ntop (AF_INET6, nexthop, nexthopstr, sizeof (nexthopstr));
paul718e3742002-12-13 20:15:29 +0000256 else
hasso508e53e2004-05-18 18:57:06 +0000257 snprintf (nexthopstr, sizeof (nexthopstr), "::");
258
hassoc6487d62004-12-24 06:00:11 +0000259 zlog_debug ("Zebra Receive route %s: %s %s nexthop %s ifindex %ld",
260 (command == ZEBRA_IPV6_ROUTE_ADD ? "add" : "delete"),
ajsf52d13c2005-10-01 17:38:06 +0000261 zebra_route_string(api.type), prefixstr, nexthopstr, ifindex);
paul718e3742002-12-13 20:15:29 +0000262 }
263
264 if (command == ZEBRA_IPV6_ROUTE_ADD)
hasso508e53e2004-05-18 18:57:06 +0000265 ospf6_asbr_redistribute_add (api.type, ifindex, (struct prefix *) &p,
266 api.nexthop_num, nexthop);
paul718e3742002-12-13 20:15:29 +0000267 else
hasso508e53e2004-05-18 18:57:06 +0000268 ospf6_asbr_redistribute_remove (api.type, ifindex, (struct prefix *) &p);
paul718e3742002-12-13 20:15:29 +0000269
270 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP))
271 free (nexthop);
272
273 return 0;
274}
275
hasso508e53e2004-05-18 18:57:06 +0000276
277
David Lamparter6b0655a2014-06-04 06:53:35 +0200278
paul718e3742002-12-13 20:15:29 +0000279DEFUN (show_zebra,
280 show_zebra_cmd,
281 "show zebra",
282 SHOW_STR
283 "Zebra information\n")
284{
285 int i;
hasso508e53e2004-05-18 18:57:06 +0000286 if (zclient == NULL)
287 {
hasso049207c2004-08-04 20:02:13 +0000288 vty_out (vty, "Not connected to zebra%s", VNL);
hasso508e53e2004-05-18 18:57:06 +0000289 return CMD_SUCCESS;
290 }
paul718e3742002-12-13 20:15:29 +0000291
hasso049207c2004-08-04 20:02:13 +0000292 vty_out (vty, "Zebra Infomation%s", VNL);
hasso508e53e2004-05-18 18:57:06 +0000293 vty_out (vty, " enable: %d fail: %d%s",
hasso049207c2004-08-04 20:02:13 +0000294 zclient->enable, zclient->fail, VNL);
Feng Luc99f3482014-10-16 09:52:36 +0800295 vty_out (vty, " redistribute default: %d%s",
296 vrf_bitmap_check (zclient->default_information, VRF_DEFAULT),
hasso049207c2004-08-04 20:02:13 +0000297 VNL);
hasso508e53e2004-05-18 18:57:06 +0000298 vty_out (vty, " redistribute:");
paul718e3742002-12-13 20:15:29 +0000299 for (i = 0; i < ZEBRA_ROUTE_MAX; i++)
hasso508e53e2004-05-18 18:57:06 +0000300 {
Feng Luc99f3482014-10-16 09:52:36 +0800301 if (vrf_bitmap_check (zclient->redist[i], VRF_DEFAULT))
ajsf52d13c2005-10-01 17:38:06 +0000302 vty_out (vty, " %s", zebra_route_string(i));
hasso508e53e2004-05-18 18:57:06 +0000303 }
hasso049207c2004-08-04 20:02:13 +0000304 vty_out (vty, "%s", VNL);
paul718e3742002-12-13 20:15:29 +0000305 return CMD_SUCCESS;
306}
307
308DEFUN (router_zebra,
309 router_zebra_cmd,
310 "router zebra",
311 "Enable a routing process\n"
312 "Make connection to zebra daemon\n")
313{
paul718e3742002-12-13 20:15:29 +0000314 vty->node = ZEBRA_NODE;
315 zclient->enable = 1;
316 zclient_start (zclient);
317 return CMD_SUCCESS;
318}
319
320DEFUN (no_router_zebra,
321 no_router_zebra_cmd,
322 "no router zebra",
323 NO_STR
324 "Configure routing process\n"
325 "Disable connection to zebra daemon\n")
326{
paul718e3742002-12-13 20:15:29 +0000327 zclient->enable = 0;
328 zclient_stop (zclient);
329 return CMD_SUCCESS;
330}
331
332/* Zebra configuration write function. */
Paul Jakma6ac29a52008-08-15 13:45:30 +0100333static int
hasso508e53e2004-05-18 18:57:06 +0000334config_write_ospf6_zebra (struct vty *vty)
paul718e3742002-12-13 20:15:29 +0000335{
336 if (! zclient->enable)
337 {
hasso049207c2004-08-04 20:02:13 +0000338 vty_out (vty, "no router zebra%s", VNL);
339 vty_out (vty, "!%s", VNL);
paul718e3742002-12-13 20:15:29 +0000340 }
Feng Luc99f3482014-10-16 09:52:36 +0800341 else if (! vrf_bitmap_check (zclient->redist[ZEBRA_ROUTE_OSPF6], VRF_DEFAULT))
paul718e3742002-12-13 20:15:29 +0000342 {
hasso049207c2004-08-04 20:02:13 +0000343 vty_out (vty, "router zebra%s", VNL);
344 vty_out (vty, " no redistribute ospf6%s", VNL);
345 vty_out (vty, "!%s", VNL);
paul718e3742002-12-13 20:15:29 +0000346 }
347 return 0;
348}
349
350/* Zebra node structure. */
Stephen Hemminger7fc626d2008-12-01 11:10:34 -0800351static struct cmd_node zebra_node =
paul718e3742002-12-13 20:15:29 +0000352{
353 ZEBRA_NODE,
354 "%s(config-zebra)# ",
paul718e3742002-12-13 20:15:29 +0000355};
356
357#define ADD 0
hasso508e53e2004-05-18 18:57:06 +0000358#define REM 1
paul718e3742002-12-13 20:15:29 +0000359static void
hasso508e53e2004-05-18 18:57:06 +0000360ospf6_zebra_route_update (int type, struct ospf6_route *request)
paul718e3742002-12-13 20:15:29 +0000361{
paul718e3742002-12-13 20:15:29 +0000362 struct zapi_ipv6 api;
ajsd2fc8892005-04-02 18:38:43 +0000363 char buf[64];
hasso508e53e2004-05-18 18:57:06 +0000364 int nhcount;
paul718e3742002-12-13 20:15:29 +0000365 struct in6_addr **nexthops;
Paul Jakma9099f9b2016-01-18 10:12:10 +0000366 ifindex_t *ifindexes;
paul718e3742002-12-13 20:15:29 +0000367 int i, ret = 0;
hasso508e53e2004-05-18 18:57:06 +0000368 struct prefix_ipv6 *dest;
paul718e3742002-12-13 20:15:29 +0000369
hasso508e53e2004-05-18 18:57:06 +0000370 if (IS_OSPF6_DEBUG_ZEBRA (SEND))
paul718e3742002-12-13 20:15:29 +0000371 {
hasso508e53e2004-05-18 18:57:06 +0000372 prefix2str (&request->prefix, buf, sizeof (buf));
hassoc6487d62004-12-24 06:00:11 +0000373 zlog_debug ("Send %s route: %s",
374 (type == REM ? "remove" : "add"), buf);
paul718e3742002-12-13 20:15:29 +0000375 }
376
377 if (zclient->sock < 0)
378 {
hasso508e53e2004-05-18 18:57:06 +0000379 if (IS_OSPF6_DEBUG_ZEBRA (SEND))
hassoc6487d62004-12-24 06:00:11 +0000380 zlog_debug (" Not connected to Zebra");
paul718e3742002-12-13 20:15:29 +0000381 return;
382 }
383
384 if (request->path.origin.adv_router == ospf6->router_id &&
385 (request->path.type == OSPF6_PATH_TYPE_EXTERNAL1 ||
386 request->path.type == OSPF6_PATH_TYPE_EXTERNAL2))
387 {
hasso508e53e2004-05-18 18:57:06 +0000388 if (IS_OSPF6_DEBUG_ZEBRA (SEND))
hassoc6487d62004-12-24 06:00:11 +0000389 zlog_debug (" Ignore self-originated external route");
paul718e3742002-12-13 20:15:29 +0000390 return;
391 }
392
hasso508e53e2004-05-18 18:57:06 +0000393 /* If removing is the best path and if there's another path,
394 treat this request as add the secondary path */
395 if (type == REM && ospf6_route_is_best (request) &&
396 request->next && ospf6_route_is_same (request, request->next))
397 {
398 if (IS_OSPF6_DEBUG_ZEBRA (SEND))
hassoc6487d62004-12-24 06:00:11 +0000399 zlog_debug (" Best-path removal resulted Sencondary addition");
hasso508e53e2004-05-18 18:57:06 +0000400 type = ADD;
401 request = request->next;
402 }
403
404 /* Only the best path will be sent to zebra. */
405 if (! ospf6_route_is_best (request))
paul718e3742002-12-13 20:15:29 +0000406 {
407 /* this is not preferred best route, ignore */
hasso508e53e2004-05-18 18:57:06 +0000408 if (IS_OSPF6_DEBUG_ZEBRA (SEND))
hassoc6487d62004-12-24 06:00:11 +0000409 zlog_debug (" Ignore non-best route");
paul718e3742002-12-13 20:15:29 +0000410 return;
411 }
412
hasso508e53e2004-05-18 18:57:06 +0000413 nhcount = 0;
414 for (i = 0; i < OSPF6_MULTI_PATH_LIMIT; i++)
415 if (ospf6_nexthop_is_set (&request->nexthop[i]))
416 nhcount++;
paul718e3742002-12-13 20:15:29 +0000417
hasso508e53e2004-05-18 18:57:06 +0000418 if (nhcount == 0)
paul718e3742002-12-13 20:15:29 +0000419 {
hasso508e53e2004-05-18 18:57:06 +0000420 if (IS_OSPF6_DEBUG_ZEBRA (SEND))
hassoc6487d62004-12-24 06:00:11 +0000421 zlog_debug (" No nexthop, ignore");
paul718e3742002-12-13 20:15:29 +0000422 return;
423 }
424
425 /* allocate memory for nexthop_list */
426 nexthops = XCALLOC (MTYPE_OSPF6_OTHER,
hasso508e53e2004-05-18 18:57:06 +0000427 nhcount * sizeof (struct in6_addr *));
428 if (nexthops == NULL)
paul718e3742002-12-13 20:15:29 +0000429 {
hasso508e53e2004-05-18 18:57:06 +0000430 zlog_warn ("Can't send route to zebra: malloc failed");
paul718e3742002-12-13 20:15:29 +0000431 return;
432 }
433
434 /* allocate memory for ifindex_list */
435 ifindexes = XCALLOC (MTYPE_OSPF6_OTHER,
hasso508e53e2004-05-18 18:57:06 +0000436 nhcount * sizeof (unsigned int));
437 if (ifindexes == NULL)
paul718e3742002-12-13 20:15:29 +0000438 {
hasso508e53e2004-05-18 18:57:06 +0000439 zlog_warn ("Can't send route to zebra: malloc failed");
paul718e3742002-12-13 20:15:29 +0000440 XFREE (MTYPE_OSPF6_OTHER, nexthops);
441 return;
442 }
443
hasso508e53e2004-05-18 18:57:06 +0000444 for (i = 0; i < nhcount; i++)
paul718e3742002-12-13 20:15:29 +0000445 {
hasso508e53e2004-05-18 18:57:06 +0000446 if (IS_OSPF6_DEBUG_ZEBRA (SEND))
ajsd2fc8892005-04-02 18:38:43 +0000447 {
Feng Lu395828e2015-05-22 11:39:55 +0200448 const char *ifname;
ajsd2fc8892005-04-02 18:38:43 +0000449 inet_ntop (AF_INET6, &request->nexthop[i].address,
450 buf, sizeof (buf));
Feng Lu395828e2015-05-22 11:39:55 +0200451 ifname = ifindex2ifname (request->nexthop[i].ifindex);
ajsd2fc8892005-04-02 18:38:43 +0000452 zlog_debug (" nexthop: %s%%%.*s(%d)", buf, IFNAMSIZ, ifname,
hassoc6487d62004-12-24 06:00:11 +0000453 request->nexthop[i].ifindex);
ajsd2fc8892005-04-02 18:38:43 +0000454 }
hasso508e53e2004-05-18 18:57:06 +0000455 nexthops[i] = &request->nexthop[i].address;
456 ifindexes[i] = request->nexthop[i].ifindex;
paul718e3742002-12-13 20:15:29 +0000457 }
458
Feng Luc99f3482014-10-16 09:52:36 +0800459 api.vrf_id = VRF_DEFAULT;
paul718e3742002-12-13 20:15:29 +0000460 api.type = ZEBRA_ROUTE_OSPF6;
461 api.flags = 0;
462 api.message = 0;
Denis Ovsienkob4e45f62011-12-05 16:35:14 +0400463 api.safi = SAFI_UNICAST;
paul718e3742002-12-13 20:15:29 +0000464 SET_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP);
hasso508e53e2004-05-18 18:57:06 +0000465 api.nexthop_num = nhcount;
paul718e3742002-12-13 20:15:29 +0000466 api.nexthop = nexthops;
hasso508e53e2004-05-18 18:57:06 +0000467 SET_FLAG (api.message, ZAPI_MESSAGE_IFINDEX);
468 api.ifindex_num = nhcount;
paul718e3742002-12-13 20:15:29 +0000469 api.ifindex = ifindexes;
hasso508e53e2004-05-18 18:57:06 +0000470 SET_FLAG (api.message, ZAPI_MESSAGE_METRIC);
471 api.metric = (request->path.metric_type == 2 ?
472 request->path.cost_e2 : request->path.cost);
Roman Hoog Antinkd8f7f862014-03-05 09:13:43 +0100473 SET_FLAG (api.message, ZAPI_MESSAGE_DISTANCE);
474 api.distance = ospf6_distance_apply (request, ospf6);
paul718e3742002-12-13 20:15:29 +0000475
hasso508e53e2004-05-18 18:57:06 +0000476 dest = (struct prefix_ipv6 *) &request->prefix;
477 if (type == REM)
478 ret = zapi_ipv6_route (ZEBRA_IPV6_ROUTE_DELETE, zclient, dest, &api);
paul718e3742002-12-13 20:15:29 +0000479 else
hasso508e53e2004-05-18 18:57:06 +0000480 ret = zapi_ipv6_route (ZEBRA_IPV6_ROUTE_ADD, zclient, dest, &api);
paul718e3742002-12-13 20:15:29 +0000481
482 if (ret < 0)
hasso508e53e2004-05-18 18:57:06 +0000483 zlog_err ("zapi_ipv6_route() %s failed: %s",
ajs6099b3b2004-11-20 02:06:59 +0000484 (type == REM ? "delete" : "add"), safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +0000485
paul718e3742002-12-13 20:15:29 +0000486 XFREE (MTYPE_OSPF6_OTHER, nexthops);
487 XFREE (MTYPE_OSPF6_OTHER, ifindexes);
488
489 return;
490}
491
492void
hasso508e53e2004-05-18 18:57:06 +0000493ospf6_zebra_route_update_add (struct ospf6_route *request)
paul718e3742002-12-13 20:15:29 +0000494{
Feng Luc99f3482014-10-16 09:52:36 +0800495 if (! vrf_bitmap_check (zclient->redist[ZEBRA_ROUTE_OSPF6], VRF_DEFAULT))
hasso508e53e2004-05-18 18:57:06 +0000496 {
497 ospf6->route_table->hook_add = NULL;
498 ospf6->route_table->hook_remove = NULL;
499 return;
500 }
paul718e3742002-12-13 20:15:29 +0000501 ospf6_zebra_route_update (ADD, request);
502}
503
504void
hasso508e53e2004-05-18 18:57:06 +0000505ospf6_zebra_route_update_remove (struct ospf6_route *request)
paul718e3742002-12-13 20:15:29 +0000506{
Feng Luc99f3482014-10-16 09:52:36 +0800507 if (! vrf_bitmap_check (zclient->redist[ZEBRA_ROUTE_OSPF6], VRF_DEFAULT))
paul718e3742002-12-13 20:15:29 +0000508 {
hasso508e53e2004-05-18 18:57:06 +0000509 ospf6->route_table->hook_add = NULL;
510 ospf6->route_table->hook_remove = NULL;
511 return;
paul718e3742002-12-13 20:15:29 +0000512 }
hasso508e53e2004-05-18 18:57:06 +0000513 ospf6_zebra_route_update (REM, request);
paul718e3742002-12-13 20:15:29 +0000514}
515
paul718e3742002-12-13 20:15:29 +0000516DEFUN (redistribute_ospf6,
517 redistribute_ospf6_cmd,
518 "redistribute ospf6",
519 "Redistribute control\n"
520 "OSPF6 route\n")
521{
hasso508e53e2004-05-18 18:57:06 +0000522 struct ospf6_route *route;
523
Feng Luc99f3482014-10-16 09:52:36 +0800524 if (vrf_bitmap_check (zclient->redist[ZEBRA_ROUTE_OSPF6], VRF_DEFAULT))
hasso508e53e2004-05-18 18:57:06 +0000525 return CMD_SUCCESS;
paul718e3742002-12-13 20:15:29 +0000526
Feng Luc99f3482014-10-16 09:52:36 +0800527 vrf_bitmap_set (zclient->redist[ZEBRA_ROUTE_OSPF6], VRF_DEFAULT);
paul718e3742002-12-13 20:15:29 +0000528
hasso508e53e2004-05-18 18:57:06 +0000529 if (ospf6 == NULL)
530 return CMD_SUCCESS;
531
532 /* send ospf6 route to zebra route table */
533 for (route = ospf6_route_head (ospf6->route_table); route;
534 route = ospf6_route_next (route))
535 ospf6_zebra_route_update_add (route);
536
537 ospf6->route_table->hook_add = ospf6_zebra_route_update_add;
538 ospf6->route_table->hook_remove = ospf6_zebra_route_update_remove;
paul718e3742002-12-13 20:15:29 +0000539
540 return CMD_SUCCESS;
541}
542
543DEFUN (no_redistribute_ospf6,
544 no_redistribute_ospf6_cmd,
545 "no redistribute ospf6",
546 NO_STR
547 "Redistribute control\n"
548 "OSPF6 route\n")
549{
hasso508e53e2004-05-18 18:57:06 +0000550 struct ospf6_route *route;
551
Feng Luc99f3482014-10-16 09:52:36 +0800552 if (! vrf_bitmap_check (zclient->redist[ZEBRA_ROUTE_OSPF6], VRF_DEFAULT))
hasso508e53e2004-05-18 18:57:06 +0000553 return CMD_SUCCESS;
paul718e3742002-12-13 20:15:29 +0000554
Feng Luc99f3482014-10-16 09:52:36 +0800555 vrf_bitmap_unset (zclient->redist[ZEBRA_ROUTE_OSPF6], VRF_DEFAULT);
paul718e3742002-12-13 20:15:29 +0000556
hasso508e53e2004-05-18 18:57:06 +0000557 if (ospf6 == NULL)
paul718e3742002-12-13 20:15:29 +0000558 return CMD_SUCCESS;
559
hasso508e53e2004-05-18 18:57:06 +0000560 ospf6->route_table->hook_add = NULL;
561 ospf6->route_table->hook_remove = NULL;
paul718e3742002-12-13 20:15:29 +0000562
hasso508e53e2004-05-18 18:57:06 +0000563 /* withdraw ospf6 route from zebra route table */
564 for (route = ospf6_route_head (ospf6->route_table); route;
565 route = ospf6_route_next (route))
566 ospf6_zebra_route_update_remove (route);
paul718e3742002-12-13 20:15:29 +0000567
568 return CMD_SUCCESS;
569}
570
Feng Luc99f3482014-10-16 09:52:36 +0800571static void
572ospf6_zebra_connected (struct zclient *zclient)
573{
574 zclient_send_requests (zclient, VRF_DEFAULT);
575}
576
Roman Hoog Antinkd8f7f862014-03-05 09:13:43 +0100577static struct ospf6_distance *
578ospf6_distance_new (void)
579{
580 return XCALLOC (MTYPE_OSPF6_DISTANCE, sizeof (struct ospf6_distance));
581}
582
583static void
584ospf6_distance_free (struct ospf6_distance *odistance)
585{
586 XFREE (MTYPE_OSPF6_DISTANCE, odistance);
587}
588
589int
590ospf6_distance_set (struct vty *vty, struct ospf6 *o,
591 const char *distance_str,
592 const char *ip_str,
593 const char *access_list_str)
594{
595 int ret;
596 struct prefix_ipv6 p;
597 u_char distance;
598 struct route_node *rn;
599 struct ospf6_distance *odistance;
600
601 ret = str2prefix_ipv6 (ip_str, &p);
602 if (ret == 0)
603 {
604 vty_out (vty, "Malformed prefix%s", VTY_NEWLINE);
605 return CMD_WARNING;
606 }
607
608 distance = atoi (distance_str);
609
610 /* Get OSPF6 distance node. */
611 rn = route_node_get (o->distance_table, (struct prefix *) &p);
612 if (rn->info)
613 {
614 odistance = rn->info;
615 route_unlock_node (rn);
616 }
617 else
618 {
619 odistance = ospf6_distance_new ();
620 rn->info = odistance;
621 }
622
623 /* Set distance value. */
624 odistance->distance = distance;
625
626 /*Reset access-list configuration. */
627 if (odistance->access_list)
628 {
629 free (odistance->access_list);
630 odistance->access_list = NULL;
631 }
632 if (access_list_str)
633 odistance->access_list = strdup (access_list_str);
634
635 return CMD_SUCCESS;
636}
637
638int
639ospf6_distance_unset (struct vty *vty, struct ospf6 *o,
640 const char *ip_str,
641 const char *access_list_str)
642{
643 int ret;
644 struct prefix_ipv6 p;
645 struct route_node *rn;
646 struct ospf6_distance *odistance;
647
648 ret = str2prefix_ipv6 (ip_str, &p);
649 if (ret == 0)
650 {
651 vty_out (vty, "Malformed prefix%s", VTY_NEWLINE);
652 return CMD_WARNING;
653 }
654
655 rn = route_node_lookup (o->distance_table, (struct prefix *) &p);
656 if (!rn)
657 {
658 vty_out (vty, "Cant't find specified prefix%s", VTY_NEWLINE);
659 return CMD_WARNING;
660 }
661
662 odistance = rn->info;
663
664 if (odistance->access_list)
665 free (odistance->access_list);
666 ospf6_distance_free (odistance);
667
668 rn->info = NULL;
669 route_unlock_node (rn);
670 route_unlock_node (rn);
671
672 return CMD_SUCCESS;
673}
674
675void
676ospf6_distance_reset (struct ospf6 *o)
677{
678 struct route_node *rn;
679 struct ospf6_distance *odistance;
680
681 for (rn = route_top (o->distance_table); rn; rn = route_next (rn))
682 if ((odistance = rn->info) != NULL)
683 {
684 if (odistance->access_list)
685 free (odistance->access_list);
686 ospf6_distance_free (odistance);
687 rn->info = NULL;
688 route_unlock_node (rn);
689 }
690}
691
692u_char
693ospf6_distance_apply (struct ospf6_route *or, struct ospf6 *o)
694{
695
696 if (o == NULL)
697 return 0;
698
699 if (o->distance_intra)
700 if (or->path.type == OSPF6_PATH_TYPE_INTRA)
701 return o->distance_intra;
702
703 if (o->distance_inter)
704 if (or->path.type == OSPF6_PATH_TYPE_INTER)
705 return o->distance_inter;
706
707 if (o->distance_external)
708 if(or->path.type == OSPF6_PATH_TYPE_EXTERNAL1
709 || or->path.type == OSPF6_PATH_TYPE_EXTERNAL2)
710 return o->distance_external;
711
712 if (o->distance_all)
713 return o->distance_all;
714
715 return 0;
716}
717
paul718e3742002-12-13 20:15:29 +0000718void
Donald Sharp71252932015-09-24 09:25:19 -0400719ospf6_zebra_init (struct thread_master *master)
paul718e3742002-12-13 20:15:29 +0000720{
721 /* Allocate zebra structure. */
Donald Sharp71252932015-09-24 09:25:19 -0400722 zclient = zclient_new (master);
paul718e3742002-12-13 20:15:29 +0000723 zclient_init (zclient, ZEBRA_ROUTE_OSPF6);
Feng Luc99f3482014-10-16 09:52:36 +0800724 zclient->zebra_connected = ospf6_zebra_connected;
hasso18a6dce2004-10-03 18:18:34 +0000725 zclient->router_id_update = ospf6_router_id_update_zebra;
paul718e3742002-12-13 20:15:29 +0000726 zclient->interface_add = ospf6_zebra_if_add;
727 zclient->interface_delete = ospf6_zebra_if_del;
728 zclient->interface_up = ospf6_zebra_if_state_update;
729 zclient->interface_down = ospf6_zebra_if_state_update;
730 zclient->interface_address_add = ospf6_zebra_if_address_update_add;
731 zclient->interface_address_delete = ospf6_zebra_if_address_update_delete;
732 zclient->ipv4_route_add = NULL;
733 zclient->ipv4_route_delete = NULL;
734 zclient->ipv6_route_add = ospf6_zebra_read_ipv6;
735 zclient->ipv6_route_delete = ospf6_zebra_read_ipv6;
736
737 /* redistribute connected route by default */
738 /* ospf6_zebra_redistribute (ZEBRA_ROUTE_CONNECT); */
739
740 /* Install zebra node. */
hasso508e53e2004-05-18 18:57:06 +0000741 install_node (&zebra_node, config_write_ospf6_zebra);
paul718e3742002-12-13 20:15:29 +0000742
743 /* Install command element for zebra node. */
744 install_element (VIEW_NODE, &show_zebra_cmd);
paul718e3742002-12-13 20:15:29 +0000745 install_element (CONFIG_NODE, &router_zebra_cmd);
746 install_element (CONFIG_NODE, &no_router_zebra_cmd);
hasso508e53e2004-05-18 18:57:06 +0000747
paul718e3742002-12-13 20:15:29 +0000748 install_default (ZEBRA_NODE);
749 install_element (ZEBRA_NODE, &redistribute_ospf6_cmd);
750 install_element (ZEBRA_NODE, &no_redistribute_ospf6_cmd);
751
paul718e3742002-12-13 20:15:29 +0000752 return;
753}
754
hasso508e53e2004-05-18 18:57:06 +0000755/* Debug */
David Lamparter6b0655a2014-06-04 06:53:35 +0200756
hasso508e53e2004-05-18 18:57:06 +0000757DEFUN (debug_ospf6_zebra_sendrecv,
758 debug_ospf6_zebra_sendrecv_cmd,
759 "debug ospf6 zebra (send|recv)",
760 DEBUG_STR
761 OSPF6_STR
762 "Debug connection between zebra\n"
763 "Debug Sending zebra\n"
764 "Debug Receiving zebra\n"
765 )
paul718e3742002-12-13 20:15:29 +0000766{
hasso508e53e2004-05-18 18:57:06 +0000767 unsigned char level = 0;
768
769 if (argc)
770 {
771 if (! strncmp (argv[0], "s", 1))
772 level = OSPF6_DEBUG_ZEBRA_SEND;
773 else if (! strncmp (argv[0], "r", 1))
774 level = OSPF6_DEBUG_ZEBRA_RECV;
775 }
776 else
777 level = OSPF6_DEBUG_ZEBRA_SEND | OSPF6_DEBUG_ZEBRA_RECV;
778
779 OSPF6_DEBUG_ZEBRA_ON (level);
780 return CMD_SUCCESS;
paul718e3742002-12-13 20:15:29 +0000781}
782
hasso508e53e2004-05-18 18:57:06 +0000783ALIAS (debug_ospf6_zebra_sendrecv,
784 debug_ospf6_zebra_cmd,
785 "debug ospf6 zebra",
786 DEBUG_STR
787 OSPF6_STR
788 "Debug connection between zebra\n"
Paul Jakma6ac29a52008-08-15 13:45:30 +0100789 )
hasso508e53e2004-05-18 18:57:06 +0000790
791
792DEFUN (no_debug_ospf6_zebra_sendrecv,
793 no_debug_ospf6_zebra_sendrecv_cmd,
794 "no debug ospf6 zebra (send|recv)",
795 NO_STR
796 DEBUG_STR
797 OSPF6_STR
798 "Debug connection between zebra\n"
799 "Debug Sending zebra\n"
800 "Debug Receiving zebra\n"
801 )
802{
803 unsigned char level = 0;
804
805 if (argc)
806 {
807 if (! strncmp (argv[0], "s", 1))
808 level = OSPF6_DEBUG_ZEBRA_SEND;
809 else if (! strncmp (argv[0], "r", 1))
810 level = OSPF6_DEBUG_ZEBRA_RECV;
811 }
812 else
813 level = OSPF6_DEBUG_ZEBRA_SEND | OSPF6_DEBUG_ZEBRA_RECV;
814
815 OSPF6_DEBUG_ZEBRA_OFF (level);
816 return CMD_SUCCESS;
817}
818
819ALIAS (no_debug_ospf6_zebra_sendrecv,
820 no_debug_ospf6_zebra_cmd,
821 "no debug ospf6 zebra",
822 NO_STR
823 DEBUG_STR
824 OSPF6_STR
825 "Debug connection between zebra\n"
Paul Jakma6ac29a52008-08-15 13:45:30 +0100826 )
hasso508e53e2004-05-18 18:57:06 +0000827
828int
829config_write_ospf6_debug_zebra (struct vty *vty)
830{
831 if (IS_OSPF6_DEBUG_ZEBRA (SEND) && IS_OSPF6_DEBUG_ZEBRA (RECV))
hasso049207c2004-08-04 20:02:13 +0000832 vty_out (vty, "debug ospf6 zebra%s", VNL);
hasso508e53e2004-05-18 18:57:06 +0000833 else
834 {
835 if (IS_OSPF6_DEBUG_ZEBRA (SEND))
hasso049207c2004-08-04 20:02:13 +0000836 vty_out (vty, "debug ospf6 zebra send%s", VNL);
hasso508e53e2004-05-18 18:57:06 +0000837 if (IS_OSPF6_DEBUG_ZEBRA (RECV))
hasso049207c2004-08-04 20:02:13 +0000838 vty_out (vty, "debug ospf6 zebra recv%s", VNL);
hasso508e53e2004-05-18 18:57:06 +0000839 }
840 return 0;
841}
842
843void
Paul Jakma6ac29a52008-08-15 13:45:30 +0100844install_element_ospf6_debug_zebra (void)
hasso508e53e2004-05-18 18:57:06 +0000845{
846 install_element (ENABLE_NODE, &debug_ospf6_zebra_cmd);
847 install_element (ENABLE_NODE, &no_debug_ospf6_zebra_cmd);
848 install_element (ENABLE_NODE, &debug_ospf6_zebra_sendrecv_cmd);
849 install_element (ENABLE_NODE, &no_debug_ospf6_zebra_sendrecv_cmd);
850 install_element (CONFIG_NODE, &debug_ospf6_zebra_cmd);
851 install_element (CONFIG_NODE, &no_debug_ospf6_zebra_cmd);
852 install_element (CONFIG_NODE, &debug_ospf6_zebra_sendrecv_cmd);
853 install_element (CONFIG_NODE, &no_debug_ospf6_zebra_sendrecv_cmd);
854}
855
856