summaryrefslogtreecommitdiffstats
path: root/src/ra.c
blob: 2cf69ff059ef74ea5e4cbe082c283e08b6753ba7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
/**
 * Copyright (C) 2012-2014 Steven Barth <steven@midlink.org>
 * Copyright (C) 2017-2018 Hans Dedecker <dedeckeh@gmail.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License v2 as published by
 * the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 */

#include <alloca.h>
#include <arpa/inet.h>
#include <errno.h>
#include <fcntl.h>
#include <linux/rtnetlink.h>
#include <net/if.h>
#include <netinet/in.h>
#include <netinet/icmp6.h>
#include <resolv.h>
#include <signal.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <unistd.h>

#include "odhcp6c.h"
#include "ra.h"

#ifndef SOL_NETLINK
#define SOL_NETLINK 270
#endif

#ifndef NETLINK_ADD_MEMBERSHIP
#define NETLINK_ADD_MEMBERSHIP 1
#endif

#ifndef IFF_LOWER_UP
#define IFF_LOWER_UP 0x10000
#endif

static bool nocarrier = false;
static bool ptp_link = false;

static int sock = -1, rtnl = -1;
static int if_index = 0;
static char if_name[IF_NAMESIZE] = {0};
static volatile int rs_attempt = 0;
static struct in6_addr ra_addr = IN6ADDR_ANY_INIT;
static unsigned int ra_options = 0;
static unsigned int ra_holdoff_interval = 0;
static ra_ifid_mode_t ra_ifid_mode = RA_IFID_LLA;
static int ra_hoplimit = 0;
static int ra_mtu = 0;
static int ra_reachable = 0;
static int ra_retransmit = 0;

struct {
	struct icmp6_hdr hdr;
	struct icmpv6_opt lladdr;
} rs = {
	.hdr = {ND_ROUTER_SOLICIT, 0, 0, {{0}}},
	.lladdr = {ND_OPT_SOURCE_LINKADDR, 1, {0}},
};

static void ra_send_rs(_o_unused int signal);

