paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | /* |
| 2 | * RIPngd and zebra interface. |
| 3 | * Copyright (C) 1998, 1999 Kunihiro Ishiguro |
| 4 | * |
| 5 | * This file is part of GNU Zebra. |
| 6 | * |
| 7 | * GNU Zebra is free software; you can redistribute it and/or modify it |
| 8 | * under the terms of the GNU General Public License as published by the |
| 9 | * Free Software Foundation; either version 2, or (at your option) any |
| 10 | * later version. |
| 11 | * |
| 12 | * GNU Zebra is distributed in the hope that it will be useful, but |
| 13 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with GNU Zebra; see the file COPYING. If not, write to the Free |
| 19 | * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
| 20 | * 02111-1307, USA. |
| 21 | */ |
| 22 | |
| 23 | #include <zebra.h> |
| 24 | |
| 25 | #include "command.h" |
| 26 | #include "prefix.h" |
Feng Lu | e97c31a | 2015-05-22 11:39:53 +0200 | [diff] [blame] | 27 | #include "table.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 28 | #include "stream.h" |
Feng Lu | e97c31a | 2015-05-22 11:39:53 +0200 | [diff] [blame] | 29 | #include "memory.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 30 | #include "routemap.h" |
| 31 | #include "zclient.h" |
| 32 | #include "log.h" |
| 33 | |
| 34 | #include "ripngd/ripngd.h" |
Feng Lu | e97c31a | 2015-05-22 11:39:53 +0200 | [diff] [blame] | 35 | #include "ripngd/ripng_debug.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 36 | |
| 37 | /* All information about zebra. */ |
| 38 | struct zclient *zclient = NULL; |
| 39 | |
Feng Lu | e97c31a | 2015-05-22 11:39:53 +0200 | [diff] [blame] | 40 | /* Send ECMP routes to zebra. */ |
| 41 | static void |
| 42 | ripng_zebra_ipv6_send (struct route_node *rp, u_char cmd) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 43 | { |
Feng Lu | e97c31a | 2015-05-22 11:39:53 +0200 | [diff] [blame] | 44 | static struct in6_addr **nexthops = NULL; |
Paul Jakma | 9099f9b | 2016-01-18 10:12:10 +0000 | [diff] [blame] | 45 | static ifindex_t *ifindexes = NULL; |
Feng Lu | e97c31a | 2015-05-22 11:39:53 +0200 | [diff] [blame] | 46 | static unsigned int nexthops_len = 0; |
| 47 | |
| 48 | struct list *list = (struct list *)rp->info; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 49 | struct zapi_ipv6 api; |
Feng Lu | e97c31a | 2015-05-22 11:39:53 +0200 | [diff] [blame] | 50 | struct listnode *listnode = NULL; |
| 51 | struct ripng_info *rinfo = NULL; |
| 52 | int count = 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 53 | |
Feng Lu | c99f348 | 2014-10-16 09:52:36 +0800 | [diff] [blame] | 54 | if (vrf_bitmap_check (zclient->redist[ZEBRA_ROUTE_RIPNG], VRF_DEFAULT)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 55 | { |
Feng Lu | c99f348 | 2014-10-16 09:52:36 +0800 | [diff] [blame] | 56 | api.vrf_id = VRF_DEFAULT; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 57 | api.type = ZEBRA_ROUTE_RIPNG; |
| 58 | api.flags = 0; |
| 59 | api.message = 0; |
Denis Ovsienko | b4e45f6 | 2011-12-05 16:35:14 +0400 | [diff] [blame] | 60 | api.safi = SAFI_UNICAST; |
Feng Lu | e97c31a | 2015-05-22 11:39:53 +0200 | [diff] [blame] | 61 | |
| 62 | if (nexthops_len < listcount (list)) |
| 63 | { |
| 64 | nexthops_len = listcount (list); |
| 65 | nexthops = XREALLOC (MTYPE_TMP, nexthops, |
| 66 | nexthops_len * sizeof (struct in6_addr *)); |
| 67 | ifindexes = XREALLOC (MTYPE_TMP, ifindexes, |
| 68 | nexthops_len * sizeof (unsigned int)); |
| 69 | } |
| 70 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 71 | SET_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 72 | SET_FLAG (api.message, ZAPI_MESSAGE_IFINDEX); |
Feng Lu | e97c31a | 2015-05-22 11:39:53 +0200 | [diff] [blame] | 73 | for (ALL_LIST_ELEMENTS_RO (list, listnode, rinfo)) |
| 74 | { |
| 75 | nexthops[count] = &rinfo->nexthop; |
| 76 | ifindexes[count] = rinfo->ifindex; |
| 77 | count++; |
| 78 | if (cmd == ZEBRA_IPV6_ROUTE_ADD) |
| 79 | SET_FLAG (rinfo->flags, RIPNG_RTF_FIB); |
| 80 | else |
| 81 | UNSET_FLAG (rinfo->flags, RIPNG_RTF_FIB); |
| 82 | } |
| 83 | |
| 84 | api.nexthop = nexthops; |
| 85 | api.nexthop_num = count; |
| 86 | api.ifindex = ifindexes; |
| 87 | api.ifindex_num = count; |
| 88 | |
| 89 | rinfo = listgetdata (listhead (list)); |
| 90 | |
hasso | deba355 | 2005-08-27 06:19:39 +0000 | [diff] [blame] | 91 | SET_FLAG (api.message, ZAPI_MESSAGE_METRIC); |
Feng Lu | e97c31a | 2015-05-22 11:39:53 +0200 | [diff] [blame] | 92 | api.metric = rinfo->metric; |
| 93 | |
| 94 | zapi_ipv6_route (cmd, zclient, |
| 95 | (struct prefix_ipv6 *)&rp->p, &api); |
| 96 | |
| 97 | if (IS_RIPNG_DEBUG_ZEBRA) |
Feng Lu | 72855b1 | 2015-05-22 11:39:54 +0200 | [diff] [blame] | 98 | { |
| 99 | if (ripng->ecmp) |
| 100 | zlog_debug ("%s: %s/%d nexthops %d", |
| 101 | (cmd == ZEBRA_IPV6_ROUTE_ADD) ? \ |
| 102 | "Install into zebra" : "Delete from zebra", |
| 103 | inet6_ntoa (rp->p.u.prefix6), rp->p.prefixlen, count); |
| 104 | else |
| 105 | zlog_debug ("%s: %s/%d", |
| 106 | (cmd == ZEBRA_IPV6_ROUTE_ADD) ? \ |
| 107 | "Install into zebra" : "Delete from zebra", |
| 108 | inet6_ntoa (rp->p.u.prefix6), rp->p.prefixlen); |
| 109 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 110 | } |
| 111 | } |
| 112 | |
Feng Lu | e97c31a | 2015-05-22 11:39:53 +0200 | [diff] [blame] | 113 | /* Add/update ECMP routes to zebra. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 114 | void |
Feng Lu | e97c31a | 2015-05-22 11:39:53 +0200 | [diff] [blame] | 115 | ripng_zebra_ipv6_add (struct route_node *rp) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 116 | { |
Feng Lu | e97c31a | 2015-05-22 11:39:53 +0200 | [diff] [blame] | 117 | ripng_zebra_ipv6_send (rp, ZEBRA_IPV6_ROUTE_ADD); |
| 118 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 119 | |
Feng Lu | e97c31a | 2015-05-22 11:39:53 +0200 | [diff] [blame] | 120 | /* Delete ECMP routes from zebra. */ |
| 121 | void |
| 122 | ripng_zebra_ipv6_delete (struct route_node *rp) |
| 123 | { |
| 124 | ripng_zebra_ipv6_send (rp, ZEBRA_IPV6_ROUTE_DELETE); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | /* Zebra route add and delete treatment. */ |
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 | ripng_zebra_read_ipv6 (int command, struct zclient *zclient, |
Feng Lu | c99f348 | 2014-10-16 09:52:36 +0800 | [diff] [blame] | 130 | zebra_size_t length, vrf_id_t vrf_id) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 131 | { |
| 132 | struct stream *s; |
| 133 | struct zapi_ipv6 api; |
| 134 | unsigned long ifindex; |
| 135 | struct in6_addr nexthop; |
| 136 | struct prefix_ipv6 p; |
Donald Sharp | 5e57b5f | 2016-03-11 16:28:34 -0500 | [diff] [blame^] | 137 | unsigned char plength = 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 138 | |
| 139 | s = zclient->ibuf; |
| 140 | ifindex = 0; |
| 141 | memset (&nexthop, 0, sizeof (struct in6_addr)); |
| 142 | |
| 143 | /* Type, flags, message. */ |
| 144 | api.type = stream_getc (s); |
| 145 | api.flags = stream_getc (s); |
| 146 | api.message = stream_getc (s); |
| 147 | |
| 148 | /* IPv6 prefix. */ |
| 149 | memset (&p, 0, sizeof (struct prefix_ipv6)); |
| 150 | p.family = AF_INET6; |
Donald Sharp | 5e57b5f | 2016-03-11 16:28:34 -0500 | [diff] [blame^] | 151 | plength = stream_getc (s); |
| 152 | p.prefixlen = MIN(IPV6_MAX_PREFIXLEN, plength); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 153 | stream_get (&p.prefix, s, PSIZE (p.prefixlen)); |
| 154 | |
| 155 | /* Nexthop, ifindex, distance, metric. */ |
| 156 | if (CHECK_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP)) |
| 157 | { |
| 158 | api.nexthop_num = stream_getc (s); |
| 159 | stream_get (&nexthop, s, 16); |
| 160 | } |
| 161 | if (CHECK_FLAG (api.message, ZAPI_MESSAGE_IFINDEX)) |
| 162 | { |
| 163 | api.ifindex_num = stream_getc (s); |
| 164 | ifindex = stream_getl (s); |
| 165 | } |
| 166 | if (CHECK_FLAG (api.message, ZAPI_MESSAGE_DISTANCE)) |
| 167 | api.distance = stream_getc (s); |
| 168 | else |
| 169 | api.distance = 0; |
| 170 | if (CHECK_FLAG (api.message, ZAPI_MESSAGE_METRIC)) |
| 171 | api.metric = stream_getl (s); |
| 172 | else |
| 173 | api.metric = 0; |
| 174 | |
| 175 | if (command == ZEBRA_IPV6_ROUTE_ADD) |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 176 | ripng_redistribute_add (api.type, RIPNG_ROUTE_REDISTRIBUTE, &p, ifindex, &nexthop); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 177 | else |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 178 | ripng_redistribute_delete (api.type, RIPNG_ROUTE_REDISTRIBUTE, &p, ifindex); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 179 | |
| 180 | return 0; |
| 181 | } |
| 182 | |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 183 | void |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 184 | ripng_zclient_reset (void) |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 185 | { |
| 186 | zclient_reset (zclient); |
| 187 | } |
| 188 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 189 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 190 | ripng_redistribute_unset (int type) |
| 191 | { |
Feng Lu | c99f348 | 2014-10-16 09:52:36 +0800 | [diff] [blame] | 192 | if (! vrf_bitmap_check (zclient->redist[type], VRF_DEFAULT)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 193 | return CMD_SUCCESS; |
| 194 | |
Feng Lu | c99f348 | 2014-10-16 09:52:36 +0800 | [diff] [blame] | 195 | vrf_bitmap_set (zclient->redist[type], VRF_DEFAULT); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 196 | |
| 197 | if (zclient->sock > 0) |
Feng Lu | c99f348 | 2014-10-16 09:52:36 +0800 | [diff] [blame] | 198 | zebra_redistribute_send (ZEBRA_REDISTRIBUTE_DELETE, zclient, type, |
| 199 | VRF_DEFAULT); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 200 | |
| 201 | ripng_redistribute_withdraw (type); |
| 202 | |
| 203 | return CMD_SUCCESS; |
| 204 | } |
| 205 | |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 206 | int |
| 207 | ripng_redistribute_check (int type) |
| 208 | { |
Feng Lu | c99f348 | 2014-10-16 09:52:36 +0800 | [diff] [blame] | 209 | return vrf_bitmap_check (zclient->redist[type], VRF_DEFAULT); |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 210 | } |
| 211 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 212 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 213 | ripng_redistribute_metric_set (int type, int metric) |
| 214 | { |
| 215 | ripng->route_map[type].metric_config = 1; |
| 216 | ripng->route_map[type].metric = metric; |
| 217 | } |
| 218 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 219 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 220 | ripng_redistribute_metric_unset (int type) |
| 221 | { |
| 222 | ripng->route_map[type].metric_config = 0; |
| 223 | ripng->route_map[type].metric = 0; |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 224 | return 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 225 | } |
| 226 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 227 | static void |
hasso | 98b718a | 2004-10-11 12:57:57 +0000 | [diff] [blame] | 228 | ripng_redistribute_routemap_set (int type, const char *name) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 229 | { |
| 230 | if (ripng->route_map[type].name) |
| 231 | free (ripng->route_map[type].name); |
| 232 | |
| 233 | ripng->route_map[type].name = strdup (name); |
| 234 | ripng->route_map[type].map = route_map_lookup_by_name (name); |
| 235 | } |
| 236 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 237 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 238 | ripng_redistribute_routemap_unset (int type) |
| 239 | { |
| 240 | if (ripng->route_map[type].name) |
| 241 | free (ripng->route_map[type].name); |
| 242 | |
| 243 | ripng->route_map[type].name = NULL; |
| 244 | ripng->route_map[type].map = NULL; |
| 245 | } |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 246 | |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 247 | /* Redistribution types */ |
| 248 | static struct { |
| 249 | int type; |
| 250 | int str_min_len; |
hasso | 7a1d583 | 2004-10-08 06:32:23 +0000 | [diff] [blame] | 251 | const char *str; |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 252 | } redist_type[] = { |
| 253 | {ZEBRA_ROUTE_KERNEL, 1, "kernel"}, |
| 254 | {ZEBRA_ROUTE_CONNECT, 1, "connected"}, |
| 255 | {ZEBRA_ROUTE_STATIC, 1, "static"}, |
| 256 | {ZEBRA_ROUTE_OSPF6, 1, "ospf6"}, |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 257 | {ZEBRA_ROUTE_BGP, 2, "bgp"}, |
| 258 | {ZEBRA_ROUTE_BABEL, 2, "babel"}, |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 259 | {0, 0, NULL} |
| 260 | }; |
| 261 | |
| 262 | void |
| 263 | ripng_redistribute_clean () |
| 264 | { |
| 265 | int i; |
| 266 | |
| 267 | for (i = 0; redist_type[i].str; i++) |
| 268 | { |
Feng Lu | c99f348 | 2014-10-16 09:52:36 +0800 | [diff] [blame] | 269 | if (vrf_bitmap_check (zclient->redist[redist_type[i].type], VRF_DEFAULT)) |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 270 | { |
| 271 | if (zclient->sock > 0) |
| 272 | zebra_redistribute_send (ZEBRA_REDISTRIBUTE_DELETE, |
Feng Lu | c99f348 | 2014-10-16 09:52:36 +0800 | [diff] [blame] | 273 | zclient, redist_type[i].type, |
| 274 | VRF_DEFAULT); |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 275 | |
Feng Lu | c99f348 | 2014-10-16 09:52:36 +0800 | [diff] [blame] | 276 | vrf_bitmap_unset (zclient->redist[redist_type[i].type], VRF_DEFAULT); |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 277 | |
| 278 | /* Remove the routes from RIPng table. */ |
| 279 | ripng_redistribute_withdraw (redist_type[i].type); |
| 280 | } |
| 281 | } |
| 282 | } |
| 283 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 284 | DEFUN (router_zebra, |
| 285 | router_zebra_cmd, |
| 286 | "router zebra", |
| 287 | "Enable a routing process\n" |
| 288 | "Make connection to zebra daemon\n") |
| 289 | { |
| 290 | vty->node = ZEBRA_NODE; |
| 291 | zclient->enable = 1; |
| 292 | zclient_start (zclient); |
| 293 | return CMD_SUCCESS; |
| 294 | } |
| 295 | |
| 296 | DEFUN (no_router_zebra, |
| 297 | no_router_zebra_cmd, |
| 298 | "no router zebra", |
| 299 | NO_STR |
| 300 | "Disable a routing process\n" |
| 301 | "Stop connection to zebra daemon\n") |
| 302 | { |
| 303 | zclient->enable = 0; |
| 304 | zclient_stop (zclient); |
| 305 | return CMD_SUCCESS; |
| 306 | } |
| 307 | |
| 308 | DEFUN (ripng_redistribute_ripng, |
| 309 | ripng_redistribute_ripng_cmd, |
| 310 | "redistribute ripng", |
| 311 | "Redistribute information from another routing protocol\n" |
| 312 | "RIPng route\n") |
| 313 | { |
Feng Lu | c99f348 | 2014-10-16 09:52:36 +0800 | [diff] [blame] | 314 | vrf_bitmap_set (zclient->redist[ZEBRA_ROUTE_RIPNG], VRF_DEFAULT); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 315 | return CMD_SUCCESS; |
| 316 | } |
| 317 | |
| 318 | DEFUN (no_ripng_redistribute_ripng, |
| 319 | no_ripng_redistribute_ripng_cmd, |
| 320 | "no redistribute ripng", |
| 321 | NO_STR |
| 322 | "Redistribute information from another routing protocol\n" |
| 323 | "RIPng route\n") |
| 324 | { |
Feng Lu | c99f348 | 2014-10-16 09:52:36 +0800 | [diff] [blame] | 325 | vrf_bitmap_unset (zclient->redist[ZEBRA_ROUTE_RIPNG], VRF_DEFAULT); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 326 | return CMD_SUCCESS; |
| 327 | } |
| 328 | |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 329 | DEFUN (ripng_redistribute_type, |
| 330 | ripng_redistribute_type_cmd, |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 331 | "redistribute " QUAGGA_REDIST_STR_RIPNGD, |
| 332 | "Redistribute\n" |
| 333 | QUAGGA_REDIST_HELP_STR_RIPNGD) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 334 | { |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 335 | int type; |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 336 | |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 337 | type = proto_redistnum(AFI_IP6, argv[0]); |
| 338 | |
| 339 | if (type < 0) |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 340 | { |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 341 | vty_out(vty, "Invalid type %s%s", argv[0], VTY_NEWLINE); |
| 342 | return CMD_WARNING; |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 343 | } |
| 344 | |
Feng Lu | c99f348 | 2014-10-16 09:52:36 +0800 | [diff] [blame] | 345 | zclient_redistribute (ZEBRA_REDISTRIBUTE_ADD, zclient, type, VRF_DEFAULT); |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 346 | return CMD_SUCCESS; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 347 | } |
| 348 | |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 349 | DEFUN (no_ripng_redistribute_type, |
| 350 | no_ripng_redistribute_type_cmd, |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 351 | "no redistribute " QUAGGA_REDIST_STR_RIPNGD, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 352 | NO_STR |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 353 | "Redistribute\n" |
| 354 | QUAGGA_REDIST_HELP_STR_RIPNGD) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 355 | { |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 356 | int type; |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 357 | |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 358 | type = proto_redistnum(AFI_IP6, argv[0]); |
| 359 | |
| 360 | if (type < 0) |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 361 | { |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 362 | vty_out(vty, "Invalid type %s%s", argv[0], VTY_NEWLINE); |
| 363 | return CMD_WARNING; |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 364 | } |
| 365 | |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 366 | ripng_redistribute_metric_unset (type); |
| 367 | ripng_redistribute_routemap_unset (type); |
| 368 | return ripng_redistribute_unset (type); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 369 | } |
| 370 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 371 | |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 372 | DEFUN (ripng_redistribute_type_metric, |
| 373 | ripng_redistribute_type_metric_cmd, |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 374 | "redistribute " QUAGGA_REDIST_STR_RIPNGD " metric <0-16>", |
| 375 | "Redistribute\n" |
| 376 | QUAGGA_REDIST_HELP_STR_RIPNGD |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 377 | "Metric\n" |
| 378 | "Metric value\n") |
| 379 | { |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 380 | int type; |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 381 | int metric; |
| 382 | |
| 383 | metric = atoi (argv[1]); |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 384 | type = proto_redistnum(AFI_IP6, argv[0]); |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 385 | |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 386 | if (type < 0) |
| 387 | { |
| 388 | vty_out(vty, "Invalid type %s%s", argv[0], VTY_NEWLINE); |
| 389 | return CMD_WARNING; |
| 390 | } |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 391 | |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 392 | ripng_redistribute_metric_set (type, metric); |
Feng Lu | c99f348 | 2014-10-16 09:52:36 +0800 | [diff] [blame] | 393 | zclient_redistribute (ZEBRA_REDISTRIBUTE_ADD, zclient, type, VRF_DEFAULT); |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 394 | return CMD_SUCCESS; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 395 | } |
| 396 | |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 397 | ALIAS (no_ripng_redistribute_type, |
| 398 | no_ripng_redistribute_type_metric_cmd, |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 399 | "no redistribute " QUAGGA_REDIST_STR_RIPNGD " metric <0-16>", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 400 | NO_STR |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 401 | "Redistribute\n" |
| 402 | QUAGGA_REDIST_HELP_STR_RIPNGD |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 403 | "Metric\n" |
| 404 | "Metric value\n") |
| 405 | |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 406 | DEFUN (ripng_redistribute_type_routemap, |
| 407 | ripng_redistribute_type_routemap_cmd, |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 408 | "redistribute " QUAGGA_REDIST_STR_RIPNGD " route-map WORD", |
| 409 | "Redistribute\n" |
| 410 | QUAGGA_REDIST_HELP_STR_RIPNGD |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 411 | "Route map reference\n" |
| 412 | "Pointer to route-map entries\n") |
| 413 | { |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 414 | int type; |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 415 | |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 416 | type = proto_redistnum(AFI_IP6, argv[0]); |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 417 | |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 418 | if (type < 0) |
| 419 | { |
| 420 | vty_out(vty, "Invalid type %s%s", argv[0], VTY_NEWLINE); |
| 421 | return CMD_WARNING; |
| 422 | } |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 423 | |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 424 | ripng_redistribute_routemap_set (type, argv[1]); |
Feng Lu | c99f348 | 2014-10-16 09:52:36 +0800 | [diff] [blame] | 425 | zclient_redistribute (ZEBRA_REDISTRIBUTE_ADD, zclient, type, VRF_DEFAULT); |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 426 | return CMD_SUCCESS; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 427 | } |
| 428 | |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 429 | ALIAS (no_ripng_redistribute_type, |
| 430 | no_ripng_redistribute_type_routemap_cmd, |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 431 | "no redistribute " QUAGGA_REDIST_STR_RIPNGD " route-map WORD", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 432 | NO_STR |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 433 | "Redistribute\n" |
| 434 | QUAGGA_REDIST_HELP_STR_RIPNGD |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 435 | "Route map reference\n" |
| 436 | "Pointer to route-map entries\n") |
| 437 | |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 438 | DEFUN (ripng_redistribute_type_metric_routemap, |
| 439 | ripng_redistribute_type_metric_routemap_cmd, |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 440 | "redistribute " QUAGGA_REDIST_STR_RIPNGD " metric <0-16> route-map WORD", |
| 441 | "Redistribute\n" |
| 442 | QUAGGA_REDIST_HELP_STR_RIPNGD |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 443 | "Metric\n" |
| 444 | "Metric value\n" |
| 445 | "Route map reference\n" |
| 446 | "Pointer to route-map entries\n") |
| 447 | { |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 448 | int type; |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 449 | int metric; |
| 450 | |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 451 | type = proto_redistnum(AFI_IP6, argv[0]); |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 452 | metric = atoi (argv[1]); |
| 453 | |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 454 | if (type < 0) |
| 455 | { |
| 456 | vty_out(vty, "Invalid type %s%s", argv[0], VTY_NEWLINE); |
| 457 | return CMD_WARNING; |
| 458 | } |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 459 | |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 460 | ripng_redistribute_metric_set (type, metric); |
| 461 | ripng_redistribute_routemap_set (type, argv[2]); |
Feng Lu | c99f348 | 2014-10-16 09:52:36 +0800 | [diff] [blame] | 462 | zclient_redistribute (ZEBRA_REDISTRIBUTE_ADD, zclient, type, VRF_DEFAULT); |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 463 | return CMD_SUCCESS; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 464 | } |
| 465 | |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 466 | ALIAS (no_ripng_redistribute_type, |
| 467 | no_ripng_redistribute_type_metric_routemap_cmd, |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 468 | "no redistribute " QUAGGA_REDIST_STR_RIPNGD " metric <0-16> route-map WORD", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 469 | NO_STR |
Matthieu Boutier | 93079db | 2012-02-09 20:58:07 +0100 | [diff] [blame] | 470 | "Redistribute\n" |
| 471 | QUAGGA_REDIST_HELP_STR_RIPNGD |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 472 | "Route map reference\n" |
| 473 | "Pointer to route-map entries\n") |
| 474 | |
| 475 | void |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 476 | ripng_redistribute_write (struct vty *vty, int config_mode) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 477 | { |
| 478 | int i; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 479 | |
| 480 | for (i = 0; i < ZEBRA_ROUTE_MAX; i++) |
Feng Lu | c99f348 | 2014-10-16 09:52:36 +0800 | [diff] [blame] | 481 | if (i != zclient->redist_default && |
| 482 | vrf_bitmap_check (zclient->redist[i], VRF_DEFAULT)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 483 | { |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 484 | if (config_mode) |
| 485 | { |
| 486 | if (ripng->route_map[i].metric_config) |
| 487 | { |
| 488 | if (ripng->route_map[i].name) |
| 489 | vty_out (vty, " redistribute %s metric %d route-map %s%s", |
ajs | f52d13c | 2005-10-01 17:38:06 +0000 | [diff] [blame] | 490 | zebra_route_string(i), ripng->route_map[i].metric, |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 491 | ripng->route_map[i].name, VTY_NEWLINE); |
| 492 | else |
| 493 | vty_out (vty, " redistribute %s metric %d%s", |
ajs | f52d13c | 2005-10-01 17:38:06 +0000 | [diff] [blame] | 494 | zebra_route_string(i), ripng->route_map[i].metric, |
| 495 | VTY_NEWLINE); |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 496 | } |
| 497 | else |
| 498 | { |
| 499 | if (ripng->route_map[i].name) |
| 500 | vty_out (vty, " redistribute %s route-map %s%s", |
ajs | f52d13c | 2005-10-01 17:38:06 +0000 | [diff] [blame] | 501 | zebra_route_string(i), ripng->route_map[i].name, |
| 502 | VTY_NEWLINE); |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 503 | else |
ajs | f52d13c | 2005-10-01 17:38:06 +0000 | [diff] [blame] | 504 | vty_out (vty, " redistribute %s%s", zebra_route_string(i), |
| 505 | VTY_NEWLINE); |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 506 | } |
| 507 | } |
| 508 | else |
ajs | f52d13c | 2005-10-01 17:38:06 +0000 | [diff] [blame] | 509 | vty_out (vty, " %s", zebra_route_string(i)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 510 | } |
| 511 | } |
| 512 | |
| 513 | /* RIPng configuration write function. */ |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 514 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 515 | zebra_config_write (struct vty *vty) |
| 516 | { |
| 517 | if (! zclient->enable) |
| 518 | { |
| 519 | vty_out (vty, "no router zebra%s", VTY_NEWLINE); |
| 520 | return 1; |
| 521 | } |
Feng Lu | c99f348 | 2014-10-16 09:52:36 +0800 | [diff] [blame] | 522 | else if (! vrf_bitmap_check (zclient->redist[ZEBRA_ROUTE_RIPNG], VRF_DEFAULT)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 523 | { |
| 524 | vty_out (vty, "router zebra%s", VTY_NEWLINE); |
| 525 | vty_out (vty, " no redistribute ripng%s", VTY_NEWLINE); |
| 526 | return 1; |
| 527 | } |
| 528 | return 0; |
| 529 | } |
| 530 | |
| 531 | /* Zebra node structure. */ |
Stephen Hemminger | 7fc626d | 2008-12-01 11:10:34 -0800 | [diff] [blame] | 532 | static struct cmd_node zebra_node = |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 533 | { |
| 534 | ZEBRA_NODE, |
| 535 | "%s(config-router)# ", |
| 536 | }; |
| 537 | |
Feng Lu | c99f348 | 2014-10-16 09:52:36 +0800 | [diff] [blame] | 538 | static void |
| 539 | ripng_zebra_connected (struct zclient *zclient) |
| 540 | { |
| 541 | zclient_send_requests (zclient, VRF_DEFAULT); |
| 542 | } |
| 543 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 544 | /* Initialize zebra structure and it's commands. */ |
| 545 | void |
Donald Sharp | 7125293 | 2015-09-24 09:25:19 -0400 | [diff] [blame] | 546 | zebra_init (struct thread_master *master) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 547 | { |
| 548 | /* Allocate zebra structure. */ |
Donald Sharp | 7125293 | 2015-09-24 09:25:19 -0400 | [diff] [blame] | 549 | zclient = zclient_new (master); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 550 | zclient_init (zclient, ZEBRA_ROUTE_RIPNG); |
| 551 | |
Feng Lu | c99f348 | 2014-10-16 09:52:36 +0800 | [diff] [blame] | 552 | zclient->zebra_connected = ripng_zebra_connected; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 553 | zclient->interface_up = ripng_interface_up; |
| 554 | zclient->interface_down = ripng_interface_down; |
| 555 | zclient->interface_add = ripng_interface_add; |
| 556 | zclient->interface_delete = ripng_interface_delete; |
| 557 | zclient->interface_address_add = ripng_interface_address_add; |
| 558 | zclient->interface_address_delete = ripng_interface_address_delete; |
| 559 | zclient->ipv6_route_add = ripng_zebra_read_ipv6; |
| 560 | zclient->ipv6_route_delete = ripng_zebra_read_ipv6; |
| 561 | |
| 562 | /* Install zebra node. */ |
| 563 | install_node (&zebra_node, zebra_config_write); |
| 564 | |
| 565 | /* Install command element for zebra node. */ |
| 566 | install_element (CONFIG_NODE, &router_zebra_cmd); |
| 567 | install_element (CONFIG_NODE, &no_router_zebra_cmd); |
| 568 | install_default (ZEBRA_NODE); |
| 569 | install_element (ZEBRA_NODE, &ripng_redistribute_ripng_cmd); |
| 570 | install_element (ZEBRA_NODE, &no_ripng_redistribute_ripng_cmd); |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 571 | |
| 572 | /* Install command elements to ripng node */ |
| 573 | install_element (RIPNG_NODE, &ripng_redistribute_type_cmd); |
| 574 | install_element (RIPNG_NODE, &ripng_redistribute_type_routemap_cmd); |
| 575 | install_element (RIPNG_NODE, &ripng_redistribute_type_metric_cmd); |
| 576 | install_element (RIPNG_NODE, &ripng_redistribute_type_metric_routemap_cmd); |
| 577 | install_element (RIPNG_NODE, &no_ripng_redistribute_type_cmd); |
| 578 | install_element (RIPNG_NODE, &no_ripng_redistribute_type_routemap_cmd); |
| 579 | install_element (RIPNG_NODE, &no_ripng_redistribute_type_metric_cmd); |
| 580 | install_element (RIPNG_NODE, &no_ripng_redistribute_type_metric_routemap_cmd); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 581 | } |