2013-04-05 04:31:04 +08:00
|
|
|
/*
|
2012-07-06 00:37:41 +08:00
|
|
|
* dhcpcd - DHCP client daemon
|
2014-02-04 22:55:04 +08:00
|
|
|
* Copyright (c) 2006-2014 Roy Marples <roy@marples.name>
|
2012-07-06 00:37:41 +08:00
|
|
|
* All rights reserved
|
|
|
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2013-05-22 00:05:36 +08:00
|
|
|
#include <sys/param.h>
|
2012-07-06 00:37:41 +08:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
2013-05-15 18:27:36 +08:00
|
|
|
#include <net/route.h>
|
2012-07-06 00:37:41 +08:00
|
|
|
#include <netinet/in.h>
|
|
|
|
|
2013-05-15 18:27:36 +08:00
|
|
|
#ifdef __linux__
|
|
|
|
# include <asm/types.h> /* for systems with broken headers */
|
|
|
|
# include <linux/rtnetlink.h>
|
2013-05-16 18:31:21 +08:00
|
|
|
/* Match Linux defines to BSD */
|
2014-04-24 17:28:31 +08:00
|
|
|
# ifdef IFA_F_OPTIMISTIC
|
|
|
|
# define IN6_IFF_TENTATIVE (IFA_F_TENTATIVE | IFA_F_OPTIMISTIC)
|
|
|
|
# else
|
2014-04-25 16:31:26 +08:00
|
|
|
# define IN6_IFF_TENTATIVE (IFA_F_TENTATIVE | 0x04)
|
|
|
|
# endif
|
|
|
|
# ifdef IF_F_DADFAILED
|
|
|
|
# define IN6_IFF_DUPLICATED IFA_F_DADFAILED
|
|
|
|
# else
|
|
|
|
# define IN6_IFF_DUPLICATED 0x08
|
2014-04-24 17:28:31 +08:00
|
|
|
# endif
|
2014-03-07 03:11:55 +08:00
|
|
|
# define IN6_IFF_DETACHED 0
|
2013-05-16 18:31:21 +08:00
|
|
|
#else
|
2013-05-16 18:48:03 +08:00
|
|
|
# include <net/if.h>
|
2014-03-06 02:11:22 +08:00
|
|
|
#ifdef __FreeBSD__ /* Needed so that including netinet6/in6_var.h works */
|
2013-05-16 18:48:03 +08:00
|
|
|
# include <net/if_var.h>
|
|
|
|
#endif
|
2013-05-16 18:31:21 +08:00
|
|
|
# include <netinet6/in6_var.h>
|
2013-05-15 18:27:36 +08:00
|
|
|
#endif
|
|
|
|
|
2012-07-06 00:37:41 +08:00
|
|
|
#include <errno.h>
|
|
|
|
#include <ifaddrs.h>
|
2013-05-31 22:24:46 +08:00
|
|
|
#include <inttypes.h>
|
2012-07-06 00:37:41 +08:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <syslog.h>
|
2013-02-16 04:33:13 +08:00
|
|
|
#include <unistd.h>
|
2012-07-06 00:37:41 +08:00
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
#include "dhcpcd.h"
|
2012-11-07 07:40:15 +08:00
|
|
|
#include "dhcp6.h"
|
2013-05-18 07:09:36 +08:00
|
|
|
#include "eloop.h"
|
2014-04-25 18:42:37 +08:00
|
|
|
#include "if.h"
|
2012-07-06 00:37:41 +08:00
|
|
|
#include "ipv6.h"
|
2013-08-20 18:29:43 +08:00
|
|
|
#include "ipv6nd.h"
|
2012-07-06 00:37:41 +08:00
|
|
|
|
2014-03-07 03:11:55 +08:00
|
|
|
#ifdef IPV6_POLLADDRFLAG
|
|
|
|
# warning kernel does not report IPv6 address flag changes
|
|
|
|
# warning polling tentative address flags periodically instead
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define IN6_IFF_NOTUSEABLE \
|
|
|
|
(IN6_IFF_TENTATIVE | IN6_IFF_DUPLICATED | IN6_IFF_DETACHED)
|
|
|
|
|
2012-07-06 00:37:41 +08:00
|
|
|
/* Hackery at it's finest. */
|
|
|
|
#ifndef s6_addr32
|
|
|
|
# define s6_addr32 __u6_addr.__u6_addr32
|
|
|
|
#endif
|
|
|
|
|
2014-02-12 08:39:46 +08:00
|
|
|
struct ipv6_ctx *
|
|
|
|
ipv6_init(struct dhcpcd_ctx *dhcpcd_ctx)
|
2012-07-06 00:37:41 +08:00
|
|
|
{
|
2014-02-12 08:39:46 +08:00
|
|
|
struct ipv6_ctx *ctx;
|
2012-11-07 07:40:15 +08:00
|
|
|
|
2014-02-12 08:39:46 +08:00
|
|
|
if (dhcpcd_ctx->ipv6)
|
|
|
|
return dhcpcd_ctx->ipv6;
|
|
|
|
|
|
|
|
ctx = calloc(1, sizeof(*ctx));
|
|
|
|
if (ctx == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
ctx->routes = malloc(sizeof(*ctx->routes));
|
|
|
|
if (ctx->routes == NULL) {
|
|
|
|
free(ctx);
|
|
|
|
return NULL;
|
2013-02-16 04:33:13 +08:00
|
|
|
}
|
2014-02-12 08:39:46 +08:00
|
|
|
TAILQ_INIT(ctx->routes);
|
|
|
|
|
|
|
|
ctx->ra_routers = malloc(sizeof(*ctx->ra_routers));
|
|
|
|
if (ctx->ra_routers == NULL) {
|
|
|
|
free(ctx->routes);
|
|
|
|
free(ctx);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
TAILQ_INIT(ctx->ra_routers);
|
|
|
|
|
|
|
|
ctx->sndhdr.msg_namelen = sizeof(struct sockaddr_in6);
|
|
|
|
ctx->sndhdr.msg_iov = ctx->sndiov;
|
|
|
|
ctx->sndhdr.msg_iovlen = 1;
|
|
|
|
ctx->sndhdr.msg_control = ctx->sndbuf;
|
2014-03-12 23:59:19 +08:00
|
|
|
ctx->sndhdr.msg_controllen = sizeof(ctx->sndbuf);
|
2014-02-12 08:39:46 +08:00
|
|
|
ctx->rcvhdr.msg_name = &ctx->from;
|
|
|
|
ctx->rcvhdr.msg_namelen = sizeof(ctx->from);
|
|
|
|
ctx->rcvhdr.msg_iov = ctx->rcviov;
|
|
|
|
ctx->rcvhdr.msg_iovlen = 1;
|
|
|
|
ctx->rcvhdr.msg_control = ctx->rcvbuf;
|
2014-03-12 23:59:19 +08:00
|
|
|
// controllen is set at recieve
|
2014-03-12 23:39:53 +08:00
|
|
|
//ctx->rcvhdr.msg_controllen = sizeof(ctx->rcvbuf);
|
2014-02-12 08:39:46 +08:00
|
|
|
ctx->rcviov[0].iov_base = ctx->ansbuf;
|
|
|
|
ctx->rcviov[0].iov_len = sizeof(ctx->ansbuf);
|
|
|
|
|
|
|
|
ctx->nd_fd = -1;
|
|
|
|
ctx->dhcp_fd = -1;
|
|
|
|
|
2014-03-07 03:11:55 +08:00
|
|
|
#ifdef IPV6_POLLADDRFLAG
|
|
|
|
if (!ctx->polladdr_warned) {
|
2014-03-12 07:00:14 +08:00
|
|
|
syslog(LOG_WARNING,
|
2014-03-07 03:11:55 +08:00
|
|
|
"kernel does not report IPv6 address flag changes");
|
|
|
|
syslog(LOG_WARNING,
|
|
|
|
"polling tentative address flags periodically instead");
|
|
|
|
ctx->polladdr_warned = 1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-02-12 08:39:46 +08:00
|
|
|
dhcpcd_ctx->ipv6 = ctx;
|
|
|
|
return ctx;
|
2012-07-06 00:37:41 +08:00
|
|
|
}
|
|
|
|
|
2012-11-25 04:11:49 +08:00
|
|
|
ssize_t
|
2014-03-28 06:14:52 +08:00
|
|
|
ipv6_printaddr(char *s, size_t sl, const uint8_t *d, const char *ifname)
|
2012-11-25 04:11:49 +08:00
|
|
|
{
|
|
|
|
char buf[INET6_ADDRSTRLEN];
|
|
|
|
const char *p;
|
2014-03-28 06:14:52 +08:00
|
|
|
size_t l;
|
2012-11-25 04:11:49 +08:00
|
|
|
|
|
|
|
p = inet_ntop(AF_INET6, d, buf, sizeof(buf));
|
|
|
|
if (p == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
l = strlen(p);
|
|
|
|
if (d[0] == 0xfe && (d[1] & 0xc0) == 0x80)
|
|
|
|
l += 1 + strlen(ifname);
|
|
|
|
|
|
|
|
if (s == NULL)
|
2014-03-28 06:14:52 +08:00
|
|
|
return (ssize_t)l;
|
2012-11-25 04:11:49 +08:00
|
|
|
|
|
|
|
if (sl < l) {
|
|
|
|
errno = ENOMEM;
|
|
|
|
return -1;
|
|
|
|
}
|
2013-04-02 15:01:11 +08:00
|
|
|
|
2012-11-25 04:11:49 +08:00
|
|
|
s += strlcpy(s, p, sl);
|
|
|
|
if (d[0] == 0xfe && (d[1] & 0xc0) == 0x80) {
|
|
|
|
*s++ = '%';
|
|
|
|
s += strlcpy(s, ifname, sl);
|
|
|
|
}
|
|
|
|
*s = '\0';
|
2014-03-28 06:14:52 +08:00
|
|
|
return (ssize_t)l;
|
2012-11-25 04:11:49 +08:00
|
|
|
}
|
|
|
|
|
2012-07-06 00:37:41 +08:00
|
|
|
int
|
2013-05-18 07:09:36 +08:00
|
|
|
ipv6_makeaddr(struct in6_addr *addr, const struct interface *ifp,
|
2012-07-06 00:37:41 +08:00
|
|
|
const struct in6_addr *prefix, int prefix_len)
|
|
|
|
{
|
2014-03-07 03:11:55 +08:00
|
|
|
const struct ipv6_addr *ap;
|
2012-07-06 00:37:41 +08:00
|
|
|
|
2012-11-07 07:40:15 +08:00
|
|
|
if (prefix_len < 0 || prefix_len > 64) {
|
2012-07-06 00:37:41 +08:00
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
2014-03-07 03:11:55 +08:00
|
|
|
if ((ap = ipv6_linklocal(ifp)) == NULL) {
|
|
|
|
/* We delay a few functions until we get a local-link address
|
|
|
|
* so this should never be hit. */
|
|
|
|
errno = ENOENT;
|
2012-07-06 00:37:41 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2014-03-07 03:11:55 +08:00
|
|
|
/* Make the address from the first local-link address */
|
|
|
|
memcpy(addr, prefix, sizeof(*prefix));
|
|
|
|
addr->s6_addr32[2] = ap->addr.s6_addr32[2];
|
|
|
|
addr->s6_addr32[3] = ap->addr.s6_addr32[3];
|
2012-07-06 00:37:41 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-11-07 07:40:15 +08:00
|
|
|
int
|
|
|
|
ipv6_makeprefix(struct in6_addr *prefix, const struct in6_addr *addr, int len)
|
|
|
|
{
|
|
|
|
int bytelen, bitlen;
|
|
|
|
|
|
|
|
if (len < 0 || len > 128) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
bytelen = len / NBBY;
|
|
|
|
bitlen = len % NBBY;
|
2014-03-28 06:14:52 +08:00
|
|
|
memcpy(&prefix->s6_addr, &addr->s6_addr, (size_t)bytelen);
|
2012-11-07 07:40:15 +08:00
|
|
|
if (bitlen != 0)
|
|
|
|
prefix->s6_addr[bytelen] >>= NBBY - bitlen;
|
|
|
|
memset((char *)prefix->s6_addr + bytelen, 0,
|
2014-03-28 06:14:52 +08:00
|
|
|
sizeof(prefix->s6_addr) - (size_t)bytelen);
|
2012-11-07 07:40:15 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-07-06 00:37:41 +08:00
|
|
|
int
|
|
|
|
ipv6_mask(struct in6_addr *mask, int len)
|
|
|
|
{
|
|
|
|
static const unsigned char masks[NBBY] =
|
|
|
|
{ 0x80, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc, 0xfe, 0xff };
|
|
|
|
int bytes, bits, i;
|
|
|
|
|
|
|
|
if (len < 0 || len > 128) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(mask, 0, sizeof(*mask));
|
|
|
|
bytes = len / NBBY;
|
|
|
|
bits = len % NBBY;
|
|
|
|
for (i = 0; i < bytes; i++)
|
|
|
|
mask->s6_addr[i] = 0xff;
|
|
|
|
if (bits)
|
2013-04-02 15:01:11 +08:00
|
|
|
mask->s6_addr[bytes] = masks[bits - 1];
|
2012-07-06 00:37:41 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-28 06:14:52 +08:00
|
|
|
uint8_t
|
2012-07-06 00:37:41 +08:00
|
|
|
ipv6_prefixlen(const struct in6_addr *mask)
|
|
|
|
{
|
|
|
|
int x = 0, y;
|
|
|
|
const unsigned char *lim, *p;
|
|
|
|
|
|
|
|
lim = (const unsigned char *)mask + sizeof(*mask);
|
|
|
|
for (p = (const unsigned char *)mask; p < lim; x++, p++) {
|
|
|
|
if (*p != 0xff)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
y = 0;
|
|
|
|
if (p < lim) {
|
|
|
|
for (y = 0; y < NBBY; y++) {
|
|
|
|
if ((*p & (0x80 >> y)) == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* when the limit pointer is given, do a stricter check on the
|
|
|
|
* remaining bits.
|
|
|
|
*/
|
|
|
|
if (p < lim) {
|
|
|
|
if (y != 0 && (*p & (0x00ff >> y)) != 0)
|
2014-03-28 06:14:52 +08:00
|
|
|
return 0;
|
2012-07-06 00:37:41 +08:00
|
|
|
for (p = p + 1; p < lim; p++)
|
|
|
|
if (*p != 0)
|
2014-03-28 06:14:52 +08:00
|
|
|
return 0;
|
2012-07-06 00:37:41 +08:00
|
|
|
}
|
|
|
|
|
2014-03-28 06:14:52 +08:00
|
|
|
return (uint8_t)(x * NBBY + y);
|
2012-07-06 00:37:41 +08:00
|
|
|
}
|
|
|
|
|
2013-06-02 05:30:18 +08:00
|
|
|
static void
|
|
|
|
in6_to_h64(const struct in6_addr *add, uint64_t *vhigh, uint64_t *vlow)
|
|
|
|
{
|
|
|
|
uint64_t l, h;
|
|
|
|
const uint8_t *p = (const uint8_t *)&add->s6_addr;
|
|
|
|
|
|
|
|
h = ((uint64_t)p[0] << 56) |
|
|
|
|
((uint64_t)p[1] << 48) |
|
|
|
|
((uint64_t)p[2] << 40) |
|
|
|
|
((uint64_t)p[3] << 32) |
|
|
|
|
((uint64_t)p[4] << 24) |
|
|
|
|
((uint64_t)p[5] << 16) |
|
|
|
|
((uint64_t)p[6] << 8) |
|
|
|
|
(uint64_t)p[7];
|
|
|
|
p += 8;
|
|
|
|
l = ((uint64_t)p[0] << 56) |
|
|
|
|
((uint64_t)p[1] << 48) |
|
|
|
|
((uint64_t)p[2] << 40) |
|
|
|
|
((uint64_t)p[3] << 32) |
|
|
|
|
((uint64_t)p[4] << 24) |
|
|
|
|
((uint64_t)p[5] << 16) |
|
|
|
|
((uint64_t)p[6] << 8) |
|
|
|
|
(uint64_t)p[7];
|
|
|
|
|
|
|
|
*vhigh = h;
|
|
|
|
*vlow = l;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
h64_to_in6(uint64_t vhigh, uint64_t vlow, struct in6_addr *add)
|
|
|
|
{
|
|
|
|
uint8_t *p = (uint8_t *)&add->s6_addr;
|
|
|
|
|
2014-03-28 06:14:52 +08:00
|
|
|
p[0] = (uint8_t)(vhigh >> 56);
|
|
|
|
p[1] = (uint8_t)(vhigh >> 48);
|
|
|
|
p[2] = (uint8_t)(vhigh >> 40);
|
|
|
|
p[3] = (uint8_t)(vhigh >> 32);
|
|
|
|
p[4] = (uint8_t)(vhigh >> 24);
|
|
|
|
p[5] = (uint8_t)(vhigh >> 16);
|
|
|
|
p[6] = (uint8_t)(vhigh >> 8);
|
|
|
|
p[7] = (uint8_t)vhigh;
|
2013-06-02 05:30:18 +08:00
|
|
|
p += 8;
|
2014-03-28 06:14:52 +08:00
|
|
|
p[0] = (uint8_t)(vlow >> 56);
|
|
|
|
p[1] = (uint8_t)(vlow >> 48);
|
|
|
|
p[2] = (uint8_t)(vlow >> 40);
|
|
|
|
p[3] = (uint8_t)(vlow >> 32);
|
|
|
|
p[4] = (uint8_t)(vlow >> 24);
|
|
|
|
p[5] = (uint8_t)(vlow >> 16);
|
|
|
|
p[6] = (uint8_t)(vlow >> 8);
|
|
|
|
p[7] = (uint8_t)vlow;
|
2013-06-02 05:30:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ipv6_userprefix(
|
|
|
|
const struct in6_addr *prefix, // prefix from router
|
2013-06-02 17:51:30 +08:00
|
|
|
short prefix_len, // length of prefix received
|
2013-06-02 05:30:18 +08:00
|
|
|
uint64_t user_number, // "random" number from user
|
|
|
|
struct in6_addr *result, // resultant prefix
|
2013-06-02 17:51:30 +08:00
|
|
|
short result_len) // desired prefix length
|
2013-06-02 05:30:18 +08:00
|
|
|
{
|
|
|
|
uint64_t vh, vl, user_low, user_high;
|
|
|
|
|
2014-03-23 03:55:29 +08:00
|
|
|
if (prefix_len < 0 || prefix_len > 120 ||
|
|
|
|
result_len < 0 || result_len > 120)
|
2013-06-02 05:30:18 +08:00
|
|
|
{
|
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check that the user_number fits inside result_len less prefix_len */
|
|
|
|
if (result_len < prefix_len || user_number > INT_MAX ||
|
|
|
|
ffs((int)user_number) > result_len - prefix_len)
|
|
|
|
{
|
|
|
|
errno = ERANGE;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* virtually shift user number by dest_len, then split at 64 */
|
|
|
|
if (result_len >= 64) {
|
|
|
|
user_high = user_number << (result_len - 64);
|
|
|
|
user_low = 0;
|
|
|
|
} else {
|
|
|
|
user_high = user_number >> (64 - result_len);
|
|
|
|
user_low = user_number << result_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* convert to two 64bit host order values */
|
|
|
|
in6_to_h64(prefix, &vh, &vl);
|
|
|
|
|
|
|
|
vh |= user_high;
|
|
|
|
vl |= user_low;
|
|
|
|
|
|
|
|
/* copy back result */
|
|
|
|
h64_to_in6(vh, vl, result);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-07 03:11:55 +08:00
|
|
|
#ifdef IPV6_POLLADDRFLAG
|
2014-03-03 20:10:58 +08:00
|
|
|
void
|
|
|
|
ipv6_checkaddrflags(void *arg)
|
|
|
|
{
|
|
|
|
struct ipv6_addr *ap;
|
|
|
|
int ifa_flags;
|
|
|
|
|
|
|
|
ap = arg;
|
2014-04-25 19:11:05 +08:00
|
|
|
ifa_flags = if_addrflags6(ap->iface->name, &ap->addr);
|
2014-03-03 20:10:58 +08:00
|
|
|
if (ifa_flags == -1)
|
2014-04-25 19:11:05 +08:00
|
|
|
syslog(LOG_ERR, "%s: if_addrflags6: %m", ap->iface->name);
|
2014-03-03 20:10:58 +08:00
|
|
|
else if (!(ifa_flags & IN6_IFF_TENTATIVE)) {
|
|
|
|
ipv6_handleifa(ap->iface->ctx, RTM_NEWADDR,
|
|
|
|
ap->iface->ctx->ifaces, ap->iface->name,
|
|
|
|
&ap->addr, ifa_flags);
|
|
|
|
} else {
|
|
|
|
struct timeval tv;
|
|
|
|
|
|
|
|
ms_to_tv(&tv, RETRANS_TIMER / 2);
|
|
|
|
eloop_timeout_add_tv(ap->iface->ctx->eloop, &tv,
|
|
|
|
ipv6_checkaddrflags, ap);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-05-03 20:11:49 +08:00
|
|
|
int
|
|
|
|
ipv6_addaddr(struct ipv6_addr *ap)
|
|
|
|
{
|
|
|
|
|
2013-05-31 21:01:54 +08:00
|
|
|
syslog(ap->flags & IPV6_AF_NEW ? LOG_INFO : LOG_DEBUG,
|
2013-05-03 20:11:49 +08:00
|
|
|
"%s: adding address %s", ap->iface->name, ap->saddr);
|
2013-06-09 15:31:08 +08:00
|
|
|
if (!(ap->flags & IPV6_AF_DADCOMPLETED) &&
|
|
|
|
ipv6_findaddr(ap->iface, &ap->addr))
|
|
|
|
ap->flags |= IPV6_AF_DADCOMPLETED;
|
2014-04-25 18:42:37 +08:00
|
|
|
if (if_addaddress6(ap) == -1) {
|
|
|
|
syslog(LOG_ERR, "if_addaddress6: %m");
|
2013-05-03 20:11:49 +08:00
|
|
|
return -1;
|
|
|
|
}
|
2013-05-31 21:01:54 +08:00
|
|
|
ap->flags &= ~IPV6_AF_NEW;
|
|
|
|
ap->flags |= IPV6_AF_ADDED;
|
|
|
|
if (ap->delegating_iface)
|
|
|
|
ap->flags |= IPV6_AF_DELEGATED;
|
2013-06-09 18:57:16 +08:00
|
|
|
if (ap->iface->options->options & DHCPCD_IPV6RA_OWN &&
|
|
|
|
ipv6_removesubnet(ap->iface, ap) == -1)
|
2014-04-25 18:42:37 +08:00
|
|
|
syslog(LOG_ERR,"ipv6_removesubnet: %m");
|
2013-05-31 21:40:46 +08:00
|
|
|
if (ap->prefix_pltime == ND6_INFINITE_LIFETIME &&
|
|
|
|
ap->prefix_vltime == ND6_INFINITE_LIFETIME)
|
|
|
|
syslog(LOG_DEBUG,
|
2013-05-31 22:14:52 +08:00
|
|
|
"%s: vltime infinity, pltime infinity",
|
2013-05-31 21:40:46 +08:00
|
|
|
ap->iface->name);
|
|
|
|
else if (ap->prefix_pltime == ND6_INFINITE_LIFETIME)
|
|
|
|
syslog(LOG_DEBUG,
|
2013-05-31 22:14:52 +08:00
|
|
|
"%s: vltime %"PRIu32" seconds, pltime infinity",
|
2013-05-31 21:40:46 +08:00
|
|
|
ap->iface->name, ap->prefix_vltime);
|
|
|
|
else if (ap->prefix_vltime == ND6_INFINITE_LIFETIME)
|
|
|
|
syslog(LOG_DEBUG,
|
2013-05-31 22:14:52 +08:00
|
|
|
"%s: vltime infinity, pltime %"PRIu32"seconds",
|
2013-05-31 21:40:46 +08:00
|
|
|
ap->iface->name, ap->prefix_pltime);
|
|
|
|
else
|
|
|
|
syslog(LOG_DEBUG,
|
2013-05-31 22:14:52 +08:00
|
|
|
"%s: vltime %"PRIu32" seconds, pltime %"PRIu32" seconds",
|
|
|
|
ap->iface->name, ap->prefix_vltime, ap->prefix_pltime);
|
2014-03-07 03:11:55 +08:00
|
|
|
|
|
|
|
#ifdef IPV6_POLLADDRFLAG
|
|
|
|
eloop_timeout_delete(ap->iface->ctx->eloop,
|
|
|
|
ipv6_checkaddrflags, ap);
|
|
|
|
if (!(ap->flags & IPV6_AF_DADCOMPLETED)) {
|
|
|
|
struct timeval tv;
|
|
|
|
|
|
|
|
ms_to_tv(&tv, RETRANS_TIMER / 2);
|
|
|
|
eloop_timeout_add_tv(ap->iface->ctx->eloop,
|
|
|
|
&tv, ipv6_checkaddrflags, ap);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-05-03 20:11:49 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-07 03:11:55 +08:00
|
|
|
ssize_t
|
|
|
|
ipv6_addaddrs(struct ipv6_addrhead *addrs)
|
|
|
|
{
|
|
|
|
struct ipv6_addr *ap, *apn;
|
|
|
|
ssize_t i;
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
TAILQ_FOREACH_SAFE(ap, addrs, next, apn) {
|
|
|
|
if (ap->prefix_vltime == 0) {
|
|
|
|
TAILQ_REMOVE(addrs, ap, next);
|
|
|
|
if (ap->flags & IPV6_AF_ADDED) {
|
|
|
|
syslog(LOG_INFO, "%s: deleting address %s",
|
|
|
|
ap->iface->name, ap->saddr);
|
|
|
|
i++;
|
|
|
|
if (!IN6_IS_ADDR_UNSPECIFIED(&ap->addr) &&
|
2014-04-25 18:42:37 +08:00
|
|
|
if_deladdress6(ap) == -1 &&
|
2014-03-07 03:11:55 +08:00
|
|
|
errno != EADDRNOTAVAIL && errno != ENXIO)
|
2014-04-25 18:42:37 +08:00
|
|
|
syslog(LOG_ERR, "if_deladdress6: %m");
|
2014-03-07 03:11:55 +08:00
|
|
|
}
|
|
|
|
eloop_q_timeout_delete(ap->iface->ctx->eloop,
|
|
|
|
0, NULL, ap);
|
|
|
|
free(ap);
|
|
|
|
} else if (!IN6_IS_ADDR_UNSPECIFIED(&ap->addr)) {
|
|
|
|
if (ap->flags & IPV6_AF_NEW)
|
|
|
|
i++;
|
|
|
|
ipv6_addaddr(ap);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-12 18:58:28 +08:00
|
|
|
void
|
|
|
|
ipv6_freedrop_addrs(struct ipv6_addrhead *addrs, int drop,
|
|
|
|
const struct interface *ifd)
|
|
|
|
{
|
|
|
|
struct ipv6_addr *ap, *apn;
|
|
|
|
|
|
|
|
TAILQ_FOREACH_SAFE(ap, addrs, next, apn) {
|
|
|
|
if (ifd && ap->delegating_iface != ifd)
|
|
|
|
continue;
|
|
|
|
TAILQ_REMOVE(addrs, ap, next);
|
2014-03-02 01:59:33 +08:00
|
|
|
eloop_q_timeout_delete(ap->iface->ctx->eloop, 0, NULL, ap);
|
2013-06-12 18:58:28 +08:00
|
|
|
/* Only drop the address if no other RAs have assigned it.
|
|
|
|
* This is safe because the RA is removed from the list
|
|
|
|
* before we are called. */
|
|
|
|
if (drop && ap->flags & IPV6_AF_ADDED &&
|
2014-02-12 08:39:46 +08:00
|
|
|
!ipv6nd_addrexists(ap->iface->ctx, ap) &&
|
|
|
|
!dhcp6_addrexists(ap->iface->ctx, ap) &&
|
2013-08-25 18:22:48 +08:00
|
|
|
(ap->iface->options->options &
|
|
|
|
(DHCPCD_EXITING | DHCPCD_PERSISTENT)) !=
|
|
|
|
(DHCPCD_EXITING | DHCPCD_PERSISTENT))
|
2013-06-12 18:58:28 +08:00
|
|
|
{
|
|
|
|
syslog(LOG_INFO, "%s: deleting address %s",
|
|
|
|
ap->iface->name, ap->saddr);
|
2014-04-25 18:42:37 +08:00
|
|
|
if (if_deladdress6(ap) == -1 &&
|
2013-06-12 18:58:28 +08:00
|
|
|
errno != EADDRNOTAVAIL && errno != ENXIO)
|
2014-04-25 18:42:37 +08:00
|
|
|
syslog(LOG_ERR, "if_deladdress6: :%m");
|
2013-06-12 18:58:28 +08:00
|
|
|
}
|
|
|
|
free(ap);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-18 07:09:36 +08:00
|
|
|
static struct ipv6_state *
|
|
|
|
ipv6_getstate(struct interface *ifp)
|
|
|
|
{
|
|
|
|
struct ipv6_state *state;
|
|
|
|
|
|
|
|
state = IPV6_STATE(ifp);
|
|
|
|
if (state == NULL) {
|
|
|
|
ifp->if_data[IF_DATA_IPV6] = malloc(sizeof(*state));
|
|
|
|
state = IPV6_STATE(ifp);
|
|
|
|
if (state == NULL) {
|
|
|
|
syslog(LOG_ERR, "%s: %m", __func__);
|
|
|
|
return NULL;
|
|
|
|
}
|
2013-06-09 15:31:08 +08:00
|
|
|
TAILQ_INIT(&state->addrs);
|
2013-05-18 07:09:36 +08:00
|
|
|
TAILQ_INIT(&state->ll_callbacks);
|
|
|
|
}
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
2013-05-15 18:27:36 +08:00
|
|
|
void
|
2014-02-12 08:39:46 +08:00
|
|
|
ipv6_handleifa(struct dhcpcd_ctx *ctx,
|
|
|
|
int cmd, struct if_head *ifs, const char *ifname,
|
2013-05-16 18:31:21 +08:00
|
|
|
const struct in6_addr *addr, int flags)
|
2013-05-15 18:27:36 +08:00
|
|
|
{
|
2013-05-18 07:09:36 +08:00
|
|
|
struct interface *ifp;
|
|
|
|
struct ipv6_state *state;
|
2014-03-07 03:11:55 +08:00
|
|
|
struct ipv6_addr *ap;
|
2013-05-18 07:09:36 +08:00
|
|
|
struct ll_callback *cb;
|
|
|
|
|
2013-05-29 20:59:47 +08:00
|
|
|
#if 0
|
|
|
|
char buf[INET6_ADDRSTRLEN];
|
|
|
|
inet_ntop(AF_INET6, &addr->s6_addr,
|
|
|
|
buf, INET6_ADDRSTRLEN);
|
|
|
|
syslog(LOG_DEBUG, "%s: cmd %d addr %s flags %d",
|
|
|
|
ifname, cmd, buf, flags);
|
|
|
|
#endif
|
|
|
|
|
2013-05-18 07:09:36 +08:00
|
|
|
if (ifs == NULL)
|
2014-02-12 08:39:46 +08:00
|
|
|
ifs = ctx->ifaces;
|
2013-05-18 07:09:36 +08:00
|
|
|
if (ifs == NULL) {
|
|
|
|
errno = ESRCH;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
TAILQ_FOREACH(ifp, ifs, next) {
|
|
|
|
if (strcmp(ifp->name, ifname) == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (ifp == NULL) {
|
|
|
|
errno = ESRCH;
|
|
|
|
return;
|
|
|
|
}
|
2013-06-09 15:31:08 +08:00
|
|
|
state = ipv6_getstate(ifp);
|
2014-03-07 03:11:55 +08:00
|
|
|
if (state == NULL) {
|
|
|
|
errno = ENOENT;
|
2013-06-09 15:31:08 +08:00
|
|
|
return;
|
2014-03-07 03:11:55 +08:00
|
|
|
}
|
2013-06-09 15:31:08 +08:00
|
|
|
|
2013-06-04 21:39:02 +08:00
|
|
|
if (!IN6_IS_ADDR_LINKLOCAL(addr)) {
|
2014-02-12 08:39:46 +08:00
|
|
|
ipv6nd_handleifa(ctx, cmd, ifname, addr, flags);
|
|
|
|
dhcp6_handleifa(ctx, cmd, ifname, addr, flags);
|
2013-06-04 21:39:02 +08:00
|
|
|
}
|
|
|
|
|
2013-06-09 15:31:08 +08:00
|
|
|
TAILQ_FOREACH(ap, &state->addrs, next) {
|
2013-06-04 21:39:02 +08:00
|
|
|
if (IN6_ARE_ADDR_EQUAL(&ap->addr, addr))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
case RTM_DELADDR:
|
|
|
|
if (ap) {
|
2013-06-09 15:31:08 +08:00
|
|
|
TAILQ_REMOVE(&state->addrs, ap, next);
|
2013-06-04 21:39:02 +08:00
|
|
|
free(ap);
|
2013-05-18 07:09:36 +08:00
|
|
|
}
|
2013-06-04 21:39:02 +08:00
|
|
|
break;
|
|
|
|
case RTM_NEWADDR:
|
|
|
|
if (ap == NULL) {
|
|
|
|
ap = calloc(1, sizeof(*ap));
|
2014-03-07 03:11:55 +08:00
|
|
|
ap->iface = ifp;
|
2013-06-04 21:39:02 +08:00
|
|
|
memcpy(ap->addr.s6_addr, addr->s6_addr,
|
|
|
|
sizeof(ap->addr.s6_addr));
|
2013-06-09 15:31:08 +08:00
|
|
|
TAILQ_INSERT_TAIL(&state->addrs,
|
2013-06-04 21:39:02 +08:00
|
|
|
ap, next);
|
2014-03-07 03:11:55 +08:00
|
|
|
}
|
|
|
|
ap->addr_flags = flags;
|
|
|
|
|
|
|
|
if (IN6_IS_ADDR_LINKLOCAL(&ap->addr)) {
|
|
|
|
#ifdef IPV6_POLLADDRFLAG
|
|
|
|
if (ap->addr_flags & IN6_IFF_TENTATIVE) {
|
|
|
|
struct timeval tv;
|
2013-06-04 21:39:02 +08:00
|
|
|
|
2014-03-07 03:11:55 +08:00
|
|
|
ms_to_tv(&tv, RETRANS_TIMER / 2);
|
|
|
|
eloop_timeout_add_tv(ap->iface->ctx->eloop,
|
|
|
|
&tv, ipv6_checkaddrflags, ap);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (!(ap->addr_flags & IN6_IFF_NOTUSEABLE)) {
|
2013-06-09 18:04:46 +08:00
|
|
|
/* Now run any callbacks.
|
|
|
|
* Typically IPv6RS or DHCPv6 */
|
2014-03-07 03:11:55 +08:00
|
|
|
while ((cb = TAILQ_FIRST(&state->ll_callbacks)))
|
2013-06-09 18:04:46 +08:00
|
|
|
{
|
|
|
|
TAILQ_REMOVE(&state->ll_callbacks,
|
|
|
|
cb, next);
|
|
|
|
cb->callback(cb->arg);
|
|
|
|
free(cb);
|
|
|
|
}
|
2013-05-18 07:09:36 +08:00
|
|
|
}
|
|
|
|
}
|
2013-06-04 21:39:02 +08:00
|
|
|
break;
|
2013-05-18 07:09:36 +08:00
|
|
|
}
|
2013-05-15 18:27:36 +08:00
|
|
|
}
|
|
|
|
|
2014-03-07 03:11:55 +08:00
|
|
|
const struct ipv6_addr *
|
2013-06-09 15:31:08 +08:00
|
|
|
ipv6_findaddr(const struct interface *ifp, const struct in6_addr *addr)
|
|
|
|
{
|
|
|
|
const struct ipv6_state *state;
|
2014-03-07 03:11:55 +08:00
|
|
|
const struct ipv6_addr *ap;
|
2013-06-09 15:31:08 +08:00
|
|
|
|
|
|
|
state = IPV6_CSTATE(ifp);
|
|
|
|
if (state) {
|
|
|
|
TAILQ_FOREACH(ap, &state->addrs, next) {
|
2014-03-07 03:11:55 +08:00
|
|
|
if (addr == NULL) {
|
|
|
|
if (IN6_IS_ADDR_LINKLOCAL(&ap->addr) &&
|
|
|
|
!(ap->addr_flags & IN6_IFF_NOTUSEABLE))
|
|
|
|
return ap;
|
|
|
|
} else {
|
2014-03-19 07:14:10 +08:00
|
|
|
if (IN6_ARE_ADDR_EQUAL(&ap->addr, addr) &&
|
|
|
|
!(ap->addr_flags & IN6_IFF_TENTATIVE))
|
2014-03-07 03:11:55 +08:00
|
|
|
return ap;
|
|
|
|
}
|
2013-06-09 15:31:08 +08:00
|
|
|
}
|
|
|
|
}
|
2013-05-30 20:07:25 +08:00
|
|
|
return NULL;
|
2013-05-18 07:09:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int ipv6_addlinklocalcallback(struct interface *ifp,
|
|
|
|
void (*callback)(void *), void *arg)
|
|
|
|
{
|
|
|
|
struct ipv6_state *state;
|
|
|
|
struct ll_callback *cb;
|
|
|
|
|
|
|
|
state = ipv6_getstate(ifp);
|
|
|
|
TAILQ_FOREACH(cb, &state->ll_callbacks, next) {
|
|
|
|
if (cb->callback == callback && cb->arg == arg)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (cb == NULL) {
|
|
|
|
cb = malloc(sizeof(*cb));
|
|
|
|
if (cb == NULL) {
|
|
|
|
syslog(LOG_ERR, "%s: %m", __func__);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
cb->callback = callback;
|
|
|
|
cb->arg = arg;
|
|
|
|
TAILQ_INSERT_TAIL(&state->ll_callbacks, cb, next);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-06-03 14:49:34 +08:00
|
|
|
void
|
|
|
|
ipv6_free_ll_callbacks(struct interface *ifp)
|
|
|
|
{
|
|
|
|
struct ipv6_state *state;
|
|
|
|
struct ll_callback *cb;
|
|
|
|
|
|
|
|
state = IPV6_STATE(ifp);
|
|
|
|
if (state) {
|
|
|
|
while ((cb = TAILQ_FIRST(&state->ll_callbacks))) {
|
|
|
|
TAILQ_REMOVE(&state->ll_callbacks, cb, next);
|
|
|
|
free(cb);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-06-09 15:31:08 +08:00
|
|
|
|
2013-05-18 07:09:36 +08:00
|
|
|
void
|
|
|
|
ipv6_free(struct interface *ifp)
|
|
|
|
{
|
|
|
|
struct ipv6_state *state;
|
2014-03-07 03:11:55 +08:00
|
|
|
struct ipv6_addr *ap;
|
2013-05-18 07:09:36 +08:00
|
|
|
|
2014-02-04 22:39:26 +08:00
|
|
|
if (ifp) {
|
|
|
|
ipv6_free_ll_callbacks(ifp);
|
|
|
|
state = IPV6_STATE(ifp);
|
|
|
|
if (state) {
|
|
|
|
while ((ap = TAILQ_FIRST(&state->addrs))) {
|
|
|
|
TAILQ_REMOVE(&state->addrs, ap, next);
|
|
|
|
free(ap);
|
|
|
|
}
|
|
|
|
free(state);
|
|
|
|
ifp->if_data[IF_DATA_IPV6] = NULL;
|
|
|
|
}
|
2013-05-18 07:09:36 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-12 08:39:46 +08:00
|
|
|
void
|
|
|
|
ipv6_ctxfree(struct dhcpcd_ctx *ctx)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (ctx->ipv6 == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
free(ctx->ipv6->routes);
|
|
|
|
free(ctx->ipv6->ra_routers);
|
|
|
|
free(ctx->ipv6);
|
|
|
|
}
|
|
|
|
|
2013-05-15 18:27:36 +08:00
|
|
|
int
|
|
|
|
ipv6_handleifa_addrs(int cmd,
|
2013-05-16 18:31:21 +08:00
|
|
|
struct ipv6_addrhead *addrs, const struct in6_addr *addr, int flags)
|
2013-05-15 18:27:36 +08:00
|
|
|
{
|
|
|
|
struct ipv6_addr *ap, *apn;
|
|
|
|
uint8_t found, alldadcompleted;
|
|
|
|
|
|
|
|
alldadcompleted = 1;
|
|
|
|
found = 0;
|
|
|
|
TAILQ_FOREACH_SAFE(ap, addrs, next, apn) {
|
2013-05-18 23:37:27 +08:00
|
|
|
if (!IN6_ARE_ADDR_EQUAL(addr, &ap->addr)) {
|
2013-05-31 21:01:54 +08:00
|
|
|
if ((ap->flags & IPV6_AF_DADCOMPLETED) == 0)
|
2013-05-15 18:27:36 +08:00
|
|
|
alldadcompleted = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
switch (cmd) {
|
|
|
|
case RTM_DELADDR:
|
|
|
|
syslog(LOG_INFO, "%s: deleted address %s",
|
|
|
|
ap->iface->name, ap->saddr);
|
|
|
|
TAILQ_REMOVE(addrs, ap, next);
|
|
|
|
free(ap);
|
|
|
|
break;
|
|
|
|
case RTM_NEWADDR:
|
2013-05-16 18:31:21 +08:00
|
|
|
/* Safety - ignore tentative announcements */
|
2014-04-28 20:02:12 +08:00
|
|
|
if (flags & (IN6_IFF_DETACHED |IN6_IFF_TENTATIVE))
|
2013-05-16 18:31:21 +08:00
|
|
|
break;
|
2013-05-31 21:01:54 +08:00
|
|
|
if ((ap->flags & IPV6_AF_DADCOMPLETED) == 0) {
|
2013-05-15 18:27:36 +08:00
|
|
|
found++;
|
2013-05-31 21:01:54 +08:00
|
|
|
if (flags & IN6_IFF_DUPLICATED)
|
|
|
|
ap->flags |= IPV6_AF_DUPLICATED;
|
2013-06-04 21:39:02 +08:00
|
|
|
else
|
|
|
|
ap->flags &= ~IPV6_AF_DUPLICATED;
|
2013-05-16 18:31:21 +08:00
|
|
|
if (ap->dadcallback)
|
|
|
|
ap->dadcallback(ap);
|
|
|
|
/* We need to set this here in-case the
|
|
|
|
* dadcallback function checks it */
|
2013-05-31 21:01:54 +08:00
|
|
|
ap->flags |= IPV6_AF_DADCOMPLETED;
|
2013-05-15 18:27:36 +08:00
|
|
|
}
|
2013-05-29 20:59:47 +08:00
|
|
|
break;
|
2013-05-15 18:27:36 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return alldadcompleted ? found : 0;
|
|
|
|
}
|
|
|
|
|
2012-07-06 00:37:41 +08:00
|
|
|
static struct rt6 *
|
2014-02-12 08:39:46 +08:00
|
|
|
find_route6(struct rt6_head *rts, const struct rt6 *r)
|
2012-07-06 00:37:41 +08:00
|
|
|
{
|
|
|
|
struct rt6 *rt;
|
|
|
|
|
|
|
|
TAILQ_FOREACH(rt, rts, next) {
|
|
|
|
if (IN6_ARE_ADDR_EQUAL(&rt->dest, &r->dest) &&
|
|
|
|
#if HAVE_ROUTE_METRIC
|
|
|
|
rt->iface->metric == r->iface->metric &&
|
|
|
|
#endif
|
|
|
|
IN6_ARE_ADDR_EQUAL(&rt->net, &r->net))
|
|
|
|
return rt;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
desc_route(const char *cmd, const struct rt6 *rt)
|
|
|
|
{
|
|
|
|
char destbuf[INET6_ADDRSTRLEN];
|
|
|
|
char gatebuf[INET6_ADDRSTRLEN];
|
|
|
|
const char *ifname = rt->iface->name, *dest, *gate;
|
|
|
|
|
|
|
|
dest = inet_ntop(AF_INET6, &rt->dest.s6_addr,
|
|
|
|
destbuf, INET6_ADDRSTRLEN);
|
|
|
|
gate = inet_ntop(AF_INET6, &rt->gate.s6_addr,
|
|
|
|
gatebuf, INET6_ADDRSTRLEN);
|
|
|
|
if (IN6_ARE_ADDR_EQUAL(&rt->gate, &in6addr_any))
|
2014-03-21 01:06:28 +08:00
|
|
|
syslog(LOG_INFO, "%s: %s route to %s/%d", ifname, cmd,
|
2012-07-06 00:37:41 +08:00
|
|
|
dest, ipv6_prefixlen(&rt->net));
|
|
|
|
else if (IN6_ARE_ADDR_EQUAL(&rt->dest, &in6addr_any) &&
|
|
|
|
IN6_ARE_ADDR_EQUAL(&rt->net, &in6addr_any))
|
2012-11-01 01:10:22 +08:00
|
|
|
syslog(LOG_INFO, "%s: %s default route via %s", ifname, cmd,
|
2012-07-06 00:37:41 +08:00
|
|
|
gate);
|
|
|
|
else
|
2012-11-01 01:10:22 +08:00
|
|
|
syslog(LOG_INFO, "%s: %s route to %s/%d via %s", ifname, cmd,
|
2012-07-06 00:37:41 +08:00
|
|
|
dest, ipv6_prefixlen(&rt->net), gate);
|
|
|
|
}
|
|
|
|
|
2013-05-24 16:06:57 +08:00
|
|
|
#define n_route(a) nc_route(1, a, a)
|
|
|
|
#define c_route(a, b) nc_route(0, a, b)
|
2012-07-06 00:37:41 +08:00
|
|
|
static int
|
2013-05-24 16:06:57 +08:00
|
|
|
nc_route(int add, struct rt6 *ort, struct rt6 *nrt)
|
2012-07-06 00:37:41 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
/* Don't set default routes if not asked to */
|
|
|
|
if (IN6_IS_ADDR_UNSPECIFIED(&nrt->dest) &&
|
|
|
|
IN6_IS_ADDR_UNSPECIFIED(&nrt->net) &&
|
2013-02-03 18:35:59 +08:00
|
|
|
!(nrt->iface->options->options & DHCPCD_GATEWAY))
|
2012-07-06 00:37:41 +08:00
|
|
|
return -1;
|
|
|
|
|
2013-05-24 16:06:57 +08:00
|
|
|
desc_route(add ? "adding" : "changing", nrt);
|
|
|
|
/* We delete and add the route so that we can change metric and
|
|
|
|
* prefer the interface. */
|
2014-04-25 18:42:37 +08:00
|
|
|
if (if_delroute6(ort) == -1 && errno != ESRCH)
|
|
|
|
syslog(LOG_ERR, "%s: if_delroute6: %m", ort->iface->name);
|
|
|
|
if (if_addroute6(nrt) == 0)
|
2012-07-06 00:37:41 +08:00
|
|
|
return 0;
|
2014-04-25 18:42:37 +08:00
|
|
|
syslog(LOG_ERR, "%s: if_addroute6: %m", nrt->iface->name);
|
2012-07-06 00:37:41 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
d_route(struct rt6 *rt)
|
|
|
|
{
|
|
|
|
int retval;
|
|
|
|
|
|
|
|
desc_route("deleting", rt);
|
2014-04-25 18:42:37 +08:00
|
|
|
retval = if_delroute6(rt);
|
2012-07-06 00:37:41 +08:00
|
|
|
if (retval != 0 && errno != ENOENT && errno != ESRCH)
|
2014-04-25 18:42:37 +08:00
|
|
|
syslog(LOG_ERR,"%s: if_delroute6: %m", rt->iface->name);
|
2012-07-06 00:37:41 +08:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct rt6 *
|
2013-05-31 23:01:27 +08:00
|
|
|
make_route(const struct interface *ifp, const struct ra *rap)
|
2012-07-06 00:37:41 +08:00
|
|
|
{
|
|
|
|
struct rt6 *r;
|
|
|
|
|
2013-02-16 05:45:08 +08:00
|
|
|
r = calloc(1, sizeof(*r));
|
|
|
|
if (r == NULL) {
|
|
|
|
syslog(LOG_ERR, "%s: %m", __func__);
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-11-07 07:40:15 +08:00
|
|
|
r->iface = ifp;
|
|
|
|
r->metric = ifp->metric;
|
|
|
|
if (rap)
|
|
|
|
r->mtu = rap->mtu;
|
|
|
|
else
|
|
|
|
r->mtu = 0;
|
2012-07-06 00:37:41 +08:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct rt6 *
|
2013-05-31 23:01:27 +08:00
|
|
|
make_prefix(const struct interface * ifp, const struct ra *rap,
|
|
|
|
const struct ipv6_addr *addr)
|
2012-07-06 00:37:41 +08:00
|
|
|
{
|
|
|
|
struct rt6 *r;
|
|
|
|
|
2013-09-07 19:13:05 +08:00
|
|
|
if (addr == NULL || addr->prefix_len > 128) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-03-21 00:36:03 +08:00
|
|
|
/* There is no point in trying to manage a /128 prefix,
|
|
|
|
* ones without a lifetime or ones not on link or delegated */
|
|
|
|
if (addr->prefix_len == 128 ||
|
|
|
|
addr->prefix_vltime == 0 ||
|
|
|
|
!(addr->flags & (IPV6_AF_ONLINK | IPV6_AF_DELEGATEDPFX)))
|
2012-07-06 00:37:41 +08:00
|
|
|
return NULL;
|
|
|
|
|
2014-03-23 03:55:29 +08:00
|
|
|
/* Don't install a blackhole route when not creating bigger prefixes */
|
|
|
|
if (addr->flags & IPV6_AF_DELEGATEDZERO)
|
|
|
|
return NULL;
|
|
|
|
|
2012-11-07 07:40:15 +08:00
|
|
|
r = make_route(ifp, rap);
|
2013-02-16 05:45:08 +08:00
|
|
|
if (r == NULL)
|
2014-03-21 00:36:03 +08:00
|
|
|
return NULL;
|
2012-07-06 00:37:41 +08:00
|
|
|
r->dest = addr->prefix;
|
|
|
|
ipv6_mask(&r->net, addr->prefix_len);
|
2014-03-21 00:36:03 +08:00
|
|
|
if (addr->flags & IPV6_AF_DELEGATEDPFX) {
|
|
|
|
r->flags |= RTF_REJECT;
|
|
|
|
r->gate = in6addr_loopback;
|
|
|
|
} else
|
|
|
|
r->gate = in6addr_any;
|
2012-07-06 00:37:41 +08:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct rt6 *
|
2013-05-31 23:01:27 +08:00
|
|
|
make_router(const struct ra *rap)
|
2012-07-06 00:37:41 +08:00
|
|
|
{
|
|
|
|
struct rt6 *r;
|
|
|
|
|
2012-11-07 07:40:15 +08:00
|
|
|
r = make_route(rap->iface, rap);
|
2013-02-16 05:45:08 +08:00
|
|
|
if (r == NULL)
|
|
|
|
return NULL;
|
2012-07-06 00:37:41 +08:00
|
|
|
r->dest = in6addr_any;
|
|
|
|
r->net = in6addr_any;
|
|
|
|
r->gate = rap->from;
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2014-02-12 08:39:46 +08:00
|
|
|
ipv6_removesubnet(struct interface *ifp, struct ipv6_addr *addr)
|
2012-07-06 00:37:41 +08:00
|
|
|
{
|
|
|
|
struct rt6 *rt;
|
2012-08-07 15:03:13 +08:00
|
|
|
#if HAVE_ROUTE_METRIC
|
|
|
|
struct rt6 *ort;
|
|
|
|
#endif
|
2012-07-06 00:37:41 +08:00
|
|
|
int r;
|
|
|
|
|
|
|
|
/* We need to delete the subnet route to have our metric or
|
|
|
|
* prefer the interface. */
|
|
|
|
r = 0;
|
2012-11-07 07:40:15 +08:00
|
|
|
rt = make_prefix(ifp, NULL, addr);
|
2012-07-06 00:37:41 +08:00
|
|
|
if (rt) {
|
2012-11-07 07:40:15 +08:00
|
|
|
rt->iface = ifp;
|
2012-07-06 00:37:41 +08:00
|
|
|
#ifdef __linux__
|
2013-04-02 15:30:13 +08:00
|
|
|
rt->metric = 256;
|
2012-07-06 00:37:41 +08:00
|
|
|
#else
|
|
|
|
rt->metric = 0;
|
|
|
|
#endif
|
2012-08-07 15:03:13 +08:00
|
|
|
#if HAVE_ROUTE_METRIC
|
|
|
|
/* For some reason, Linux likes to re-add the subnet
|
|
|
|
route under the original metric.
|
|
|
|
I would love to find a way of stopping this! */
|
2014-02-12 08:39:46 +08:00
|
|
|
if ((ort = find_route6(ifp->ctx->ipv6->routes, rt)) == NULL ||
|
2012-08-07 15:03:13 +08:00
|
|
|
ort->metric != rt->metric)
|
|
|
|
#else
|
2014-02-12 08:39:46 +08:00
|
|
|
if (!find_route6(ifp->ctx->ipv6->routes, rt))
|
2012-08-07 15:03:13 +08:00
|
|
|
#endif
|
2012-10-12 20:13:16 +08:00
|
|
|
{
|
2014-04-25 18:42:37 +08:00
|
|
|
r = if_delroute6(rt);
|
2012-10-12 20:13:16 +08:00
|
|
|
if (r == -1 && errno == ESRCH)
|
|
|
|
r = 0;
|
|
|
|
}
|
2012-07-06 00:37:41 +08:00
|
|
|
free(rt);
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define RT_IS_DEFAULT(rtp) \
|
|
|
|
(IN6_ARE_ADDR_EQUAL(&((rtp)->dest), &in6addr_any) && \
|
|
|
|
IN6_ARE_ADDR_EQUAL(&((rtp)->net), &in6addr_any))
|
|
|
|
|
2013-05-21 17:24:49 +08:00
|
|
|
static void
|
2014-02-12 08:39:46 +08:00
|
|
|
ipv6_build_ra_routes(struct ipv6_ctx *ctx, struct rt6_head *dnr, int expired)
|
2013-05-21 17:24:49 +08:00
|
|
|
{
|
|
|
|
struct rt6 *rt;
|
2013-05-31 23:01:27 +08:00
|
|
|
const struct ra *rap;
|
|
|
|
const struct ipv6_addr *addr;
|
2013-05-21 17:24:49 +08:00
|
|
|
|
2014-02-12 08:39:46 +08:00
|
|
|
TAILQ_FOREACH(rap, ctx->ra_routers, next) {
|
2013-05-21 17:24:49 +08:00
|
|
|
if (rap->expired != expired)
|
|
|
|
continue;
|
2013-05-23 06:55:36 +08:00
|
|
|
if (rap->iface->options->options & DHCPCD_IPV6RA_OWN) {
|
2013-05-21 17:24:49 +08:00
|
|
|
TAILQ_FOREACH(addr, &rap->addrs, next) {
|
|
|
|
rt = make_prefix(rap->iface, rap, addr);
|
|
|
|
if (rt)
|
|
|
|
TAILQ_INSERT_TAIL(dnr, rt, next);
|
|
|
|
}
|
|
|
|
}
|
2014-03-07 21:01:20 +08:00
|
|
|
if (rap->lifetime && rap->iface->options->options &
|
2013-05-23 06:55:36 +08:00
|
|
|
(DHCPCD_IPV6RA_OWN | DHCPCD_IPV6RA_OWN_DEFAULT))
|
|
|
|
{
|
|
|
|
rt = make_router(rap);
|
|
|
|
if (rt)
|
|
|
|
TAILQ_INSERT_TAIL(dnr, rt, next);
|
|
|
|
}
|
2013-05-21 17:24:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-31 23:01:27 +08:00
|
|
|
static void
|
2014-02-12 08:39:46 +08:00
|
|
|
ipv6_build_dhcp_routes(struct dhcpcd_ctx *ctx,
|
|
|
|
struct rt6_head *dnr, enum DH6S dstate)
|
2013-05-31 23:01:27 +08:00
|
|
|
{
|
|
|
|
const struct interface *ifp;
|
|
|
|
const struct dhcp6_state *d6_state;
|
|
|
|
const struct ipv6_addr *addr;
|
|
|
|
struct rt6 *rt;
|
|
|
|
|
2014-02-12 08:39:46 +08:00
|
|
|
TAILQ_FOREACH(ifp, ctx->ifaces, next) {
|
2013-05-31 23:01:27 +08:00
|
|
|
d6_state = D6_CSTATE(ifp);
|
|
|
|
if (d6_state && d6_state->state == dstate) {
|
|
|
|
TAILQ_FOREACH(addr, &d6_state->addrs, next) {
|
|
|
|
rt = make_prefix(ifp, NULL, addr);
|
|
|
|
if (rt)
|
|
|
|
TAILQ_INSERT_TAIL(dnr, rt, next);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-06 00:37:41 +08:00
|
|
|
void
|
2014-02-12 08:39:46 +08:00
|
|
|
ipv6_buildroutes(struct dhcpcd_ctx *ctx)
|
2012-07-06 00:37:41 +08:00
|
|
|
{
|
2014-02-12 08:39:46 +08:00
|
|
|
struct rt6_head dnr, *nrs;
|
2012-07-06 00:37:41 +08:00
|
|
|
struct rt6 *rt, *rtn, *or;
|
2013-05-30 13:38:21 +08:00
|
|
|
uint8_t have_default;
|
2013-07-02 03:23:19 +08:00
|
|
|
unsigned long long o;
|
2012-07-06 00:37:41 +08:00
|
|
|
|
|
|
|
TAILQ_INIT(&dnr);
|
2013-05-21 17:24:49 +08:00
|
|
|
|
|
|
|
/* First add reachable routers and their prefixes */
|
2014-02-12 08:39:46 +08:00
|
|
|
ipv6_build_ra_routes(ctx->ipv6, &dnr, 0);
|
2013-06-10 17:10:18 +08:00
|
|
|
#if HAVE_ROUTE_METRIC
|
2013-05-22 16:11:13 +08:00
|
|
|
have_default = (TAILQ_FIRST(&dnr) != NULL);
|
|
|
|
#endif
|
2013-05-21 17:24:49 +08:00
|
|
|
|
|
|
|
/* We have no way of knowing if prefixes added by DHCP are reachable
|
2013-05-31 23:01:27 +08:00
|
|
|
* or not, so we have to assume they are.
|
|
|
|
* Add bound before delegated so we can prefer interfaces better */
|
2014-02-12 08:39:46 +08:00
|
|
|
ipv6_build_dhcp_routes(ctx, &dnr, DH6S_BOUND);
|
|
|
|
ipv6_build_dhcp_routes(ctx, &dnr, DH6S_DELEGATED);
|
2013-05-21 17:24:49 +08:00
|
|
|
|
2013-06-10 17:10:18 +08:00
|
|
|
#if HAVE_ROUTE_METRIC
|
2013-05-22 16:11:13 +08:00
|
|
|
/* If we have an unreachable router, we really do need to remove the
|
|
|
|
* route to it beause it could be a lower metric than a reachable
|
|
|
|
* router. Of course, we should at least have some routers if all
|
|
|
|
* are unreachable. */
|
|
|
|
if (!have_default)
|
|
|
|
#endif
|
2013-05-21 17:24:49 +08:00
|
|
|
/* Add our non-reachable routers and prefixes
|
|
|
|
* Unsure if this is needed, but it's a close match to kernel
|
|
|
|
* behaviour */
|
2014-02-12 08:39:46 +08:00
|
|
|
ipv6_build_ra_routes(ctx->ipv6, &dnr, 1);
|
2012-07-06 00:37:41 +08:00
|
|
|
|
2013-02-16 21:21:35 +08:00
|
|
|
nrs = malloc(sizeof(*nrs));
|
|
|
|
if (nrs == NULL) {
|
|
|
|
syslog(LOG_ERR, "%s: %m", __func__);
|
|
|
|
return;
|
|
|
|
}
|
2012-07-06 00:37:41 +08:00
|
|
|
TAILQ_INIT(nrs);
|
2013-06-10 08:56:54 +08:00
|
|
|
have_default = 0;
|
2012-07-06 00:37:41 +08:00
|
|
|
TAILQ_FOREACH_SAFE(rt, &dnr, next, rtn) {
|
|
|
|
/* Is this route already in our table? */
|
|
|
|
if (find_route6(nrs, rt) != NULL)
|
|
|
|
continue;
|
|
|
|
//rt->src.s_addr = ifp->addr.s_addr;
|
|
|
|
/* Do we already manage it? */
|
2014-02-12 08:39:46 +08:00
|
|
|
if ((or = find_route6(ctx->ipv6->routes, rt))) {
|
2012-07-06 00:37:41 +08:00
|
|
|
if (or->iface != rt->iface ||
|
|
|
|
// or->src.s_addr != ifp->addr.s_addr ||
|
|
|
|
!IN6_ARE_ADDR_EQUAL(&rt->gate, &or->gate) ||
|
|
|
|
rt->metric != or->metric)
|
|
|
|
{
|
|
|
|
if (c_route(or, rt) != 0)
|
|
|
|
continue;
|
|
|
|
}
|
2014-02-12 08:39:46 +08:00
|
|
|
TAILQ_REMOVE(ctx->ipv6->routes, or, next);
|
2012-07-06 00:37:41 +08:00
|
|
|
free(or);
|
|
|
|
} else {
|
|
|
|
if (n_route(rt) != 0)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (RT_IS_DEFAULT(rt))
|
|
|
|
have_default = 1;
|
|
|
|
TAILQ_REMOVE(&dnr, rt, next);
|
|
|
|
TAILQ_INSERT_TAIL(nrs, rt, next);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Free any routes we failed to add/change */
|
|
|
|
while ((rt = TAILQ_FIRST(&dnr))) {
|
|
|
|
TAILQ_REMOVE(&dnr, rt, next);
|
|
|
|
free(rt);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Remove old routes we used to manage
|
|
|
|
* If we own the default route, but not RA management itself
|
|
|
|
* then we need to preserve the last best default route we had */
|
2014-02-12 08:39:46 +08:00
|
|
|
while ((rt = TAILQ_LAST(ctx->ipv6->routes, rt6_head))) {
|
|
|
|
TAILQ_REMOVE(ctx->ipv6->routes, rt, next);
|
2012-07-06 00:37:41 +08:00
|
|
|
if (find_route6(nrs, rt) == NULL) {
|
2013-07-02 03:23:19 +08:00
|
|
|
o = rt->iface->options->options;
|
2012-07-06 00:37:41 +08:00
|
|
|
if (!have_default &&
|
2013-07-02 03:23:19 +08:00
|
|
|
(o & DHCPCD_IPV6RA_OWN_DEFAULT) &&
|
|
|
|
!(o & DHCPCD_IPV6RA_OWN) &&
|
2012-07-06 00:37:41 +08:00
|
|
|
RT_IS_DEFAULT(rt))
|
|
|
|
have_default = 1;
|
|
|
|
/* no need to add it back to our routing table
|
|
|
|
* as we delete an exiting route when we add
|
|
|
|
* a new one */
|
2013-08-25 18:22:48 +08:00
|
|
|
else if ((rt->iface->options->options &
|
|
|
|
(DHCPCD_EXITING | DHCPCD_PERSISTENT)) !=
|
|
|
|
(DHCPCD_EXITING | DHCPCD_PERSISTENT))
|
2012-07-06 00:37:41 +08:00
|
|
|
d_route(rt);
|
|
|
|
}
|
|
|
|
free(rt);
|
|
|
|
}
|
2012-11-01 04:14:08 +08:00
|
|
|
|
2014-02-12 08:39:46 +08:00
|
|
|
free(ctx->ipv6->routes);
|
|
|
|
ctx->ipv6->routes = nrs;
|
2012-07-06 00:37:41 +08:00
|
|
|
}
|