int ra_init(const char *ifname, const struct in6_addr *ifid,
	    ra_ifid_mode_t ifid_mode, unsigned int options,
	    unsigned int holdoff_interval)
{
	struct ifreq ifr;

	ra_options = options;
	ra_holdoff_interval = holdoff_interval;
	ra_ifid_mode = ifid_mode;

	const pid_t ourpid = getpid();
	sock = socket(AF_INET6, SOCK_RAW | SOCK_CLOEXEC, IPPROTO_ICMPV6);
	if (sock < 0)
		goto failure;

	memset(&ifr, 0, sizeof(ifr));
	strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name) - 1);
	if (ioctl(sock, SIOCGIFFLAGS, &ifr) < 0)
		goto failure;

	ptp_link = !!(ifr.ifr_flags & IFF_POINTOPOINT);

	memset(&ifr, 0, sizeof(ifr));
	strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name) - 1);
	if (ioctl(sock, SIOCGIFINDEX, &ifr) < 0)
		goto failure;

	strncpy(if_name, ifname, sizeof(if_name) - 1);
	if_index = ifr.ifr_ifindex;
	ra_addr = *ifid;

	rtnl = socket(AF_NETLINK, SOCK_DGRAM | SOCK_CLOEXEC, NETLINK_ROUTE);
	if (rtnl < 0)
		goto failure;

	struct sockaddr_nl rtnl_kernel = { .nl_family = AF_NETLINK };
	if (connect(rtnl, (const struct sockaddr*)&rtnl_kernel, sizeof(rtnl_kernel)) < 0)
		goto failure;

	int val = RTNLGRP_LINK;
	if (setsockopt(rtnl, SOL_NETLINK, NETLINK_ADD_MEMBERSHIP, &val, sizeof(val)) < 0)
		goto failure;

	if (fcntl(rtnl, F_SETOWN, ourpid) < 0)
		goto failure;

	if (fcntl(rtnl, F_SETFL, fcntl(sock, F_GETFL) | O_ASYNC) < 0)
		goto failure;

	struct {
		struct nlmsghdr hdr;
		struct ifinfomsg ifi;
	} req = {
		.hdr = {sizeof(req), RTM_GETLINK, NLM_F_REQUEST, 1, 0},
		.ifi = {.ifi_index = if_index}
	};
	if (send(rtnl, &req, sizeof(req), 0) < 0)
		goto failure;

	ra_link_up();

	// Filter ICMPv6 package types
	struct icmp6_filter filt;
	ICMP6_FILTER_SETBLOCKALL(&filt);
	ICMP6_FILTER_SETPASS(ND_ROUTER_ADVERT, &filt);
	if (setsockopt(sock, IPPROTO_ICMPV6, ICMP6_FILTER, &filt, sizeof(filt)) < 0)
		goto failure;

	// Bind to all-nodes
	struct ipv6_mreq an = {ALL_IPV6_NODES, if_index};
	if (setsockopt(sock, IPPROTO_IPV6, IPV6_ADD_MEMBERSHIP, &an, sizeof(an)) < 0)
		goto failure;

	// Let the kernel compute our checksums
	val = 2;
	if (setsockopt(sock, IPPROTO_RAW, IPV6_CHECKSUM, &val, sizeof(val)) < 0)
		goto failure;

	// This is required by RFC 4861
	val = 255;
	if (setsockopt(sock, IPPROTO_IPV6, IPV6_MULTICAST_HOPS, &val, sizeof(val)) < 0)
		goto failure;

	// Receive multicast hops
	val = 1;
	if (setsockopt(sock, IPPROTO_IPV6, IPV6_RECVHOPLIMIT, &val, sizeof(val)) < 0)
		goto failure;

	// Bind to one device
	if (setsockopt(sock, SOL_SOCKET, SO_BINDTODEVICE, ifname, strlen(ifname)) < 0)
		goto failure;

	// Add async-mode
	if (fcntl(sock, F_SETOWN, ourpid) < 0)
		goto failure;

	val = fcntl(sock, F_GETFL);
	if (val < 0)
		goto failure;

	if (fcntl(sock, F_SETFL, val | O_ASYNC) < 0)
		goto failure;

	// flush any received messages that may not have had all the options (particularly the bind) applied to them
	uint8_t buf[1500] _o_aligned(4);
	union {
		struct cmsghdr hdr;
		uint8_t buf[CMSG_SPACE(sizeof(int))];
	} cmsg_buf;

	while (true) {
		struct sockaddr_in6 from;
		struct iovec iov = {buf, sizeof(buf)};
		struct msghdr msg = {
			.msg_name = (void *) &from,
			.msg_namelen = sizeof(from),
			.msg_iov = &iov,
			.msg_iovlen = 1,
			.msg_control = cmsg_buf.buf,
			.msg_controllen = sizeof(cmsg_buf),
			.msg_flags = 0
		};

		ssize_t len = recvmsg(sock, &msg, MSG_DONTWAIT);
		if (len <= 0)
			break;
	}

	// Send RS
	signal(SIGALRM, ra_send_rs);
	ra_send_rs(SIGALRM);

	return 0;

failure:
	if (sock >= 0)
		close(sock);

	if (rtnl >= 0)
		close(rtnl);

	return -1;
}

static void ra_send_rs(_o_unused int signal)
{
	const struct sockaddr_in6 dest = {AF_INET6, 0, 0, ALL_IPV6_ROUTERS, if_index};
	const struct icmpv6_opt llnull = {ND_OPT_SOURCE_LINKADDR, 1, {0}};
	size_t len;

	if ((rs_attempt % 2 == 0) && memcmp(&rs.lladdr, &llnull, sizeof(llnull)))
		len = sizeof(rs);
	else
		len = sizeof(struct icmp6_hdr);

	if (sendto(sock, &rs, len, MSG_DONTWAIT, (struct sockaddr*)&dest, sizeof(dest)) < 0)
		error("Failed to send RS (%s)",  strerror(errno));

	if (++rs_attempt <= 3)
		alarm(4);
}

static int16_t pref_to_priority(uint8_t flags)
{
	flags = (flags >> 3) & 0x03;

	return (flags == 0x0) ? 512 : (flags == 0x1) ? 384 :
			(flags == 0x3) ? 640 : -1;
}

