blob: 391eddde7cd4531f979a90d5652b0c147e4faa3f [file] [log] [blame]
Simon Kelleyc5ad4e72012-02-24 16:06:20 +00001/* dnsmasq is Copyright (c) 2000-2012 Simon Kelley
2
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 Kelley30cd9662012-03-25 20:44:38 +010030 int ind, managed, other, found_context, first;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +000031 char *if_name;
Simon Kelley18f0fb02012-03-31 21:18:55 +010032 struct dhcp_netid *tags;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +000033 struct in6_addr link_local;
34};
35
36struct search_param {
37 time_t now; int iface;
38};
39
40static void send_ra(int iface, char *iface_name, struct in6_addr *dest);
41static int add_prefixes(struct in6_addr *local, int prefix,
42 int scope, int if_index, int dad, void *vparam);
43static int iface_search(struct in6_addr *local, int prefix,
44 int scope, int if_index, int dad, void *vparam);
45static int add_lla(int index, unsigned int type, char *mac, size_t maclen, void *parm);
46
Simon Kelleyc5379c12012-02-24 20:05:52 +000047static int hop_limit;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +000048static time_t ra_short_period_start;
49
50void ra_init(time_t now)
51{
Simon Kelleyc5ad4e72012-02-24 16:06:20 +000052 struct icmp6_filter filter;
53 int fd;
Simon Kelley0e88d532012-03-28 22:22:05 +010054#if defined(IPV6_TCLASS) && defined(IPTOS_CLASS_CS6)
Simon Kelleyc5ad4e72012-02-24 16:06:20 +000055 int class = IPTOS_CLASS_CS6;
56#endif
57 int val = 255; /* radvd uses this value */
Simon Kelley7b6dd882012-03-01 10:26:16 +000058 socklen_t len = sizeof(int);
Simon Kelley353ae4d2012-03-19 20:07:51 +000059 struct dhcp_context *context;
60
Simon Kelley843c96b2012-02-27 17:42:38 +000061 /* ensure this is around even if we're not doing DHCPv6 */
62 expand_buf(&daemon->outpacket, sizeof(struct dhcp_packet));
Simon Kelley353ae4d2012-03-19 20:07:51 +000063
64 /* See if we're guessing SLAAC addresses, if so we need to recieve ping replies */
65 for (context = daemon->ra_contexts; context; context = context->next)
66 if ((context->flags & CONTEXT_RA_NAME))
67 break;
68
Simon Kelleyc5ad4e72012-02-24 16:06:20 +000069 ICMP6_FILTER_SETBLOCKALL(&filter);
70 ICMP6_FILTER_SETPASS(ND_ROUTER_SOLICIT, &filter);
Simon Kelley353ae4d2012-03-19 20:07:51 +000071 if (context)
72 ICMP6_FILTER_SETPASS(ICMP6_ECHO_REPLY, &filter);
Simon Kelleyc5ad4e72012-02-24 16:06:20 +000073
74 if ((fd = socket(PF_INET6, SOCK_RAW, IPPROTO_ICMPV6)) == -1 ||
Simon Kelleyc5379c12012-02-24 20:05:52 +000075 getsockopt(fd, IPPROTO_IPV6, IPV6_UNICAST_HOPS, &hop_limit, &len) ||
Simon Kelley0e88d532012-03-28 22:22:05 +010076#if defined(IPV6_TCLASS) && defined(IPTOS_CLASS_CS6)
Simon Kelleyc5ad4e72012-02-24 16:06:20 +000077 setsockopt(fd, IPPROTO_IPV6, IPV6_TCLASS, &class, sizeof(class)) == -1 ||
78#endif
79 !fix_fd(fd) ||
80 !set_ipv6pktinfo(fd) ||
81 setsockopt(fd, IPPROTO_IPV6, IPV6_UNICAST_HOPS, &val, sizeof(val)) ||
82 setsockopt(fd, IPPROTO_IPV6, IPV6_MULTICAST_HOPS, &val, sizeof(val)) ||
83 setsockopt(fd, IPPROTO_ICMPV6, ICMP6_FILTER, &filter, sizeof(filter)) == -1)
84 die (_("cannot create ICMPv6 socket: %s"), NULL, EC_BADNET);
85
86 daemon->icmp6fd = fd;
87
Simon Kelley353ae4d2012-03-19 20:07:51 +000088 ra_start_unsolicted(now, NULL);
Simon Kelleyc5ad4e72012-02-24 16:06:20 +000089}
90
Simon Kelley353ae4d2012-03-19 20:07:51 +000091void ra_start_unsolicted(time_t now, struct dhcp_context *context)
Simon Kelleyc5ad4e72012-02-24 16:06:20 +000092{
Simon Kelley353ae4d2012-03-19 20:07:51 +000093 /* 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 +000094 if it's not appropriate to advertise those contexts.
95 This gets re-called on a netlink route-change to re-do the advertisement
96 and pick up new interfaces */
97
Simon Kelley353ae4d2012-03-19 20:07:51 +000098 if (context)
99 context->ra_time = now;
100 else
101 for (context = daemon->ra_contexts; context; context = context->next)
102 context->ra_time = now + (rand16()/13000); /* range 0 - 5 */
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000103
Simon Kelley22d904d2012-02-26 20:13:45 +0000104 /* re-do frequently for a minute or so, in case the first gets lost. */
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000105 ra_short_period_start = now;
106}
107
108void icmp6_packet(void)
109{
110 char interface[IF_NAMESIZE+1];
111 ssize_t sz;
112 int if_index = 0;
113 struct cmsghdr *cmptr;
114 struct msghdr msg;
115 union {
116 struct cmsghdr align; /* this ensures alignment */
117 char control6[CMSG_SPACE(sizeof(struct in6_pktinfo))];
118 } control_u;
119 struct sockaddr_in6 from;
Simon Kelley5ef33272012-03-30 15:10:28 +0100120 unsigned char *packet;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000121 struct iname *tmp;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000122
123 /* Note: use outpacket for input buffer */
124 msg.msg_control = control_u.control6;
125 msg.msg_controllen = sizeof(control_u);
126 msg.msg_flags = 0;
127 msg.msg_name = &from;
128 msg.msg_namelen = sizeof(from);
129 msg.msg_iov = &daemon->outpacket;
130 msg.msg_iovlen = 1;
131
132 if ((sz = recv_dhcp_packet(daemon->icmp6fd, &msg)) == -1 || sz < 8)
133 return;
Simon Kelley5ef33272012-03-30 15:10:28 +0100134
135 packet = (unsigned char *)daemon->outpacket.iov_base;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000136
137 for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr))
138 if (cmptr->cmsg_level == IPPROTO_IPV6 && cmptr->cmsg_type == daemon->v6pktinfo)
139 {
140 union {
141 unsigned char *c;
142 struct in6_pktinfo *p;
143 } p;
144 p.c = CMSG_DATA(cmptr);
145
146 if_index = p.p->ipi6_ifindex;
147 }
148
149 if (!indextoname(daemon->icmp6fd, if_index, interface))
150 return;
151
Simon Kelley4f7b3042012-11-28 21:27:02 +0000152 if (!iface_check(AF_LOCAL, NULL, interface, NULL))
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000153 return;
154
155 for (tmp = daemon->dhcp_except; tmp; tmp = tmp->next)
156 if (tmp->name && (strcmp(tmp->name, interface) == 0))
157 return;
158
Simon Kelley8bc4cec2012-07-03 21:04:11 +0100159 if (packet[1] != 0)
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000160 return;
Simon Kelley8bc4cec2012-07-03 21:04:11 +0100161
Simon Kelley5ef33272012-03-30 15:10:28 +0100162 if (packet[0] == ICMP6_ECHO_REPLY)
163 lease_ping_reply(&from.sin6_addr, packet, interface);
164 else if (packet[0] == ND_ROUTER_SOLICIT)
Simon Kelley353ae4d2012-03-19 20:07:51 +0000165 {
Simon Kelley5ef33272012-03-30 15:10:28 +0100166 char *mac = "";
167
168 /* look for link-layer address option for logging */
169 if (sz >= 16 && packet[8] == ICMP6_OPT_SOURCE_MAC && (packet[9] * 8) + 8 <= sz)
170 {
171 print_mac(daemon->namebuff, &packet[10], (packet[9] * 8) - 2);
172 mac = daemon->namebuff;
173 }
174
175 my_syslog(MS_DHCP | LOG_INFO, "RTR-SOLICIT(%s) %s", interface, mac);
Simon Kelleyf632e562012-05-12 15:05:34 +0100176 /* source address may not be valid in solicit request. */
177 send_ra(if_index, interface, !IN6_IS_ADDR_UNSPECIFIED(&from.sin6_addr) ? &from.sin6_addr : NULL);
Simon Kelley353ae4d2012-03-19 20:07:51 +0000178 }
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000179}
180
181static void send_ra(int iface, char *iface_name, struct in6_addr *dest)
182{
183 struct ra_packet *ra;
184 struct ra_param parm;
185 struct ifreq ifr;
186 struct sockaddr_in6 addr;
187 struct dhcp_context *context;
Simon Kelley18f0fb02012-03-31 21:18:55 +0100188 struct dhcp_netid iface_id;
189 struct dhcp_opt *opt_cfg;
190 int done_dns = 0;
191
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000192 save_counter(0);
193 ra = expand(sizeof(struct ra_packet));
194
Simon Kelley353ae4d2012-03-19 20:07:51 +0000195 ra->type = ND_ROUTER_ADVERT;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000196 ra->code = 0;
Simon Kelleyc5379c12012-02-24 20:05:52 +0000197 ra->hop_limit = hop_limit;
Simon Kelley884a6df2012-03-20 16:20:22 +0000198 ra->flags = 0x00;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000199 ra->lifetime = htons(1800); /* AdvDefaultLifetime*/
200 ra->reachable_time = 0;
201 ra->retrans_time = 0;
202
203 parm.ind = iface;
204 parm.managed = 0;
Simon Kelley30cd9662012-03-25 20:44:38 +0100205 parm.other = 0;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000206 parm.found_context = 0;
207 parm.if_name = iface_name;
208 parm.first = 1;
209
Simon Kelley18f0fb02012-03-31 21:18:55 +0100210 /* set tag with name == interface */
211 iface_id.net = iface_name;
212 iface_id.next = NULL;
213 parm.tags = &iface_id;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000214
Simon Kelley18f0fb02012-03-31 21:18:55 +0100215 for (context = daemon->ra_contexts; context; context = context->next)
216 {
217 context->flags &= ~CONTEXT_RA_DONE;
218 context->netid.next = &context->netid;
219 }
220
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000221 if (!iface_enumerate(AF_INET6, &parm, add_prefixes) ||
222 !parm.found_context)
223 return;
224
225 strncpy(ifr.ifr_name, iface_name, IF_NAMESIZE);
226
227 if (ioctl(daemon->icmp6fd, SIOCGIFMTU, &ifr) != -1)
228 {
229 put_opt6_char(ICMP6_OPT_MTU);
230 put_opt6_char(1);
231 put_opt6_short(0);
232 put_opt6_long(ifr.ifr_mtu);
233 }
234
235 iface_enumerate(AF_LOCAL, &iface, add_lla);
Simon Kelley18f0fb02012-03-31 21:18:55 +0100236
237 /* RDNSS, RFC 6106, use relevant DHCP6 options */
238 (void)option_filter(parm.tags, NULL, daemon->dhcp_opts6);
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000239
Simon Kelley18f0fb02012-03-31 21:18:55 +0100240 for (opt_cfg = daemon->dhcp_opts6; opt_cfg; opt_cfg = opt_cfg->next)
241 {
242 int i;
243
244 /* netids match and not encapsulated? */
245 if (!(opt_cfg->flags & DHOPT_TAGOK))
246 continue;
247
248 if (opt_cfg->opt == OPTION6_DNS_SERVER)
249 {
250 struct in6_addr *a = (struct in6_addr *)opt_cfg->val;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000251
Simon Kelley18f0fb02012-03-31 21:18:55 +0100252 done_dns = 1;
253 if (opt_cfg->len == 0)
254 continue;
255
256 put_opt6_char(ICMP6_OPT_RDNSS);
257 put_opt6_char((opt_cfg->len/8) + 1);
258 put_opt6_short(0);
259 put_opt6_long(1800); /* lifetime - twice RA retransmit */
260 /* zero means "self" */
261 for (i = 0; i < opt_cfg->len; i += IN6ADDRSZ, a++)
262 if (IN6_IS_ADDR_UNSPECIFIED(a))
263 put_opt6(&parm.link_local, IN6ADDRSZ);
264 else
265 put_opt6(a, IN6ADDRSZ);
266 }
267
268 if (opt_cfg->opt == OPTION6_DOMAIN_SEARCH && opt_cfg->len != 0)
269 {
270 int len = ((opt_cfg->len+7)/8);
271
272 put_opt6_char(ICMP6_OPT_DNSSL);
273 put_opt6_char(len + 1);
274 put_opt6_short(0);
275 put_opt6_long(1800); /* lifetime - twice RA retransmit */
276 put_opt6(opt_cfg->val, opt_cfg->len);
277
278 /* pad */
279 for (i = opt_cfg->len; i < len * 8; i++)
280 put_opt6_char(0);
281 }
282 }
283
284 if (!done_dns)
285 {
286 /* default == us. */
287 put_opt6_char(ICMP6_OPT_RDNSS);
288 put_opt6_char(3);
289 put_opt6_short(0);
290 put_opt6_long(1800); /* lifetime - twice RA retransmit */
291 put_opt6(&parm.link_local, IN6ADDRSZ);
292 }
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000293
294 /* set managed bits unless we're providing only RA on this link */
295 if (parm.managed)
Simon Kelley30cd9662012-03-25 20:44:38 +0100296 ra->flags |= 0x80; /* M flag, managed, */
297 if (parm.other)
298 ra->flags |= 0x40; /* O flag, other */
299
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000300 /* decide where we're sending */
301 memset(&addr, 0, sizeof(addr));
Simon Kelley22d904d2012-02-26 20:13:45 +0000302#ifdef HAVE_SOCKADDR_SA_LEN
303 addr.sin6_len = sizeof(struct sockaddr_in6);
304#endif
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000305 addr.sin6_family = AF_INET6;
306 addr.sin6_port = htons(IPPROTO_ICMPV6);
307 if (dest)
308 {
Simon Kelley353ae4d2012-03-19 20:07:51 +0000309 addr.sin6_addr = *dest;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000310 if (IN6_IS_ADDR_LINKLOCAL(dest) ||
311 IN6_IS_ADDR_MC_LINKLOCAL(dest))
312 addr.sin6_scope_id = iface;
313 }
314 else
Simon Kelleyf632e562012-05-12 15:05:34 +0100315 inet_pton(AF_INET6, ALL_NODES, &addr.sin6_addr);
Simon Kelley22d904d2012-02-26 20:13:45 +0000316
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000317 send_from(daemon->icmp6fd, 0, daemon->outpacket.iov_base, save_counter(0),
Simon Kelley50303b12012-04-04 22:13:17 +0100318 (union mysockaddr *)&addr, (struct all_addr *)&parm.link_local, iface);
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000319
320}
321
322static int add_prefixes(struct in6_addr *local, int prefix,
323 int scope, int if_index, int dad, void *vparam)
324{
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000325 struct ra_param *param = vparam;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000326
327 (void)scope; /* warning */
328 (void)dad;
329
330 if (if_index == param->ind)
331 {
332 if (IN6_IS_ADDR_LINKLOCAL(local))
333 param->link_local = *local;
334 else if (!IN6_IS_ADDR_LOOPBACK(local) &&
335 !IN6_IS_ADDR_LINKLOCAL(local) &&
336 !IN6_IS_ADDR_MULTICAST(local))
337 {
Simon Kelley1e02a852012-03-29 11:07:25 +0100338 int do_prefix = 0;
Simon Kelleyc8257542012-03-28 21:15:41 +0100339 int do_slaac = 0;
340 int deprecate = 0;
341 unsigned int time = 0xffffffff;
Simon Kelley1e02a852012-03-29 11:07:25 +0100342 struct dhcp_context *context;
343
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000344 for (context = daemon->ra_contexts; context; context = context->next)
345 if (prefix == context->prefix &&
346 is_same_net6(local, &context->start6, prefix) &&
347 is_same_net6(local, &context->end6, prefix))
348 {
Simon Kelley30cd9662012-03-25 20:44:38 +0100349 if ((context->flags &
350 (CONTEXT_RA_ONLY | CONTEXT_RA_NAME | CONTEXT_RA_STATELESS)))
351 {
352 do_slaac = 1;
Simon Kelley4723d492012-03-30 21:04:17 +0100353 if (context->flags & CONTEXT_DHCP)
Simon Kelley05e92e52012-03-30 22:24:15 +0100354 {
355 param->other = 1;
356 if (!(context->flags & CONTEXT_RA_STATELESS))
357 param->managed = 1;
358 }
Simon Kelley30cd9662012-03-25 20:44:38 +0100359 }
Simon Kelley884a6df2012-03-20 16:20:22 +0000360 else
Simon Kelley0010b472012-02-29 12:18:30 +0000361 {
362 /* don't do RA for non-ra-only unless --enable-ra is set */
363 if (!option_bool(OPT_RA))
364 continue;
365 param->managed = 1;
Simon Kelley30cd9662012-03-25 20:44:38 +0100366 param->other = 1;
Simon Kelley0010b472012-02-29 12:18:30 +0000367 }
368
Simon Kelleyc8257542012-03-28 21:15:41 +0100369 /* find floor time */
370 if (time > context->lease_time)
371 time = context->lease_time;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000372
Simon Kelleyc8257542012-03-28 21:15:41 +0100373 if (context->flags & CONTEXT_DEPRECATE)
374 deprecate = 1;
375
Simon Kelley18f0fb02012-03-31 21:18:55 +0100376 /* collect dhcp-range tags */
377 if (context->netid.next == &context->netid && context->netid.net)
378 {
379 context->netid.next = param->tags;
380 param->tags = &context->netid;
381 }
382
Simon Kelley5ae34bf2012-06-04 21:14:03 +0100383 /* subsequent prefixes on the same interface
384 and subsequent instances of this prefix don't need timers.
385 Be careful not to find the same prefix twice with different
386 addresses. */
Simon Kelley1e02a852012-03-29 11:07:25 +0100387 if (!(context->flags & CONTEXT_RA_DONE))
388 {
Simon Kelley5ae34bf2012-06-04 21:14:03 +0100389 if (!param->first)
390 context->ra_time = 0;
Simon Kelley1e02a852012-03-29 11:07:25 +0100391 context->flags |= CONTEXT_RA_DONE;
392 do_prefix = 1;
393 }
Simon Kelley5ae34bf2012-06-04 21:14:03 +0100394
395 param->first = 0;
396 param->found_context = 1;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000397 }
Simon Kelley1e02a852012-03-29 11:07:25 +0100398
399 if (do_prefix)
Simon Kelleyc8257542012-03-28 21:15:41 +0100400 {
Simon Kelley1e02a852012-03-29 11:07:25 +0100401 struct prefix_opt *opt;
402
403 if ((opt = expand(sizeof(struct prefix_opt))))
404 {
Simon Kelley5ef33272012-03-30 15:10:28 +0100405 /* zero net part of address */
406 setaddr6part(local, addr6part(local) & ~((prefix == 64) ? (u64)-1LL : (1LLU << (128 - prefix)) - 1LLU));
407
Simon Kelley1e02a852012-03-29 11:07:25 +0100408 /* lifetimes must be min 2 hrs, by RFC 2462 */
409 if (time < 7200)
410 time = 7200;
411
412 opt->type = ICMP6_OPT_PREFIX;
413 opt->len = 4;
414 opt->prefix_len = prefix;
Simon Kelleyfd05f122012-08-12 17:48:50 +0100415 /* autonomous only if we're not doing dhcp, always set "on-link" */
416 opt->flags = do_slaac ? 0xC0 : 0x80;
Simon Kelley1e02a852012-03-29 11:07:25 +0100417 opt->valid_lifetime = htonl(time);
418 opt->preferred_lifetime = htonl(deprecate ? 0 : time);
Simon Kelley5ef33272012-03-30 15:10:28 +0100419 opt->reserved = 0;
Simon Kelley1e02a852012-03-29 11:07:25 +0100420 opt->prefix = *local;
Simon Kelley1e02a852012-03-29 11:07:25 +0100421
Simon Kelley5ef33272012-03-30 15:10:28 +0100422 inet_ntop(AF_INET6, local, daemon->addrbuff, ADDRSTRLEN);
Simon Kelley1e02a852012-03-29 11:07:25 +0100423 my_syslog(MS_DHCP | LOG_INFO, "RTR-ADVERT(%s) %s", param->if_name, daemon->addrbuff);
424 }
Simon Kelleyc8257542012-03-28 21:15:41 +0100425 }
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000426 }
427 }
428 return 1;
429}
430
431static int add_lla(int index, unsigned int type, char *mac, size_t maclen, void *parm)
432{
433 (void)type;
434
435 if (index == *((int *)parm))
436 {
437 /* size is in units of 8 octets and includes type and length (2 bytes)
438 add 7 to round up */
439 int len = (maclen + 9) >> 3;
440 unsigned char *p = expand(len << 3);
441 memset(p, 0, len << 3);
442 *p++ = ICMP6_OPT_SOURCE_MAC;
443 *p++ = len;
444 memcpy(p, mac, maclen);
445
446 return 0;
447 }
448
449 return 1;
450}
451
452time_t periodic_ra(time_t now)
453{
454 struct search_param param;
455 struct dhcp_context *context;
456 time_t next_event;
457 char interface[IF_NAMESIZE+1];
458
459 param.now = now;
Simon Kelley29d28dd2012-12-03 14:05:59 +0000460 param.iface = 0;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000461
462 while (1)
463 {
464 /* find overdue events, and time of first future event */
465 for (next_event = 0, context = daemon->ra_contexts; context; context = context->next)
466 if (context->ra_time != 0)
467 {
Simon Kelley7dbe9812012-03-25 14:49:54 +0100468 if (difftime(context->ra_time, now) <= 0.0)
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000469 break; /* overdue */
470
Simon Kelley7dbe9812012-03-25 14:49:54 +0100471 if (next_event == 0 || difftime(next_event, context->ra_time) > 0.0)
472 next_event = context->ra_time;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000473 }
474
475 /* none overdue */
476 if (!context)
477 break;
478
479 /* There's a context overdue, but we can't find an interface
480 associated with it, because it's for a subnet we dont
481 have an interface on. Probably we're doing DHCP on
482 a remote subnet via a relay. Zero the timer, since we won't
483 ever be able to send ra's and satistfy it. */
484 if (iface_enumerate(AF_INET6, &param, iface_search))
485 context->ra_time = 0;
Simon Kelley29d28dd2012-12-03 14:05:59 +0000486 else if (param.iface != 0 &&
487 indextoname(daemon->icmp6fd, param.iface, interface) &&
Simon Kelleyd89fb4e2012-12-01 21:21:13 +0000488 iface_check(AF_LOCAL, NULL, interface))
Simon Kelley421594f2012-12-02 12:17:35 +0000489 {
490 struct iname *tmp;
491 for (tmp = daemon->dhcp_except; tmp; tmp = tmp->next)
492 if (tmp->name && (strcmp(tmp->name, interface) == 0))
493 break;
494 if (!tmp)
495 send_ra(param.iface, interface, NULL);
496 }
497 }
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000498 return next_event;
499}
Simon Kelley421594f2012-12-02 12:17:35 +0000500
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000501static int iface_search(struct in6_addr *local, int prefix,
502 int scope, int if_index, int dad, void *vparam)
503{
504 struct search_param *param = vparam;
Simon Kelley741c2952012-02-25 13:09:18 +0000505 struct dhcp_context *context;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000506
507 (void)scope;
508 (void)dad;
509
510 for (context = daemon->ra_contexts; context; context = context->next)
511 if (prefix == context->prefix &&
512 is_same_net6(local, &context->start6, prefix) &&
513 is_same_net6(local, &context->end6, prefix))
Simon Kelley353ae4d2012-03-19 20:07:51 +0000514 if (context->ra_time != 0 && difftime(context->ra_time, param->now) <= 0.0)
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000515 {
516 /* found an interface that's overdue for RA determine new
Simon Kelley29d28dd2012-12-03 14:05:59 +0000517 timeout value and arrange for RA to be sent unless interface is
518 still doing DAD.*/
519
520 if (!dad)
521 param->iface = if_index;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000522
523 if (difftime(param->now, ra_short_period_start) < 60.0)
524 /* range 5 - 20 */
525 context->ra_time = param->now + 5 + (rand16()/4400);
526 else
527 /* range 450 - 600 */
528 context->ra_time = param->now + 450 + (rand16()/440);
529
Simon Kelley29d28dd2012-12-03 14:05:59 +0000530 /* zero timers for other contexts on the same subnet, so they don't timeout
531 independently */
532 for (context = context->next; context; context = context->next)
533 if (prefix == context->prefix &&
534 is_same_net6(local, &context->start6, prefix) &&
535 is_same_net6(local, &context->end6, prefix))
536 context->ra_time = 0;
537
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000538 return 0; /* found, abort */
539 }
540
541 return 1; /* keep searching */
542}
543
Simon Kelley801ca9a2012-03-06 19:30:17 +0000544
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000545#endif