blob: 07cf972b75d5a3c5a1d17f87d0ce358e091eb8e9 [file] [log] [blame]
Simon Kelleyc49778d2016-01-06 18:52:33 +00001/* dnsmasq is Copyright (c) 2000-2016 Simon Kelley
Simon Kelleyc5ad4e72012-02-24 16:06:20 +00002
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; version 2 dated June, 1991, or
6 (at your option) version 3 dated 29 June, 2007.
7
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
12
13 You should have received a copy of the GNU General Public License
14 along with this program. If not, see <http://www.gnu.org/licenses/>.
15*/
16
17
Simon Kelley843c96b2012-02-27 17:42:38 +000018/* NB. This code may be called during a DHCPv4 or transaction which is in ping-wait
Simon Kelleyc5ad4e72012-02-24 16:06:20 +000019 It therefore cannot use any DHCP buffer resources except outpacket, which is
Simon Kelley843c96b2012-02-27 17:42:38 +000020 not used by DHCPv4 code. This code may also be called when DHCP 4 or 6 isn't
21 active, so we ensure that outpacket is allocated here too */
Simon Kelleyc5ad4e72012-02-24 16:06:20 +000022
23#include "dnsmasq.h"
Simon Kelleyc5ad4e72012-02-24 16:06:20 +000024
25#ifdef HAVE_DHCP6
26
Simon Kelley22d904d2012-02-26 20:13:45 +000027#include <netinet/icmp6.h>
28
Simon Kelleyc5ad4e72012-02-24 16:06:20 +000029struct ra_param {
Simon Kelley1f776932012-12-16 19:46:08 +000030 time_t now;
S La18bf312016-02-12 17:36:20 +000031 int ind, managed, other, first, adv_router;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +000032 char *if_name;
Simon Kelley18f0fb02012-03-31 21:18:55 +010033 struct dhcp_netid *tags;
Simon Kelleyc3a04082014-01-11 22:18:19 +000034 struct in6_addr link_local, link_global, ula;
Ilya Ponetaev5bf50af2014-09-09 12:46:21 +010035 unsigned int glob_pref_time, link_pref_time, ula_pref_time, adv_interval, prio;
S La18bf312016-02-12 17:36:20 +000036 struct dhcp_context *found_context;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +000037};
38
39struct search_param {
40 time_t now; int iface;
Simon Kelleyc4cd95d2013-10-10 20:58:11 +010041 char name[IF_NAMESIZE+1];
Simon Kelleyc5ad4e72012-02-24 16:06:20 +000042};
43
Neil Jerram9bad3392015-06-10 22:16:35 +010044struct alias_param {
45 int iface;
46 struct dhcp_bridge *bridge;
47 int num_alias_ifs;
48 int max_alias_ifs;
49 int *alias_ifs;
50};
51
Simon Kelley1f776932012-12-16 19:46:08 +000052static void send_ra(time_t now, int iface, char *iface_name, struct in6_addr *dest);
Neil Jerramba4fc0f2015-06-10 22:14:49 +010053static void send_ra_alias(time_t now, int iface, char *iface_name, struct in6_addr *dest,
54 int send_iface);
Neil Jerram9bad3392015-06-10 22:16:35 +010055static int send_ra_to_aliases(int index, unsigned int type, char *mac, size_t maclen, void *parm);
Simon Kelleyc5ad4e72012-02-24 16:06:20 +000056static int add_prefixes(struct in6_addr *local, int prefix,
Simon Kelleybad7b872012-12-20 22:00:39 +000057 int scope, int if_index, int flags,
Simon Kelley55b42f62012-12-21 16:53:15 +000058 unsigned int preferred, unsigned int valid, void *vparam);
Simon Kelleyc5ad4e72012-02-24 16:06:20 +000059static int iface_search(struct in6_addr *local, int prefix,
Simon Kelleybad7b872012-12-20 22:00:39 +000060 int scope, int if_index, int flags,
Simon Kelley1f776932012-12-16 19:46:08 +000061 int prefered, int valid, void *vparam);
Simon Kelleyc5ad4e72012-02-24 16:06:20 +000062static int add_lla(int index, unsigned int type, char *mac, size_t maclen, void *parm);
Simon Kelleyc4cd95d2013-10-10 20:58:11 +010063static void new_timeout(struct dhcp_context *context, char *iface_name, time_t now);
64static unsigned int calc_lifetime(struct ra_interface *ra);
65static unsigned int calc_interval(struct ra_interface *ra);
66static unsigned int calc_prio(struct ra_interface *ra);
67static struct ra_interface *find_iface_param(char *iface);
Simon Kelleyc5ad4e72012-02-24 16:06:20 +000068
Simon Kelleyc5379c12012-02-24 20:05:52 +000069static int hop_limit;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +000070
71void ra_init(time_t now)
72{
Simon Kelleyc5ad4e72012-02-24 16:06:20 +000073 struct icmp6_filter filter;
74 int fd;
Simon Kelley0e88d532012-03-28 22:22:05 +010075#if defined(IPV6_TCLASS) && defined(IPTOS_CLASS_CS6)
Simon Kelleyc5ad4e72012-02-24 16:06:20 +000076 int class = IPTOS_CLASS_CS6;
77#endif
78 int val = 255; /* radvd uses this value */
Simon Kelley7b6dd882012-03-01 10:26:16 +000079 socklen_t len = sizeof(int);
Simon Kelley353ae4d2012-03-19 20:07:51 +000080 struct dhcp_context *context;
81
Simon Kelley843c96b2012-02-27 17:42:38 +000082 /* ensure this is around even if we're not doing DHCPv6 */
83 expand_buf(&daemon->outpacket, sizeof(struct dhcp_packet));
Simon Kelley353ae4d2012-03-19 20:07:51 +000084
Josh Soref730c6742017-02-06 16:14:04 +000085 /* See if we're guessing SLAAC addresses, if so we need to receive ping replies */
Simon Kelley1f776932012-12-16 19:46:08 +000086 for (context = daemon->dhcp6; context; context = context->next)
Simon Kelley353ae4d2012-03-19 20:07:51 +000087 if ((context->flags & CONTEXT_RA_NAME))
88 break;
89
Simon Kelley89500e32013-09-20 16:29:20 +010090 /* Need ICMP6 socket for transmission for DHCPv6 even when not doing RA. */
91
Simon Kelleyc5ad4e72012-02-24 16:06:20 +000092 ICMP6_FILTER_SETBLOCKALL(&filter);
Simon Kelley89500e32013-09-20 16:29:20 +010093 if (daemon->doing_ra)
94 {
95 ICMP6_FILTER_SETPASS(ND_ROUTER_SOLICIT, &filter);
96 if (context)
97 ICMP6_FILTER_SETPASS(ICMP6_ECHO_REPLY, &filter);
98 }
Simon Kelleyc5ad4e72012-02-24 16:06:20 +000099
100 if ((fd = socket(PF_INET6, SOCK_RAW, IPPROTO_ICMPV6)) == -1 ||
Simon Kelleyc5379c12012-02-24 20:05:52 +0000101 getsockopt(fd, IPPROTO_IPV6, IPV6_UNICAST_HOPS, &hop_limit, &len) ||
Simon Kelley0e88d532012-03-28 22:22:05 +0100102#if defined(IPV6_TCLASS) && defined(IPTOS_CLASS_CS6)
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000103 setsockopt(fd, IPPROTO_IPV6, IPV6_TCLASS, &class, sizeof(class)) == -1 ||
104#endif
105 !fix_fd(fd) ||
106 !set_ipv6pktinfo(fd) ||
107 setsockopt(fd, IPPROTO_IPV6, IPV6_UNICAST_HOPS, &val, sizeof(val)) ||
108 setsockopt(fd, IPPROTO_IPV6, IPV6_MULTICAST_HOPS, &val, sizeof(val)) ||
109 setsockopt(fd, IPPROTO_ICMPV6, ICMP6_FILTER, &filter, sizeof(filter)) == -1)
110 die (_("cannot create ICMPv6 socket: %s"), NULL, EC_BADNET);
111
112 daemon->icmp6fd = fd;
113
Simon Kelley89500e32013-09-20 16:29:20 +0100114 if (daemon->doing_ra)
Josh Soref730c6742017-02-06 16:14:04 +0000115 ra_start_unsolicited(now, NULL);
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000116}
117
Josh Soref730c6742017-02-06 16:14:04 +0000118void ra_start_unsolicited(time_t now, struct dhcp_context *context)
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000119{
Simon Kelley353ae4d2012-03-19 20:07:51 +0000120 /* init timers so that we do ra's for some/all soon. some ra_times will end up zeroed
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000121 if it's not appropriate to advertise those contexts.
122 This gets re-called on a netlink route-change to re-do the advertisement
123 and pick up new interfaces */
Simon Kelley6e3dba32012-12-16 21:52:45 +0000124
Simon Kelley353ae4d2012-03-19 20:07:51 +0000125 if (context)
Simon Kelley1b75c1e2012-12-18 19:55:25 +0000126 context->ra_short_period_start = context->ra_time = now;
Simon Kelley353ae4d2012-03-19 20:07:51 +0000127 else
Simon Kelley1f776932012-12-16 19:46:08 +0000128 for (context = daemon->dhcp6; context; context = context->next)
Simon Kelley6e3dba32012-12-16 21:52:45 +0000129 if (!(context->flags & CONTEXT_TEMPLATE))
Simon Kelley1b75c1e2012-12-18 19:55:25 +0000130 {
131 context->ra_time = now + (rand16()/13000); /* range 0 - 5 */
132 /* re-do frequently for a minute or so, in case the first gets lost. */
133 context->ra_short_period_start = now;
134 }
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000135}
136
Simon Kelley1f776932012-12-16 19:46:08 +0000137void icmp6_packet(time_t now)
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000138{
139 char interface[IF_NAMESIZE+1];
140 ssize_t sz;
141 int if_index = 0;
142 struct cmsghdr *cmptr;
143 struct msghdr msg;
144 union {
145 struct cmsghdr align; /* this ensures alignment */
146 char control6[CMSG_SPACE(sizeof(struct in6_pktinfo))];
147 } control_u;
148 struct sockaddr_in6 from;
Simon Kelley5ef33272012-03-30 15:10:28 +0100149 unsigned char *packet;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000150 struct iname *tmp;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000151
152 /* Note: use outpacket for input buffer */
153 msg.msg_control = control_u.control6;
154 msg.msg_controllen = sizeof(control_u);
155 msg.msg_flags = 0;
156 msg.msg_name = &from;
157 msg.msg_namelen = sizeof(from);
158 msg.msg_iov = &daemon->outpacket;
159 msg.msg_iovlen = 1;
160
161 if ((sz = recv_dhcp_packet(daemon->icmp6fd, &msg)) == -1 || sz < 8)
162 return;
Simon Kelley5ef33272012-03-30 15:10:28 +0100163
164 packet = (unsigned char *)daemon->outpacket.iov_base;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000165
166 for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr))
167 if (cmptr->cmsg_level == IPPROTO_IPV6 && cmptr->cmsg_type == daemon->v6pktinfo)
168 {
169 union {
170 unsigned char *c;
171 struct in6_pktinfo *p;
172 } p;
173 p.c = CMSG_DATA(cmptr);
174
175 if_index = p.p->ipi6_ifindex;
176 }
177
178 if (!indextoname(daemon->icmp6fd, if_index, interface))
179 return;
180
Simon Kelley4f7b3042012-11-28 21:27:02 +0000181 if (!iface_check(AF_LOCAL, NULL, interface, NULL))
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000182 return;
183
184 for (tmp = daemon->dhcp_except; tmp; tmp = tmp->next)
Simon Kelley49333cb2013-03-15 20:30:51 +0000185 if (tmp->name && wildcard_match(tmp->name, interface))
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000186 return;
187
Simon Kelley8bc4cec2012-07-03 21:04:11 +0100188 if (packet[1] != 0)
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000189 return;
Simon Kelley8bc4cec2012-07-03 21:04:11 +0100190
Simon Kelley5ef33272012-03-30 15:10:28 +0100191 if (packet[0] == ICMP6_ECHO_REPLY)
192 lease_ping_reply(&from.sin6_addr, packet, interface);
193 else if (packet[0] == ND_ROUTER_SOLICIT)
Simon Kelley353ae4d2012-03-19 20:07:51 +0000194 {
Simon Kelley5ef33272012-03-30 15:10:28 +0100195 char *mac = "";
Neil Jerramba4fc0f2015-06-10 22:14:49 +0100196 struct dhcp_bridge *bridge, *alias;
Simon Kelley5ef33272012-03-30 15:10:28 +0100197
198 /* look for link-layer address option for logging */
199 if (sz >= 16 && packet[8] == ICMP6_OPT_SOURCE_MAC && (packet[9] * 8) + 8 <= sz)
200 {
201 print_mac(daemon->namebuff, &packet[10], (packet[9] * 8) - 2);
202 mac = daemon->namebuff;
203 }
204
Kevin Darbyshire-Bryant8c0b73d2013-10-11 11:56:33 +0100205 if (!option_bool(OPT_QUIET_RA))
206 my_syslog(MS_DHCP | LOG_INFO, "RTR-SOLICIT(%s) %s", interface, mac);
Neil Jerramba4fc0f2015-06-10 22:14:49 +0100207
208 /* If the incoming interface is an alias of some other one (as
Neil Jerram4918bd52015-06-10 22:23:20 +0100209 specified by the --bridge-interface option), send an RA using
210 the context of the aliased interface. */
Neil Jerramba4fc0f2015-06-10 22:14:49 +0100211 for (bridge = daemon->bridges; bridge; bridge = bridge->next)
212 {
213 int bridge_index = if_nametoindex(bridge->iface);
214 if (bridge_index)
215 {
216 for (alias = bridge->alias; alias; alias = alias->next)
217 if (wildcard_matchn(alias->iface, interface, IF_NAMESIZE))
218 {
219 /* Send an RA on if_index with information from
220 bridge_index. */
221 send_ra_alias(now, bridge_index, bridge->iface, NULL, if_index);
222 break;
223 }
224 if (alias)
225 break;
226 }
227 }
228
229 /* If the incoming interface wasn't an alias, send an RA using
230 the context of the incoming interface. */
231 if (!bridge)
232 /* source address may not be valid in solicit request. */
233 send_ra(now, if_index, interface, !IN6_IS_ADDR_UNSPECIFIED(&from.sin6_addr) ? &from.sin6_addr : NULL);
Simon Kelley353ae4d2012-03-19 20:07:51 +0000234 }
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000235}
236
Neil Jerramba4fc0f2015-06-10 22:14:49 +0100237static void send_ra_alias(time_t now, int iface, char *iface_name, struct in6_addr *dest, int send_iface)
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000238{
239 struct ra_packet *ra;
240 struct ra_param parm;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000241 struct sockaddr_in6 addr;
Simon Kelleyef1a94a2013-07-26 13:59:03 +0100242 struct dhcp_context *context, *tmp, **up;
Simon Kelley18f0fb02012-03-31 21:18:55 +0100243 struct dhcp_netid iface_id;
244 struct dhcp_opt *opt_cfg;
Simon Kelleyc4cd95d2013-10-10 20:58:11 +0100245 struct ra_interface *ra_param = find_iface_param(iface_name);
David Flamand005c46d2017-04-11 11:49:54 +0100246 int done_dns = 0, old_prefix = 0, mtu = 0;
Simon Kelleyc3a04082014-01-11 22:18:19 +0000247 unsigned int min_pref_time;
Simon Kelley3b436462012-12-28 11:55:45 +0000248#ifdef HAVE_LINUX_NETWORK
249 FILE *f;
250#endif
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000251
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000252 parm.ind = iface;
253 parm.managed = 0;
Simon Kelley30cd9662012-03-25 20:44:38 +0100254 parm.other = 0;
S La18bf312016-02-12 17:36:20 +0000255 parm.found_context = NULL;
Simon Kelley7ea3d3f2014-04-25 22:04:05 +0100256 parm.adv_router = 0;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000257 parm.if_name = iface_name;
258 parm.first = 1;
Simon Kelley1f776932012-12-16 19:46:08 +0000259 parm.now = now;
Simon Kelleyc3a04082014-01-11 22:18:19 +0000260 parm.glob_pref_time = parm.link_pref_time = parm.ula_pref_time = 0;
Simon Kelleyc4cd95d2013-10-10 20:58:11 +0100261 parm.adv_interval = calc_interval(ra_param);
Ilya Ponetaev5bf50af2014-09-09 12:46:21 +0100262 parm.prio = calc_prio(ra_param);
Simon Kelley1f776932012-12-16 19:46:08 +0000263
Simon Kelleyfa785732016-07-22 20:56:01 +0100264 reset_counter();
Simon Kelleyce7845b2016-07-06 21:42:27 +0100265
266 if (!(ra = expand(sizeof(struct ra_packet))))
267 return;
Ilya Ponetaev5bf50af2014-09-09 12:46:21 +0100268
269 ra->type = ND_ROUTER_ADVERT;
270 ra->code = 0;
271 ra->hop_limit = hop_limit;
272 ra->flags = parm.prio;
273 ra->lifetime = htons(calc_lifetime(ra_param));
274 ra->reachable_time = 0;
275 ra->retrans_time = 0;
276
Simon Kelley18f0fb02012-03-31 21:18:55 +0100277 /* set tag with name == interface */
278 iface_id.net = iface_name;
279 iface_id.next = NULL;
280 parm.tags = &iface_id;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000281
Simon Kelley1f776932012-12-16 19:46:08 +0000282 for (context = daemon->dhcp6; context; context = context->next)
Simon Kelley18f0fb02012-03-31 21:18:55 +0100283 {
284 context->flags &= ~CONTEXT_RA_DONE;
285 context->netid.next = &context->netid;
286 }
287
Simon Kelleyef1a94a2013-07-26 13:59:03 +0100288 if (!iface_enumerate(AF_INET6, &parm, add_prefixes))
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000289 return;
290
Simon Kelleyc3a04082014-01-11 22:18:19 +0000291 /* Find smallest preferred time within address classes,
292 to use as lifetime for options. This is a rather arbitrary choice. */
293 min_pref_time = 0xffffffff;
294 if (parm.glob_pref_time != 0 && parm.glob_pref_time < min_pref_time)
295 min_pref_time = parm.glob_pref_time;
296
297 if (parm.ula_pref_time != 0 && parm.ula_pref_time < min_pref_time)
298 min_pref_time = parm.ula_pref_time;
299
300 if (parm.link_pref_time != 0 && parm.link_pref_time < min_pref_time)
301 min_pref_time = parm.link_pref_time;
302
Simon Kelleyef1a94a2013-07-26 13:59:03 +0100303 /* Look for constructed contexts associated with addresses which have gone,
304 and advertise them with preferred_time == 0 RFC 6204 4.3 L-13 */
305 for (up = &daemon->dhcp6, context = daemon->dhcp6; context; context = tmp)
306 {
307 tmp = context->next;
Simon Kelley3b436462012-12-28 11:55:45 +0000308
Simon Kelleyef1a94a2013-07-26 13:59:03 +0100309 if (context->if_index == iface && (context->flags & CONTEXT_OLD))
310 {
311 unsigned int old = difftime(now, context->address_lost_time);
312
313 if (old > context->saved_valid)
S La18bf312016-02-12 17:36:20 +0000314 {
Simon Kelleyef1a94a2013-07-26 13:59:03 +0100315 /* We've advertised this enough, time to go */
S La18bf312016-02-12 17:36:20 +0000316
317 /* If this context held the timeout, and there's another context in use
318 transfer the timeout there. */
319 if (context->ra_time != 0 && parm.found_context && parm.found_context->ra_time == 0)
320 new_timeout(parm.found_context, iface_name, now);
321
Simon Kelleyef1a94a2013-07-26 13:59:03 +0100322 *up = context->next;
323 free(context);
324 }
325 else
326 {
327 struct prefix_opt *opt;
328 struct in6_addr local = context->start6;
329 int do_slaac = 0;
330
Simon Kelley44522922013-11-15 14:45:04 +0000331 old_prefix = 1;
Simon Kelleyef1a94a2013-07-26 13:59:03 +0100332
333 /* zero net part of address */
334 setaddr6part(&local, addr6part(&local) & ~((context->prefix == 64) ? (u64)-1LL : (1LLU << (128 - context->prefix)) - 1LLU));
335
Simon Kelley6ea1f232013-12-19 15:45:12 +0000336
Simon Kelley7ea3d3f2014-04-25 22:04:05 +0100337 if (context->flags & CONTEXT_RA)
Simon Kelley6ea1f232013-12-19 15:45:12 +0000338 {
339 do_slaac = 1;
340 if (context->flags & CONTEXT_DHCP)
341 {
342 parm.other = 1;
343 if (!(context->flags & CONTEXT_RA_STATELESS))
344 parm.managed = 1;
345 }
346 }
347 else
348 {
349 /* don't do RA for non-ra-only unless --enable-ra is set */
350 if (option_bool(OPT_RA))
351 {
352 parm.managed = 1;
353 parm.other = 1;
354 }
355 }
356
Simon Kelleyef1a94a2013-07-26 13:59:03 +0100357 if ((opt = expand(sizeof(struct prefix_opt))))
358 {
359 opt->type = ICMP6_OPT_PREFIX;
360 opt->len = 4;
361 opt->prefix_len = context->prefix;
Neil Jerram2fd5bc92015-06-10 22:13:06 +0100362 /* autonomous only if we're not doing dhcp, set
363 "on-link" unless "off-link" was specified */
364 opt->flags = (do_slaac ? 0x40 : 0) |
365 ((context->flags & CONTEXT_RA_OFF_LINK) ? 0 : 0x80);
Simon Kelleyef1a94a2013-07-26 13:59:03 +0100366 opt->valid_lifetime = htonl(context->saved_valid - old);
367 opt->preferred_lifetime = htonl(0);
368 opt->reserved = 0;
369 opt->prefix = local;
370
371 inet_ntop(AF_INET6, &local, daemon->addrbuff, ADDRSTRLEN);
Kevin Darbyshire-Bryant8c0b73d2013-10-11 11:56:33 +0100372 if (!option_bool(OPT_QUIET_RA))
373 my_syslog(MS_DHCP | LOG_INFO, "RTR-ADVERT(%s) %s old prefix", iface_name, daemon->addrbuff);
Simon Kelleyef1a94a2013-07-26 13:59:03 +0100374 }
375
376 up = &context->next;
377 }
378 }
379 else
380 up = &context->next;
381 }
382
Simon Kelley44522922013-11-15 14:45:04 +0000383 /* If we're advertising only old prefixes, set router lifetime to zero. */
384 if (old_prefix && !parm.found_context)
385 ra->lifetime = htons(0);
386
387 /* No prefixes to advertise. */
388 if (!old_prefix && !parm.found_context)
389 return;
390
Simon Kelley7ea3d3f2014-04-25 22:04:05 +0100391 /* If we're sending router address instead of prefix in at least on prefix,
392 include the advertisement interval option. */
393 if (parm.adv_router)
394 {
395 put_opt6_char(ICMP6_OPT_ADV_INTERVAL);
396 put_opt6_char(1);
397 put_opt6_short(0);
398 /* interval value is in milliseconds */
399 put_opt6_long(1000 * calc_interval(find_iface_param(iface_name)));
400 }
401
David Flamand005c46d2017-04-11 11:49:54 +0100402 /* Set the MTU from ra_param if any, an MTU of 0 mean automatic for linux, */
403 /* an MTU of -1 prevents the option from being sent. */
404 if (ra_param)
405 mtu = ra_param->mtu;
Simon Kelley3b436462012-12-28 11:55:45 +0000406#ifdef HAVE_LINUX_NETWORK
Josh Soref730c6742017-02-06 16:14:04 +0000407 /* Note that IPv6 MTU is not neccessarily the same as the IPv4 MTU
Simon Kelley3b436462012-12-28 11:55:45 +0000408 available from SIOCGIFMTU */
David Flamand005c46d2017-04-11 11:49:54 +0100409 if (mtu == 0)
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000410 {
Vladislav Grishenko6ec5f5c2017-04-24 22:34:45 +0100411 char *mtu_name = ra_param ? ra_param->mtu_name : NULL;
412 sprintf(daemon->namebuff, "/proc/sys/net/ipv6/conf/%s/mtu", mtu_name ? : iface_name);
David Flamand005c46d2017-04-11 11:49:54 +0100413 if ((f = fopen(daemon->namebuff, "r")))
414 {
415 if (fgets(daemon->namebuff, MAXDNAME, f))
416 mtu = atoi(daemon->namebuff);
417 fclose(f);
418 }
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000419 }
Simon Kelley3b436462012-12-28 11:55:45 +0000420#endif
David Flamand005c46d2017-04-11 11:49:54 +0100421 if (mtu > 0)
422 {
423 put_opt6_char(ICMP6_OPT_MTU);
424 put_opt6_char(1);
425 put_opt6_short(0);
426 put_opt6_long(mtu);
427 }
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000428
Neil Jerramba4fc0f2015-06-10 22:14:49 +0100429 iface_enumerate(AF_LOCAL, &send_iface, add_lla);
Simon Kelley18f0fb02012-03-31 21:18:55 +0100430
431 /* RDNSS, RFC 6106, use relevant DHCP6 options */
432 (void)option_filter(parm.tags, NULL, daemon->dhcp_opts6);
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000433
Simon Kelley18f0fb02012-03-31 21:18:55 +0100434 for (opt_cfg = daemon->dhcp_opts6; opt_cfg; opt_cfg = opt_cfg->next)
435 {
436 int i;
437
438 /* netids match and not encapsulated? */
439 if (!(opt_cfg->flags & DHOPT_TAGOK))
440 continue;
441
442 if (opt_cfg->opt == OPTION6_DNS_SERVER)
443 {
Simon Kelleyc3a04082014-01-11 22:18:19 +0000444 struct in6_addr *a;
445 int len;
446
Simon Kelley18f0fb02012-03-31 21:18:55 +0100447 done_dns = 1;
Simon Kelleyc3a04082014-01-11 22:18:19 +0000448
449 if (opt_cfg->len == 0)
Simon Kelley806cf782013-10-14 14:08:44 +0100450 continue;
Simon Kelley18f0fb02012-03-31 21:18:55 +0100451
Simon Kelleyc3a04082014-01-11 22:18:19 +0000452 /* reduce len for any addresses we can't substitute */
453 for (a = (struct in6_addr *)opt_cfg->val, len = opt_cfg->len, i = 0;
454 i < opt_cfg->len; i += IN6ADDRSZ, a++)
455 if ((IN6_IS_ADDR_UNSPECIFIED(a) && parm.glob_pref_time == 0) ||
456 (IN6_IS_ADDR_ULA_ZERO(a) && parm.ula_pref_time == 0) ||
457 (IN6_IS_ADDR_LINK_LOCAL_ZERO(a) && parm.link_pref_time == 0))
458 len -= IN6ADDRSZ;
459
460 if (len != 0)
461 {
462 put_opt6_char(ICMP6_OPT_RDNSS);
463 put_opt6_char((len/8) + 1);
464 put_opt6_short(0);
465 put_opt6_long(min_pref_time);
466
467 for (a = (struct in6_addr *)opt_cfg->val, i = 0; i < opt_cfg->len; i += IN6ADDRSZ, a++)
468 if (IN6_IS_ADDR_UNSPECIFIED(a))
469 {
470 if (parm.glob_pref_time != 0)
471 put_opt6(&parm.link_global, IN6ADDRSZ);
472 }
473 else if (IN6_IS_ADDR_ULA_ZERO(a))
474 {
475 if (parm.ula_pref_time != 0)
476 put_opt6(&parm.ula, IN6ADDRSZ);
477 }
478 else if (IN6_IS_ADDR_LINK_LOCAL_ZERO(a))
479 {
480 if (parm.link_pref_time != 0)
481 put_opt6(&parm.link_local, IN6ADDRSZ);
482 }
483 else
484 put_opt6(a, IN6ADDRSZ);
485 }
Simon Kelley18f0fb02012-03-31 21:18:55 +0100486 }
487
488 if (opt_cfg->opt == OPTION6_DOMAIN_SEARCH && opt_cfg->len != 0)
489 {
490 int len = ((opt_cfg->len+7)/8);
491
492 put_opt6_char(ICMP6_OPT_DNSSL);
493 put_opt6_char(len + 1);
494 put_opt6_short(0);
Simon Kelleyc3a04082014-01-11 22:18:19 +0000495 put_opt6_long(min_pref_time);
Simon Kelley18f0fb02012-03-31 21:18:55 +0100496 put_opt6(opt_cfg->val, opt_cfg->len);
497
498 /* pad */
499 for (i = opt_cfg->len; i < len * 8; i++)
500 put_opt6_char(0);
501 }
502 }
503
Simon Kelleyc3a04082014-01-11 22:18:19 +0000504 if (daemon->port == NAMESERVER_PORT && !done_dns && parm.link_pref_time != 0)
Simon Kelley18f0fb02012-03-31 21:18:55 +0100505 {
Simon Kelleyab915f82013-04-30 10:41:28 +0100506 /* default == us, as long as we are supplying DNS service. */
Simon Kelley18f0fb02012-03-31 21:18:55 +0100507 put_opt6_char(ICMP6_OPT_RDNSS);
508 put_opt6_char(3);
509 put_opt6_short(0);
Simon Kelleyc3a04082014-01-11 22:18:19 +0000510 put_opt6_long(min_pref_time);
Simon Kelley806cf782013-10-14 14:08:44 +0100511 put_opt6(&parm.link_local, IN6ADDRSZ);
Simon Kelley18f0fb02012-03-31 21:18:55 +0100512 }
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000513
514 /* set managed bits unless we're providing only RA on this link */
515 if (parm.managed)
Simon Kelley30cd9662012-03-25 20:44:38 +0100516 ra->flags |= 0x80; /* M flag, managed, */
517 if (parm.other)
518 ra->flags |= 0x40; /* O flag, other */
519
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000520 /* decide where we're sending */
521 memset(&addr, 0, sizeof(addr));
Simon Kelley22d904d2012-02-26 20:13:45 +0000522#ifdef HAVE_SOCKADDR_SA_LEN
523 addr.sin6_len = sizeof(struct sockaddr_in6);
524#endif
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000525 addr.sin6_family = AF_INET6;
526 addr.sin6_port = htons(IPPROTO_ICMPV6);
527 if (dest)
528 {
Simon Kelley353ae4d2012-03-19 20:07:51 +0000529 addr.sin6_addr = *dest;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000530 if (IN6_IS_ADDR_LINKLOCAL(dest) ||
531 IN6_IS_ADDR_MC_LINKLOCAL(dest))
532 addr.sin6_scope_id = iface;
533 }
534 else
Simon Kelley8f3194f2013-09-30 15:04:58 +0100535 {
536 inet_pton(AF_INET6, ALL_NODES, &addr.sin6_addr);
Neil Jerramba4fc0f2015-06-10 22:14:49 +0100537 setsockopt(daemon->icmp6fd, IPPROTO_IPV6, IPV6_MULTICAST_IF, &send_iface, sizeof(send_iface));
Simon Kelley8f3194f2013-09-30 15:04:58 +0100538 }
Simon Kelley22d904d2012-02-26 20:13:45 +0000539
Simon Kelleyff841eb2015-03-11 21:36:30 +0000540 while (retry_send(sendto(daemon->icmp6fd, daemon->outpacket.iov_base,
Simon Kelley6b1c4642016-07-22 20:59:16 +0100541 save_counter(-1), 0, (struct sockaddr *)&addr,
Simon Kelleyff841eb2015-03-11 21:36:30 +0000542 sizeof(addr))));
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000543
544}
545
Neil Jerramba4fc0f2015-06-10 22:14:49 +0100546static void send_ra(time_t now, int iface, char *iface_name, struct in6_addr *dest)
547{
548 /* Send an RA on the same interface that the RA content is based
549 on. */
550 send_ra_alias(now, iface, iface_name, dest, iface);
551}
552
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000553static int add_prefixes(struct in6_addr *local, int prefix,
Simon Kelleybad7b872012-12-20 22:00:39 +0000554 int scope, int if_index, int flags,
Simon Kelley55b42f62012-12-21 16:53:15 +0000555 unsigned int preferred, unsigned int valid, void *vparam)
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000556{
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000557 struct ra_param *param = vparam;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000558
559 (void)scope; /* warning */
Simon Kelleyed8b68a2012-12-21 16:23:26 +0000560
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000561 if (if_index == param->ind)
562 {
563 if (IN6_IS_ADDR_LINKLOCAL(local))
Simon Kelleyc3a04082014-01-11 22:18:19 +0000564 {
565 /* Can there be more than one LL address?
566 Select the one with the longest preferred time
567 if there is. */
568 if (preferred > param->link_pref_time)
569 {
570 param->link_pref_time = preferred;
571 param->link_local = *local;
572 }
573 }
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000574 else if (!IN6_IS_ADDR_LOOPBACK(local) &&
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000575 !IN6_IS_ADDR_MULTICAST(local))
576 {
Vladislav Grishenko4c82efc2013-12-03 16:05:30 +0000577 int real_prefix = 0;
Simon Kelleyc8257542012-03-28 21:15:41 +0100578 int do_slaac = 0;
579 int deprecate = 0;
Simon Kelley3bc0d932012-12-28 11:31:44 +0000580 int constructed = 0;
Simon Kelley7ea3d3f2014-04-25 22:04:05 +0100581 int adv_router = 0;
Neil Jerram2fd5bc92015-06-10 22:13:06 +0100582 int off_link = 0;
Simon Kelleyc8257542012-03-28 21:15:41 +0100583 unsigned int time = 0xffffffff;
Simon Kelley1e02a852012-03-29 11:07:25 +0100584 struct dhcp_context *context;
585
Simon Kelley1f776932012-12-16 19:46:08 +0000586 for (context = daemon->dhcp6; context; context = context->next)
Simon Kelleyef1a94a2013-07-26 13:59:03 +0100587 if (!(context->flags & (CONTEXT_TEMPLATE | CONTEXT_OLD)) &&
Vladislav Grishenko4c82efc2013-12-03 16:05:30 +0000588 prefix <= context->prefix &&
589 is_same_net6(local, &context->start6, context->prefix) &&
590 is_same_net6(local, &context->end6, context->prefix))
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000591 {
Simon Kelleyef1a94a2013-07-26 13:59:03 +0100592 context->saved_valid = valid;
593
Simon Kelley7ea3d3f2014-04-25 22:04:05 +0100594 if (context->flags & CONTEXT_RA)
Simon Kelley30cd9662012-03-25 20:44:38 +0100595 {
596 do_slaac = 1;
Simon Kelley4723d492012-03-30 21:04:17 +0100597 if (context->flags & CONTEXT_DHCP)
Simon Kelley05e92e52012-03-30 22:24:15 +0100598 {
599 param->other = 1;
600 if (!(context->flags & CONTEXT_RA_STATELESS))
601 param->managed = 1;
602 }
Simon Kelley30cd9662012-03-25 20:44:38 +0100603 }
Simon Kelley884a6df2012-03-20 16:20:22 +0000604 else
Simon Kelley0010b472012-02-29 12:18:30 +0000605 {
606 /* don't do RA for non-ra-only unless --enable-ra is set */
607 if (!option_bool(OPT_RA))
608 continue;
609 param->managed = 1;
Simon Kelley30cd9662012-03-25 20:44:38 +0100610 param->other = 1;
Simon Kelley0010b472012-02-29 12:18:30 +0000611 }
Simon Kelley7ea3d3f2014-04-25 22:04:05 +0100612
613 /* Configured to advertise router address, not prefix. See RFC 3775 7.2
614 In this case we do all addresses associated with a context,
615 hence the real_prefix setting here. */
616 if (context->flags & CONTEXT_RA_ROUTER)
617 {
618 adv_router = 1;
619 param->adv_router = 1;
620 real_prefix = context->prefix;
621 }
622
Simon Kelley1ecbaaa2013-07-25 14:19:27 +0100623 /* find floor time, don't reduce below 3 * RA interval. */
Simon Kelleyc8257542012-03-28 21:15:41 +0100624 if (time > context->lease_time)
Simon Kelley7f035f52012-12-22 21:27:08 +0000625 {
626 time = context->lease_time;
Simon Kelleyc4cd95d2013-10-10 20:58:11 +0100627 if (time < ((unsigned int)(3 * param->adv_interval)))
628 time = 3 * param->adv_interval;
Simon Kelley7f035f52012-12-22 21:27:08 +0000629 }
630
Simon Kelleyc8257542012-03-28 21:15:41 +0100631 if (context->flags & CONTEXT_DEPRECATE)
632 deprecate = 1;
Simon Kelley3bc0d932012-12-28 11:31:44 +0000633
634 if (context->flags & CONTEXT_CONSTRUCTED)
635 constructed = 1;
636
Simon Kelleyc8257542012-03-28 21:15:41 +0100637
Simon Kelley18f0fb02012-03-31 21:18:55 +0100638 /* collect dhcp-range tags */
639 if (context->netid.next == &context->netid && context->netid.net)
640 {
641 context->netid.next = param->tags;
642 param->tags = &context->netid;
643 }
644
Simon Kelley5ae34bf2012-06-04 21:14:03 +0100645 /* subsequent prefixes on the same interface
646 and subsequent instances of this prefix don't need timers.
647 Be careful not to find the same prefix twice with different
Simon Kelley7ea3d3f2014-04-25 22:04:05 +0100648 addresses unless we're advertising the actual addresses. */
Simon Kelley1e02a852012-03-29 11:07:25 +0100649 if (!(context->flags & CONTEXT_RA_DONE))
650 {
Simon Kelley5ae34bf2012-06-04 21:14:03 +0100651 if (!param->first)
652 context->ra_time = 0;
Simon Kelley1e02a852012-03-29 11:07:25 +0100653 context->flags |= CONTEXT_RA_DONE;
Vladislav Grishenko4c82efc2013-12-03 16:05:30 +0000654 real_prefix = context->prefix;
Neil Jerram2fd5bc92015-06-10 22:13:06 +0100655 off_link = (context->flags & CONTEXT_RA_OFF_LINK);
Simon Kelley1e02a852012-03-29 11:07:25 +0100656 }
Simon Kelley5ae34bf2012-06-04 21:14:03 +0100657
S La18bf312016-02-12 17:36:20 +0000658 param->first = 0;
659 /* found_context is the _last_ one we found, so if there's
660 more than one, it's not the first. */
661 param->found_context = context;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000662 }
Simon Kelley1f776932012-12-16 19:46:08 +0000663
Simon Kelleyed8b68a2012-12-21 16:23:26 +0000664 /* configured time is ceiling */
Simon Kelley3bc0d932012-12-28 11:31:44 +0000665 if (!constructed || valid > time)
Simon Kelleyed8b68a2012-12-21 16:23:26 +0000666 valid = time;
667
Simon Kelley3bc0d932012-12-28 11:31:44 +0000668 if (flags & IFACE_DEPRECATED)
Simon Kelleyed8b68a2012-12-21 16:23:26 +0000669 preferred = 0;
Simon Kelley1e02a852012-03-29 11:07:25 +0100670
Simon Kelley3bc0d932012-12-28 11:31:44 +0000671 if (deprecate)
672 time = 0;
673
674 /* configured time is ceiling */
675 if (!constructed || preferred > time)
676 preferred = time;
Simon Kelleyc3a04082014-01-11 22:18:19 +0000677
678 if (IN6_IS_ADDR_ULA(local))
Simon Kelley55b42f62012-12-21 16:53:15 +0000679 {
Simon Kelleyc3a04082014-01-11 22:18:19 +0000680 if (preferred > param->ula_pref_time)
681 {
682 param->ula_pref_time = preferred;
683 param->ula = *local;
684 }
685 }
686 else
687 {
688 if (preferred > param->glob_pref_time)
689 {
690 param->glob_pref_time = preferred;
691 param->link_global = *local;
692 }
Simon Kelley55b42f62012-12-21 16:53:15 +0000693 }
694
Vladislav Grishenko4c82efc2013-12-03 16:05:30 +0000695 if (real_prefix != 0)
Simon Kelleyc8257542012-03-28 21:15:41 +0100696 {
Simon Kelley1e02a852012-03-29 11:07:25 +0100697 struct prefix_opt *opt;
698
699 if ((opt = expand(sizeof(struct prefix_opt))))
700 {
Simon Kelley5ef33272012-03-30 15:10:28 +0100701 /* zero net part of address */
Simon Kelley7ea3d3f2014-04-25 22:04:05 +0100702 if (!adv_router)
703 setaddr6part(local, addr6part(local) & ~((real_prefix == 64) ? (u64)-1LL : (1LLU << (128 - real_prefix)) - 1LLU));
Simon Kelley5ef33272012-03-30 15:10:28 +0100704
Simon Kelley1e02a852012-03-29 11:07:25 +0100705 opt->type = ICMP6_OPT_PREFIX;
706 opt->len = 4;
Vladislav Grishenko4c82efc2013-12-03 16:05:30 +0000707 opt->prefix_len = real_prefix;
Neil Jerram2fd5bc92015-06-10 22:13:06 +0100708 /* autonomous only if we're not doing dhcp, set
709 "on-link" unless "off-link" was specified */
710 opt->flags = (off_link ? 0 : 0x80);
Simon Kelley7ea3d3f2014-04-25 22:04:05 +0100711 if (do_slaac)
712 opt->flags |= 0x40;
713 if (adv_router)
714 opt->flags |= 0x20;
Simon Kelleyed8b68a2012-12-21 16:23:26 +0000715 opt->valid_lifetime = htonl(valid);
716 opt->preferred_lifetime = htonl(preferred);
Simon Kelley5ef33272012-03-30 15:10:28 +0100717 opt->reserved = 0;
Simon Kelley1e02a852012-03-29 11:07:25 +0100718 opt->prefix = *local;
Simon Kelley1e02a852012-03-29 11:07:25 +0100719
Simon Kelley5ef33272012-03-30 15:10:28 +0100720 inet_ntop(AF_INET6, local, daemon->addrbuff, ADDRSTRLEN);
Kevin Darbyshire-Bryant8c0b73d2013-10-11 11:56:33 +0100721 if (!option_bool(OPT_QUIET_RA))
722 my_syslog(MS_DHCP | LOG_INFO, "RTR-ADVERT(%s) %s", param->if_name, daemon->addrbuff);
Simon Kelley1e02a852012-03-29 11:07:25 +0100723 }
Simon Kelleyc8257542012-03-28 21:15:41 +0100724 }
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000725 }
726 }
727 return 1;
728}
729
730static int add_lla(int index, unsigned int type, char *mac, size_t maclen, void *parm)
731{
732 (void)type;
733
734 if (index == *((int *)parm))
735 {
736 /* size is in units of 8 octets and includes type and length (2 bytes)
737 add 7 to round up */
738 int len = (maclen + 9) >> 3;
739 unsigned char *p = expand(len << 3);
740 memset(p, 0, len << 3);
741 *p++ = ICMP6_OPT_SOURCE_MAC;
742 *p++ = len;
743 memcpy(p, mac, maclen);
744
745 return 0;
746 }
747
748 return 1;
749}
750
751time_t periodic_ra(time_t now)
752{
753 struct search_param param;
754 struct dhcp_context *context;
755 time_t next_event;
Neil Jerram9bad3392015-06-10 22:16:35 +0100756 struct alias_param aparam;
Simon Kelleyc4cd95d2013-10-10 20:58:11 +0100757
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000758 param.now = now;
Simon Kelley29d28dd2012-12-03 14:05:59 +0000759 param.iface = 0;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000760
761 while (1)
762 {
763 /* find overdue events, and time of first future event */
Simon Kelley1f776932012-12-16 19:46:08 +0000764 for (next_event = 0, context = daemon->dhcp6; context; context = context->next)
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000765 if (context->ra_time != 0)
766 {
Simon Kelley7dbe9812012-03-25 14:49:54 +0100767 if (difftime(context->ra_time, now) <= 0.0)
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000768 break; /* overdue */
769
Simon Kelley7dbe9812012-03-25 14:49:54 +0100770 if (next_event == 0 || difftime(next_event, context->ra_time) > 0.0)
771 next_event = context->ra_time;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000772 }
773
774 /* none overdue */
775 if (!context)
776 break;
777
Simon Kelleyc4cd95d2013-10-10 20:58:11 +0100778 if ((context->flags & CONTEXT_OLD) &&
779 context->if_index != 0 &&
Simon Kelleydd9d9ce2013-11-15 11:24:00 +0000780 indextoname(daemon->icmp6fd, context->if_index, param.name))
Simon Kelleyef1a94a2013-07-26 13:59:03 +0100781 {
782 /* A context for an old address. We'll not find the interface by
Simon Kelleyc4cd95d2013-10-10 20:58:11 +0100783 looking for addresses, but we know it anyway, since the context is
784 constructed */
Simon Kelleyef1a94a2013-07-26 13:59:03 +0100785 param.iface = context->if_index;
Simon Kelleyc4cd95d2013-10-10 20:58:11 +0100786 new_timeout(context, param.name, now);
Simon Kelleyef1a94a2013-07-26 13:59:03 +0100787 }
788 else if (iface_enumerate(AF_INET6, &param, iface_search))
789 /* There's a context overdue, but we can't find an interface
790 associated with it, because it's for a subnet we dont
791 have an interface on. Probably we're doing DHCP on
792 a remote subnet via a relay. Zero the timer, since we won't
Josh Soref730c6742017-02-06 16:14:04 +0000793 ever be able to send ra's and satisfy it. */
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000794 context->ra_time = 0;
Simon Kelleyef1a94a2013-07-26 13:59:03 +0100795
796 if (param.iface != 0 &&
Simon Kelleyc4cd95d2013-10-10 20:58:11 +0100797 iface_check(AF_LOCAL, NULL, param.name, NULL))
Simon Kelley421594f2012-12-02 12:17:35 +0000798 {
799 struct iname *tmp;
800 for (tmp = daemon->dhcp_except; tmp; tmp = tmp->next)
Simon Kelleyc4cd95d2013-10-10 20:58:11 +0100801 if (tmp->name && wildcard_match(tmp->name, param.name))
Simon Kelley421594f2012-12-02 12:17:35 +0000802 break;
803 if (!tmp)
Neil Jerram9bad3392015-06-10 22:16:35 +0100804 {
805 send_ra(now, param.iface, param.name, NULL);
806
807 /* Also send on all interfaces that are aliases of this
808 one. */
809 for (aparam.bridge = daemon->bridges;
810 aparam.bridge;
811 aparam.bridge = aparam.bridge->next)
812 if ((int)if_nametoindex(aparam.bridge->iface) == param.iface)
813 {
814 /* Count the number of alias interfaces for this
815 'bridge', by calling iface_enumerate with
816 send_ra_to_aliases and NULL alias_ifs. */
817 aparam.iface = param.iface;
818 aparam.alias_ifs = NULL;
819 aparam.num_alias_ifs = 0;
820 iface_enumerate(AF_LOCAL, &aparam, send_ra_to_aliases);
821 my_syslog(MS_DHCP | LOG_INFO, "RTR-ADVERT(%s) %s => %d alias(es)",
822 param.name, daemon->addrbuff, aparam.num_alias_ifs);
823
824 /* Allocate memory to store the alias interface
825 indices. */
826 aparam.alias_ifs = (int *)whine_malloc(aparam.num_alias_ifs *
827 sizeof(int));
828 if (aparam.alias_ifs)
829 {
830 /* Use iface_enumerate again to get the alias
831 interface indices, then send on each of
832 those. */
833 aparam.max_alias_ifs = aparam.num_alias_ifs;
834 aparam.num_alias_ifs = 0;
835 iface_enumerate(AF_LOCAL, &aparam, send_ra_to_aliases);
836 for (; aparam.num_alias_ifs; aparam.num_alias_ifs--)
837 {
838 my_syslog(MS_DHCP | LOG_INFO, "RTR-ADVERT(%s) %s => i/f %d",
839 param.name, daemon->addrbuff,
840 aparam.alias_ifs[aparam.num_alias_ifs - 1]);
841 send_ra_alias(now,
842 param.iface,
843 param.name,
844 NULL,
845 aparam.alias_ifs[aparam.num_alias_ifs - 1]);
846 }
847 free(aparam.alias_ifs);
848 }
849
850 /* The source interface can only appear in at most
Neil Jerram4918bd52015-06-10 22:23:20 +0100851 one --bridge-interface. */
Neil Jerram9bad3392015-06-10 22:16:35 +0100852 break;
853 }
854 }
Simon Kelley421594f2012-12-02 12:17:35 +0000855 }
856 }
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000857 return next_event;
858}
Neil Jerram9bad3392015-06-10 22:16:35 +0100859
860static int send_ra_to_aliases(int index, unsigned int type, char *mac, size_t maclen, void *parm)
861{
862 struct alias_param *aparam = (struct alias_param *)parm;
863 char ifrn_name[IFNAMSIZ];
864 struct dhcp_bridge *alias;
865
866 (void)type;
867 (void)mac;
868 (void)maclen;
869
870 if (if_indextoname(index, ifrn_name))
871 for (alias = aparam->bridge->alias; alias; alias = alias->next)
872 if (wildcard_matchn(alias->iface, ifrn_name, IFNAMSIZ))
873 {
874 if (aparam->alias_ifs && (aparam->num_alias_ifs < aparam->max_alias_ifs))
875 aparam->alias_ifs[aparam->num_alias_ifs] = index;
876 aparam->num_alias_ifs++;
877 }
878
879 return 1;
880}
881
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000882static int iface_search(struct in6_addr *local, int prefix,
Simon Kelleybad7b872012-12-20 22:00:39 +0000883 int scope, int if_index, int flags,
Simon Kelley1f776932012-12-16 19:46:08 +0000884 int preferred, int valid, void *vparam)
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000885{
886 struct search_param *param = vparam;
Simon Kelley741c2952012-02-25 13:09:18 +0000887 struct dhcp_context *context;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000888
889 (void)scope;
Simon Kelley1f776932012-12-16 19:46:08 +0000890 (void)preferred;
891 (void)valid;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000892
Simon Kelley1f776932012-12-16 19:46:08 +0000893 for (context = daemon->dhcp6; context; context = context->next)
Simon Kelleyef1a94a2013-07-26 13:59:03 +0100894 if (!(context->flags & (CONTEXT_TEMPLATE | CONTEXT_OLD)) &&
Vladislav Grishenko4c82efc2013-12-03 16:05:30 +0000895 prefix <= context->prefix &&
896 is_same_net6(local, &context->start6, context->prefix) &&
897 is_same_net6(local, &context->end6, context->prefix) &&
Simon Kelley6e3dba32012-12-16 21:52:45 +0000898 context->ra_time != 0 &&
899 difftime(context->ra_time, param->now) <= 0.0)
900 {
901 /* found an interface that's overdue for RA determine new
902 timeout value and arrange for RA to be sent unless interface is
903 still doing DAD.*/
904
Simon Kelleybad7b872012-12-20 22:00:39 +0000905 if (!(flags & IFACE_TENTATIVE))
Simon Kelley6e3dba32012-12-16 21:52:45 +0000906 param->iface = if_index;
907
Simon Kelleyc4cd95d2013-10-10 20:58:11 +0100908 /* should never fail */
909 if (!indextoname(daemon->icmp6fd, if_index, param->name))
910 {
911 param->iface = 0;
912 return 0;
913 }
914
915 new_timeout(context, param->name, param->now);
Simon Kelley6e3dba32012-12-16 21:52:45 +0000916
917 /* zero timers for other contexts on the same subnet, so they don't timeout
918 independently */
919 for (context = context->next; context; context = context->next)
Vladislav Grishenko4c82efc2013-12-03 16:05:30 +0000920 if (prefix <= context->prefix &&
921 is_same_net6(local, &context->start6, context->prefix) &&
922 is_same_net6(local, &context->end6, context->prefix))
Simon Kelley6e3dba32012-12-16 21:52:45 +0000923 context->ra_time = 0;
924
925 return 0; /* found, abort */
926 }
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000927
928 return 1; /* keep searching */
929}
Simon Kelleyef1a94a2013-07-26 13:59:03 +0100930
Simon Kelleyc4cd95d2013-10-10 20:58:11 +0100931static void new_timeout(struct dhcp_context *context, char *iface_name, time_t now)
Simon Kelleyef1a94a2013-07-26 13:59:03 +0100932{
Simon Kelleyc4cd95d2013-10-10 20:58:11 +0100933 if (difftime(now, context->ra_short_period_start) < 60.0)
Simon Kelleyef1a94a2013-07-26 13:59:03 +0100934 /* range 5 - 20 */
935 context->ra_time = now + 5 + (rand16()/4400);
936 else
Simon Kelleyc4cd95d2013-10-10 20:58:11 +0100937 {
938 /* range 3/4 - 1 times MaxRtrAdvInterval */
939 unsigned int adv_interval = calc_interval(find_iface_param(iface_name));
940 context->ra_time = now + (3 * adv_interval)/4 + ((adv_interval * (unsigned int)rand16()) >> 18);
941 }
942}
943
944static struct ra_interface *find_iface_param(char *iface)
945{
946 struct ra_interface *ra;
947
948 for (ra = daemon->ra_interfaces; ra; ra = ra->next)
949 if (wildcard_match(ra->name, iface))
950 return ra;
951
952 return NULL;
953}
954
955static unsigned int calc_interval(struct ra_interface *ra)
956{
957 int interval = 600;
958
959 if (ra && ra->interval != 0)
960 {
961 interval = ra->interval;
962 if (interval > 1800)
963 interval = 1800;
964 else if (interval < 4)
965 interval = 4;
966 }
967
968 return (unsigned int)interval;
969}
970
971static unsigned int calc_lifetime(struct ra_interface *ra)
972{
973 int lifetime, interval = (int)calc_interval(ra);
974
975 if (!ra || ra->lifetime == -1) /* not specified */
976 lifetime = 3 * interval;
977 else
978 {
979 lifetime = ra->lifetime;
980 if (lifetime < interval && lifetime != 0)
981 lifetime = interval;
982 else if (lifetime > 9000)
983 lifetime = 9000;
984 }
985
986 return (unsigned int)lifetime;
987}
988
989static unsigned int calc_prio(struct ra_interface *ra)
990{
991 if (ra)
992 return ra->prio;
993
994 return 0;
Simon Kelleyef1a94a2013-07-26 13:59:03 +0100995}
Simon Kelley801ca9a2012-03-06 19:30:17 +0000996
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000997#endif