bool ra_link_up(void)
{
	static bool firstcall = true;
	struct {
		struct nlmsghdr hdr;
		struct ifinfomsg msg;
		uint8_t pad[4000];
	} resp;
	bool ret = false;
	ssize_t read;

	do {
		read = recv(rtnl, &resp, sizeof(resp), MSG_DONTWAIT);

		if (read < 0 || !NLMSG_OK(&resp.hdr, (size_t)read) ||
				resp.hdr.nlmsg_type != RTM_NEWLINK ||
				resp.msg.ifi_index != if_index)
			continue;

		ssize_t alen = NLMSG_PAYLOAD(&resp.hdr, sizeof(resp.msg));
		for (struct rtattr *rta = (struct rtattr*)(resp.pad);
				RTA_OK(rta, alen); rta = RTA_NEXT(rta, alen)) {
			if (rta->rta_type == IFLA_ADDRESS &&
					RTA_PAYLOAD(rta) >= sizeof(rs.lladdr.data))
				memcpy(rs.lladdr.data, RTA_DATA(rta), sizeof(rs.lladdr.data));
		}

		bool hascarrier = resp.msg.ifi_flags & IFF_LOWER_UP;
		if (!firstcall && nocarrier != !hascarrier)
			ret = true;

		nocarrier = !hascarrier;
		firstcall = false;
	} while (read > 0);

	if (ret) {
		notice("carrier => %i event on %s", (int)!nocarrier, if_name);

		rs_attempt = 0;
		ra_send_rs(SIGALRM);
	}

	return ret;
}

static bool ra_icmpv6_valid(struct sockaddr_in6 *source, int hlim, uint8_t *data, size_t len)
{
	struct icmp6_hdr *hdr = (struct icmp6_hdr*)data;
	struct icmpv6_opt *opt, *end = (struct icmpv6_opt*)&data[len];

	if (hlim != 255 || len < sizeof(*hdr) || hdr->icmp6_code)
		return false;

	switch (hdr->icmp6_type) {
	case ND_ROUTER_ADVERT:
		if (!IN6_IS_ADDR_LINKLOCAL(&source->sin6_addr))
			return false;

		opt = (struct icmpv6_opt*)((struct nd_router_advert*)data + 1);
		break;

	default:
		return false;
	}

	icmpv6_for_each_option(opt, opt, end)
		;

	return opt == end;
}

static bool ra_set_hoplimit(int val)
{
	if (val > 0 && val != ra_hoplimit) {
		ra_hoplimit = val;
		return true;
	}

	return false;
}

static bool ra_set_mtu(int val)
{
	if (val >= 1280 && val <= 65535 && ra_mtu != val) {
		ra_mtu = val;
		return true;
	}

	return false;
}

static bool ra_set_reachable(int val)
{
	if (val > 0 && val <= 3600000 && ra_reachable != val) {
		ra_reachable = val;
		return true;
	}

	return false;
}

static bool ra_set_retransmit(int val)
{
	if (val > 0 && val <= 60000 && ra_retransmit != val) {
		ra_retransmit = val;
		return true;
	}

	return false;
}

static bool ra_generate_addr_eui64(void)
{
	struct ifreq ifr;
	int sock;

	sock = socket(AF_INET6, SOCK_DGRAM, 0);
	if (sock < 0) {
		error(
		       "%s: error creating EUI64 socket",
		       if_name);
		return false;
	}

	memset(&ifr, 0, sizeof(ifr));
	strncpy(ifr.ifr_name, if_name, sizeof(ifr.ifr_name) - 1);

	if (ioctl(sock, SIOCGIFHWADDR, &ifr) != 0) {
		error(
		       "%s: error getting EUI64 HW address",
		       if_name);
		close(sock);
		return false;
	}

	close(sock);

	if (!odhcp6c_is_valid_ether_addr((uint8_t *) ifr.ifr_hwaddr.sa_data)) {
		error(
		       "%s: invalid EUI64 HW address",
		       if_name);
		return false;
	}

	ra_addr.s6_addr[0] = 0xfe;
	ra_addr.s6_addr[1] = 0x80;
	ra_addr.s6_addr[8] = ifr.ifr_hwaddr.sa_data[0] ^ 0x2;
	ra_addr.s6_addr[9] = ifr.ifr_hwaddr.sa_data[1];
	ra_addr.s6_addr[10] = ifr.ifr_hwaddr.sa_data[2];
	ra_addr.s6_addr[11] = 0xff;
	ra_addr.s6_addr[12] = 0xfe;
	ra_addr.s6_addr[13] = ifr.ifr_hwaddr.sa_data[3];
	ra_addr.s6_addr[14] = ifr.ifr_hwaddr.sa_data[4];
	ra_addr.s6_addr[15] = ifr.ifr_hwaddr.sa_data[5];

	return true;
}

