paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | /* |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2 | * Copyright (C) 2003 Yasuhiro Ohara |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3 | * |
| 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 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 22 | #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 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 32 | #include "ospf6_proto.h" |
| 33 | #include "ospf6_top.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 34 | #include "ospf6_interface.h" |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 35 | #include "ospf6_route.h" |
| 36 | #include "ospf6_lsa.h" |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 37 | #include "ospf6_lsdb.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 38 | #include "ospf6_asbr.h" |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 39 | #include "ospf6_zebra.h" |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 40 | #include "ospf6d.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 41 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 42 | unsigned char conf_debug_ospf6_zebra = 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 43 | |
| 44 | /* information about zebra. */ |
| 45 | struct zclient *zclient = NULL; |
| 46 | |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 47 | struct in_addr router_id_zebra; |
| 48 | |
| 49 | /* Router-id update message from zebra. */ |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 50 | static int |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 51 | ospf6_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 | |
jardin | c1ba9e8 | 2005-03-02 22:43:26 +0000 | [diff] [blame] | 60 | if (o == NULL) |
| 61 | return 0; |
| 62 | |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 63 | if (o->router_id == 0) |
| 64 | o->router_id = (u_int32_t) router_id_zebra.s_addr; |
| 65 | |
| 66 | return 0; |
| 67 | } |
| 68 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 69 | /* redistribute function */ |
| 70 | void |
| 71 | ospf6_zebra_redistribute (int type) |
| 72 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 73 | if (zclient->redist[type]) |
| 74 | return; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 75 | zclient->redist[type] = 1; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 76 | if (zclient->sock > 0) |
ajs | 634f9ea | 2005-04-11 15:51:40 +0000 | [diff] [blame] | 77 | zebra_redistribute_send (ZEBRA_REDISTRIBUTE_ADD, zclient, type); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 78 | } |
| 79 | |
| 80 | void |
| 81 | ospf6_zebra_no_redistribute (int type) |
| 82 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 83 | if (! zclient->redist[type]) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 84 | return; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 85 | zclient->redist[type] = 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 86 | if (zclient->sock > 0) |
ajs | 634f9ea | 2005-04-11 15:51:40 +0000 | [diff] [blame] | 87 | zebra_redistribute_send (ZEBRA_REDISTRIBUTE_DELETE, zclient, type); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 88 | } |
| 89 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 90 | /* Inteface addition message from zebra. */ |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 91 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 92 | ospf6_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); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 97 | if (IS_OSPF6_DEBUG_ZEBRA (RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 98 | zlog_debug ("Zebra Interface add: %s index %d mtu %d", |
| 99 | ifp->name, ifp->ifindex, ifp->mtu6); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 100 | ospf6_interface_if_add (ifp); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 101 | return 0; |
| 102 | } |
| 103 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 104 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 105 | ospf6_zebra_if_del (int command, struct zclient *zclient, zebra_size_t length) |
| 106 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 107 | struct interface *ifp; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 108 | |
ajs | d2fc889 | 2005-04-02 18:38:43 +0000 | [diff] [blame] | 109 | 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 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 115 | if (IS_OSPF6_DEBUG_ZEBRA (RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 116 | zlog_debug ("Zebra Interface delete: %s index %d mtu %d", |
| 117 | ifp->name, ifp->ifindex, ifp->mtu6); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 118 | |
ajs | d2fc889 | 2005-04-02 18:38:43 +0000 | [diff] [blame] | 119 | #if 0 |
| 120 | /* Why is this commented out? */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 121 | ospf6_interface_if_del (ifp); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 122 | #endif /*0*/ |
ajs | d2fc889 | 2005-04-02 18:38:43 +0000 | [diff] [blame] | 123 | |
| 124 | ifp->ifindex = IFINDEX_INTERNAL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 125 | return 0; |
| 126 | } |
| 127 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 128 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 129 | ospf6_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); |
Ingo Flaschberger | 57c4f4f | 2011-04-04 11:17:45 +0100 | [diff] [blame] | 135 | if (ifp == NULL) |
| 136 | return 0; |
| 137 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 138 | if (IS_OSPF6_DEBUG_ZEBRA (RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 139 | zlog_debug ("Zebra Interface state change: " |
Stephen Hemminger | 30d2059 | 2009-07-28 11:58:51 +0100 | [diff] [blame] | 140 | "%s index %d flags %llx metric %d mtu %d", |
| 141 | ifp->name, ifp->ifindex, (unsigned long long)ifp->flags, |
| 142 | ifp->metric, ifp->mtu6); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 143 | |
| 144 | ospf6_interface_state_update (ifp); |
| 145 | return 0; |
| 146 | } |
| 147 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 148 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 149 | ospf6_zebra_if_address_update_add (int command, struct zclient *zclient, |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 150 | zebra_size_t length) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 151 | { |
| 152 | struct connected *c; |
| 153 | char buf[128]; |
| 154 | |
paul | 0a58935 | 2004-05-08 11:48:26 +0000 | [diff] [blame] | 155 | c = zebra_interface_address_read (ZEBRA_INTERFACE_ADDRESS_ADD, zclient->ibuf); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 156 | if (c == NULL) |
| 157 | return 0; |
| 158 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 159 | if (IS_OSPF6_DEBUG_ZEBRA (RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 160 | 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); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 164 | |
| 165 | if (c->address->family == AF_INET6) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 166 | ospf6_interface_connected_route_update (c->ifp); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 167 | |
| 168 | return 0; |
| 169 | } |
| 170 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 171 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 172 | ospf6_zebra_if_address_update_delete (int command, struct zclient *zclient, |
| 173 | zebra_size_t length) |
| 174 | { |
| 175 | struct connected *c; |
| 176 | char buf[128]; |
| 177 | |
paul | 0a58935 | 2004-05-08 11:48:26 +0000 | [diff] [blame] | 178 | c = zebra_interface_address_read (ZEBRA_INTERFACE_ADDRESS_DELETE, zclient->ibuf); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 179 | if (c == NULL) |
| 180 | return 0; |
| 181 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 182 | if (IS_OSPF6_DEBUG_ZEBRA (RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 183 | zlog_debug ("Zebra Interface address delete: %s %5s %s/%d", |
| 184 | c->ifp->name, prefix_family_str (c->address), |
| 185 | inet_ntop (c->address->family, &c->address->u.prefix, |
| 186 | buf, sizeof (buf)), c->address->prefixlen); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 187 | |
| 188 | if (c->address->family == AF_INET6) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 189 | ospf6_interface_connected_route_update (c->ifp); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 190 | |
| 191 | return 0; |
| 192 | } |
| 193 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 194 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 195 | ospf6_zebra_read_ipv6 (int command, struct zclient *zclient, |
| 196 | zebra_size_t length) |
| 197 | { |
| 198 | struct stream *s; |
| 199 | struct zapi_ipv6 api; |
| 200 | unsigned long ifindex; |
| 201 | struct prefix_ipv6 p; |
| 202 | struct in6_addr *nexthop; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 203 | |
| 204 | s = zclient->ibuf; |
| 205 | ifindex = 0; |
| 206 | nexthop = NULL; |
| 207 | memset (&api, 0, sizeof (api)); |
| 208 | |
| 209 | /* Type, flags, message. */ |
| 210 | api.type = stream_getc (s); |
| 211 | api.flags = stream_getc (s); |
| 212 | api.message = stream_getc (s); |
| 213 | |
| 214 | /* IPv6 prefix. */ |
| 215 | memset (&p, 0, sizeof (struct prefix_ipv6)); |
| 216 | p.family = AF_INET6; |
| 217 | p.prefixlen = stream_getc (s); |
| 218 | stream_get (&p.prefix, s, PSIZE (p.prefixlen)); |
| 219 | |
| 220 | /* Nexthop, ifindex, distance, metric. */ |
| 221 | if (CHECK_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP)) |
| 222 | { |
| 223 | api.nexthop_num = stream_getc (s); |
| 224 | nexthop = (struct in6_addr *) |
| 225 | malloc (api.nexthop_num * sizeof (struct in6_addr)); |
| 226 | stream_get (nexthop, s, api.nexthop_num * sizeof (struct in6_addr)); |
| 227 | } |
| 228 | if (CHECK_FLAG (api.message, ZAPI_MESSAGE_IFINDEX)) |
| 229 | { |
| 230 | api.ifindex_num = stream_getc (s); |
| 231 | ifindex = stream_getl (s); |
| 232 | } |
| 233 | if (CHECK_FLAG (api.message, ZAPI_MESSAGE_DISTANCE)) |
| 234 | api.distance = stream_getc (s); |
| 235 | else |
| 236 | api.distance = 0; |
| 237 | if (CHECK_FLAG (api.message, ZAPI_MESSAGE_METRIC)) |
| 238 | api.metric = stream_getl (s); |
| 239 | else |
| 240 | api.metric = 0; |
| 241 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 242 | if (IS_OSPF6_DEBUG_ZEBRA (RECV)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 243 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 244 | char prefixstr[128], nexthopstr[128]; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 245 | prefix2str ((struct prefix *)&p, prefixstr, sizeof (prefixstr)); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 246 | if (nexthop) |
| 247 | inet_ntop (AF_INET6, nexthop, nexthopstr, sizeof (nexthopstr)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 248 | else |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 249 | snprintf (nexthopstr, sizeof (nexthopstr), "::"); |
| 250 | |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 251 | zlog_debug ("Zebra Receive route %s: %s %s nexthop %s ifindex %ld", |
| 252 | (command == ZEBRA_IPV6_ROUTE_ADD ? "add" : "delete"), |
ajs | f52d13c | 2005-10-01 17:38:06 +0000 | [diff] [blame] | 253 | zebra_route_string(api.type), prefixstr, nexthopstr, ifindex); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 254 | } |
| 255 | |
| 256 | if (command == ZEBRA_IPV6_ROUTE_ADD) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 257 | ospf6_asbr_redistribute_add (api.type, ifindex, (struct prefix *) &p, |
| 258 | api.nexthop_num, nexthop); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 259 | else |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 260 | ospf6_asbr_redistribute_remove (api.type, ifindex, (struct prefix *) &p); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 261 | |
| 262 | if (CHECK_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP)) |
| 263 | free (nexthop); |
| 264 | |
| 265 | return 0; |
| 266 | } |
| 267 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 268 | |
| 269 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 270 | |
| 271 | DEFUN (show_zebra, |
| 272 | show_zebra_cmd, |
| 273 | "show zebra", |
| 274 | SHOW_STR |
| 275 | "Zebra information\n") |
| 276 | { |
| 277 | int i; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 278 | if (zclient == NULL) |
| 279 | { |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 280 | vty_out (vty, "Not connected to zebra%s", VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 281 | return CMD_SUCCESS; |
| 282 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 283 | |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 284 | vty_out (vty, "Zebra Infomation%s", VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 285 | vty_out (vty, " enable: %d fail: %d%s", |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 286 | zclient->enable, zclient->fail, VNL); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 287 | vty_out (vty, " redistribute default: %d%s", zclient->redist_default, |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 288 | VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 289 | vty_out (vty, " redistribute:"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 290 | for (i = 0; i < ZEBRA_ROUTE_MAX; i++) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 291 | { |
| 292 | if (zclient->redist[i]) |
ajs | f52d13c | 2005-10-01 17:38:06 +0000 | [diff] [blame] | 293 | vty_out (vty, " %s", zebra_route_string(i)); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 294 | } |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 295 | vty_out (vty, "%s", VNL); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 296 | return CMD_SUCCESS; |
| 297 | } |
| 298 | |
| 299 | DEFUN (router_zebra, |
| 300 | router_zebra_cmd, |
| 301 | "router zebra", |
| 302 | "Enable a routing process\n" |
| 303 | "Make connection to zebra daemon\n") |
| 304 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 305 | vty->node = ZEBRA_NODE; |
| 306 | zclient->enable = 1; |
| 307 | zclient_start (zclient); |
| 308 | return CMD_SUCCESS; |
| 309 | } |
| 310 | |
| 311 | DEFUN (no_router_zebra, |
| 312 | no_router_zebra_cmd, |
| 313 | "no router zebra", |
| 314 | NO_STR |
| 315 | "Configure routing process\n" |
| 316 | "Disable connection to zebra daemon\n") |
| 317 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 318 | zclient->enable = 0; |
| 319 | zclient_stop (zclient); |
| 320 | return CMD_SUCCESS; |
| 321 | } |
| 322 | |
| 323 | /* Zebra configuration write function. */ |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 324 | static int |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 325 | config_write_ospf6_zebra (struct vty *vty) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 326 | { |
| 327 | if (! zclient->enable) |
| 328 | { |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 329 | vty_out (vty, "no router zebra%s", VNL); |
| 330 | vty_out (vty, "!%s", VNL); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 331 | } |
| 332 | else if (! zclient->redist[ZEBRA_ROUTE_OSPF6]) |
| 333 | { |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 334 | vty_out (vty, "router zebra%s", VNL); |
| 335 | vty_out (vty, " no redistribute ospf6%s", VNL); |
| 336 | vty_out (vty, "!%s", VNL); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 337 | } |
| 338 | return 0; |
| 339 | } |
| 340 | |
| 341 | /* Zebra node structure. */ |
Stephen Hemminger | 7fc626d | 2008-12-01 11:10:34 -0800 | [diff] [blame] | 342 | static struct cmd_node zebra_node = |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 343 | { |
| 344 | ZEBRA_NODE, |
| 345 | "%s(config-zebra)# ", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 346 | }; |
| 347 | |
| 348 | #define ADD 0 |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 349 | #define REM 1 |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 350 | static void |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 351 | ospf6_zebra_route_update (int type, struct ospf6_route *request) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 352 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 353 | struct zapi_ipv6 api; |
ajs | d2fc889 | 2005-04-02 18:38:43 +0000 | [diff] [blame] | 354 | char buf[64]; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 355 | int nhcount; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 356 | struct in6_addr **nexthops; |
| 357 | unsigned int *ifindexes; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 358 | int i, ret = 0; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 359 | struct prefix_ipv6 *dest; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 360 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 361 | if (IS_OSPF6_DEBUG_ZEBRA (SEND)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 362 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 363 | prefix2str (&request->prefix, buf, sizeof (buf)); |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 364 | zlog_debug ("Send %s route: %s", |
| 365 | (type == REM ? "remove" : "add"), buf); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 366 | } |
| 367 | |
| 368 | if (zclient->sock < 0) |
| 369 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 370 | if (IS_OSPF6_DEBUG_ZEBRA (SEND)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 371 | zlog_debug (" Not connected to Zebra"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 372 | return; |
| 373 | } |
| 374 | |
| 375 | if (request->path.origin.adv_router == ospf6->router_id && |
| 376 | (request->path.type == OSPF6_PATH_TYPE_EXTERNAL1 || |
| 377 | request->path.type == OSPF6_PATH_TYPE_EXTERNAL2)) |
| 378 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 379 | if (IS_OSPF6_DEBUG_ZEBRA (SEND)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 380 | zlog_debug (" Ignore self-originated external route"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 381 | return; |
| 382 | } |
| 383 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 384 | /* If removing is the best path and if there's another path, |
| 385 | treat this request as add the secondary path */ |
| 386 | if (type == REM && ospf6_route_is_best (request) && |
| 387 | request->next && ospf6_route_is_same (request, request->next)) |
| 388 | { |
| 389 | if (IS_OSPF6_DEBUG_ZEBRA (SEND)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 390 | zlog_debug (" Best-path removal resulted Sencondary addition"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 391 | type = ADD; |
| 392 | request = request->next; |
| 393 | } |
| 394 | |
| 395 | /* Only the best path will be sent to zebra. */ |
| 396 | if (! ospf6_route_is_best (request)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 397 | { |
| 398 | /* this is not preferred best route, ignore */ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 399 | if (IS_OSPF6_DEBUG_ZEBRA (SEND)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 400 | zlog_debug (" Ignore non-best route"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 401 | return; |
| 402 | } |
| 403 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 404 | nhcount = 0; |
| 405 | for (i = 0; i < OSPF6_MULTI_PATH_LIMIT; i++) |
| 406 | if (ospf6_nexthop_is_set (&request->nexthop[i])) |
| 407 | nhcount++; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 408 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 409 | if (nhcount == 0) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 410 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 411 | if (IS_OSPF6_DEBUG_ZEBRA (SEND)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 412 | zlog_debug (" No nexthop, ignore"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 413 | return; |
| 414 | } |
| 415 | |
| 416 | /* allocate memory for nexthop_list */ |
| 417 | nexthops = XCALLOC (MTYPE_OSPF6_OTHER, |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 418 | nhcount * sizeof (struct in6_addr *)); |
| 419 | if (nexthops == NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 420 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 421 | zlog_warn ("Can't send route to zebra: malloc failed"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 422 | return; |
| 423 | } |
| 424 | |
| 425 | /* allocate memory for ifindex_list */ |
| 426 | ifindexes = XCALLOC (MTYPE_OSPF6_OTHER, |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 427 | nhcount * sizeof (unsigned int)); |
| 428 | if (ifindexes == NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 429 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 430 | zlog_warn ("Can't send route to zebra: malloc failed"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 431 | XFREE (MTYPE_OSPF6_OTHER, nexthops); |
| 432 | return; |
| 433 | } |
| 434 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 435 | for (i = 0; i < nhcount; i++) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 436 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 437 | if (IS_OSPF6_DEBUG_ZEBRA (SEND)) |
ajs | d2fc889 | 2005-04-02 18:38:43 +0000 | [diff] [blame] | 438 | { |
| 439 | char ifname[IFNAMSIZ]; |
| 440 | inet_ntop (AF_INET6, &request->nexthop[i].address, |
| 441 | buf, sizeof (buf)); |
| 442 | if (!if_indextoname(request->nexthop[i].ifindex, ifname)) |
| 443 | strlcpy(ifname, "unknown", sizeof(ifname)); |
| 444 | zlog_debug (" nexthop: %s%%%.*s(%d)", buf, IFNAMSIZ, ifname, |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 445 | request->nexthop[i].ifindex); |
ajs | d2fc889 | 2005-04-02 18:38:43 +0000 | [diff] [blame] | 446 | } |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 447 | nexthops[i] = &request->nexthop[i].address; |
| 448 | ifindexes[i] = request->nexthop[i].ifindex; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 449 | } |
| 450 | |
| 451 | api.type = ZEBRA_ROUTE_OSPF6; |
| 452 | api.flags = 0; |
| 453 | api.message = 0; |
Denis Ovsienko | b4e45f6 | 2011-12-05 16:35:14 +0400 | [diff] [blame] | 454 | api.safi = SAFI_UNICAST; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 455 | SET_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 456 | api.nexthop_num = nhcount; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 457 | api.nexthop = nexthops; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 458 | SET_FLAG (api.message, ZAPI_MESSAGE_IFINDEX); |
| 459 | api.ifindex_num = nhcount; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 460 | api.ifindex = ifindexes; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 461 | SET_FLAG (api.message, ZAPI_MESSAGE_METRIC); |
| 462 | api.metric = (request->path.metric_type == 2 ? |
| 463 | request->path.cost_e2 : request->path.cost); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 464 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 465 | dest = (struct prefix_ipv6 *) &request->prefix; |
| 466 | if (type == REM) |
| 467 | ret = zapi_ipv6_route (ZEBRA_IPV6_ROUTE_DELETE, zclient, dest, &api); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 468 | else |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 469 | ret = zapi_ipv6_route (ZEBRA_IPV6_ROUTE_ADD, zclient, dest, &api); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 470 | |
| 471 | if (ret < 0) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 472 | zlog_err ("zapi_ipv6_route() %s failed: %s", |
ajs | 6099b3b | 2004-11-20 02:06:59 +0000 | [diff] [blame] | 473 | (type == REM ? "delete" : "add"), safe_strerror (errno)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 474 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 475 | XFREE (MTYPE_OSPF6_OTHER, nexthops); |
| 476 | XFREE (MTYPE_OSPF6_OTHER, ifindexes); |
| 477 | |
| 478 | return; |
| 479 | } |
| 480 | |
| 481 | void |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 482 | ospf6_zebra_route_update_add (struct ospf6_route *request) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 483 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 484 | if (! zclient->redist[ZEBRA_ROUTE_OSPF6]) |
| 485 | { |
| 486 | ospf6->route_table->hook_add = NULL; |
| 487 | ospf6->route_table->hook_remove = NULL; |
| 488 | return; |
| 489 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 490 | ospf6_zebra_route_update (ADD, request); |
| 491 | } |
| 492 | |
| 493 | void |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 494 | ospf6_zebra_route_update_remove (struct ospf6_route *request) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 495 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 496 | if (! zclient->redist[ZEBRA_ROUTE_OSPF6]) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 497 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 498 | ospf6->route_table->hook_add = NULL; |
| 499 | ospf6->route_table->hook_remove = NULL; |
| 500 | return; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 501 | } |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 502 | ospf6_zebra_route_update (REM, request); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 503 | } |
| 504 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 505 | DEFUN (redistribute_ospf6, |
| 506 | redistribute_ospf6_cmd, |
| 507 | "redistribute ospf6", |
| 508 | "Redistribute control\n" |
| 509 | "OSPF6 route\n") |
| 510 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 511 | struct ospf6_route *route; |
| 512 | |
| 513 | if (zclient->redist[ZEBRA_ROUTE_OSPF6]) |
| 514 | return CMD_SUCCESS; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 515 | |
| 516 | zclient->redist[ZEBRA_ROUTE_OSPF6] = 1; |
| 517 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 518 | if (ospf6 == NULL) |
| 519 | return CMD_SUCCESS; |
| 520 | |
| 521 | /* send ospf6 route to zebra route table */ |
| 522 | for (route = ospf6_route_head (ospf6->route_table); route; |
| 523 | route = ospf6_route_next (route)) |
| 524 | ospf6_zebra_route_update_add (route); |
| 525 | |
| 526 | ospf6->route_table->hook_add = ospf6_zebra_route_update_add; |
| 527 | ospf6->route_table->hook_remove = ospf6_zebra_route_update_remove; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 528 | |
| 529 | return CMD_SUCCESS; |
| 530 | } |
| 531 | |
| 532 | DEFUN (no_redistribute_ospf6, |
| 533 | no_redistribute_ospf6_cmd, |
| 534 | "no redistribute ospf6", |
| 535 | NO_STR |
| 536 | "Redistribute control\n" |
| 537 | "OSPF6 route\n") |
| 538 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 539 | struct ospf6_route *route; |
| 540 | |
| 541 | if (! zclient->redist[ZEBRA_ROUTE_OSPF6]) |
| 542 | return CMD_SUCCESS; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 543 | |
| 544 | zclient->redist[ZEBRA_ROUTE_OSPF6] = 0; |
| 545 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 546 | if (ospf6 == NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 547 | return CMD_SUCCESS; |
| 548 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 549 | ospf6->route_table->hook_add = NULL; |
| 550 | ospf6->route_table->hook_remove = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 551 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 552 | /* withdraw ospf6 route from zebra route table */ |
| 553 | for (route = ospf6_route_head (ospf6->route_table); route; |
| 554 | route = ospf6_route_next (route)) |
| 555 | ospf6_zebra_route_update_remove (route); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 556 | |
| 557 | return CMD_SUCCESS; |
| 558 | } |
| 559 | |
| 560 | void |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 561 | ospf6_zebra_init (void) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 562 | { |
| 563 | /* Allocate zebra structure. */ |
| 564 | zclient = zclient_new (); |
| 565 | zclient_init (zclient, ZEBRA_ROUTE_OSPF6); |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 566 | zclient->router_id_update = ospf6_router_id_update_zebra; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 567 | zclient->interface_add = ospf6_zebra_if_add; |
| 568 | zclient->interface_delete = ospf6_zebra_if_del; |
| 569 | zclient->interface_up = ospf6_zebra_if_state_update; |
| 570 | zclient->interface_down = ospf6_zebra_if_state_update; |
| 571 | zclient->interface_address_add = ospf6_zebra_if_address_update_add; |
| 572 | zclient->interface_address_delete = ospf6_zebra_if_address_update_delete; |
| 573 | zclient->ipv4_route_add = NULL; |
| 574 | zclient->ipv4_route_delete = NULL; |
| 575 | zclient->ipv6_route_add = ospf6_zebra_read_ipv6; |
| 576 | zclient->ipv6_route_delete = ospf6_zebra_read_ipv6; |
| 577 | |
| 578 | /* redistribute connected route by default */ |
| 579 | /* ospf6_zebra_redistribute (ZEBRA_ROUTE_CONNECT); */ |
| 580 | |
| 581 | /* Install zebra node. */ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 582 | install_node (&zebra_node, config_write_ospf6_zebra); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 583 | |
| 584 | /* Install command element for zebra node. */ |
| 585 | install_element (VIEW_NODE, &show_zebra_cmd); |
| 586 | install_element (ENABLE_NODE, &show_zebra_cmd); |
| 587 | install_element (CONFIG_NODE, &router_zebra_cmd); |
| 588 | install_element (CONFIG_NODE, &no_router_zebra_cmd); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 589 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 590 | install_default (ZEBRA_NODE); |
| 591 | install_element (ZEBRA_NODE, &redistribute_ospf6_cmd); |
| 592 | install_element (ZEBRA_NODE, &no_redistribute_ospf6_cmd); |
| 593 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 594 | return; |
| 595 | } |
| 596 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 597 | /* Debug */ |
| 598 | |
| 599 | DEFUN (debug_ospf6_zebra_sendrecv, |
| 600 | debug_ospf6_zebra_sendrecv_cmd, |
| 601 | "debug ospf6 zebra (send|recv)", |
| 602 | DEBUG_STR |
| 603 | OSPF6_STR |
| 604 | "Debug connection between zebra\n" |
| 605 | "Debug Sending zebra\n" |
| 606 | "Debug Receiving zebra\n" |
| 607 | ) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 608 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 609 | unsigned char level = 0; |
| 610 | |
| 611 | if (argc) |
| 612 | { |
| 613 | if (! strncmp (argv[0], "s", 1)) |
| 614 | level = OSPF6_DEBUG_ZEBRA_SEND; |
| 615 | else if (! strncmp (argv[0], "r", 1)) |
| 616 | level = OSPF6_DEBUG_ZEBRA_RECV; |
| 617 | } |
| 618 | else |
| 619 | level = OSPF6_DEBUG_ZEBRA_SEND | OSPF6_DEBUG_ZEBRA_RECV; |
| 620 | |
| 621 | OSPF6_DEBUG_ZEBRA_ON (level); |
| 622 | return CMD_SUCCESS; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 623 | } |
| 624 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 625 | ALIAS (debug_ospf6_zebra_sendrecv, |
| 626 | debug_ospf6_zebra_cmd, |
| 627 | "debug ospf6 zebra", |
| 628 | DEBUG_STR |
| 629 | OSPF6_STR |
| 630 | "Debug connection between zebra\n" |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 631 | ) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 632 | |
| 633 | |
| 634 | DEFUN (no_debug_ospf6_zebra_sendrecv, |
| 635 | no_debug_ospf6_zebra_sendrecv_cmd, |
| 636 | "no debug ospf6 zebra (send|recv)", |
| 637 | NO_STR |
| 638 | DEBUG_STR |
| 639 | OSPF6_STR |
| 640 | "Debug connection between zebra\n" |
| 641 | "Debug Sending zebra\n" |
| 642 | "Debug Receiving zebra\n" |
| 643 | ) |
| 644 | { |
| 645 | unsigned char level = 0; |
| 646 | |
| 647 | if (argc) |
| 648 | { |
| 649 | if (! strncmp (argv[0], "s", 1)) |
| 650 | level = OSPF6_DEBUG_ZEBRA_SEND; |
| 651 | else if (! strncmp (argv[0], "r", 1)) |
| 652 | level = OSPF6_DEBUG_ZEBRA_RECV; |
| 653 | } |
| 654 | else |
| 655 | level = OSPF6_DEBUG_ZEBRA_SEND | OSPF6_DEBUG_ZEBRA_RECV; |
| 656 | |
| 657 | OSPF6_DEBUG_ZEBRA_OFF (level); |
| 658 | return CMD_SUCCESS; |
| 659 | } |
| 660 | |
| 661 | ALIAS (no_debug_ospf6_zebra_sendrecv, |
| 662 | no_debug_ospf6_zebra_cmd, |
| 663 | "no debug ospf6 zebra", |
| 664 | NO_STR |
| 665 | DEBUG_STR |
| 666 | OSPF6_STR |
| 667 | "Debug connection between zebra\n" |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 668 | ) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 669 | |
| 670 | int |
| 671 | config_write_ospf6_debug_zebra (struct vty *vty) |
| 672 | { |
| 673 | if (IS_OSPF6_DEBUG_ZEBRA (SEND) && IS_OSPF6_DEBUG_ZEBRA (RECV)) |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 674 | vty_out (vty, "debug ospf6 zebra%s", VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 675 | else |
| 676 | { |
| 677 | if (IS_OSPF6_DEBUG_ZEBRA (SEND)) |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 678 | vty_out (vty, "debug ospf6 zebra send%s", VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 679 | if (IS_OSPF6_DEBUG_ZEBRA (RECV)) |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 680 | vty_out (vty, "debug ospf6 zebra recv%s", VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 681 | } |
| 682 | return 0; |
| 683 | } |
| 684 | |
| 685 | void |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 686 | install_element_ospf6_debug_zebra (void) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 687 | { |
| 688 | install_element (ENABLE_NODE, &debug_ospf6_zebra_cmd); |
| 689 | install_element (ENABLE_NODE, &no_debug_ospf6_zebra_cmd); |
| 690 | install_element (ENABLE_NODE, &debug_ospf6_zebra_sendrecv_cmd); |
| 691 | install_element (ENABLE_NODE, &no_debug_ospf6_zebra_sendrecv_cmd); |
| 692 | install_element (CONFIG_NODE, &debug_ospf6_zebra_cmd); |
| 693 | install_element (CONFIG_NODE, &no_debug_ospf6_zebra_cmd); |
| 694 | install_element (CONFIG_NODE, &debug_ospf6_zebra_sendrecv_cmd); |
| 695 | install_element (CONFIG_NODE, &no_debug_ospf6_zebra_sendrecv_cmd); |
| 696 | } |
| 697 | |
| 698 | |