a40c35361d6055bcc3fb352a8b98ae843342837a
[project/odhcpd.git] / src / dhcpv6.c
1 /**
2 * Copyright (C) 2012-2013 Steven Barth <steven@midlink.org>
3 * Copyright (C) 2018 Hans Dedecker <dedeckeh@gmail.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License v2 as published by
7 * the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 *
15 */
16
17 #include <errno.h>
18 #include <unistd.h>
19 #include <stddef.h>
20 #include <resolv.h>
21 #include <sys/timerfd.h>
22 #include <arpa/inet.h>
23
24 #include <libubox/utils.h>
25
26 #include "odhcpd.h"
27 #include "dhcpv6.h"
28
29
30 static void relay_client_request(struct sockaddr_in6 *source,
31 const void *data, size_t len, struct interface *iface);
32 static void relay_server_response(uint8_t *data, size_t len);
33
34 static void handle_dhcpv6(void *addr, void *data, size_t len,
35 struct interface *iface, void *dest);
36 static void handle_client_request(void *addr, void *data, size_t len,
37 struct interface *iface, void *dest_addr);
38
39
40 /* Create socket and register events */
41 int dhcpv6_init(void)
42 {
43 return dhcpv6_ia_init();
44 }
45
46 int dhcpv6_setup_interface(struct interface *iface, bool enable)
47 {
48 int ret = 0;
49
50 if (iface->dhcpv6_event.uloop.fd > 0) {
51 uloop_fd_delete(&iface->dhcpv6_event.uloop);
52 close(iface->dhcpv6_event.uloop.fd);
53 iface->dhcpv6_event.uloop.fd = -1;
54 }
55
56 /* Configure multicast settings */
57 if (enable && iface->dhcpv6) {
58 struct sockaddr_in6 bind_addr = {AF_INET6, htons(DHCPV6_SERVER_PORT),
59 0, IN6ADDR_ANY_INIT, 0};
60 struct ipv6_mreq mreq;
61 int val = 1;
62
63 iface->dhcpv6_event.uloop.fd = socket(AF_INET6, SOCK_DGRAM | SOCK_CLOEXEC, IPPROTO_UDP);
64 if (iface->dhcpv6_event.uloop.fd < 0) {
65 syslog(LOG_ERR, "socket(AF_INET6): %m");
66 ret = -1;
67 goto out;
68 }
69
70 /* Basic IPv6 configuration */
71 if (setsockopt(iface->dhcpv6_event.uloop.fd, SOL_SOCKET, SO_BINDTODEVICE,
72 iface->ifname, strlen(iface->ifname)) < 0) {
73 syslog(LOG_ERR, "setsockopt(SO_BINDTODEVICE): %m");
74 ret = -1;
75 goto out;
76 }
77
78 if (setsockopt(iface->dhcpv6_event.uloop.fd, IPPROTO_IPV6, IPV6_V6ONLY,
79 &val, sizeof(val)) < 0) {
80 syslog(LOG_ERR, "setsockopt(IPV6_V6ONLY): %m");
81 ret = -1;
82 goto out;
83 }
84
85 if (setsockopt(iface->dhcpv6_event.uloop.fd, SOL_SOCKET, SO_REUSEADDR,
86 &val, sizeof(val)) < 0) {
87 syslog(LOG_ERR, "setsockopt(SO_REUSEADDR): %m");
88 ret = -1;
89 goto out;
90 }
91
92 if (setsockopt(iface->dhcpv6_event.uloop.fd, IPPROTO_IPV6, IPV6_RECVPKTINFO,
93 &val, sizeof(val)) < 0) {
94 syslog(LOG_ERR, "setsockopt(IPV6_RECVPKTINFO): %m");
95 ret = -1;
96 goto out;
97 }
98
99 val = DHCPV6_HOP_COUNT_LIMIT;
100 if (setsockopt(iface->dhcpv6_event.uloop.fd, IPPROTO_IPV6, IPV6_MULTICAST_HOPS,
101 &val, sizeof(val)) < 0) {
102 syslog(LOG_ERR, "setsockopt(IPV6_MULTICAST_HOPS): %m");
103 ret = -1;
104 goto out;
105 }
106
107 val = 0;
108 if (setsockopt(iface->dhcpv6_event.uloop.fd, IPPROTO_IPV6, IPV6_MULTICAST_LOOP,
109 &val, sizeof(val)) < 0) {
110 syslog(LOG_ERR, "setsockopt(IPV6_MULTICAST_LOOP): %m");
111 ret = -1;
112 goto out;
113 }
114
115 if (bind(iface->dhcpv6_event.uloop.fd, (struct sockaddr*)&bind_addr,
116 sizeof(bind_addr)) < 0) {
117 syslog(LOG_ERR, "bind(): %m");
118 ret = -1;
119 goto out;
120 }
121
122 memset(&mreq, 0, sizeof(mreq));
123 inet_pton(AF_INET6, ALL_DHCPV6_RELAYS, &mreq.ipv6mr_multiaddr);
124 mreq.ipv6mr_interface = iface->ifindex;
125
126 if (setsockopt(iface->dhcpv6_event.uloop.fd, IPPROTO_IPV6, IPV6_ADD_MEMBERSHIP,
127 &mreq, sizeof(mreq)) < 0) {
128 syslog(LOG_ERR, "setsockopt(IPV6_ADD_MEMBERSHIP): %m");
129 ret = -1;
130 goto out;
131 }
132
133 if (iface->dhcpv6 == MODE_SERVER) {
134 memset(&mreq, 0, sizeof(mreq));
135 inet_pton(AF_INET6, ALL_DHCPV6_SERVERS, &mreq.ipv6mr_multiaddr);
136 mreq.ipv6mr_interface = iface->ifindex;
137
138 if (setsockopt(iface->dhcpv6_event.uloop.fd, IPPROTO_IPV6, IPV6_ADD_MEMBERSHIP,
139 &mreq, sizeof(mreq)) < 0) {
140 syslog(LOG_ERR, "setsockopt(IPV6_ADD_MEMBERSHIP): %m");
141 ret = -1;
142 goto out;
143 }
144 }
145
146 iface->dhcpv6_event.handle_dgram = handle_dhcpv6;
147 odhcpd_register(&iface->dhcpv6_event);
148 }
149
150 ret = dhcpv6_ia_setup_interface(iface, enable);
151
152 out:
153 if (ret < 0 && iface->dhcpv6_event.uloop.fd > 0) {
154 close(iface->dhcpv6_event.uloop.fd);
155 iface->dhcpv6_event.uloop.fd = -1;
156 }
157
158 return ret;
159 }
160
161 enum {
162 IOV_NESTED = 0,
163 IOV_DEST,
164 IOV_MAXRT,
165 #define IOV_STAT IOV_MAXRT
166 IOV_DNS,
167 IOV_DNS_ADDR,
168 IOV_SEARCH,
169 IOV_SEARCH_DOMAIN,
170 IOV_PDBUF,
171 #define IOV_REFRESH IOV_PDBUF
172 IOV_CERID,
173 IOV_DHCPV6_RAW,
174 IOV_RELAY_MSG,
175 IOV_TOTAL
176 };
177
178 static void handle_nested_message(uint8_t *data, size_t len,
179 struct dhcpv6_client_header **c_hdr, uint8_t **opts,
180 uint8_t **end, struct iovec iov[IOV_TOTAL])
181 {
182 struct dhcpv6_relay_header *r_hdr = (struct dhcpv6_relay_header *)data;
183 uint16_t otype, olen;
184 uint8_t *odata;
185
186 if (iov[IOV_NESTED].iov_base == NULL) {
187 iov[IOV_NESTED].iov_base = data;
188 iov[IOV_NESTED].iov_len = len;
189 }
190
191 if (len < sizeof(struct dhcpv6_client_header))
192 return;
193
194 if (r_hdr->msg_type != DHCPV6_MSG_RELAY_FORW) {
195 iov[IOV_NESTED].iov_len = data - (uint8_t *)iov[IOV_NESTED].iov_base;
196 *c_hdr = (void *)data;
197 *opts = (uint8_t *)&(*c_hdr)[1];
198 *end = data + len;
199 return;
200 }
201
202 dhcpv6_for_each_option(r_hdr->options, data + len, otype, olen, odata) {
203 if (otype == DHCPV6_OPT_RELAY_MSG) {
204 iov[IOV_RELAY_MSG].iov_base = odata + olen;
205 iov[IOV_RELAY_MSG].iov_len = (((uint8_t *)iov[IOV_NESTED].iov_base) +
206 iov[IOV_NESTED].iov_len) - (odata + olen);
207 handle_nested_message(odata, olen, c_hdr, opts, end, iov);
208 return;
209 }
210 }
211 }
212
213
214 static void update_nested_message(uint8_t *data, size_t len, ssize_t pdiff)
215 {
216 struct dhcpv6_relay_header *hdr = (struct dhcpv6_relay_header*)data;
217 if (hdr->msg_type != DHCPV6_MSG_RELAY_FORW)
218 return;
219
220 hdr->msg_type = DHCPV6_MSG_RELAY_REPL;
221
222 uint16_t otype, olen;
223 uint8_t *odata;
224 dhcpv6_for_each_option(hdr->options, data + len, otype, olen, odata) {
225 if (otype == DHCPV6_OPT_RELAY_MSG) {
226 olen += pdiff;
227 odata[-2] = (olen >> 8) & 0xff;
228 odata[-1] = olen & 0xff;
229 update_nested_message(odata, olen - pdiff, pdiff);
230 return;
231 }
232 }
233 }
234
235 /* Simple DHCPv6-server for information requests */
236 static void handle_client_request(void *addr, void *data, size_t len,
237 struct interface *iface, void *dest_addr)
238 {
239 struct dhcpv6_client_header *hdr = data;
240
241 if (len < sizeof(*hdr))
242 return;
243
244 syslog(LOG_NOTICE, "Got DHCPv6 request on %s", iface->name);
245
246 /* Construct reply message */
247 struct __attribute__((packed)) {
248 uint8_t msg_type;
249 uint8_t tr_id[3];
250 uint16_t serverid_type;
251 uint16_t serverid_length;
252 uint16_t duid_type;
253 uint16_t hardware_type;
254 uint8_t mac[6];
255 uint16_t clientid_type;
256 uint16_t clientid_length;
257 uint8_t clientid_buf[130];
258 } dest = {
259 .msg_type = DHCPV6_MSG_REPLY,
260 .serverid_type = htons(DHCPV6_OPT_SERVERID),
261 .serverid_length = htons(10),
262 .duid_type = htons(3),
263 .hardware_type = htons(1),
264 .clientid_type = htons(DHCPV6_OPT_CLIENTID),
265 .clientid_buf = {0}
266 };
267 odhcpd_get_mac(iface, dest.mac);
268
269 struct __attribute__((packed)) {
270 uint16_t type;
271 uint16_t len;
272 uint32_t value;
273 } maxrt = {htons(DHCPV6_OPT_SOL_MAX_RT), htons(sizeof(maxrt) - 4),
274 htonl(60)};
275
276 struct __attribute__((packed)) {
277 uint16_t type;
278 uint16_t len;
279 uint16_t value;
280 } stat = {htons(DHCPV6_OPT_STATUS), htons(sizeof(stat) - 4),
281 htons(DHCPV6_STATUS_USEMULTICAST)};
282
283 struct __attribute__((packed)) {
284 uint16_t type;
285 uint16_t len;
286 uint32_t value;
287 } refresh = {htons(DHCPV6_OPT_INFO_REFRESH), htons(sizeof(uint32_t)),
288 htonl(600)};
289
290 struct in6_addr dns_addr, *dns_addr_ptr = iface->dns;
291 size_t dns_cnt = iface->dns_cnt;
292
293 if ((dns_cnt == 0) &&
294 !odhcpd_get_interface_dns_addr(iface, &dns_addr)) {
295 dns_addr_ptr = &dns_addr;
296 dns_cnt = 1;
297 }
298
299 struct {
300 uint16_t type;
301 uint16_t len;
302 } dns = {htons(DHCPV6_OPT_DNS_SERVERS), htons(dns_cnt * sizeof(*dns_addr_ptr))};
303
304
305
306 /* DNS Search options */
307 uint8_t search_buf[256], *search_domain = iface->search;
308 size_t search_len = iface->search_len;
309
310 if (!search_domain && !res_init() && _res.dnsrch[0] && _res.dnsrch[0][0]) {
311 int len = dn_comp(_res.dnsrch[0], search_buf,
312 sizeof(search_buf), NULL, NULL);
313 if (len > 0) {
314 search_domain = search_buf;
315 search_len = len;
316 }
317 }
318
319 struct {
320 uint16_t type;
321 uint16_t len;
322 } search = {htons(DHCPV6_OPT_DNS_DOMAIN), htons(search_len)};
323
324
325 struct dhcpv6_cer_id cerid = {
326 #ifdef EXT_CER_ID
327 .type = htons(EXT_CER_ID),
328 #endif
329 .len = htons(36),
330 .addr = iface->dhcpv6_pd_cer,
331 };
332
333
334 uint8_t pdbuf[512];
335 struct iovec iov[IOV_TOTAL] = {
336 [IOV_NESTED] = {NULL, 0},
337 [IOV_DEST] = {&dest, (uint8_t*)&dest.clientid_type - (uint8_t*)&dest},
338 [IOV_MAXRT] = {&maxrt, sizeof(maxrt)},
339 [IOV_DNS] = {&dns, (dns_cnt) ? sizeof(dns) : 0},
340 [IOV_DNS_ADDR] = {dns_addr_ptr, dns_cnt * sizeof(*dns_addr_ptr)},
341 [IOV_SEARCH] = {&search, (search_len) ? sizeof(search) : 0},
342 [IOV_SEARCH_DOMAIN] = {search_domain, search_len},
343 [IOV_PDBUF] = {pdbuf, 0},
344 [IOV_CERID] = {&cerid, 0},
345 [IOV_DHCPV6_RAW] = {iface->dhcpv6_raw, iface->dhcpv6_raw_len},
346 [IOV_RELAY_MSG] = {NULL, 0}
347 };
348
349 uint8_t *opts = (uint8_t*)&hdr[1], *opts_end = (uint8_t*)data + len;
350 if (hdr->msg_type == DHCPV6_MSG_RELAY_FORW)
351 handle_nested_message(data, len, &hdr, &opts, &opts_end, iov);
352
353 memcpy(dest.tr_id, hdr->transaction_id, sizeof(dest.tr_id));
354
355 if (hdr->msg_type == DHCPV6_MSG_ADVERTISE || hdr->msg_type == DHCPV6_MSG_REPLY ||
356 hdr->msg_type == DHCPV6_MSG_RELAY_REPL)
357 return;
358
359 if (!IN6_IS_ADDR_MULTICAST((struct in6_addr *)dest_addr) && iov[IOV_NESTED].iov_len == 0 &&
360 (hdr->msg_type == DHCPV6_MSG_SOLICIT || hdr->msg_type == DHCPV6_MSG_CONFIRM ||
361 hdr->msg_type == DHCPV6_MSG_REBIND || hdr->msg_type == DHCPV6_MSG_INFORMATION_REQUEST))
362 return;
363
364 if (hdr->msg_type == DHCPV6_MSG_SOLICIT) {
365 dest.msg_type = DHCPV6_MSG_ADVERTISE;
366 } else if (hdr->msg_type == DHCPV6_MSG_INFORMATION_REQUEST) {
367 iov[IOV_REFRESH].iov_base = &refresh;
368 iov[IOV_REFRESH].iov_len = sizeof(refresh);
369
370 /* Return inf max rt option in reply to information request */
371 maxrt.type = htons(DHCPV6_OPT_INF_MAX_RT);
372 }
373
374 /* Go through options and find what we need */
375 uint16_t otype, olen;
376 uint8_t *odata;
377 dhcpv6_for_each_option(opts, opts_end, otype, olen, odata) {
378 if (otype == DHCPV6_OPT_CLIENTID && olen <= 130) {
379 dest.clientid_length = htons(olen);
380 memcpy(dest.clientid_buf, odata, olen);
381 iov[IOV_DEST].iov_len += 4 + olen;
382 } else if (otype == DHCPV6_OPT_SERVERID) {
383 if (olen != ntohs(dest.serverid_length) ||
384 memcmp(odata, &dest.duid_type, olen))
385 return; /* Not for us */
386 } else if (iface->filter_class && otype == DHCPV6_OPT_USER_CLASS) {
387 uint8_t *c = odata, *cend = &odata[olen];
388 for (; &c[2] <= cend && &c[2 + (c[0] << 8) + c[1]] <= cend; c = &c[2 + (c[0] << 8) + c[1]]) {
389 size_t elen = strlen(iface->filter_class);
390 if (((((size_t)c[0]) << 8) | c[1]) == elen && !memcmp(&c[2], iface->filter_class, elen))
391 return; /* Ignore from homenet */
392 }
393 } else if (otype == DHCPV6_OPT_IA_PD) {
394 #ifdef EXT_CER_ID
395 iov[IOV_CERID].iov_len = sizeof(cerid);
396
397 if (IN6_IS_ADDR_UNSPECIFIED(&cerid.addr)) {
398 struct odhcpd_ipaddr *addrs;
399 ssize_t len = netlink_get_interface_addrs(0, true, &addrs);
400
401 for (ssize_t i = 0; i < len; ++i)
402 if (IN6_IS_ADDR_UNSPECIFIED(&cerid.addr)
403 || memcmp(&addrs[i].addr, &cerid.addr, sizeof(cerid.addr)) < 0)
404 cerid.addr = addrs[i].addr.in6;
405
406 free(addrs);
407 }
408 #endif
409 }
410 }
411
412 if (!IN6_IS_ADDR_MULTICAST((struct in6_addr *)dest_addr) && iov[IOV_NESTED].iov_len == 0 &&
413 (hdr->msg_type == DHCPV6_MSG_REQUEST || hdr->msg_type == DHCPV6_MSG_RENEW ||
414 hdr->msg_type == DHCPV6_MSG_RELEASE || hdr->msg_type == DHCPV6_MSG_DECLINE)) {
415 iov[IOV_STAT].iov_base = &stat;
416 iov[IOV_STAT].iov_len = sizeof(stat);
417
418 for (ssize_t i = IOV_STAT + 1; i < IOV_TOTAL; ++i)
419 iov[i].iov_len = 0;
420
421 odhcpd_send(iface->dhcpv6_event.uloop.fd, addr, iov, ARRAY_SIZE(iov), iface);
422 return;
423 }
424
425 if (hdr->msg_type != DHCPV6_MSG_INFORMATION_REQUEST) {
426 ssize_t ialen = dhcpv6_ia_handle_IAs(pdbuf, sizeof(pdbuf), iface, addr, (const void *)hdr, opts_end);
427
428 iov[IOV_PDBUF].iov_len = ialen;
429 if (ialen < 0 ||
430 (ialen == 0 && (hdr->msg_type == DHCPV6_MSG_REBIND || hdr->msg_type == DHCPV6_MSG_CONFIRM)))
431 return;
432 }
433
434 if (iov[IOV_NESTED].iov_len > 0) /* Update length */
435 update_nested_message(data, len, iov[IOV_DEST].iov_len + iov[IOV_MAXRT].iov_len +
436 iov[IOV_DNS].iov_len + iov[IOV_DNS_ADDR].iov_len +
437 iov[IOV_SEARCH].iov_len + iov[IOV_SEARCH_DOMAIN].iov_len +
438 iov[IOV_PDBUF].iov_len + iov[IOV_CERID].iov_len +
439 iov[IOV_DHCPV6_RAW].iov_len - (4 + opts_end - opts));
440
441 odhcpd_send(iface->dhcpv6_event.uloop.fd, addr, iov, ARRAY_SIZE(iov), iface);
442 }
443
444
445 /* Central DHCPv6-relay handler */
446 static void handle_dhcpv6(void *addr, void *data, size_t len,
447 struct interface *iface, void *dest_addr)
448 {
449 if (iface->dhcpv6 == MODE_SERVER) {
450 handle_client_request(addr, data, len, iface, dest_addr);
451 } else if (iface->dhcpv6 == MODE_RELAY) {
452 if (iface->master)
453 relay_server_response(data, len);
454 else
455 relay_client_request(addr, data, len, iface);
456 }
457 }
458
459
460 /* Relay server response (regular relay server handling) */
461 static void relay_server_response(uint8_t *data, size_t len)
462 {
463 /* Information we need to gather */
464 uint8_t *payload_data = NULL;
465 size_t payload_len = 0;
466 int32_t ifaceidx = 0;
467 struct sockaddr_in6 target = {AF_INET6, htons(DHCPV6_CLIENT_PORT),
468 0, IN6ADDR_ANY_INIT, 0};
469
470 syslog(LOG_NOTICE, "Got a DHCPv6-reply");
471
472 int otype, olen;
473 uint8_t *odata, *end = data + len;
474
475 /* Relay DHCPv6 reply from server to client */
476 struct dhcpv6_relay_header *h = (void*)data;
477 if (len < sizeof(*h) || h->msg_type != DHCPV6_MSG_RELAY_REPL)
478 return;
479
480 memcpy(&target.sin6_addr, &h->peer_address,
481 sizeof(struct in6_addr));
482
483 /* Go through options and find what we need */
484 dhcpv6_for_each_option(h->options, end, otype, olen, odata) {
485 if (otype == DHCPV6_OPT_INTERFACE_ID
486 && olen == sizeof(ifaceidx)) {
487 memcpy(&ifaceidx, odata, sizeof(ifaceidx));
488 } else if (otype == DHCPV6_OPT_RELAY_MSG) {
489 payload_data = odata;
490 payload_len = olen;
491 }
492 }
493
494 /* Invalid interface-id or basic payload */
495 struct interface *iface = odhcpd_get_interface_by_index(ifaceidx);
496 if (!iface || iface->master || !payload_data || payload_len < 4)
497 return;
498
499 bool is_authenticated = false;
500 struct in6_addr *dns_ptr = NULL;
501 size_t dns_count = 0;
502
503 /* If the payload is relay-reply we have to send to the server port */
504 if (payload_data[0] == DHCPV6_MSG_RELAY_REPL) {
505 target.sin6_port = htons(DHCPV6_SERVER_PORT);
506 } else { /* Go through the payload data */
507 struct dhcpv6_client_header *h = (void*)payload_data;
508 end = payload_data + payload_len;
509
510 dhcpv6_for_each_option(&h[1], end, otype, olen, odata) {
511 if (otype == DHCPV6_OPT_DNS_SERVERS && olen >= 16) {
512 dns_ptr = (struct in6_addr*)odata;
513 dns_count = olen / 16;
514 } else if (otype == DHCPV6_OPT_AUTH) {
515 is_authenticated = true;
516 }
517 }
518 }
519
520 /* Rewrite DNS servers if requested */
521 if (iface->always_rewrite_dns && dns_ptr && dns_count > 0) {
522 if (is_authenticated)
523 return; /* Impossible to rewrite */
524
525 const struct in6_addr *rewrite = iface->dns;
526 struct in6_addr addr;
527 size_t rewrite_cnt = iface->dns_cnt;
528
529 if (rewrite_cnt == 0) {
530 if (odhcpd_get_interface_dns_addr(iface, &addr))
531 return; // Unable to get interface address
532
533 rewrite = &addr;
534 rewrite_cnt = 1;
535 }
536
537 /* Copy over any other addresses */
538 for (size_t i = 0; i < dns_count; ++i) {
539 size_t j = (i < rewrite_cnt) ? i : rewrite_cnt - 1;
540 memcpy(&dns_ptr[i], &rewrite[j], sizeof(*rewrite));
541 }
542 }
543
544 struct iovec iov = {payload_data, payload_len};
545 odhcpd_send(iface->dhcpv6_event.uloop.fd, &target, &iov, 1, iface);
546 }
547
548 static struct odhcpd_ipaddr *relay_link_address(struct interface *iface)
549 {
550 struct odhcpd_ipaddr *addr = NULL;
551 time_t now = odhcpd_time();
552
553 for (size_t i = 0; i < iface->addr6_len; i++) {
554 if (iface->addr6[i].valid <= (uint32_t)now)
555 continue;
556
557 if (iface->addr6[i].preferred > (uint32_t)now) {
558 addr = &iface->addr6[i];
559 break;
560 }
561
562 if (!addr || (iface->addr6[i].valid > addr->valid))
563 addr = &iface->addr6[i];
564 }
565
566 return addr;
567 }
568
569 /* Relay client request (regular DHCPv6-relay) */
570 static void relay_client_request(struct sockaddr_in6 *source,
571 const void *data, size_t len, struct interface *iface)
572 {
573 struct interface *master = odhcpd_get_master_interface();
574 const struct dhcpv6_relay_header *h = data;
575 struct sockaddr_in6 s;
576
577 if (!master || master->dhcpv6 != MODE_RELAY ||
578 h->msg_type == DHCPV6_MSG_RELAY_REPL ||
579 h->msg_type == DHCPV6_MSG_RECONFIGURE ||
580 h->msg_type == DHCPV6_MSG_REPLY ||
581 h->msg_type == DHCPV6_MSG_ADVERTISE)
582 return; /* Invalid message types for client */
583
584 syslog(LOG_NOTICE, "Got a DHCPv6-request");
585
586 /* Construct our forwarding envelope */
587 struct dhcpv6_relay_forward_envelope hdr = {
588 .msg_type = DHCPV6_MSG_RELAY_FORW,
589 .hop_count = 0,
590 .interface_id_type = htons(DHCPV6_OPT_INTERFACE_ID),
591 .interface_id_len = htons(sizeof(uint32_t)),
592 .relay_message_type = htons(DHCPV6_OPT_RELAY_MSG),
593 .relay_message_len = htons(len),
594 };
595
596 if (h->msg_type == DHCPV6_MSG_RELAY_FORW) { /* handle relay-forward */
597 if (h->hop_count >= DHCPV6_HOP_COUNT_LIMIT)
598 return; // Invalid hop count
599 else
600 hdr.hop_count = h->hop_count + 1;
601 }
602
603 /* use memcpy here as the destination fields are unaligned */
604 uint32_t ifindex = iface->ifindex;
605 memcpy(&hdr.peer_address, &source->sin6_addr, sizeof(struct in6_addr));
606 memcpy(&hdr.interface_id_data, &ifindex, sizeof(ifindex));
607
608 /* Detect public IP of slave interface to use as link-address */
609 struct odhcpd_ipaddr *ip = relay_link_address(iface);
610 if (!ip) {
611 /* No suitable address! Is the slave not configured yet?
612 * Detect public IP of master interface and use it instead
613 * This is WRONG and probably violates the RFC. However
614 * otherwise we have a hen and egg problem because the
615 * slave-interface cannot be auto-configured. */
616 ip = relay_link_address(master);
617 if (!ip)
618 return; /* Could not obtain a suitable address */
619 }
620
621 memcpy(&hdr.link_address, &ip->addr.in6, sizeof(hdr.link_address));
622
623 memset(&s, 0, sizeof(s));
624 s.sin6_family = AF_INET6;
625 s.sin6_port = htons(DHCPV6_SERVER_PORT);
626 inet_pton(AF_INET6, ALL_DHCPV6_SERVERS, &s.sin6_addr);
627
628 struct iovec iov[2] = {{&hdr, sizeof(hdr)}, {(void*)data, len}};
629 odhcpd_send(master->dhcpv6_event.uloop.fd, &s, iov, 2, master);
630 }