static bool ra_generate_addr_ll(void)
{
	struct sockaddr_in6 addr = {AF_INET6, 0, 0, ALL_IPV6_ROUTERS, if_index};
	socklen_t alen = sizeof(addr);
	int sock;

	sock = socket(AF_INET6, SOCK_RAW, IPPROTO_ICMPV6);
	if (sock < 0) {
		error(
		       "%s: error creating LLA socket",
		       if_name);
		return false;
	}

	if (connect(sock, (struct sockaddr*) &addr, sizeof(addr)) != 0) {
		error(
		       "%s: error connecting LLA socket",
		       if_name);
		close(sock);
		return false;
	}

	if (getsockname(sock, (struct sockaddr*) &addr, &alen) != 0) {
		error(
		       "%s: error getting address from LLA socket",
		       if_name);
		close(sock);
		return false;
	}

	close(sock);

	ra_addr = addr.sin6_addr;

	return true;
}

static bool ra_generate_addr_rand(void)
{
	if (odhcp6c_random(&ra_addr.s6_addr[8], 8) != 8) {
		ra_addr.s6_addr32[2] = 0;
		ra_addr.s6_addr32[3] = 0;
		error(
		       "%s: error generating random interface address",
		       if_name);
		return false;
	}

	ra_addr.s6_addr[0] = 0xfe;
	ra_addr.s6_addr[1] = 0x80;

	return true;
}

static void ra_generate_addr(void)
{
	bool addr_lla = false;

	switch (ra_ifid_mode) {
	case RA_IFID_EUI64:
		addr_lla |= !ra_generate_addr_eui64();
		break;
	case RA_IFID_FIXED:
		/* nothing to do */
		break;
	case RA_IFID_LLA:
		addr_lla = true;
		break;
	case RA_IFID_RANDOM:
		addr_lla |= !ra_generate_addr_rand();
		break;
	}

	if (addr_lla)
		ra_generate_addr_ll();
}

int ra_get_hoplimit(void)
{
	return ra_hoplimit;
}

int ra_get_mtu(void)
{
	return ra_mtu;
}

int ra_get_reachable(void)
{
	return ra_reachable;
}

int ra_get_retransmit(void)
{
	return ra_retransmit;
}

