paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | /* Router advertisement |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 2 | * Copyright (C) 2005 6WIND <jean-mickael.guerin@6wind.com> |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3 | * Copyright (C) 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 "memory.h" |
| 26 | #include "sockopt.h" |
| 27 | #include "thread.h" |
| 28 | #include "if.h" |
| 29 | #include "log.h" |
| 30 | #include "prefix.h" |
| 31 | #include "linklist.h" |
| 32 | #include "command.h" |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 33 | #include "privs.h" |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 34 | #include "vrf.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 35 | |
| 36 | #include "zebra/interface.h" |
| 37 | #include "zebra/rtadv.h" |
| 38 | #include "zebra/debug.h" |
paul | 537d8ea | 2003-08-27 06:45:32 +0000 | [diff] [blame] | 39 | #include "zebra/rib.h" |
gdt | 4b5e135 | 2003-12-03 17:54:34 +0000 | [diff] [blame] | 40 | #include "zebra/zserv.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 41 | |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 42 | extern struct zebra_privs_t zserv_privs; |
| 43 | |
Donald Sharp | 6425773 | 2015-11-20 08:33:30 -0500 | [diff] [blame^] | 44 | #if defined (HAVE_IPV6) && defined (HAVE_RTADV) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 45 | |
hasso | fa2b17e | 2004-03-04 17:45:00 +0000 | [diff] [blame] | 46 | #ifdef OPEN_BSD |
| 47 | #include <netinet/icmp6.h> |
| 48 | #endif |
| 49 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 50 | /* If RFC2133 definition is used. */ |
| 51 | #ifndef IPV6_JOIN_GROUP |
| 52 | #define IPV6_JOIN_GROUP IPV6_ADD_MEMBERSHIP |
| 53 | #endif |
| 54 | #ifndef IPV6_LEAVE_GROUP |
| 55 | #define IPV6_LEAVE_GROUP IPV6_DROP_MEMBERSHIP |
| 56 | #endif |
| 57 | |
| 58 | #define ALLNODE "ff02::1" |
| 59 | #define ALLROUTER "ff02::2" |
| 60 | |
paul | b21b19c | 2003-06-15 01:28:29 +0000 | [diff] [blame] | 61 | extern struct zebra_t zebrad; |
| 62 | |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 63 | enum rtadv_event {RTADV_START, RTADV_STOP, RTADV_TIMER, |
| 64 | RTADV_TIMER_MSEC, RTADV_READ}; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 65 | |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 66 | static void rtadv_event (struct zebra_vrf *, enum rtadv_event, int); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 67 | |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 68 | static int if_join_all_router (int, struct interface *); |
| 69 | static int if_leave_all_router (int, struct interface *); |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 70 | |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 71 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 72 | rtadv_recv_packet (int sock, u_char *buf, int buflen, |
| 73 | struct sockaddr_in6 *from, unsigned int *ifindex, |
| 74 | int *hoplimit) |
| 75 | { |
| 76 | int ret; |
| 77 | struct msghdr msg; |
| 78 | struct iovec iov; |
| 79 | struct cmsghdr *cmsgptr; |
| 80 | struct in6_addr dst; |
| 81 | |
| 82 | char adata[1024]; |
| 83 | |
| 84 | /* Fill in message and iovec. */ |
| 85 | msg.msg_name = (void *) from; |
| 86 | msg.msg_namelen = sizeof (struct sockaddr_in6); |
| 87 | msg.msg_iov = &iov; |
| 88 | msg.msg_iovlen = 1; |
| 89 | msg.msg_control = (void *) adata; |
| 90 | msg.msg_controllen = sizeof adata; |
| 91 | iov.iov_base = buf; |
| 92 | iov.iov_len = buflen; |
| 93 | |
| 94 | /* If recvmsg fail return minus value. */ |
| 95 | ret = recvmsg (sock, &msg, 0); |
| 96 | if (ret < 0) |
| 97 | return ret; |
| 98 | |
ajs | b99760a | 2005-01-04 16:24:43 +0000 | [diff] [blame] | 99 | for (cmsgptr = ZCMSG_FIRSTHDR(&msg); cmsgptr != NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 100 | cmsgptr = CMSG_NXTHDR(&msg, cmsgptr)) |
| 101 | { |
| 102 | /* I want interface index which this packet comes from. */ |
| 103 | if (cmsgptr->cmsg_level == IPPROTO_IPV6 && |
| 104 | cmsgptr->cmsg_type == IPV6_PKTINFO) |
| 105 | { |
| 106 | struct in6_pktinfo *ptr; |
| 107 | |
| 108 | ptr = (struct in6_pktinfo *) CMSG_DATA (cmsgptr); |
| 109 | *ifindex = ptr->ipi6_ifindex; |
| 110 | memcpy(&dst, &ptr->ipi6_addr, sizeof(ptr->ipi6_addr)); |
| 111 | } |
| 112 | |
| 113 | /* Incoming packet's hop limit. */ |
| 114 | if (cmsgptr->cmsg_level == IPPROTO_IPV6 && |
| 115 | cmsgptr->cmsg_type == IPV6_HOPLIMIT) |
Stephen Hemminger | b0b709a | 2009-12-08 13:26:14 +0300 | [diff] [blame] | 116 | { |
| 117 | int *hoptr = (int *) CMSG_DATA (cmsgptr); |
| 118 | *hoplimit = *hoptr; |
| 119 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 120 | } |
| 121 | return ret; |
| 122 | } |
| 123 | |
| 124 | #define RTADV_MSG_SIZE 4096 |
| 125 | |
| 126 | /* Send router advertisement packet. */ |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 127 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 128 | rtadv_send_packet (int sock, struct interface *ifp) |
| 129 | { |
| 130 | struct msghdr msg; |
| 131 | struct iovec iov; |
| 132 | struct cmsghdr *cmsgptr; |
| 133 | struct in6_pktinfo *pkt; |
| 134 | struct sockaddr_in6 addr; |
Paul Jakma | 6f0e3f6 | 2007-05-10 02:38:51 +0000 | [diff] [blame] | 135 | #ifdef HAVE_STRUCT_SOCKADDR_DL |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 136 | struct sockaddr_dl *sdl; |
Paul Jakma | 6f0e3f6 | 2007-05-10 02:38:51 +0000 | [diff] [blame] | 137 | #endif /* HAVE_STRUCT_SOCKADDR_DL */ |
gdt | 57492d5 | 2004-08-11 18:06:38 +0000 | [diff] [blame] | 138 | static void *adata = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 139 | unsigned char buf[RTADV_MSG_SIZE]; |
| 140 | struct nd_router_advert *rtadv; |
| 141 | int ret; |
| 142 | int len = 0; |
| 143 | struct zebra_if *zif; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 144 | struct rtadv_prefix *rprefix; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 145 | u_char all_nodes_addr[] = {0xff,0x02,0,0,0,0,0,0,0,0,0,0,0,0,0,1}; |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 146 | struct listnode *node; |
Denis Ovsienko | d660f69 | 2011-12-30 21:55:49 +0400 | [diff] [blame] | 147 | u_int16_t pkt_RouterLifetime; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 148 | |
gdt | 57492d5 | 2004-08-11 18:06:38 +0000 | [diff] [blame] | 149 | /* |
| 150 | * Allocate control message bufffer. This is dynamic because |
| 151 | * CMSG_SPACE is not guaranteed not to call a function. Note that |
| 152 | * the size will be different on different architectures due to |
| 153 | * differing alignment rules. |
| 154 | */ |
| 155 | if (adata == NULL) |
| 156 | { |
| 157 | /* XXX Free on shutdown. */ |
| 158 | adata = malloc(CMSG_SPACE(sizeof(struct in6_pktinfo))); |
| 159 | |
| 160 | if (adata == NULL) |
| 161 | zlog_err("rtadv_send_packet: can't malloc control data\n"); |
| 162 | } |
| 163 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 164 | /* Logging of packet. */ |
| 165 | if (IS_ZEBRA_DEBUG_PACKET) |
ajs | b617800 | 2004-12-07 21:12:56 +0000 | [diff] [blame] | 166 | zlog_debug ("Router advertisement send to %s", ifp->name); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 167 | |
| 168 | /* Fill in sockaddr_in6. */ |
| 169 | memset (&addr, 0, sizeof (struct sockaddr_in6)); |
| 170 | addr.sin6_family = AF_INET6; |
| 171 | #ifdef SIN6_LEN |
| 172 | addr.sin6_len = sizeof (struct sockaddr_in6); |
| 173 | #endif /* SIN6_LEN */ |
| 174 | addr.sin6_port = htons (IPPROTO_ICMPV6); |
Denis Ovsienko | aca43b6 | 2012-01-08 18:27:12 +0400 | [diff] [blame] | 175 | IPV6_ADDR_COPY (&addr.sin6_addr, all_nodes_addr); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 176 | |
| 177 | /* Fetch interface information. */ |
| 178 | zif = ifp->info; |
| 179 | |
| 180 | /* Make router advertisement message. */ |
| 181 | rtadv = (struct nd_router_advert *) buf; |
| 182 | |
| 183 | rtadv->nd_ra_type = ND_ROUTER_ADVERT; |
| 184 | rtadv->nd_ra_code = 0; |
| 185 | rtadv->nd_ra_cksum = 0; |
| 186 | |
| 187 | rtadv->nd_ra_curhoplimit = 64; |
Chris Caputo | b60668d | 2009-05-03 04:40:57 +0000 | [diff] [blame] | 188 | |
| 189 | /* RFC4191: Default Router Preference is 0 if Router Lifetime is 0. */ |
| 190 | rtadv->nd_ra_flags_reserved = |
| 191 | zif->rtadv.AdvDefaultLifetime == 0 ? 0 : zif->rtadv.DefaultPreference; |
| 192 | rtadv->nd_ra_flags_reserved <<= 3; |
| 193 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 194 | if (zif->rtadv.AdvManagedFlag) |
| 195 | rtadv->nd_ra_flags_reserved |= ND_RA_FLAG_MANAGED; |
| 196 | if (zif->rtadv.AdvOtherConfigFlag) |
| 197 | rtadv->nd_ra_flags_reserved |= ND_RA_FLAG_OTHER; |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 198 | if (zif->rtadv.AdvHomeAgentFlag) |
| 199 | rtadv->nd_ra_flags_reserved |= ND_RA_FLAG_HOME_AGENT; |
Denis Ovsienko | d660f69 | 2011-12-30 21:55:49 +0400 | [diff] [blame] | 200 | /* Note that according to Neighbor Discovery (RFC 4861 [18]), |
| 201 | * AdvDefaultLifetime is by default based on the value of |
| 202 | * MaxRtrAdvInterval. AdvDefaultLifetime is used in the Router Lifetime |
| 203 | * field of Router Advertisements. Given that this field is expressed |
| 204 | * in seconds, a small MaxRtrAdvInterval value can result in a zero |
| 205 | * value for this field. To prevent this, routers SHOULD keep |
| 206 | * AdvDefaultLifetime in at least one second, even if the use of |
| 207 | * MaxRtrAdvInterval would result in a smaller value. -- RFC6275, 7.5 */ |
| 208 | pkt_RouterLifetime = zif->rtadv.AdvDefaultLifetime != -1 ? |
| 209 | zif->rtadv.AdvDefaultLifetime : |
| 210 | MAX (1, 0.003 * zif->rtadv.MaxRtrAdvInterval); |
| 211 | rtadv->nd_ra_router_lifetime = htons (pkt_RouterLifetime); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 212 | rtadv->nd_ra_reachable = htonl (zif->rtadv.AdvReachableTime); |
| 213 | rtadv->nd_ra_retransmit = htonl (0); |
| 214 | |
| 215 | len = sizeof (struct nd_router_advert); |
| 216 | |
Denis Ovsienko | d660f69 | 2011-12-30 21:55:49 +0400 | [diff] [blame] | 217 | /* If both the Home Agent Preference and Home Agent Lifetime are set to |
| 218 | * their default values specified above, this option SHOULD NOT be |
| 219 | * included in the Router Advertisement messages sent by this home |
| 220 | * agent. -- RFC6275, 7.4 */ |
| 221 | if |
| 222 | ( |
| 223 | zif->rtadv.AdvHomeAgentFlag && |
| 224 | (zif->rtadv.HomeAgentPreference || zif->rtadv.HomeAgentLifetime != -1) |
| 225 | ) |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 226 | { |
| 227 | struct nd_opt_homeagent_info *ndopt_hai = |
| 228 | (struct nd_opt_homeagent_info *)(buf + len); |
| 229 | ndopt_hai->nd_opt_hai_type = ND_OPT_HA_INFORMATION; |
| 230 | ndopt_hai->nd_opt_hai_len = 1; |
| 231 | ndopt_hai->nd_opt_hai_reserved = 0; |
| 232 | ndopt_hai->nd_opt_hai_preference = htons(zif->rtadv.HomeAgentPreference); |
Denis Ovsienko | d660f69 | 2011-12-30 21:55:49 +0400 | [diff] [blame] | 233 | /* 16-bit unsigned integer. The lifetime associated with the home |
| 234 | * agent in units of seconds. The default value is the same as the |
| 235 | * Router Lifetime, as specified in the main body of the Router |
| 236 | * Advertisement. The maximum value corresponds to 18.2 hours. A |
| 237 | * value of 0 MUST NOT be used. -- RFC6275, 7.5 */ |
| 238 | ndopt_hai->nd_opt_hai_lifetime = htons |
| 239 | ( |
| 240 | zif->rtadv.HomeAgentLifetime != -1 ? |
| 241 | zif->rtadv.HomeAgentLifetime : |
| 242 | MAX (1, pkt_RouterLifetime) /* 0 is OK for RL, but not for HAL*/ |
| 243 | ); |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 244 | len += sizeof(struct nd_opt_homeagent_info); |
| 245 | } |
| 246 | |
| 247 | if (zif->rtadv.AdvIntervalOption) |
| 248 | { |
| 249 | struct nd_opt_adv_interval *ndopt_adv = |
| 250 | (struct nd_opt_adv_interval *)(buf + len); |
| 251 | ndopt_adv->nd_opt_ai_type = ND_OPT_ADV_INTERVAL; |
| 252 | ndopt_adv->nd_opt_ai_len = 1; |
| 253 | ndopt_adv->nd_opt_ai_reserved = 0; |
| 254 | ndopt_adv->nd_opt_ai_interval = htonl(zif->rtadv.MaxRtrAdvInterval); |
| 255 | len += sizeof(struct nd_opt_adv_interval); |
| 256 | } |
| 257 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 258 | /* Fill in prefix. */ |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 259 | for (ALL_LIST_ELEMENTS_RO (zif->rtadv.AdvPrefixList, node, rprefix)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 260 | { |
| 261 | struct nd_opt_prefix_info *pinfo; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 262 | |
| 263 | pinfo = (struct nd_opt_prefix_info *) (buf + len); |
| 264 | |
| 265 | pinfo->nd_opt_pi_type = ND_OPT_PREFIX_INFORMATION; |
| 266 | pinfo->nd_opt_pi_len = 4; |
| 267 | pinfo->nd_opt_pi_prefix_len = rprefix->prefix.prefixlen; |
| 268 | |
| 269 | pinfo->nd_opt_pi_flags_reserved = 0; |
| 270 | if (rprefix->AdvOnLinkFlag) |
| 271 | pinfo->nd_opt_pi_flags_reserved |= ND_OPT_PI_FLAG_ONLINK; |
| 272 | if (rprefix->AdvAutonomousFlag) |
| 273 | pinfo->nd_opt_pi_flags_reserved |= ND_OPT_PI_FLAG_AUTO; |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 274 | if (rprefix->AdvRouterAddressFlag) |
| 275 | pinfo->nd_opt_pi_flags_reserved |= ND_OPT_PI_FLAG_RADDR; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 276 | |
| 277 | pinfo->nd_opt_pi_valid_time = htonl (rprefix->AdvValidLifetime); |
| 278 | pinfo->nd_opt_pi_preferred_time = htonl (rprefix->AdvPreferredLifetime); |
| 279 | pinfo->nd_opt_pi_reserved2 = 0; |
| 280 | |
Denis Ovsienko | aca43b6 | 2012-01-08 18:27:12 +0400 | [diff] [blame] | 281 | IPV6_ADDR_COPY (&pinfo->nd_opt_pi_prefix, &rprefix->prefix.prefix); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 282 | |
| 283 | #ifdef DEBUG |
| 284 | { |
| 285 | u_char buf[INET6_ADDRSTRLEN]; |
| 286 | |
ajs | b617800 | 2004-12-07 21:12:56 +0000 | [diff] [blame] | 287 | zlog_debug ("DEBUG %s", inet_ntop (AF_INET6, &pinfo->nd_opt_pi_prefix, |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 288 | buf, INET6_ADDRSTRLEN)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 289 | |
| 290 | } |
| 291 | #endif /* DEBUG */ |
| 292 | |
| 293 | len += sizeof (struct nd_opt_prefix_info); |
| 294 | } |
| 295 | |
| 296 | /* Hardware address. */ |
Paul Jakma | 6f0e3f6 | 2007-05-10 02:38:51 +0000 | [diff] [blame] | 297 | #ifdef HAVE_STRUCT_SOCKADDR_DL |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 298 | sdl = &ifp->sdl; |
| 299 | if (sdl != NULL && sdl->sdl_alen != 0) |
| 300 | { |
| 301 | buf[len++] = ND_OPT_SOURCE_LINKADDR; |
David Ward | 50adf78 | 2009-08-31 10:42:06 -0400 | [diff] [blame] | 302 | |
| 303 | /* Option length should be rounded up to next octet if |
| 304 | the link address does not end on an octet boundary. */ |
| 305 | buf[len++] = (sdl->sdl_alen + 9) >> 3; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 306 | |
| 307 | memcpy (buf + len, LLADDR (sdl), sdl->sdl_alen); |
| 308 | len += sdl->sdl_alen; |
David Ward | 50adf78 | 2009-08-31 10:42:06 -0400 | [diff] [blame] | 309 | |
| 310 | /* Pad option to end on an octet boundary. */ |
| 311 | memset (buf + len, 0, -(sdl->sdl_alen + 2) & 0x7); |
| 312 | len += -(sdl->sdl_alen + 2) & 0x7; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 313 | } |
| 314 | #else |
| 315 | if (ifp->hw_addr_len != 0) |
| 316 | { |
| 317 | buf[len++] = ND_OPT_SOURCE_LINKADDR; |
David Ward | 50adf78 | 2009-08-31 10:42:06 -0400 | [diff] [blame] | 318 | |
| 319 | /* Option length should be rounded up to next octet if |
| 320 | the link address does not end on an octet boundary. */ |
| 321 | buf[len++] = (ifp->hw_addr_len + 9) >> 3; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 322 | |
| 323 | memcpy (buf + len, ifp->hw_addr, ifp->hw_addr_len); |
| 324 | len += ifp->hw_addr_len; |
David Ward | 50adf78 | 2009-08-31 10:42:06 -0400 | [diff] [blame] | 325 | |
| 326 | /* Pad option to end on an octet boundary. */ |
| 327 | memset (buf + len, 0, -(ifp->hw_addr_len + 2) & 0x7); |
| 328 | len += -(ifp->hw_addr_len + 2) & 0x7; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 329 | } |
Paul Jakma | 6f0e3f6 | 2007-05-10 02:38:51 +0000 | [diff] [blame] | 330 | #endif /* HAVE_STRUCT_SOCKADDR_DL */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 331 | |
Denis Ovsienko | 6ae93c0 | 2011-12-27 10:45:36 +0400 | [diff] [blame] | 332 | /* MTU */ |
| 333 | if (zif->rtadv.AdvLinkMTU) |
| 334 | { |
| 335 | struct nd_opt_mtu * opt = (struct nd_opt_mtu *) (buf + len); |
| 336 | opt->nd_opt_mtu_type = ND_OPT_MTU; |
| 337 | opt->nd_opt_mtu_len = 1; |
| 338 | opt->nd_opt_mtu_reserved = 0; |
| 339 | opt->nd_opt_mtu_mtu = htonl (zif->rtadv.AdvLinkMTU); |
| 340 | len += sizeof (struct nd_opt_mtu); |
| 341 | } |
| 342 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 343 | msg.msg_name = (void *) &addr; |
| 344 | msg.msg_namelen = sizeof (struct sockaddr_in6); |
| 345 | msg.msg_iov = &iov; |
| 346 | msg.msg_iovlen = 1; |
| 347 | msg.msg_control = (void *) adata; |
gdt | f841e02 | 2004-08-11 19:20:01 +0000 | [diff] [blame] | 348 | msg.msg_controllen = CMSG_SPACE(sizeof(struct in6_pktinfo)); |
gdt | 57492d5 | 2004-08-11 18:06:38 +0000 | [diff] [blame] | 349 | msg.msg_flags = 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 350 | iov.iov_base = buf; |
| 351 | iov.iov_len = len; |
| 352 | |
ajs | b99760a | 2005-01-04 16:24:43 +0000 | [diff] [blame] | 353 | cmsgptr = ZCMSG_FIRSTHDR(&msg); |
gdt | 57492d5 | 2004-08-11 18:06:38 +0000 | [diff] [blame] | 354 | cmsgptr->cmsg_len = CMSG_LEN(sizeof(struct in6_pktinfo)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 355 | cmsgptr->cmsg_level = IPPROTO_IPV6; |
| 356 | cmsgptr->cmsg_type = IPV6_PKTINFO; |
gdt | 8089381 | 2004-08-11 15:58:00 +0000 | [diff] [blame] | 357 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 358 | pkt = (struct in6_pktinfo *) CMSG_DATA (cmsgptr); |
| 359 | memset (&pkt->ipi6_addr, 0, sizeof (struct in6_addr)); |
| 360 | pkt->ipi6_ifindex = ifp->ifindex; |
| 361 | |
| 362 | ret = sendmsg (sock, &msg, 0); |
gdt | 9ccabd1 | 2004-01-06 18:23:02 +0000 | [diff] [blame] | 363 | if (ret < 0) |
| 364 | { |
| 365 | zlog_err ("rtadv_send_packet: sendmsg %d (%s)\n", |
ajs | 6099b3b | 2004-11-20 02:06:59 +0000 | [diff] [blame] | 366 | errno, safe_strerror(errno)); |
gdt | 9ccabd1 | 2004-01-06 18:23:02 +0000 | [diff] [blame] | 367 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 368 | } |
| 369 | |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 370 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 371 | rtadv_timer (struct thread *thread) |
| 372 | { |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 373 | struct zebra_vrf *zvrf = THREAD_ARG (thread); |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 374 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 375 | struct interface *ifp; |
| 376 | struct zebra_if *zif; |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 377 | int period; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 378 | |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 379 | zvrf->rtadv.ra_timer = NULL; |
| 380 | if (zvrf->rtadv.adv_msec_if_count == 0) |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 381 | { |
| 382 | period = 1000; /* 1 s */ |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 383 | rtadv_event (zvrf, RTADV_TIMER, 1 /* 1 s */); |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 384 | } |
| 385 | else |
| 386 | { |
| 387 | period = 10; /* 10 ms */ |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 388 | rtadv_event (zvrf, RTADV_TIMER_MSEC, 10 /* 10 ms */); |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 389 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 390 | |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 391 | for (ALL_LIST_ELEMENTS (vrf_iflist (zvrf->vrf_id), node, nnode, ifp)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 392 | { |
Denis Ovsienko | fb5174a | 2011-12-27 10:18:47 +0400 | [diff] [blame] | 393 | if (if_is_loopback (ifp) || ! if_is_operative (ifp)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 394 | continue; |
| 395 | |
| 396 | zif = ifp->info; |
| 397 | |
| 398 | if (zif->rtadv.AdvSendAdvertisements) |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 399 | { |
| 400 | zif->rtadv.AdvIntervalTimer -= period; |
| 401 | if (zif->rtadv.AdvIntervalTimer <= 0) |
| 402 | { |
Denis Ovsienko | d660f69 | 2011-12-30 21:55:49 +0400 | [diff] [blame] | 403 | /* FIXME: using MaxRtrAdvInterval each time isn't what section |
| 404 | 6.2.4 of RFC4861 tells to do. */ |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 405 | zif->rtadv.AdvIntervalTimer = zif->rtadv.MaxRtrAdvInterval; |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 406 | rtadv_send_packet (zvrf->rtadv.sock, ifp); |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 407 | } |
| 408 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 409 | } |
| 410 | return 0; |
| 411 | } |
| 412 | |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 413 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 414 | rtadv_process_solicit (struct interface *ifp) |
| 415 | { |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 416 | struct zebra_vrf *zvrf = vrf_info_lookup (ifp->vrf_id); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 417 | |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 418 | zlog_info ("Router solicitation received on %s vrf %u", ifp->name, zvrf->vrf_id); |
| 419 | |
| 420 | rtadv_send_packet (zvrf->rtadv.sock, ifp); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 421 | } |
| 422 | |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 423 | static void |
| 424 | rtadv_process_advert (void) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 425 | { |
| 426 | zlog_info ("Router advertisement received"); |
| 427 | } |
| 428 | |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 429 | static void |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 430 | rtadv_process_packet (u_char *buf, unsigned int len, unsigned int ifindex, |
| 431 | int hoplimit, vrf_id_t vrf_id) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 432 | { |
| 433 | struct icmp6_hdr *icmph; |
| 434 | struct interface *ifp; |
| 435 | struct zebra_if *zif; |
| 436 | |
| 437 | /* Interface search. */ |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 438 | ifp = if_lookup_by_index_vrf (ifindex, vrf_id); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 439 | if (ifp == NULL) |
| 440 | { |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 441 | zlog_warn ("Unknown interface index: %d, vrf %u", ifindex, vrf_id); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 442 | return; |
| 443 | } |
| 444 | |
| 445 | if (if_is_loopback (ifp)) |
| 446 | return; |
| 447 | |
| 448 | /* Check interface configuration. */ |
| 449 | zif = ifp->info; |
| 450 | if (! zif->rtadv.AdvSendAdvertisements) |
| 451 | return; |
| 452 | |
| 453 | /* ICMP message length check. */ |
| 454 | if (len < sizeof (struct icmp6_hdr)) |
| 455 | { |
| 456 | zlog_warn ("Invalid ICMPV6 packet length: %d", len); |
| 457 | return; |
| 458 | } |
| 459 | |
| 460 | icmph = (struct icmp6_hdr *) buf; |
| 461 | |
| 462 | /* ICMP message type check. */ |
| 463 | if (icmph->icmp6_type != ND_ROUTER_SOLICIT && |
| 464 | icmph->icmp6_type != ND_ROUTER_ADVERT) |
| 465 | { |
| 466 | zlog_warn ("Unwanted ICMPV6 message type: %d", icmph->icmp6_type); |
| 467 | return; |
| 468 | } |
| 469 | |
| 470 | /* Hoplimit check. */ |
| 471 | if (hoplimit >= 0 && hoplimit != 255) |
| 472 | { |
| 473 | zlog_warn ("Invalid hoplimit %d for router advertisement ICMP packet", |
| 474 | hoplimit); |
| 475 | return; |
| 476 | } |
| 477 | |
| 478 | /* Check ICMP message type. */ |
| 479 | if (icmph->icmp6_type == ND_ROUTER_SOLICIT) |
| 480 | rtadv_process_solicit (ifp); |
| 481 | else if (icmph->icmp6_type == ND_ROUTER_ADVERT) |
| 482 | rtadv_process_advert (); |
| 483 | |
| 484 | return; |
| 485 | } |
| 486 | |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 487 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 488 | rtadv_read (struct thread *thread) |
| 489 | { |
| 490 | int sock; |
| 491 | int len; |
| 492 | u_char buf[RTADV_MSG_SIZE]; |
| 493 | struct sockaddr_in6 from; |
Stephen Hemminger | b0b709a | 2009-12-08 13:26:14 +0300 | [diff] [blame] | 494 | unsigned int ifindex = 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 495 | int hoplimit = -1; |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 496 | struct zebra_vrf *zvrf = THREAD_ARG (thread); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 497 | |
| 498 | sock = THREAD_FD (thread); |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 499 | zvrf->rtadv.ra_read = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 500 | |
| 501 | /* Register myself. */ |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 502 | rtadv_event (zvrf, RTADV_READ, sock); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 503 | |
| 504 | len = rtadv_recv_packet (sock, buf, BUFSIZ, &from, &ifindex, &hoplimit); |
| 505 | |
| 506 | if (len < 0) |
| 507 | { |
ajs | 6099b3b | 2004-11-20 02:06:59 +0000 | [diff] [blame] | 508 | zlog_warn ("router solicitation recv failed: %s.", safe_strerror (errno)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 509 | return len; |
| 510 | } |
| 511 | |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 512 | rtadv_process_packet (buf, (unsigned)len, ifindex, hoplimit, zvrf->vrf_id); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 513 | |
| 514 | return 0; |
| 515 | } |
| 516 | |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 517 | static int |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 518 | rtadv_make_socket (vrf_id_t vrf_id) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 519 | { |
| 520 | int sock; |
| 521 | int ret; |
| 522 | struct icmp6_filter filter; |
| 523 | |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 524 | if ( zserv_privs.change (ZPRIVS_RAISE) ) |
| 525 | zlog_err ("rtadv_make_socket: could not raise privs, %s", |
ajs | 6099b3b | 2004-11-20 02:06:59 +0000 | [diff] [blame] | 526 | safe_strerror (errno) ); |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 527 | |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 528 | sock = vrf_socket (AF_INET6, SOCK_RAW, IPPROTO_ICMPV6, vrf_id); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 529 | |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 530 | if ( zserv_privs.change (ZPRIVS_LOWER) ) |
| 531 | zlog_err ("rtadv_make_socket: could not lower privs, %s", |
ajs | 6099b3b | 2004-11-20 02:06:59 +0000 | [diff] [blame] | 532 | safe_strerror (errno) ); |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 533 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 534 | /* When we can't make ICMPV6 socket simply back. Router |
| 535 | advertisement feature will not be supported. */ |
| 536 | if (sock < 0) |
Morgan Stewart | 26b663d | 2015-09-16 13:17:54 -0400 | [diff] [blame] | 537 | { |
| 538 | close (sock); |
| 539 | return -1; |
| 540 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 541 | |
| 542 | ret = setsockopt_ipv6_pktinfo (sock, 1); |
| 543 | if (ret < 0) |
Morgan Stewart | 26b663d | 2015-09-16 13:17:54 -0400 | [diff] [blame] | 544 | { |
| 545 | close (sock); |
| 546 | return ret; |
| 547 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 548 | ret = setsockopt_ipv6_multicast_loop (sock, 0); |
| 549 | if (ret < 0) |
Morgan Stewart | 26b663d | 2015-09-16 13:17:54 -0400 | [diff] [blame] | 550 | { |
| 551 | close (sock); |
| 552 | return ret; |
| 553 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 554 | ret = setsockopt_ipv6_unicast_hops (sock, 255); |
| 555 | if (ret < 0) |
Morgan Stewart | 26b663d | 2015-09-16 13:17:54 -0400 | [diff] [blame] | 556 | { |
| 557 | close (sock); |
| 558 | return ret; |
| 559 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 560 | ret = setsockopt_ipv6_multicast_hops (sock, 255); |
| 561 | if (ret < 0) |
Morgan Stewart | 26b663d | 2015-09-16 13:17:54 -0400 | [diff] [blame] | 562 | { |
| 563 | close (sock); |
| 564 | return ret; |
| 565 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 566 | ret = setsockopt_ipv6_hoplimit (sock, 1); |
| 567 | if (ret < 0) |
Morgan Stewart | 26b663d | 2015-09-16 13:17:54 -0400 | [diff] [blame] | 568 | { |
| 569 | close (sock); |
| 570 | return ret; |
| 571 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 572 | |
| 573 | ICMP6_FILTER_SETBLOCKALL(&filter); |
| 574 | ICMP6_FILTER_SETPASS (ND_ROUTER_SOLICIT, &filter); |
| 575 | ICMP6_FILTER_SETPASS (ND_ROUTER_ADVERT, &filter); |
| 576 | |
| 577 | ret = setsockopt (sock, IPPROTO_ICMPV6, ICMP6_FILTER, &filter, |
| 578 | sizeof (struct icmp6_filter)); |
| 579 | if (ret < 0) |
| 580 | { |
ajs | 6099b3b | 2004-11-20 02:06:59 +0000 | [diff] [blame] | 581 | zlog_info ("ICMP6_FILTER set fail: %s", safe_strerror (errno)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 582 | return ret; |
| 583 | } |
| 584 | |
| 585 | return sock; |
| 586 | } |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 587 | |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 588 | static struct rtadv_prefix * |
Stephen Hemminger | 66e5cd8 | 2009-02-09 10:14:16 -0800 | [diff] [blame] | 589 | rtadv_prefix_new (void) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 590 | { |
Stephen Hemminger | 393deb9 | 2008-08-18 14:13:29 -0700 | [diff] [blame] | 591 | return XCALLOC (MTYPE_RTADV_PREFIX, sizeof (struct rtadv_prefix)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 592 | } |
| 593 | |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 594 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 595 | rtadv_prefix_free (struct rtadv_prefix *rtadv_prefix) |
| 596 | { |
| 597 | XFREE (MTYPE_RTADV_PREFIX, rtadv_prefix); |
| 598 | } |
| 599 | |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 600 | static struct rtadv_prefix * |
Denis Ovsienko | aca43b6 | 2012-01-08 18:27:12 +0400 | [diff] [blame] | 601 | rtadv_prefix_lookup (struct list *rplist, struct prefix_ipv6 *p) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 602 | { |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 603 | struct listnode *node; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 604 | struct rtadv_prefix *rprefix; |
| 605 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 606 | for (ALL_LIST_ELEMENTS_RO (rplist, node, rprefix)) |
Denis Ovsienko | aca43b6 | 2012-01-08 18:27:12 +0400 | [diff] [blame] | 607 | if (prefix_same ((struct prefix *) &rprefix->prefix, (struct prefix *) p)) |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 608 | return rprefix; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 609 | return NULL; |
| 610 | } |
| 611 | |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 612 | static struct rtadv_prefix * |
Denis Ovsienko | aca43b6 | 2012-01-08 18:27:12 +0400 | [diff] [blame] | 613 | rtadv_prefix_get (struct list *rplist, struct prefix_ipv6 *p) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 614 | { |
| 615 | struct rtadv_prefix *rprefix; |
| 616 | |
| 617 | rprefix = rtadv_prefix_lookup (rplist, p); |
| 618 | if (rprefix) |
| 619 | return rprefix; |
| 620 | |
| 621 | rprefix = rtadv_prefix_new (); |
Denis Ovsienko | aca43b6 | 2012-01-08 18:27:12 +0400 | [diff] [blame] | 622 | memcpy (&rprefix->prefix, p, sizeof (struct prefix_ipv6)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 623 | listnode_add (rplist, rprefix); |
| 624 | |
| 625 | return rprefix; |
| 626 | } |
| 627 | |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 628 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 629 | rtadv_prefix_set (struct zebra_if *zif, struct rtadv_prefix *rp) |
| 630 | { |
| 631 | struct rtadv_prefix *rprefix; |
| 632 | |
| 633 | rprefix = rtadv_prefix_get (zif->rtadv.AdvPrefixList, &rp->prefix); |
| 634 | |
| 635 | /* Set parameters. */ |
| 636 | rprefix->AdvValidLifetime = rp->AdvValidLifetime; |
| 637 | rprefix->AdvPreferredLifetime = rp->AdvPreferredLifetime; |
| 638 | rprefix->AdvOnLinkFlag = rp->AdvOnLinkFlag; |
| 639 | rprefix->AdvAutonomousFlag = rp->AdvAutonomousFlag; |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 640 | rprefix->AdvRouterAddressFlag = rp->AdvRouterAddressFlag; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 641 | } |
| 642 | |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 643 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 644 | rtadv_prefix_reset (struct zebra_if *zif, struct rtadv_prefix *rp) |
| 645 | { |
| 646 | struct rtadv_prefix *rprefix; |
| 647 | |
| 648 | rprefix = rtadv_prefix_lookup (zif->rtadv.AdvPrefixList, &rp->prefix); |
| 649 | if (rprefix != NULL) |
| 650 | { |
| 651 | listnode_delete (zif->rtadv.AdvPrefixList, (void *) rprefix); |
| 652 | rtadv_prefix_free (rprefix); |
| 653 | return 1; |
| 654 | } |
| 655 | else |
| 656 | return 0; |
| 657 | } |
| 658 | |
| 659 | DEFUN (ipv6_nd_suppress_ra, |
| 660 | ipv6_nd_suppress_ra_cmd, |
| 661 | "ipv6 nd suppress-ra", |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 662 | "Interface IPv6 config commands\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 663 | "Neighbor discovery\n" |
| 664 | "Suppress Router Advertisement\n") |
| 665 | { |
| 666 | struct interface *ifp; |
| 667 | struct zebra_if *zif; |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 668 | struct zebra_vrf *zvrf; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 669 | |
| 670 | ifp = vty->index; |
| 671 | zif = ifp->info; |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 672 | zvrf = vrf_info_lookup (ifp->vrf_id); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 673 | |
| 674 | if (if_is_loopback (ifp)) |
| 675 | { |
| 676 | vty_out (vty, "Invalid interface%s", VTY_NEWLINE); |
| 677 | return CMD_WARNING; |
| 678 | } |
| 679 | |
| 680 | if (zif->rtadv.AdvSendAdvertisements) |
| 681 | { |
| 682 | zif->rtadv.AdvSendAdvertisements = 0; |
| 683 | zif->rtadv.AdvIntervalTimer = 0; |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 684 | zvrf->rtadv.adv_if_count--; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 685 | |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 686 | if_leave_all_router (zvrf->rtadv.sock, ifp); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 687 | |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 688 | if (zvrf->rtadv.adv_if_count == 0) |
| 689 | rtadv_event (zvrf, RTADV_STOP, 0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 690 | } |
| 691 | |
| 692 | return CMD_SUCCESS; |
| 693 | } |
| 694 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 695 | DEFUN (no_ipv6_nd_suppress_ra, |
| 696 | no_ipv6_nd_suppress_ra_cmd, |
| 697 | "no ipv6 nd suppress-ra", |
| 698 | NO_STR |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 699 | "Interface IPv6 config commands\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 700 | "Neighbor discovery\n" |
| 701 | "Suppress Router Advertisement\n") |
| 702 | { |
| 703 | struct interface *ifp; |
| 704 | struct zebra_if *zif; |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 705 | struct zebra_vrf *zvrf; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 706 | |
| 707 | ifp = vty->index; |
| 708 | zif = ifp->info; |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 709 | zvrf = vrf_info_lookup (ifp->vrf_id); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 710 | |
| 711 | if (if_is_loopback (ifp)) |
| 712 | { |
| 713 | vty_out (vty, "Invalid interface%s", VTY_NEWLINE); |
| 714 | return CMD_WARNING; |
| 715 | } |
| 716 | |
| 717 | if (! zif->rtadv.AdvSendAdvertisements) |
| 718 | { |
| 719 | zif->rtadv.AdvSendAdvertisements = 1; |
| 720 | zif->rtadv.AdvIntervalTimer = 0; |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 721 | zvrf->rtadv.adv_if_count++; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 722 | |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 723 | if_join_all_router (zvrf->rtadv.sock, ifp); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 724 | |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 725 | if (zvrf->rtadv.adv_if_count == 1) |
| 726 | rtadv_event (zvrf, RTADV_START, zvrf->rtadv.sock); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 727 | } |
| 728 | |
| 729 | return CMD_SUCCESS; |
| 730 | } |
| 731 | |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 732 | DEFUN (ipv6_nd_ra_interval_msec, |
| 733 | ipv6_nd_ra_interval_msec_cmd, |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 734 | "ipv6 nd ra-interval msec <70-1800000>", |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 735 | "Interface IPv6 config commands\n" |
| 736 | "Neighbor discovery\n" |
| 737 | "Router Advertisement interval\n" |
| 738 | "Router Advertisement interval in milliseconds\n") |
| 739 | { |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 740 | unsigned interval; |
| 741 | struct interface *ifp = (struct interface *) vty->index; |
| 742 | struct zebra_if *zif = ifp->info; |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 743 | struct zebra_vrf *zvrf = vrf_info_lookup (ifp->vrf_id); |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 744 | |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 745 | VTY_GET_INTEGER_RANGE ("router advertisement interval", interval, argv[0], 70, 1800000); |
| 746 | if ((zif->rtadv.AdvDefaultLifetime != -1 && interval > (unsigned)zif->rtadv.AdvDefaultLifetime * 1000)) |
| 747 | { |
| 748 | vty_out (vty, "This ra-interval would conflict with configured ra-lifetime!%s", VTY_NEWLINE); |
| 749 | return CMD_WARNING; |
| 750 | } |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 751 | |
| 752 | if (zif->rtadv.MaxRtrAdvInterval % 1000) |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 753 | zvrf->rtadv.adv_msec_if_count--; |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 754 | |
| 755 | if (interval % 1000) |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 756 | zvrf->rtadv.adv_msec_if_count++; |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 757 | |
| 758 | zif->rtadv.MaxRtrAdvInterval = interval; |
| 759 | zif->rtadv.MinRtrAdvInterval = 0.33 * interval; |
| 760 | zif->rtadv.AdvIntervalTimer = 0; |
| 761 | |
| 762 | return CMD_SUCCESS; |
| 763 | } |
| 764 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 765 | DEFUN (ipv6_nd_ra_interval, |
| 766 | ipv6_nd_ra_interval_cmd, |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 767 | "ipv6 nd ra-interval <1-1800>", |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 768 | "Interface IPv6 config commands\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 769 | "Neighbor discovery\n" |
| 770 | "Router Advertisement interval\n" |
| 771 | "Router Advertisement interval in seconds\n") |
| 772 | { |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 773 | unsigned interval; |
| 774 | struct interface *ifp = (struct interface *) vty->index; |
| 775 | struct zebra_if *zif = ifp->info; |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 776 | struct zebra_vrf *zvrf = vrf_info_lookup (ifp->vrf_id); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 777 | |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 778 | VTY_GET_INTEGER_RANGE ("router advertisement interval", interval, argv[0], 1, 1800); |
| 779 | if ((zif->rtadv.AdvDefaultLifetime != -1 && interval > (unsigned)zif->rtadv.AdvDefaultLifetime)) |
| 780 | { |
| 781 | vty_out (vty, "This ra-interval would conflict with configured ra-lifetime!%s", VTY_NEWLINE); |
| 782 | return CMD_WARNING; |
| 783 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 784 | |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 785 | if (zif->rtadv.MaxRtrAdvInterval % 1000) |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 786 | zvrf->rtadv.adv_msec_if_count--; |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 787 | |
| 788 | /* convert to milliseconds */ |
| 789 | interval = interval * 1000; |
| 790 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 791 | zif->rtadv.MaxRtrAdvInterval = interval; |
| 792 | zif->rtadv.MinRtrAdvInterval = 0.33 * interval; |
| 793 | zif->rtadv.AdvIntervalTimer = 0; |
| 794 | |
| 795 | return CMD_SUCCESS; |
| 796 | } |
| 797 | |
| 798 | DEFUN (no_ipv6_nd_ra_interval, |
| 799 | no_ipv6_nd_ra_interval_cmd, |
| 800 | "no ipv6 nd ra-interval", |
| 801 | NO_STR |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 802 | "Interface IPv6 config commands\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 803 | "Neighbor discovery\n" |
| 804 | "Router Advertisement interval\n") |
| 805 | { |
| 806 | struct interface *ifp; |
| 807 | struct zebra_if *zif; |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 808 | struct zebra_vrf *zvrf; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 809 | |
| 810 | ifp = (struct interface *) vty->index; |
| 811 | zif = ifp->info; |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 812 | zvrf = vrf_info_lookup (ifp->vrf_id); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 813 | |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 814 | if (zif->rtadv.MaxRtrAdvInterval % 1000) |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 815 | zvrf->rtadv.adv_msec_if_count--; |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 816 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 817 | zif->rtadv.MaxRtrAdvInterval = RTADV_MAX_RTR_ADV_INTERVAL; |
| 818 | zif->rtadv.MinRtrAdvInterval = RTADV_MIN_RTR_ADV_INTERVAL; |
| 819 | zif->rtadv.AdvIntervalTimer = zif->rtadv.MaxRtrAdvInterval; |
| 820 | |
| 821 | return CMD_SUCCESS; |
| 822 | } |
| 823 | |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 824 | ALIAS (no_ipv6_nd_ra_interval, |
| 825 | no_ipv6_nd_ra_interval_val_cmd, |
| 826 | "no ipv6 nd ra-interval <1-1800>", |
| 827 | NO_STR |
| 828 | "Interface IPv6 config commands\n" |
| 829 | "Neighbor discovery\n" |
| 830 | "Router Advertisement interval\n") |
| 831 | |
| 832 | ALIAS (no_ipv6_nd_ra_interval, |
| 833 | no_ipv6_nd_ra_interval_msec_val_cmd, |
| 834 | "no ipv6 nd ra-interval msec <1-1800000>", |
| 835 | NO_STR |
| 836 | "Interface IPv6 config commands\n" |
| 837 | "Neighbor discovery\n" |
| 838 | "Router Advertisement interval\n" |
| 839 | "Router Advertisement interval in milliseconds\n") |
| 840 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 841 | DEFUN (ipv6_nd_ra_lifetime, |
| 842 | ipv6_nd_ra_lifetime_cmd, |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 843 | "ipv6 nd ra-lifetime <0-9000>", |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 844 | "Interface IPv6 config commands\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 845 | "Neighbor discovery\n" |
| 846 | "Router lifetime\n" |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 847 | "Router lifetime in seconds (0 stands for a non-default gw)\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 848 | { |
| 849 | int lifetime; |
| 850 | struct interface *ifp; |
| 851 | struct zebra_if *zif; |
| 852 | |
| 853 | ifp = (struct interface *) vty->index; |
| 854 | zif = ifp->info; |
| 855 | |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 856 | VTY_GET_INTEGER_RANGE ("router lifetime", lifetime, argv[0], 0, 9000); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 857 | |
Denis Ovsienko | d660f69 | 2011-12-30 21:55:49 +0400 | [diff] [blame] | 858 | /* The value to be placed in the Router Lifetime field |
| 859 | * of Router Advertisements sent from the interface, |
| 860 | * in seconds. MUST be either zero or between |
| 861 | * MaxRtrAdvInterval and 9000 seconds. -- RFC4861, 6.2.1 */ |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 862 | if ((lifetime != 0 && lifetime * 1000 < zif->rtadv.MaxRtrAdvInterval)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 863 | { |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 864 | vty_out (vty, "This ra-lifetime would conflict with configured ra-interval%s", VTY_NEWLINE); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 865 | return CMD_WARNING; |
| 866 | } |
| 867 | |
| 868 | zif->rtadv.AdvDefaultLifetime = lifetime; |
| 869 | |
| 870 | return CMD_SUCCESS; |
| 871 | } |
| 872 | |
| 873 | DEFUN (no_ipv6_nd_ra_lifetime, |
| 874 | no_ipv6_nd_ra_lifetime_cmd, |
| 875 | "no ipv6 nd ra-lifetime", |
| 876 | NO_STR |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 877 | "Interface IPv6 config commands\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 878 | "Neighbor discovery\n" |
| 879 | "Router lifetime\n") |
| 880 | { |
| 881 | struct interface *ifp; |
| 882 | struct zebra_if *zif; |
| 883 | |
| 884 | ifp = (struct interface *) vty->index; |
| 885 | zif = ifp->info; |
| 886 | |
Denis Ovsienko | d660f69 | 2011-12-30 21:55:49 +0400 | [diff] [blame] | 887 | zif->rtadv.AdvDefaultLifetime = -1; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 888 | |
| 889 | return CMD_SUCCESS; |
| 890 | } |
| 891 | |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 892 | ALIAS (no_ipv6_nd_ra_lifetime, |
| 893 | no_ipv6_nd_ra_lifetime_val_cmd, |
| 894 | "no ipv6 nd ra-lifetime <0-9000>", |
| 895 | NO_STR |
| 896 | "Interface IPv6 config commands\n" |
| 897 | "Neighbor discovery\n" |
| 898 | "Router lifetime\n" |
| 899 | "Router lifetime in seconds (0 stands for a non-default gw)\n") |
| 900 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 901 | DEFUN (ipv6_nd_reachable_time, |
| 902 | ipv6_nd_reachable_time_cmd, |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 903 | "ipv6 nd reachable-time <1-3600000>", |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 904 | "Interface IPv6 config commands\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 905 | "Neighbor discovery\n" |
| 906 | "Reachable time\n" |
| 907 | "Reachable time in milliseconds\n") |
| 908 | { |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 909 | struct interface *ifp = (struct interface *) vty->index; |
| 910 | struct zebra_if *zif = ifp->info; |
| 911 | VTY_GET_INTEGER_RANGE ("reachable time", zif->rtadv.AdvReachableTime, argv[0], 1, RTADV_MAX_REACHABLE_TIME); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 912 | return CMD_SUCCESS; |
| 913 | } |
| 914 | |
| 915 | DEFUN (no_ipv6_nd_reachable_time, |
| 916 | no_ipv6_nd_reachable_time_cmd, |
| 917 | "no ipv6 nd reachable-time", |
| 918 | NO_STR |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 919 | "Interface IPv6 config commands\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 920 | "Neighbor discovery\n" |
| 921 | "Reachable time\n") |
| 922 | { |
| 923 | struct interface *ifp; |
| 924 | struct zebra_if *zif; |
| 925 | |
| 926 | ifp = (struct interface *) vty->index; |
| 927 | zif = ifp->info; |
| 928 | |
| 929 | zif->rtadv.AdvReachableTime = 0; |
| 930 | |
| 931 | return CMD_SUCCESS; |
| 932 | } |
| 933 | |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 934 | ALIAS (no_ipv6_nd_reachable_time, |
| 935 | no_ipv6_nd_reachable_time_val_cmd, |
| 936 | "no ipv6 nd reachable-time <1-3600000>", |
| 937 | NO_STR |
| 938 | "Interface IPv6 config commands\n" |
| 939 | "Neighbor discovery\n" |
| 940 | "Reachable time\n" |
| 941 | "Reachable time in milliseconds\n") |
| 942 | |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 943 | DEFUN (ipv6_nd_homeagent_preference, |
| 944 | ipv6_nd_homeagent_preference_cmd, |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 945 | "ipv6 nd home-agent-preference <0-65535>", |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 946 | "Interface IPv6 config commands\n" |
| 947 | "Neighbor discovery\n" |
| 948 | "Home Agent preference\n" |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 949 | "preference value (default is 0, least preferred)\n") |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 950 | { |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 951 | struct interface *ifp = (struct interface *) vty->index; |
| 952 | struct zebra_if *zif = ifp->info; |
| 953 | VTY_GET_INTEGER_RANGE ("home agent preference", zif->rtadv.HomeAgentPreference, argv[0], 0, 65535); |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 954 | return CMD_SUCCESS; |
| 955 | } |
| 956 | |
| 957 | DEFUN (no_ipv6_nd_homeagent_preference, |
| 958 | no_ipv6_nd_homeagent_preference_cmd, |
| 959 | "no ipv6 nd home-agent-preference", |
| 960 | NO_STR |
| 961 | "Interface IPv6 config commands\n" |
| 962 | "Neighbor discovery\n" |
| 963 | "Home Agent preference\n") |
| 964 | { |
| 965 | struct interface *ifp; |
| 966 | struct zebra_if *zif; |
| 967 | |
| 968 | ifp = (struct interface *) vty->index; |
| 969 | zif = ifp->info; |
| 970 | |
| 971 | zif->rtadv.HomeAgentPreference = 0; |
| 972 | |
| 973 | return CMD_SUCCESS; |
| 974 | } |
| 975 | |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 976 | ALIAS (no_ipv6_nd_homeagent_preference, |
| 977 | no_ipv6_nd_homeagent_preference_val_cmd, |
| 978 | "no ipv6 nd home-agent-preference <0-65535>", |
| 979 | NO_STR |
| 980 | "Interface IPv6 config commands\n" |
| 981 | "Neighbor discovery\n" |
| 982 | "Home Agent preference\n" |
| 983 | "preference value (default is 0, least preferred)\n") |
| 984 | |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 985 | DEFUN (ipv6_nd_homeagent_lifetime, |
| 986 | ipv6_nd_homeagent_lifetime_cmd, |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 987 | "ipv6 nd home-agent-lifetime <0-65520>", |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 988 | "Interface IPv6 config commands\n" |
| 989 | "Neighbor discovery\n" |
| 990 | "Home Agent lifetime\n" |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 991 | "Home Agent lifetime in seconds (0 to track ra-lifetime)\n") |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 992 | { |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 993 | struct interface *ifp = (struct interface *) vty->index; |
| 994 | struct zebra_if *zif = ifp->info; |
| 995 | VTY_GET_INTEGER_RANGE ("home agent lifetime", zif->rtadv.HomeAgentLifetime, argv[0], 0, RTADV_MAX_HALIFETIME); |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 996 | return CMD_SUCCESS; |
| 997 | } |
| 998 | |
| 999 | DEFUN (no_ipv6_nd_homeagent_lifetime, |
| 1000 | no_ipv6_nd_homeagent_lifetime_cmd, |
| 1001 | "no ipv6 nd home-agent-lifetime", |
| 1002 | NO_STR |
| 1003 | "Interface IPv6 config commands\n" |
| 1004 | "Neighbor discovery\n" |
| 1005 | "Home Agent lifetime\n") |
| 1006 | { |
| 1007 | struct interface *ifp; |
| 1008 | struct zebra_if *zif; |
| 1009 | |
| 1010 | ifp = (struct interface *) vty->index; |
| 1011 | zif = ifp->info; |
| 1012 | |
Denis Ovsienko | d660f69 | 2011-12-30 21:55:49 +0400 | [diff] [blame] | 1013 | zif->rtadv.HomeAgentLifetime = -1; |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 1014 | |
| 1015 | return CMD_SUCCESS; |
| 1016 | } |
| 1017 | |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 1018 | ALIAS (no_ipv6_nd_homeagent_lifetime, |
| 1019 | no_ipv6_nd_homeagent_lifetime_val_cmd, |
| 1020 | "no ipv6 nd home-agent-lifetime <0-65520>", |
| 1021 | NO_STR |
| 1022 | "Interface IPv6 config commands\n" |
| 1023 | "Neighbor discovery\n" |
| 1024 | "Home Agent lifetime\n" |
| 1025 | "Home Agent lifetime in seconds (0 to track ra-lifetime)\n") |
| 1026 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1027 | DEFUN (ipv6_nd_managed_config_flag, |
| 1028 | ipv6_nd_managed_config_flag_cmd, |
| 1029 | "ipv6 nd managed-config-flag", |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1030 | "Interface IPv6 config commands\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1031 | "Neighbor discovery\n" |
| 1032 | "Managed address configuration flag\n") |
| 1033 | { |
| 1034 | struct interface *ifp; |
| 1035 | struct zebra_if *zif; |
| 1036 | |
| 1037 | ifp = (struct interface *) vty->index; |
| 1038 | zif = ifp->info; |
| 1039 | |
| 1040 | zif->rtadv.AdvManagedFlag = 1; |
| 1041 | |
| 1042 | return CMD_SUCCESS; |
| 1043 | } |
| 1044 | |
| 1045 | DEFUN (no_ipv6_nd_managed_config_flag, |
| 1046 | no_ipv6_nd_managed_config_flag_cmd, |
| 1047 | "no ipv6 nd managed-config-flag", |
| 1048 | NO_STR |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1049 | "Interface IPv6 config commands\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1050 | "Neighbor discovery\n" |
| 1051 | "Managed address configuration flag\n") |
| 1052 | { |
| 1053 | struct interface *ifp; |
| 1054 | struct zebra_if *zif; |
| 1055 | |
| 1056 | ifp = (struct interface *) vty->index; |
| 1057 | zif = ifp->info; |
| 1058 | |
| 1059 | zif->rtadv.AdvManagedFlag = 0; |
| 1060 | |
| 1061 | return CMD_SUCCESS; |
| 1062 | } |
| 1063 | |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 1064 | DEFUN (ipv6_nd_homeagent_config_flag, |
| 1065 | ipv6_nd_homeagent_config_flag_cmd, |
| 1066 | "ipv6 nd home-agent-config-flag", |
| 1067 | "Interface IPv6 config commands\n" |
| 1068 | "Neighbor discovery\n" |
| 1069 | "Home Agent configuration flag\n") |
| 1070 | { |
| 1071 | struct interface *ifp; |
| 1072 | struct zebra_if *zif; |
| 1073 | |
| 1074 | ifp = (struct interface *) vty->index; |
| 1075 | zif = ifp->info; |
| 1076 | |
| 1077 | zif->rtadv.AdvHomeAgentFlag = 1; |
| 1078 | |
| 1079 | return CMD_SUCCESS; |
| 1080 | } |
| 1081 | |
| 1082 | DEFUN (no_ipv6_nd_homeagent_config_flag, |
| 1083 | no_ipv6_nd_homeagent_config_flag_cmd, |
| 1084 | "no ipv6 nd home-agent-config-flag", |
| 1085 | NO_STR |
| 1086 | "Interface IPv6 config commands\n" |
| 1087 | "Neighbor discovery\n" |
| 1088 | "Home Agent configuration flag\n") |
| 1089 | { |
| 1090 | struct interface *ifp; |
| 1091 | struct zebra_if *zif; |
| 1092 | |
| 1093 | ifp = (struct interface *) vty->index; |
| 1094 | zif = ifp->info; |
| 1095 | |
| 1096 | zif->rtadv.AdvHomeAgentFlag = 0; |
| 1097 | |
| 1098 | return CMD_SUCCESS; |
| 1099 | } |
| 1100 | |
| 1101 | DEFUN (ipv6_nd_adv_interval_config_option, |
| 1102 | ipv6_nd_adv_interval_config_option_cmd, |
| 1103 | "ipv6 nd adv-interval-option", |
| 1104 | "Interface IPv6 config commands\n" |
| 1105 | "Neighbor discovery\n" |
| 1106 | "Advertisement Interval Option\n") |
| 1107 | { |
| 1108 | struct interface *ifp; |
| 1109 | struct zebra_if *zif; |
| 1110 | |
| 1111 | ifp = (struct interface *) vty->index; |
| 1112 | zif = ifp->info; |
| 1113 | |
| 1114 | zif->rtadv.AdvIntervalOption = 1; |
| 1115 | |
| 1116 | return CMD_SUCCESS; |
| 1117 | } |
| 1118 | |
| 1119 | DEFUN (no_ipv6_nd_adv_interval_config_option, |
| 1120 | no_ipv6_nd_adv_interval_config_option_cmd, |
| 1121 | "no ipv6 nd adv-interval-option", |
| 1122 | NO_STR |
| 1123 | "Interface IPv6 config commands\n" |
| 1124 | "Neighbor discovery\n" |
| 1125 | "Advertisement Interval Option\n") |
| 1126 | { |
| 1127 | struct interface *ifp; |
| 1128 | struct zebra_if *zif; |
| 1129 | |
| 1130 | ifp = (struct interface *) vty->index; |
| 1131 | zif = ifp->info; |
| 1132 | |
| 1133 | zif->rtadv.AdvIntervalOption = 0; |
| 1134 | |
| 1135 | return CMD_SUCCESS; |
| 1136 | } |
| 1137 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1138 | DEFUN (ipv6_nd_other_config_flag, |
| 1139 | ipv6_nd_other_config_flag_cmd, |
| 1140 | "ipv6 nd other-config-flag", |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1141 | "Interface IPv6 config commands\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1142 | "Neighbor discovery\n" |
| 1143 | "Other statefull configuration flag\n") |
| 1144 | { |
| 1145 | struct interface *ifp; |
| 1146 | struct zebra_if *zif; |
| 1147 | |
| 1148 | ifp = (struct interface *) vty->index; |
| 1149 | zif = ifp->info; |
| 1150 | |
| 1151 | zif->rtadv.AdvOtherConfigFlag = 1; |
| 1152 | |
| 1153 | return CMD_SUCCESS; |
| 1154 | } |
| 1155 | |
| 1156 | DEFUN (no_ipv6_nd_other_config_flag, |
| 1157 | no_ipv6_nd_other_config_flag_cmd, |
| 1158 | "no ipv6 nd other-config-flag", |
| 1159 | NO_STR |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1160 | "Interface IPv6 config commands\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1161 | "Neighbor discovery\n" |
| 1162 | "Other statefull configuration flag\n") |
| 1163 | { |
| 1164 | struct interface *ifp; |
| 1165 | struct zebra_if *zif; |
| 1166 | |
| 1167 | ifp = (struct interface *) vty->index; |
| 1168 | zif = ifp->info; |
| 1169 | |
| 1170 | zif->rtadv.AdvOtherConfigFlag = 0; |
| 1171 | |
| 1172 | return CMD_SUCCESS; |
| 1173 | } |
| 1174 | |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1175 | DEFUN (ipv6_nd_prefix, |
| 1176 | ipv6_nd_prefix_cmd, |
| 1177 | "ipv6 nd prefix X:X::X:X/M (<0-4294967295>|infinite) " |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 1178 | "(<0-4294967295>|infinite) (off-link|) (no-autoconfig|) (router-address|)", |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1179 | "Interface IPv6 config commands\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1180 | "Neighbor discovery\n" |
| 1181 | "Prefix information\n" |
| 1182 | "IPv6 prefix\n" |
| 1183 | "Valid lifetime in seconds\n" |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1184 | "Infinite valid lifetime\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1185 | "Preferred lifetime in seconds\n" |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1186 | "Infinite preferred lifetime\n" |
| 1187 | "Do not use prefix for onlink determination\n" |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 1188 | "Do not use prefix for autoconfiguration\n" |
| 1189 | "Set Router Address flag\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1190 | { |
| 1191 | int i; |
| 1192 | int ret; |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1193 | int cursor = 1; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1194 | struct interface *ifp; |
| 1195 | struct zebra_if *zebra_if; |
| 1196 | struct rtadv_prefix rp; |
| 1197 | |
| 1198 | ifp = (struct interface *) vty->index; |
| 1199 | zebra_if = ifp->info; |
| 1200 | |
Denis Ovsienko | aca43b6 | 2012-01-08 18:27:12 +0400 | [diff] [blame] | 1201 | ret = str2prefix_ipv6 (argv[0], &rp.prefix); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1202 | if (!ret) |
| 1203 | { |
| 1204 | vty_out (vty, "Malformed IPv6 prefix%s", VTY_NEWLINE); |
| 1205 | return CMD_WARNING; |
| 1206 | } |
Denis Ovsienko | 6bb1273 | 2012-01-08 17:46:34 +0400 | [diff] [blame] | 1207 | apply_mask_ipv6 (&rp.prefix); /* RFC4861 4.6.2 */ |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1208 | rp.AdvOnLinkFlag = 1; |
| 1209 | rp.AdvAutonomousFlag = 1; |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 1210 | rp.AdvRouterAddressFlag = 0; |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1211 | rp.AdvValidLifetime = RTADV_VALID_LIFETIME; |
| 1212 | rp.AdvPreferredLifetime = RTADV_PREFERRED_LIFETIME; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1213 | |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1214 | if (argc > 1) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1215 | { |
David Lamparter | 52f02b4 | 2015-04-10 09:14:30 +0200 | [diff] [blame] | 1216 | if ((isdigit((unsigned char)argv[1][0])) |
| 1217 | || strncmp (argv[1], "i", 1) == 0) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1218 | { |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1219 | if ( strncmp (argv[1], "i", 1) == 0) |
| 1220 | rp.AdvValidLifetime = UINT32_MAX; |
| 1221 | else |
| 1222 | rp.AdvValidLifetime = (u_int32_t) strtoll (argv[1], |
| 1223 | (char **)NULL, 10); |
| 1224 | |
| 1225 | if ( strncmp (argv[2], "i", 1) == 0) |
| 1226 | rp.AdvPreferredLifetime = UINT32_MAX; |
| 1227 | else |
| 1228 | rp.AdvPreferredLifetime = (u_int32_t) strtoll (argv[2], |
| 1229 | (char **)NULL, 10); |
| 1230 | |
| 1231 | if (rp.AdvPreferredLifetime > rp.AdvValidLifetime) |
| 1232 | { |
| 1233 | vty_out (vty, "Invalid preferred lifetime%s", VTY_NEWLINE); |
| 1234 | return CMD_WARNING; |
| 1235 | } |
| 1236 | cursor = cursor + 2; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1237 | } |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1238 | if (argc > cursor) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1239 | { |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1240 | for (i = cursor; i < argc; i++) |
| 1241 | { |
| 1242 | if (strncmp (argv[i], "of", 2) == 0) |
| 1243 | rp.AdvOnLinkFlag = 0; |
| 1244 | if (strncmp (argv[i], "no", 2) == 0) |
| 1245 | rp.AdvAutonomousFlag = 0; |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 1246 | if (strncmp (argv[i], "ro", 2) == 0) |
| 1247 | rp.AdvRouterAddressFlag = 1; |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1248 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1249 | } |
| 1250 | } |
| 1251 | |
| 1252 | rtadv_prefix_set (zebra_if, &rp); |
| 1253 | |
| 1254 | return CMD_SUCCESS; |
| 1255 | } |
| 1256 | |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1257 | ALIAS (ipv6_nd_prefix, |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 1258 | ipv6_nd_prefix_val_nortaddr_cmd, |
| 1259 | "ipv6 nd prefix X:X::X:X/M (<0-4294967295>|infinite) " |
| 1260 | "(<0-4294967295>|infinite) (off-link|) (no-autoconfig|)", |
| 1261 | "Interface IPv6 config commands\n" |
| 1262 | "Neighbor discovery\n" |
| 1263 | "Prefix information\n" |
| 1264 | "IPv6 prefix\n" |
| 1265 | "Valid lifetime in seconds\n" |
| 1266 | "Infinite valid lifetime\n" |
| 1267 | "Preferred lifetime in seconds\n" |
| 1268 | "Infinite preferred lifetime\n" |
| 1269 | "Do not use prefix for onlink determination\n" |
| 1270 | "Do not use prefix for autoconfiguration\n") |
| 1271 | |
| 1272 | ALIAS (ipv6_nd_prefix, |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1273 | ipv6_nd_prefix_val_rev_cmd, |
| 1274 | "ipv6 nd prefix X:X::X:X/M (<0-4294967295>|infinite) " |
| 1275 | "(<0-4294967295>|infinite) (no-autoconfig|) (off-link|)", |
| 1276 | "Interface IPv6 config commands\n" |
| 1277 | "Neighbor discovery\n" |
| 1278 | "Prefix information\n" |
| 1279 | "IPv6 prefix\n" |
| 1280 | "Valid lifetime in seconds\n" |
| 1281 | "Infinite valid lifetime\n" |
| 1282 | "Preferred lifetime in seconds\n" |
| 1283 | "Infinite preferred lifetime\n" |
| 1284 | "Do not use prefix for autoconfiguration\n" |
| 1285 | "Do not use prefix for onlink determination\n") |
| 1286 | |
| 1287 | ALIAS (ipv6_nd_prefix, |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 1288 | ipv6_nd_prefix_val_rev_rtaddr_cmd, |
| 1289 | "ipv6 nd prefix X:X::X:X/M (<0-4294967295>|infinite) " |
| 1290 | "(<0-4294967295>|infinite) (no-autoconfig|) (off-link|) (router-address|)", |
| 1291 | "Interface IPv6 config commands\n" |
| 1292 | "Neighbor discovery\n" |
| 1293 | "Prefix information\n" |
| 1294 | "IPv6 prefix\n" |
| 1295 | "Valid lifetime in seconds\n" |
| 1296 | "Infinite valid lifetime\n" |
| 1297 | "Preferred lifetime in seconds\n" |
| 1298 | "Infinite preferred lifetime\n" |
| 1299 | "Do not use prefix for autoconfiguration\n" |
| 1300 | "Do not use prefix for onlink determination\n" |
| 1301 | "Set Router Address flag\n") |
| 1302 | |
| 1303 | ALIAS (ipv6_nd_prefix, |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1304 | ipv6_nd_prefix_val_noauto_cmd, |
| 1305 | "ipv6 nd prefix X:X::X:X/M (<0-4294967295>|infinite) " |
| 1306 | "(<0-4294967295>|infinite) (no-autoconfig|)", |
| 1307 | "Interface IPv6 config commands\n" |
| 1308 | "Neighbor discovery\n" |
| 1309 | "Prefix information\n" |
| 1310 | "IPv6 prefix\n" |
| 1311 | "Valid lifetime in seconds\n" |
| 1312 | "Infinite valid lifetime\n" |
| 1313 | "Preferred lifetime in seconds\n" |
| 1314 | "Infinite preferred lifetime\n" |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 1315 | "Do not use prefix for autoconfiguration") |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1316 | |
| 1317 | ALIAS (ipv6_nd_prefix, |
| 1318 | ipv6_nd_prefix_val_offlink_cmd, |
| 1319 | "ipv6 nd prefix X:X::X:X/M (<0-4294967295>|infinite) " |
| 1320 | "(<0-4294967295>|infinite) (off-link|)", |
| 1321 | "Interface IPv6 config commands\n" |
| 1322 | "Neighbor discovery\n" |
| 1323 | "Prefix information\n" |
| 1324 | "IPv6 prefix\n" |
| 1325 | "Valid lifetime in seconds\n" |
| 1326 | "Infinite valid lifetime\n" |
| 1327 | "Preferred lifetime in seconds\n" |
| 1328 | "Infinite preferred lifetime\n" |
| 1329 | "Do not use prefix for onlink determination\n") |
| 1330 | |
| 1331 | ALIAS (ipv6_nd_prefix, |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 1332 | ipv6_nd_prefix_val_rtaddr_cmd, |
| 1333 | "ipv6 nd prefix X:X::X:X/M (<0-4294967295>|infinite) " |
| 1334 | "(<0-4294967295>|infinite) (router-address|)", |
| 1335 | "Interface IPv6 config commands\n" |
| 1336 | "Neighbor discovery\n" |
| 1337 | "Prefix information\n" |
| 1338 | "IPv6 prefix\n" |
| 1339 | "Valid lifetime in seconds\n" |
| 1340 | "Infinite valid lifetime\n" |
| 1341 | "Preferred lifetime in seconds\n" |
| 1342 | "Infinite preferred lifetime\n" |
| 1343 | "Set Router Address flag\n") |
| 1344 | |
| 1345 | ALIAS (ipv6_nd_prefix, |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1346 | ipv6_nd_prefix_val_cmd, |
| 1347 | "ipv6 nd prefix X:X::X:X/M (<0-4294967295>|infinite) " |
| 1348 | "(<0-4294967295>|infinite)", |
| 1349 | "Interface IPv6 config commands\n" |
| 1350 | "Neighbor discovery\n" |
| 1351 | "Prefix information\n" |
| 1352 | "IPv6 prefix\n" |
| 1353 | "Valid lifetime in seconds\n" |
| 1354 | "Infinite valid lifetime\n" |
| 1355 | "Preferred lifetime in seconds\n" |
| 1356 | "Infinite preferred lifetime\n") |
| 1357 | |
| 1358 | ALIAS (ipv6_nd_prefix, |
| 1359 | ipv6_nd_prefix_noval_cmd, |
| 1360 | "ipv6 nd prefix X:X::X:X/M (no-autoconfig|) (off-link|)", |
| 1361 | "Interface IPv6 config commands\n" |
| 1362 | "Neighbor discovery\n" |
| 1363 | "Prefix information\n" |
| 1364 | "IPv6 prefix\n" |
| 1365 | "Do not use prefix for autoconfiguration\n" |
| 1366 | "Do not use prefix for onlink determination\n") |
| 1367 | |
| 1368 | ALIAS (ipv6_nd_prefix, |
| 1369 | ipv6_nd_prefix_noval_rev_cmd, |
| 1370 | "ipv6 nd prefix X:X::X:X/M (off-link|) (no-autoconfig|)", |
| 1371 | "Interface IPv6 config commands\n" |
| 1372 | "Neighbor discovery\n" |
| 1373 | "Prefix information\n" |
| 1374 | "IPv6 prefix\n" |
| 1375 | "Do not use prefix for onlink determination\n" |
| 1376 | "Do not use prefix for autoconfiguration\n") |
| 1377 | |
| 1378 | ALIAS (ipv6_nd_prefix, |
| 1379 | ipv6_nd_prefix_noval_noauto_cmd, |
| 1380 | "ipv6 nd prefix X:X::X:X/M (no-autoconfig|)", |
| 1381 | "Interface IPv6 config commands\n" |
| 1382 | "Neighbor discovery\n" |
| 1383 | "Prefix information\n" |
| 1384 | "IPv6 prefix\n" |
| 1385 | "Do not use prefix for autoconfiguration\n") |
| 1386 | |
| 1387 | ALIAS (ipv6_nd_prefix, |
| 1388 | ipv6_nd_prefix_noval_offlink_cmd, |
| 1389 | "ipv6 nd prefix X:X::X:X/M (off-link|)", |
| 1390 | "Interface IPv6 config commands\n" |
| 1391 | "Neighbor discovery\n" |
| 1392 | "Prefix information\n" |
| 1393 | "IPv6 prefix\n" |
| 1394 | "Do not use prefix for onlink determination\n") |
| 1395 | |
| 1396 | ALIAS (ipv6_nd_prefix, |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 1397 | ipv6_nd_prefix_noval_rtaddr_cmd, |
| 1398 | "ipv6 nd prefix X:X::X:X/M (router-address|)", |
| 1399 | "Interface IPv6 config commands\n" |
| 1400 | "Neighbor discovery\n" |
| 1401 | "Prefix information\n" |
| 1402 | "IPv6 prefix\n" |
| 1403 | "Set Router Address flag\n") |
| 1404 | |
| 1405 | ALIAS (ipv6_nd_prefix, |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1406 | ipv6_nd_prefix_prefix_cmd, |
| 1407 | "ipv6 nd prefix X:X::X:X/M", |
| 1408 | "Interface IPv6 config commands\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1409 | "Neighbor discovery\n" |
| 1410 | "Prefix information\n" |
| 1411 | "IPv6 prefix\n") |
| 1412 | |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1413 | DEFUN (no_ipv6_nd_prefix, |
| 1414 | no_ipv6_nd_prefix_cmd, |
| 1415 | "no ipv6 nd prefix IPV6PREFIX", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1416 | NO_STR |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1417 | "Interface IPv6 config commands\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1418 | "Neighbor discovery\n" |
| 1419 | "Prefix information\n" |
| 1420 | "IPv6 prefix\n") |
| 1421 | { |
| 1422 | int ret; |
| 1423 | struct interface *ifp; |
| 1424 | struct zebra_if *zebra_if; |
| 1425 | struct rtadv_prefix rp; |
| 1426 | |
| 1427 | ifp = (struct interface *) vty->index; |
| 1428 | zebra_if = ifp->info; |
| 1429 | |
Denis Ovsienko | aca43b6 | 2012-01-08 18:27:12 +0400 | [diff] [blame] | 1430 | ret = str2prefix_ipv6 (argv[0], &rp.prefix); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1431 | if (!ret) |
| 1432 | { |
| 1433 | vty_out (vty, "Malformed IPv6 prefix%s", VTY_NEWLINE); |
| 1434 | return CMD_WARNING; |
| 1435 | } |
Denis Ovsienko | 6bb1273 | 2012-01-08 17:46:34 +0400 | [diff] [blame] | 1436 | apply_mask_ipv6 (&rp.prefix); /* RFC4861 4.6.2 */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1437 | |
| 1438 | ret = rtadv_prefix_reset (zebra_if, &rp); |
| 1439 | if (!ret) |
| 1440 | { |
| 1441 | vty_out (vty, "Non-exist IPv6 prefix%s", VTY_NEWLINE); |
| 1442 | return CMD_WARNING; |
| 1443 | } |
| 1444 | |
| 1445 | return CMD_SUCCESS; |
| 1446 | } |
Chris Caputo | b60668d | 2009-05-03 04:40:57 +0000 | [diff] [blame] | 1447 | |
| 1448 | DEFUN (ipv6_nd_router_preference, |
| 1449 | ipv6_nd_router_preference_cmd, |
| 1450 | "ipv6 nd router-preference (high|medium|low)", |
| 1451 | "Interface IPv6 config commands\n" |
| 1452 | "Neighbor discovery\n" |
| 1453 | "Default router preference\n" |
| 1454 | "High default router preference\n" |
| 1455 | "Low default router preference\n" |
| 1456 | "Medium default router preference (default)\n") |
| 1457 | { |
| 1458 | struct interface *ifp; |
| 1459 | struct zebra_if *zif; |
| 1460 | int i = 0; |
| 1461 | |
| 1462 | ifp = (struct interface *) vty->index; |
| 1463 | zif = ifp->info; |
| 1464 | |
| 1465 | while (0 != rtadv_pref_strs[i]) |
| 1466 | { |
| 1467 | if (strncmp (argv[0], rtadv_pref_strs[i], 1) == 0) |
| 1468 | { |
| 1469 | zif->rtadv.DefaultPreference = i; |
| 1470 | return CMD_SUCCESS; |
| 1471 | } |
| 1472 | i++; |
| 1473 | } |
| 1474 | |
| 1475 | return CMD_ERR_NO_MATCH; |
| 1476 | } |
| 1477 | |
| 1478 | DEFUN (no_ipv6_nd_router_preference, |
| 1479 | no_ipv6_nd_router_preference_cmd, |
| 1480 | "no ipv6 nd router-preference", |
| 1481 | NO_STR |
| 1482 | "Interface IPv6 config commands\n" |
| 1483 | "Neighbor discovery\n" |
| 1484 | "Default router preference\n") |
| 1485 | { |
| 1486 | struct interface *ifp; |
| 1487 | struct zebra_if *zif; |
| 1488 | |
| 1489 | ifp = (struct interface *) vty->index; |
| 1490 | zif = ifp->info; |
| 1491 | |
| 1492 | zif->rtadv.DefaultPreference = RTADV_PREF_MEDIUM; /* Default per RFC4191. */ |
| 1493 | |
| 1494 | return CMD_SUCCESS; |
| 1495 | } |
| 1496 | |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 1497 | ALIAS (no_ipv6_nd_router_preference, |
| 1498 | no_ipv6_nd_router_preference_val_cmd, |
Christian Franke | 2b00515 | 2013-09-30 12:27:49 +0000 | [diff] [blame] | 1499 | "no ipv6 nd router-preference (high|medium|low)", |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 1500 | NO_STR |
| 1501 | "Interface IPv6 config commands\n" |
| 1502 | "Neighbor discovery\n" |
| 1503 | "Default router preference\n" |
| 1504 | "High default router preference\n" |
| 1505 | "Low default router preference\n" |
| 1506 | "Medium default router preference (default)\n") |
| 1507 | |
Denis Ovsienko | 6ae93c0 | 2011-12-27 10:45:36 +0400 | [diff] [blame] | 1508 | DEFUN (ipv6_nd_mtu, |
| 1509 | ipv6_nd_mtu_cmd, |
| 1510 | "ipv6 nd mtu <1-65535>", |
| 1511 | "Interface IPv6 config commands\n" |
| 1512 | "Neighbor discovery\n" |
| 1513 | "Advertised MTU\n" |
| 1514 | "MTU in bytes\n") |
| 1515 | { |
| 1516 | struct interface *ifp = (struct interface *) vty->index; |
| 1517 | struct zebra_if *zif = ifp->info; |
| 1518 | VTY_GET_INTEGER_RANGE ("MTU", zif->rtadv.AdvLinkMTU, argv[0], 1, 65535); |
| 1519 | return CMD_SUCCESS; |
| 1520 | } |
| 1521 | |
| 1522 | DEFUN (no_ipv6_nd_mtu, |
| 1523 | no_ipv6_nd_mtu_cmd, |
| 1524 | "no ipv6 nd mtu", |
| 1525 | NO_STR |
| 1526 | "Interface IPv6 config commands\n" |
| 1527 | "Neighbor discovery\n" |
| 1528 | "Advertised MTU\n") |
| 1529 | { |
| 1530 | struct interface *ifp = (struct interface *) vty->index; |
| 1531 | struct zebra_if *zif = ifp->info; |
| 1532 | zif->rtadv.AdvLinkMTU = 0; |
| 1533 | return CMD_SUCCESS; |
| 1534 | } |
| 1535 | |
| 1536 | ALIAS (no_ipv6_nd_mtu, |
| 1537 | no_ipv6_nd_mtu_val_cmd, |
| 1538 | "no ipv6 nd mtu <1-65535>", |
| 1539 | NO_STR |
| 1540 | "Interface IPv6 config commands\n" |
| 1541 | "Neighbor discovery\n" |
| 1542 | "Advertised MTU\n" |
| 1543 | "MTU in bytes\n") |
| 1544 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1545 | /* Write configuration about router advertisement. */ |
| 1546 | void |
| 1547 | rtadv_config_write (struct vty *vty, struct interface *ifp) |
| 1548 | { |
| 1549 | struct zebra_if *zif; |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 1550 | struct listnode *node; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1551 | struct rtadv_prefix *rprefix; |
Timo Teräs | be6335d | 2015-05-23 11:08:41 +0300 | [diff] [blame] | 1552 | char buf[PREFIX_STRLEN]; |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 1553 | int interval; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1554 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1555 | zif = ifp->info; |
| 1556 | |
| 1557 | if (! if_is_loopback (ifp)) |
| 1558 | { |
| 1559 | if (zif->rtadv.AdvSendAdvertisements) |
| 1560 | vty_out (vty, " no ipv6 nd suppress-ra%s", VTY_NEWLINE); |
| 1561 | else |
| 1562 | vty_out (vty, " ipv6 nd suppress-ra%s", VTY_NEWLINE); |
| 1563 | } |
| 1564 | |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 1565 | |
| 1566 | interval = zif->rtadv.MaxRtrAdvInterval; |
| 1567 | if (interval % 1000) |
| 1568 | vty_out (vty, " ipv6 nd ra-interval msec %d%s", interval, |
| 1569 | VTY_NEWLINE); |
| 1570 | else |
| 1571 | if (interval != RTADV_MAX_RTR_ADV_INTERVAL) |
| 1572 | vty_out (vty, " ipv6 nd ra-interval %d%s", interval / 1000, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1573 | VTY_NEWLINE); |
| 1574 | |
Denis Ovsienko | 6134b87 | 2011-12-27 18:49:15 +0400 | [diff] [blame] | 1575 | if (zif->rtadv.AdvIntervalOption) |
| 1576 | vty_out (vty, " ipv6 nd adv-interval-option%s", VTY_NEWLINE); |
| 1577 | |
Denis Ovsienko | d660f69 | 2011-12-30 21:55:49 +0400 | [diff] [blame] | 1578 | if (zif->rtadv.AdvDefaultLifetime != -1) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1579 | vty_out (vty, " ipv6 nd ra-lifetime %d%s", zif->rtadv.AdvDefaultLifetime, |
| 1580 | VTY_NEWLINE); |
| 1581 | |
Denis Ovsienko | 6134b87 | 2011-12-27 18:49:15 +0400 | [diff] [blame] | 1582 | if (zif->rtadv.HomeAgentPreference) |
| 1583 | vty_out (vty, " ipv6 nd home-agent-preference %u%s", |
| 1584 | zif->rtadv.HomeAgentPreference, VTY_NEWLINE); |
| 1585 | |
Denis Ovsienko | d660f69 | 2011-12-30 21:55:49 +0400 | [diff] [blame] | 1586 | if (zif->rtadv.HomeAgentLifetime != -1) |
Denis Ovsienko | 6134b87 | 2011-12-27 18:49:15 +0400 | [diff] [blame] | 1587 | vty_out (vty, " ipv6 nd home-agent-lifetime %u%s", |
| 1588 | zif->rtadv.HomeAgentLifetime, VTY_NEWLINE); |
| 1589 | |
| 1590 | if (zif->rtadv.AdvHomeAgentFlag) |
| 1591 | vty_out (vty, " ipv6 nd home-agent-config-flag%s", VTY_NEWLINE); |
| 1592 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1593 | if (zif->rtadv.AdvReachableTime) |
| 1594 | vty_out (vty, " ipv6 nd reachable-time %d%s", zif->rtadv.AdvReachableTime, |
| 1595 | VTY_NEWLINE); |
| 1596 | |
| 1597 | if (zif->rtadv.AdvManagedFlag) |
| 1598 | vty_out (vty, " ipv6 nd managed-config-flag%s", VTY_NEWLINE); |
| 1599 | |
| 1600 | if (zif->rtadv.AdvOtherConfigFlag) |
| 1601 | vty_out (vty, " ipv6 nd other-config-flag%s", VTY_NEWLINE); |
| 1602 | |
Chris Caputo | b60668d | 2009-05-03 04:40:57 +0000 | [diff] [blame] | 1603 | if (zif->rtadv.DefaultPreference != RTADV_PREF_MEDIUM) |
| 1604 | vty_out (vty, " ipv6 nd router-preference %s%s", |
| 1605 | rtadv_pref_strs[zif->rtadv.DefaultPreference], |
| 1606 | VTY_NEWLINE); |
| 1607 | |
Denis Ovsienko | 6ae93c0 | 2011-12-27 10:45:36 +0400 | [diff] [blame] | 1608 | if (zif->rtadv.AdvLinkMTU) |
| 1609 | vty_out (vty, " ipv6 nd mtu %d%s", zif->rtadv.AdvLinkMTU, VTY_NEWLINE); |
| 1610 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1611 | for (ALL_LIST_ELEMENTS_RO (zif->rtadv.AdvPrefixList, node, rprefix)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1612 | { |
Timo Teräs | be6335d | 2015-05-23 11:08:41 +0300 | [diff] [blame] | 1613 | vty_out (vty, " ipv6 nd prefix %s", |
| 1614 | prefix2str (&rprefix->prefix, buf, sizeof(buf))); |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1615 | if ((rprefix->AdvValidLifetime != RTADV_VALID_LIFETIME) || |
| 1616 | (rprefix->AdvPreferredLifetime != RTADV_PREFERRED_LIFETIME)) |
| 1617 | { |
| 1618 | if (rprefix->AdvValidLifetime == UINT32_MAX) |
| 1619 | vty_out (vty, " infinite"); |
| 1620 | else |
| 1621 | vty_out (vty, " %u", rprefix->AdvValidLifetime); |
| 1622 | if (rprefix->AdvPreferredLifetime == UINT32_MAX) |
| 1623 | vty_out (vty, " infinite"); |
| 1624 | else |
| 1625 | vty_out (vty, " %u", rprefix->AdvPreferredLifetime); |
| 1626 | } |
| 1627 | if (!rprefix->AdvOnLinkFlag) |
| 1628 | vty_out (vty, " off-link"); |
| 1629 | if (!rprefix->AdvAutonomousFlag) |
| 1630 | vty_out (vty, " no-autoconfig"); |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 1631 | if (rprefix->AdvRouterAddressFlag) |
| 1632 | vty_out (vty, " router-address"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1633 | vty_out (vty, "%s", VTY_NEWLINE); |
| 1634 | } |
| 1635 | } |
| 1636 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1637 | |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 1638 | static void |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 1639 | rtadv_event (struct zebra_vrf *zvrf, enum rtadv_event event, int val) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1640 | { |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 1641 | struct rtadv *rtadv = &zvrf->rtadv; |
| 1642 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1643 | switch (event) |
| 1644 | { |
| 1645 | case RTADV_START: |
| 1646 | if (! rtadv->ra_read) |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 1647 | rtadv->ra_read = thread_add_read (zebrad.master, rtadv_read, zvrf, val); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1648 | if (! rtadv->ra_timer) |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1649 | rtadv->ra_timer = thread_add_event (zebrad.master, rtadv_timer, |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 1650 | zvrf, 0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1651 | break; |
| 1652 | case RTADV_STOP: |
| 1653 | if (rtadv->ra_timer) |
| 1654 | { |
| 1655 | thread_cancel (rtadv->ra_timer); |
| 1656 | rtadv->ra_timer = NULL; |
| 1657 | } |
| 1658 | if (rtadv->ra_read) |
| 1659 | { |
| 1660 | thread_cancel (rtadv->ra_read); |
| 1661 | rtadv->ra_read = NULL; |
| 1662 | } |
| 1663 | break; |
| 1664 | case RTADV_TIMER: |
| 1665 | if (! rtadv->ra_timer) |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 1666 | rtadv->ra_timer = thread_add_timer (zebrad.master, rtadv_timer, zvrf, |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1667 | val); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1668 | break; |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 1669 | case RTADV_TIMER_MSEC: |
| 1670 | if (! rtadv->ra_timer) |
| 1671 | rtadv->ra_timer = thread_add_timer_msec (zebrad.master, rtadv_timer, |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 1672 | zvrf, val); |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 1673 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1674 | case RTADV_READ: |
| 1675 | if (! rtadv->ra_read) |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 1676 | rtadv->ra_read = thread_add_read (zebrad.master, rtadv_read, zvrf, val); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1677 | break; |
| 1678 | default: |
| 1679 | break; |
| 1680 | } |
| 1681 | return; |
| 1682 | } |
| 1683 | |
| 1684 | void |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 1685 | rtadv_init (struct zebra_vrf *zvrf) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1686 | { |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 1687 | zvrf->rtadv.sock = rtadv_make_socket (zvrf->vrf_id); |
| 1688 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1689 | |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 1690 | void |
| 1691 | rtadv_terminate (struct zebra_vrf *zvrf) |
| 1692 | { |
| 1693 | rtadv_event (zvrf, RTADV_STOP, 0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1694 | |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 1695 | if (zvrf->rtadv.sock >= 0) |
| 1696 | { |
| 1697 | close (zvrf->rtadv.sock); |
| 1698 | zvrf->rtadv.sock = -1; |
| 1699 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1700 | |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 1701 | zvrf->rtadv.adv_if_count = 0; |
| 1702 | zvrf->rtadv.adv_msec_if_count = 0; |
| 1703 | } |
| 1704 | |
| 1705 | void |
| 1706 | rtadv_cmd_init (void) |
| 1707 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1708 | install_element (INTERFACE_NODE, &ipv6_nd_suppress_ra_cmd); |
| 1709 | install_element (INTERFACE_NODE, &no_ipv6_nd_suppress_ra_cmd); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1710 | install_element (INTERFACE_NODE, &ipv6_nd_ra_interval_cmd); |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 1711 | install_element (INTERFACE_NODE, &ipv6_nd_ra_interval_msec_cmd); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1712 | install_element (INTERFACE_NODE, &no_ipv6_nd_ra_interval_cmd); |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 1713 | install_element (INTERFACE_NODE, &no_ipv6_nd_ra_interval_val_cmd); |
| 1714 | install_element (INTERFACE_NODE, &no_ipv6_nd_ra_interval_msec_val_cmd); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1715 | install_element (INTERFACE_NODE, &ipv6_nd_ra_lifetime_cmd); |
| 1716 | install_element (INTERFACE_NODE, &no_ipv6_nd_ra_lifetime_cmd); |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 1717 | install_element (INTERFACE_NODE, &no_ipv6_nd_ra_lifetime_val_cmd); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1718 | install_element (INTERFACE_NODE, &ipv6_nd_reachable_time_cmd); |
| 1719 | install_element (INTERFACE_NODE, &no_ipv6_nd_reachable_time_cmd); |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 1720 | install_element (INTERFACE_NODE, &no_ipv6_nd_reachable_time_val_cmd); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1721 | install_element (INTERFACE_NODE, &ipv6_nd_managed_config_flag_cmd); |
| 1722 | install_element (INTERFACE_NODE, &no_ipv6_nd_managed_config_flag_cmd); |
| 1723 | install_element (INTERFACE_NODE, &ipv6_nd_other_config_flag_cmd); |
| 1724 | install_element (INTERFACE_NODE, &no_ipv6_nd_other_config_flag_cmd); |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 1725 | install_element (INTERFACE_NODE, &ipv6_nd_homeagent_config_flag_cmd); |
| 1726 | install_element (INTERFACE_NODE, &no_ipv6_nd_homeagent_config_flag_cmd); |
| 1727 | install_element (INTERFACE_NODE, &ipv6_nd_homeagent_preference_cmd); |
| 1728 | install_element (INTERFACE_NODE, &no_ipv6_nd_homeagent_preference_cmd); |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 1729 | install_element (INTERFACE_NODE, &no_ipv6_nd_homeagent_preference_val_cmd); |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 1730 | install_element (INTERFACE_NODE, &ipv6_nd_homeagent_lifetime_cmd); |
| 1731 | install_element (INTERFACE_NODE, &no_ipv6_nd_homeagent_lifetime_cmd); |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 1732 | install_element (INTERFACE_NODE, &no_ipv6_nd_homeagent_lifetime_val_cmd); |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 1733 | install_element (INTERFACE_NODE, &ipv6_nd_adv_interval_config_option_cmd); |
| 1734 | install_element (INTERFACE_NODE, &no_ipv6_nd_adv_interval_config_option_cmd); |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1735 | install_element (INTERFACE_NODE, &ipv6_nd_prefix_cmd); |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 1736 | install_element (INTERFACE_NODE, &ipv6_nd_prefix_val_rev_rtaddr_cmd); |
| 1737 | install_element (INTERFACE_NODE, &ipv6_nd_prefix_val_nortaddr_cmd); |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1738 | install_element (INTERFACE_NODE, &ipv6_nd_prefix_val_rev_cmd); |
| 1739 | install_element (INTERFACE_NODE, &ipv6_nd_prefix_val_noauto_cmd); |
| 1740 | install_element (INTERFACE_NODE, &ipv6_nd_prefix_val_offlink_cmd); |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 1741 | install_element (INTERFACE_NODE, &ipv6_nd_prefix_val_rtaddr_cmd); |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1742 | install_element (INTERFACE_NODE, &ipv6_nd_prefix_val_cmd); |
| 1743 | install_element (INTERFACE_NODE, &ipv6_nd_prefix_noval_cmd); |
| 1744 | install_element (INTERFACE_NODE, &ipv6_nd_prefix_noval_rev_cmd); |
| 1745 | install_element (INTERFACE_NODE, &ipv6_nd_prefix_noval_noauto_cmd); |
| 1746 | install_element (INTERFACE_NODE, &ipv6_nd_prefix_noval_offlink_cmd); |
vincent | 7cee1bb | 2005-03-25 13:08:53 +0000 | [diff] [blame] | 1747 | install_element (INTERFACE_NODE, &ipv6_nd_prefix_noval_rtaddr_cmd); |
hasso | 3e31cde | 2004-05-18 11:58:59 +0000 | [diff] [blame] | 1748 | install_element (INTERFACE_NODE, &ipv6_nd_prefix_prefix_cmd); |
| 1749 | install_element (INTERFACE_NODE, &no_ipv6_nd_prefix_cmd); |
Chris Caputo | b60668d | 2009-05-03 04:40:57 +0000 | [diff] [blame] | 1750 | install_element (INTERFACE_NODE, &ipv6_nd_router_preference_cmd); |
| 1751 | install_element (INTERFACE_NODE, &no_ipv6_nd_router_preference_cmd); |
Denis Ovsienko | 4afa50b | 2012-01-24 12:39:58 +0400 | [diff] [blame] | 1752 | install_element (INTERFACE_NODE, &no_ipv6_nd_router_preference_val_cmd); |
Denis Ovsienko | 6ae93c0 | 2011-12-27 10:45:36 +0400 | [diff] [blame] | 1753 | install_element (INTERFACE_NODE, &ipv6_nd_mtu_cmd); |
| 1754 | install_element (INTERFACE_NODE, &no_ipv6_nd_mtu_cmd); |
| 1755 | install_element (INTERFACE_NODE, &no_ipv6_nd_mtu_val_cmd); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1756 | } |
| 1757 | |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 1758 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1759 | if_join_all_router (int sock, struct interface *ifp) |
| 1760 | { |
| 1761 | int ret; |
| 1762 | |
| 1763 | struct ipv6_mreq mreq; |
| 1764 | |
| 1765 | memset (&mreq, 0, sizeof (struct ipv6_mreq)); |
| 1766 | inet_pton (AF_INET6, ALLROUTER, &mreq.ipv6mr_multiaddr); |
| 1767 | mreq.ipv6mr_interface = ifp->ifindex; |
| 1768 | |
| 1769 | ret = setsockopt (sock, IPPROTO_IPV6, IPV6_JOIN_GROUP, |
| 1770 | (char *) &mreq, sizeof mreq); |
| 1771 | if (ret < 0) |
ajs | 6099b3b | 2004-11-20 02:06:59 +0000 | [diff] [blame] | 1772 | zlog_warn ("can't setsockopt IPV6_JOIN_GROUP: %s", safe_strerror (errno)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1773 | |
| 1774 | zlog_info ("rtadv: %s join to all-routers multicast group", ifp->name); |
| 1775 | |
| 1776 | return 0; |
| 1777 | } |
| 1778 | |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 1779 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1780 | if_leave_all_router (int sock, struct interface *ifp) |
| 1781 | { |
| 1782 | int ret; |
| 1783 | |
| 1784 | struct ipv6_mreq mreq; |
| 1785 | |
| 1786 | memset (&mreq, 0, sizeof (struct ipv6_mreq)); |
| 1787 | inet_pton (AF_INET6, ALLROUTER, &mreq.ipv6mr_multiaddr); |
| 1788 | mreq.ipv6mr_interface = ifp->ifindex; |
| 1789 | |
| 1790 | ret = setsockopt (sock, IPPROTO_IPV6, IPV6_LEAVE_GROUP, |
| 1791 | (char *) &mreq, sizeof mreq); |
| 1792 | if (ret < 0) |
ajs | 6099b3b | 2004-11-20 02:06:59 +0000 | [diff] [blame] | 1793 | zlog_warn ("can't setsockopt IPV6_LEAVE_GROUP: %s", safe_strerror (errno)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1794 | |
| 1795 | zlog_info ("rtadv: %s leave from all-routers multicast group", ifp->name); |
| 1796 | |
| 1797 | return 0; |
| 1798 | } |
| 1799 | |
| 1800 | #else |
| 1801 | void |
Feng Lu | 49f7609 | 2015-05-22 11:40:10 +0200 | [diff] [blame] | 1802 | rtadv_init (struct zebra_vrf *zvrf) |
| 1803 | { |
| 1804 | /* Empty.*/; |
| 1805 | } |
| 1806 | void |
| 1807 | rtadv_terminate (struct zebra_vrf *zvrf) |
| 1808 | { |
| 1809 | /* Empty.*/; |
| 1810 | } |
| 1811 | void |
| 1812 | rtadv_cmd_init (void) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1813 | { |
| 1814 | /* Empty.*/; |
| 1815 | } |
Donald Sharp | 6425773 | 2015-11-20 08:33:30 -0500 | [diff] [blame^] | 1816 | #endif /* HAVE_RTADV && HAVE_IPV6 */ |