bool ra_process(void)
{
	bool found = false;
	bool changed = false;
	uint8_t buf[1500] _o_aligned(4);
	union {
		struct cmsghdr hdr;
		uint8_t buf[CMSG_SPACE(sizeof(int))];
	} cmsg_buf;
	struct nd_router_advert *adv = (struct nd_router_advert*)buf;
	struct odhcp6c_entry *entry = alloca(sizeof(*entry) + 256);
	const struct in6_addr any = IN6ADDR_ANY_INIT;

	memset(entry, 0, sizeof(*entry));

	if (IN6_IS_ADDR_UNSPECIFIED(&ra_addr))
		ra_generate_addr();

	while (true) {
		struct sockaddr_in6 from;
		struct iovec iov = {buf, sizeof(buf)};
		struct msghdr msg = {
			.msg_name = (void *) &from,
			.msg_namelen = sizeof(from),
			.msg_iov = &iov,
			.msg_iovlen = 1,
			.msg_control = cmsg_buf.buf,
			.msg_controllen = sizeof(cmsg_buf),
			.msg_flags = 0
		};
		struct icmpv6_opt *opt;
		uint32_t router_valid;
		int hlim = 0;

		ssize_t len = recvmsg(sock, &msg, MSG_DONTWAIT);
		if (len <= 0)
			break;

		if (IN6_IS_ADDR_UNSPECIFIED(&ra_addr))
			continue;

		for (struct cmsghdr *ch = CMSG_FIRSTHDR(&msg); ch != NULL;
				ch = CMSG_NXTHDR(&msg, ch))
			if (ch->cmsg_level == IPPROTO_IPV6 &&
					ch->cmsg_type == IPV6_HOPLIMIT)
				memcpy(&hlim, CMSG_DATA(ch), sizeof(hlim));

		if (!ra_icmpv6_valid(&from, hlim, buf, len))
			continue;

		if (!found) {
			odhcp6c_expire(false);
			found = true;
		}

		router_valid = ntohs(adv->nd_ra_router_lifetime);

		/* RFC4861 §6.3.7
		 * Once the host sends a Router Solicitation, and receives a valid
		 * Router Advertisement with a non-zero Router Lifetime, the host MUST
		 * desist from sending additional solicitations on that interface
		 * Moreover, a host SHOULD send at least one solicitation in the case
		 * where an advertisement is received prior to having sent a solicitation.
		 */
		if (rs_attempt > 0 && router_valid > 0) {
			alarm(0);
			rs_attempt = 0;
		}

		// Parse default route
		entry->target = any;
		entry->length = 0;
		entry->router = from.sin6_addr;
		entry->ra_flags = adv->nd_ra_flags_reserved & (ND_RA_FLAG_MANAGED | ND_RA_FLAG_OTHER);
		entry->priority = pref_to_priority(adv->nd_ra_flags_reserved);
		if (entry->priority < 0)
			entry->priority = pref_to_priority(0);

		entry->valid = router_valid;
		entry->preferred = entry->valid;
		changed |= odhcp6c_update_entry(STATE_RA_ROUTE, entry,
						ra_holdoff_interval);
		entry->ra_flags = 0; // other STATE_RA_* entries don't have flags

		// Parse hop limit
		changed |= ra_set_hoplimit(adv->nd_ra_curhoplimit);

		// Parse ND parameters
		changed |= ra_set_reachable(ntohl(adv->nd_ra_reachable));
		changed |= ra_set_retransmit(ntohl(adv->nd_ra_retransmit));

		// Evaluate options
		icmpv6_for_each_option(opt, &adv[1], &buf[len]) {
			switch(opt->type) {
			case ND_OPT_MTU:
				uint32_t *mtu = (uint32_t*)&opt->data[2];
				changed |= ra_set_mtu(ntohl(*mtu));
				break;

			case ND_OPT_ROUTE_INFORMATION:
				if (opt->len > 3)
					return false;

				struct icmpv6_opt_route_info *ri = (struct icmpv6_opt_route_info *)opt;

				if (ri->prefix_len > 128) {
					continue;
				} else if (ri->prefix_len > 64) {
					if (ri->len < 2)
						continue;
				} else if (ri->prefix_len > 0) {
					if (ri->len < 1)
						continue;
				}

				entry->router = from.sin6_addr;
				entry->target = any;
				entry->priority = pref_to_priority(ri->flags);
				entry->length = ri->prefix_len;
				entry->valid = ntohl(ri->lifetime);
				memcpy(&entry->target, ri->prefix, (ri->len - 1) * 8);

				if (IN6_IS_ADDR_LINKLOCAL(&entry->target)
						|| IN6_IS_ADDR_LOOPBACK(&entry->target)
						|| IN6_IS_ADDR_MULTICAST(&entry->target))
					continue;

				if (entry->priority > 0)
					changed |= odhcp6c_update_entry(STATE_RA_ROUTE, entry,
									ra_holdoff_interval);
				break;

			case ND_OPT_PREFIX_INFORMATION:
				if (opt->len != 4)
					return false;

				/*
				 * We implement draft-ietf-6man-slaac-renum-11 here:
				 * https://datatracker.ietf.org/doc/html/draft-ietf-6man-slaac-renum-11#section-5.4
				 *
				 * This removes the two hour magic and instead just uses the new
				 * data. If the lifetime is zero, then the prefix is removed.
				 *
				 * An entry with lifetime zero is added. odhcp6c_expire will remove
				 * it again. odhcp6c_expire is called at the end of this function.
				 */
				struct nd_opt_prefix_info *pinfo = (struct nd_opt_prefix_info*)opt;
				entry->router = any;
				entry->target = pinfo->nd_opt_pi_prefix;
				entry->priority = 256;
				entry->length = pinfo->nd_opt_pi_prefix_len;
				entry->valid = ntohl(pinfo->nd_opt_pi_valid_time);
				entry->preferred = ntohl(pinfo->nd_opt_pi_preferred_time);

				if (entry->length > 128 || IN6_IS_ADDR_LINKLOCAL(&entry->target)
						|| IN6_IS_ADDR_LOOPBACK(&entry->target)
						|| IN6_IS_ADDR_MULTICAST(&entry->target)
						|| entry->valid < entry->preferred)
					continue;

				if ((pinfo->nd_opt_pi_flags_reserved & ND_OPT_PI_FLAG_ONLINK) && !ptp_link)
					changed |= odhcp6c_update_entry(STATE_RA_ROUTE, entry,
									ra_holdoff_interval);

				if (!(pinfo->nd_opt_pi_flags_reserved & ND_OPT_PI_FLAG_AUTO) ||
						pinfo->nd_opt_pi_prefix_len != 64)
					continue;

				entry->target.s6_addr32[2] = ra_addr.s6_addr32[2];
				entry->target.s6_addr32[3] = ra_addr.s6_addr32[3];

				changed |= odhcp6c_update_entry(STATE_RA_PREFIX, entry,
								ra_holdoff_interval);

				break;

			case ND_OPT_RECURSIVE_DNS:
				if (opt->len <= 2)
					return false;

				entry->router = from.sin6_addr;
				entry->priority = 0;
				entry->length = 128;
				uint32_t *rdns_valid = (uint32_t*)&opt->data[2];
				entry->valid = ntohl(*rdns_valid);
				entry->preferred = 0;

				for (ssize_t i = 0; i < (opt->len - 1) / 2; ++i) {
					memcpy(&entry->target, &opt->data[6 + i * sizeof(entry->target)],
							sizeof(entry->target));
					changed |= odhcp6c_update_entry(STATE_RA_DNS, entry,
									ra_holdoff_interval);
				}

				break;

			case ND_OPT_DNSSL:
				if (opt->len <= 1)
					return false;

				uint32_t *ds_valid = (uint32_t*)&opt->data[2];
				uint8_t *ds_buf = &opt->data[6];
				uint8_t *end = &ds_buf[(opt->len - 1) * 8];

				entry->router = from.sin6_addr;
				entry->valid = ntohl(*ds_valid);

				while (ds_buf < end) {
					int ds_len = dn_expand(ds_buf, end, ds_buf, (char*)entry->auxtarget, 256);
					if (ds_len < 1)
						break;

					ds_buf = &ds_buf[ds_len];
					entry->auxlen = strlen((char*)entry->auxtarget);

					if (entry->auxlen == 0)
						continue;

					changed |= odhcp6c_update_entry(STATE_RA_SEARCH, entry,
									ra_holdoff_interval);
					entry->auxlen = 0;
				}
				break;

			case ND_OPT_CAPTIVE_PORTAL:
				/* RFC8910 Captive-Portal §2.3 */
				if (opt->len <= 1)
					continue;

				struct icmpv6_opt_captive_portal *capt_port = (struct icmpv6_opt_captive_portal*)opt;
				uint8_t *cp_buf = &capt_port->data[0];
				size_t ref_len = sizeof(URN_IETF_CAPT_PORT_UNRESTR) - 1;

				/* RFC8910 §2:
				 * Networks with no captive portals may explicitly indicate this
				 * condition by using this option with the IANA-assigned URI for
				 * this purpose. Clients observing the URI value ... may forego
				 * time-consuming forms of captive portal detection. */
				if (memcmp(cp_buf, URN_IETF_CAPT_PORT_UNRESTR, ref_len)) {
					/* URI are not guaranteed to be \0 terminated if data is unpadded */
					size_t uri_len = (capt_port->len * 8) - 2;
					/* Allocate new buffer including room for '\0' */
					uint8_t *copy = malloc(uri_len + 1);
					if (!copy)
						continue;

					memcpy(copy, cp_buf, uri_len);
					copy[uri_len] = '\0';
					odhcp6c_clear_state(STATE_CAPT_PORT_RA);
					odhcp6c_add_state(STATE_CAPT_PORT_RA, copy, uri_len);
					free(copy);
				}
				break;

			default:
				break;
			}
		}

		if (ra_options & RA_RDNSS_DEFAULT_LIFETIME) {
			int states[2] = {STATE_RA_DNS, STATE_RA_SEARCH};

			for (size_t i = 0; i < 2; ++i) {
				size_t ra_dns_len;
				uint8_t *start = odhcp6c_get_state(states[i], &ra_dns_len);

				for (struct odhcp6c_entry *c = (struct odhcp6c_entry*)start;
							(uint8_t*)c < &start[ra_dns_len] &&
							(uint8_t*)odhcp6c_next_entry(c) <= &start[ra_dns_len];
							c = odhcp6c_next_entry(c)) {
					if (IN6_ARE_ADDR_EQUAL(&c->router, &from.sin6_addr) &&
							c->valid > router_valid)
						c->valid = router_valid;
				}
			}
		}
	}

	if (found)
		odhcp6c_expire(false);

	return found && changed;
}