mirror of
https://github.com/rsmarples/dhcpcd.git
synced 2024-11-24 10:35:03 +08:00
1129 lines
27 KiB
C
1129 lines
27 KiB
C
/*
|
|
* dhcpcd - DHCP client daemon
|
|
* Copyright (c) 2006-2012 Roy Marples <roy@marples.name>
|
|
* 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.
|
|
*/
|
|
|
|
#include <sys/ioctl.h>
|
|
#include <sys/param.h>
|
|
#include <sys/socket.h>
|
|
#include <net/if.h>
|
|
#include <netinet/in.h>
|
|
#include <netinet/ip6.h>
|
|
#include <netinet/icmp6.h>
|
|
|
|
#ifdef __linux__
|
|
# define _LINUX_IN6_H
|
|
# include <linux/ipv6.h>
|
|
#endif
|
|
|
|
#include <errno.h>
|
|
#include <stddef.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <syslog.h>
|
|
|
|
#define ELOOP_QUEUE 1
|
|
#include "bind.h"
|
|
#include "common.h"
|
|
#include "configure.h"
|
|
#include "dhcpcd.h"
|
|
#include "dhcp6.h"
|
|
#include "eloop.h"
|
|
#include "ipv6.h"
|
|
#include "ipv6ns.h"
|
|
#include "ipv6rs.h"
|
|
|
|
/* Debugging Router Solicitations is a lot of spam, so disable it */
|
|
//#define DEBUG_RS
|
|
|
|
#define RTR_SOLICITATION_INTERVAL 4 /* seconds */
|
|
#define MAX_RTR_SOLICITATIONS 3 /* times */
|
|
|
|
#ifndef ND_OPT_RDNSS
|
|
#define ND_OPT_RDNSS 25
|
|
struct nd_opt_rdnss { /* RDNSS option RFC 6106 */
|
|
uint8_t nd_opt_rdnss_type;
|
|
uint8_t nd_opt_rdnss_len;
|
|
uint16_t nd_opt_rdnss_reserved;
|
|
uint32_t nd_opt_rdnss_lifetime;
|
|
/* followed by list of IP prefixes */
|
|
} _packed;
|
|
#endif
|
|
|
|
#ifndef ND_OPT_DNSSL
|
|
#define ND_OPT_DNSSL 31
|
|
struct nd_opt_dnssl { /* DNSSL option RFC 6106 */
|
|
uint8_t nd_opt_dnssl_type;
|
|
uint8_t nd_opt_dnssl_len;
|
|
uint16_t nd_opt_dnssl_reserved;
|
|
uint32_t nd_opt_dnssl_lifetime;
|
|
/* followed by list of DNS servers */
|
|
} _packed;
|
|
#endif
|
|
|
|
/* Minimal IPv6 MTU */
|
|
#ifndef IPV6_MMTU
|
|
#define IPV6_MMTU 1280
|
|
#endif
|
|
|
|
#ifndef ND_RA_FLAG_RTPREF_HIGH
|
|
#define ND_RA_FLAG_RTPREF_MASK 0x18
|
|
#define ND_RA_FLAG_RTPREF_HIGH 0x08
|
|
#define ND_RA_FLAG_RTPREF_MEDIUM 0x00
|
|
#define ND_RA_FLAG_RTPREF_LOW 0x18
|
|
#define ND_RA_FLAG_RTPREF_RSV 0x10
|
|
#endif
|
|
|
|
/* RTPREF_MEDIUM has to be 0! */
|
|
#define RTPREF_HIGH 1
|
|
#define RTPREF_MEDIUM 0
|
|
#define RTPREF_LOW (-1)
|
|
#define RTPREF_RESERVED (-2)
|
|
#define RTPREF_INVALID (-3) /* internal */
|
|
|
|
struct rahead ipv6_routers = TAILQ_HEAD_INITIALIZER(ipv6_routers);
|
|
|
|
static int sock;
|
|
static struct sockaddr_in6 allrouters, from;
|
|
static struct msghdr sndhdr;
|
|
static struct iovec sndiov[2];
|
|
static unsigned char *sndbuf;
|
|
static struct msghdr rcvhdr;
|
|
static struct iovec rcviov[2];
|
|
static unsigned char *rcvbuf;
|
|
static unsigned char ansbuf[1500];
|
|
static char ntopbuf[INET6_ADDRSTRLEN];
|
|
|
|
#if DEBUG_MEMORY
|
|
static void
|
|
ipv6rs_cleanup(void)
|
|
{
|
|
|
|
free(sndbuf);
|
|
free(rcvbuf);
|
|
}
|
|
#endif
|
|
|
|
int
|
|
ipv6rs_open(void)
|
|
{
|
|
int on;
|
|
int len;
|
|
struct icmp6_filter filt;
|
|
|
|
memset(&allrouters, 0, sizeof(allrouters));
|
|
allrouters.sin6_family = AF_INET6;
|
|
#ifdef SIN6_LEN
|
|
allrouters.sin6_len = sizeof(allrouters);
|
|
#endif
|
|
if (inet_pton(AF_INET6, ALLROUTERS, &allrouters.sin6_addr.s6_addr) != 1)
|
|
return -1;
|
|
sock = socket(AF_INET6, SOCK_RAW, IPPROTO_ICMPV6);
|
|
if (sock == -1)
|
|
return -1;
|
|
on = 1;
|
|
if (setsockopt(sock, IPPROTO_IPV6, IPV6_RECVPKTINFO,
|
|
&on, sizeof(on)) == -1)
|
|
return -1;
|
|
|
|
on = 1;
|
|
if (setsockopt(sock, IPPROTO_IPV6, IPV6_RECVHOPLIMIT,
|
|
&on, sizeof(on)) == -1)
|
|
return -1;
|
|
|
|
ICMP6_FILTER_SETBLOCKALL(&filt);
|
|
ICMP6_FILTER_SETPASS(ND_ROUTER_ADVERT, &filt);
|
|
if (setsockopt(sock, IPPROTO_ICMPV6, ICMP6_FILTER,
|
|
&filt, sizeof(filt)) == -1)
|
|
return -1;
|
|
|
|
set_cloexec(sock);
|
|
#if DEBUG_MEMORY
|
|
atexit(ipv6rs_cleanup);
|
|
#endif
|
|
|
|
len = CMSG_SPACE(sizeof(struct in6_pktinfo)) + CMSG_SPACE(sizeof(int));
|
|
sndbuf = xzalloc(len);
|
|
if (sndbuf == NULL)
|
|
return -1;
|
|
sndhdr.msg_namelen = sizeof(struct sockaddr_in6);
|
|
sndhdr.msg_iov = sndiov;
|
|
sndhdr.msg_iovlen = 1;
|
|
sndhdr.msg_control = sndbuf;
|
|
sndhdr.msg_controllen = len;
|
|
rcvbuf = xzalloc(len);
|
|
if (rcvbuf == NULL)
|
|
return -1;
|
|
rcvhdr.msg_name = &from;
|
|
rcvhdr.msg_namelen = sizeof(from);
|
|
rcvhdr.msg_iov = rcviov;
|
|
rcvhdr.msg_iovlen = 1;
|
|
rcvhdr.msg_control = rcvbuf;
|
|
rcvhdr.msg_controllen = len;
|
|
rcviov[0].iov_base = ansbuf;
|
|
rcviov[0].iov_len = sizeof(ansbuf);
|
|
return sock;
|
|
}
|
|
|
|
static int
|
|
ipv6rs_makeprobe(struct interface *ifp)
|
|
{
|
|
struct rs_state *state;
|
|
struct nd_router_solicit *rs;
|
|
struct nd_opt_hdr *nd;
|
|
|
|
state = RS_STATE(ifp);
|
|
free(state->rs);
|
|
state->rslen = sizeof(*rs) + ROUNDUP8(ifp->hwlen + 2);
|
|
state->rs = xzalloc(state->rslen);
|
|
if (state->rs == NULL)
|
|
return -1;
|
|
rs = (struct nd_router_solicit *)(void *)state->rs;
|
|
rs->nd_rs_type = ND_ROUTER_SOLICIT;
|
|
rs->nd_rs_code = 0;
|
|
rs->nd_rs_cksum = 0;
|
|
rs->nd_rs_reserved = 0;
|
|
nd = (struct nd_opt_hdr *)(state->rs + sizeof(*rs));
|
|
nd->nd_opt_type = ND_OPT_SOURCE_LINKADDR;
|
|
nd->nd_opt_len = (ROUNDUP8(ifp->hwlen + 2)) >> 3;
|
|
memcpy(nd + 1, ifp->hwaddr, ifp->hwlen);
|
|
return 0;
|
|
}
|
|
|
|
static void
|
|
ipv6rs_sendprobe(void *arg)
|
|
{
|
|
struct interface *ifp = arg;
|
|
struct rs_state *state;
|
|
struct sockaddr_in6 dst;
|
|
struct cmsghdr *cm;
|
|
struct in6_pktinfo pi;
|
|
int hoplimit = HOPLIMIT;
|
|
|
|
dst = allrouters;
|
|
//dst.sin6_scope_id = ifp->linkid;
|
|
|
|
state = RS_STATE(ifp);
|
|
sndhdr.msg_name = (caddr_t)&dst;
|
|
sndhdr.msg_iov[0].iov_base = state->rs;
|
|
sndhdr.msg_iov[0].iov_len = state->rslen;
|
|
|
|
/* Set the outbound interface */
|
|
cm = CMSG_FIRSTHDR(&sndhdr);
|
|
cm->cmsg_level = IPPROTO_IPV6;
|
|
cm->cmsg_type = IPV6_PKTINFO;
|
|
cm->cmsg_len = CMSG_LEN(sizeof(pi));
|
|
memset(&pi, 0, sizeof(pi));
|
|
pi.ipi6_ifindex = ifp->index;
|
|
memcpy(CMSG_DATA(cm), &pi, sizeof(pi));
|
|
|
|
/* Hop limit */
|
|
cm = CMSG_NXTHDR(&sndhdr, cm);
|
|
cm->cmsg_level = IPPROTO_IPV6;
|
|
cm->cmsg_type = IPV6_HOPLIMIT;
|
|
cm->cmsg_len = CMSG_LEN(sizeof(hoplimit));
|
|
memcpy(CMSG_DATA(cm), &hoplimit, sizeof(hoplimit));
|
|
|
|
syslog(LOG_INFO, "%s: sending IPv6 Router Solicitation", ifp->name);
|
|
if (sendmsg(sock, &sndhdr, 0) == -1)
|
|
syslog(LOG_ERR, "%s: sendmsg: %m", ifp->name);
|
|
|
|
if (state->rsprobes++ < MAX_RTR_SOLICITATIONS)
|
|
eloop_timeout_add_sec(RTR_SOLICITATION_INTERVAL,
|
|
ipv6rs_sendprobe, ifp);
|
|
else
|
|
syslog(LOG_INFO, "%s: no IPv6 Routers available", ifp->name);
|
|
}
|
|
|
|
static void
|
|
ipv6rs_free_opts(struct ra *rap)
|
|
{
|
|
struct ra_opt *rao;
|
|
|
|
while ((rao = TAILQ_FIRST(&rap->options))) {
|
|
TAILQ_REMOVE(&rap->options, rao, next);
|
|
free(rao->option);
|
|
free(rao);
|
|
}
|
|
}
|
|
|
|
int
|
|
ipv6rs_addrexists(const struct ipv6_addr *a)
|
|
{
|
|
struct ra *rap;
|
|
struct ipv6_addr *ap;
|
|
|
|
TAILQ_FOREACH(rap, &ipv6_routers, next) {
|
|
TAILQ_FOREACH(ap, &rap->addrs, next) {
|
|
if (memcmp(&ap->addr, &a->addr, sizeof(a->addr)) == 0)
|
|
return 1;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static void
|
|
ipv6rs_freedrop_addrs(struct ra *rap, int drop)
|
|
{
|
|
struct ipv6_addr *ap;
|
|
|
|
while ((ap = TAILQ_FIRST(&rap->addrs))) {
|
|
TAILQ_REMOVE(&rap->addrs, ap, next);
|
|
/* 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 && (options & DHCPCD_IPV6RA_OWN) &&
|
|
!IN6_IS_ADDR_UNSPECIFIED(&ap->addr) &&
|
|
!ipv6rs_addrexists(ap) && !dhcp6_addrexists(ap))
|
|
{
|
|
syslog(LOG_INFO, "%s: deleting address %s",
|
|
rap->iface->name, ap->saddr);
|
|
if (del_address6(rap->iface, ap) == -1)
|
|
syslog(LOG_ERR, "del_address6 %m");
|
|
}
|
|
free(ap);
|
|
}
|
|
}
|
|
|
|
void ipv6rs_freedrop_ra(struct ra *rap, int drop)
|
|
{
|
|
|
|
eloop_timeout_delete(NULL, rap->iface);
|
|
eloop_timeout_delete(NULL, rap);
|
|
TAILQ_REMOVE(&ipv6_routers, rap, next);
|
|
ipv6rs_freedrop_addrs(rap, drop);
|
|
ipv6rs_free_opts(rap);
|
|
free(rap->data);
|
|
free(rap->ns);
|
|
free(rap);
|
|
}
|
|
|
|
ssize_t
|
|
ipv6rs_free(struct interface *ifp)
|
|
{
|
|
struct rs_state *state;
|
|
struct ra *rap, *ran;
|
|
ssize_t n;
|
|
|
|
state = RS_STATE(ifp);
|
|
if (state) {
|
|
free(state->rs);
|
|
free(state);
|
|
ifp->if_data[IF_DATA_IPV6RS] = NULL;
|
|
}
|
|
n = 0;
|
|
TAILQ_FOREACH_SAFE(rap, &ipv6_routers, next, ran) {
|
|
if (rap->iface == ifp) {
|
|
ipv6rs_free_ra(rap);
|
|
n++;
|
|
}
|
|
}
|
|
return n;
|
|
}
|
|
|
|
static int
|
|
rtpref(struct ra *rap)
|
|
{
|
|
|
|
switch (rap->flags & ND_RA_FLAG_RTPREF_MASK) {
|
|
case ND_RA_FLAG_RTPREF_HIGH:
|
|
return (RTPREF_HIGH);
|
|
case ND_RA_FLAG_RTPREF_MEDIUM:
|
|
case ND_RA_FLAG_RTPREF_RSV:
|
|
return (RTPREF_MEDIUM);
|
|
case ND_RA_FLAG_RTPREF_LOW:
|
|
return (RTPREF_LOW);
|
|
default:
|
|
syslog(LOG_ERR, "rtpref: impossible RA flag %x", rap->flags);
|
|
return (RTPREF_INVALID);
|
|
}
|
|
/* NOTREACHED */
|
|
}
|
|
|
|
static void
|
|
add_router(struct ra *router)
|
|
{
|
|
struct ra *rap;
|
|
|
|
TAILQ_FOREACH(rap, &ipv6_routers, next) {
|
|
if (router->iface->metric < rap->iface->metric ||
|
|
(router->iface->metric == rap->iface->metric &&
|
|
rtpref(router) > rtpref(rap)))
|
|
{
|
|
TAILQ_INSERT_BEFORE(rap, router, next);
|
|
return;
|
|
}
|
|
}
|
|
TAILQ_INSERT_HEAD(&ipv6_routers, router, next);
|
|
}
|
|
|
|
/* ARGSUSED */
|
|
void
|
|
ipv6rs_handledata(_unused void *arg)
|
|
{
|
|
ssize_t len, l, m, n, olen;
|
|
struct cmsghdr *cm;
|
|
int hoplimit;
|
|
struct in6_pktinfo pkt;
|
|
struct icmp6_hdr *icp;
|
|
struct interface *ifp;
|
|
const char *sfrom;
|
|
struct nd_router_advert *nd_ra;
|
|
struct nd_opt_prefix_info *pi;
|
|
struct nd_opt_mtu *mtu;
|
|
struct nd_opt_rdnss *rdnss;
|
|
struct nd_opt_dnssl *dnssl;
|
|
uint32_t lifetime, mtuv;
|
|
uint8_t *p, *op;
|
|
struct in6_addr addr;
|
|
char buf[INET6_ADDRSTRLEN];
|
|
const char *cbp;
|
|
struct ra *rap;
|
|
struct nd_opt_hdr *ndo;
|
|
struct ra_opt *rao;
|
|
struct ipv6_addr *ap;
|
|
char *opt, *tmp;
|
|
struct timeval expire;
|
|
uint8_t has_dns, new_rap, new_data;
|
|
|
|
len = recvmsg(sock, &rcvhdr, 0);
|
|
if (len == -1) {
|
|
syslog(LOG_ERR, "recvmsg: %m");
|
|
return;
|
|
}
|
|
sfrom = inet_ntop(AF_INET6, &from.sin6_addr,
|
|
ntopbuf, INET6_ADDRSTRLEN);
|
|
if ((size_t)len < sizeof(struct nd_router_advert)) {
|
|
syslog(LOG_ERR, "IPv6 RA packet too short from %s", sfrom);
|
|
return;
|
|
}
|
|
|
|
pkt.ipi6_ifindex = hoplimit = 0;
|
|
for (cm = (struct cmsghdr *)CMSG_FIRSTHDR(&rcvhdr);
|
|
cm;
|
|
cm = (struct cmsghdr *)CMSG_NXTHDR(&rcvhdr, cm))
|
|
{
|
|
if (cm->cmsg_level != IPPROTO_IPV6)
|
|
continue;
|
|
switch(cm->cmsg_type) {
|
|
case IPV6_PKTINFO:
|
|
if (cm->cmsg_len == CMSG_LEN(sizeof(pkt)))
|
|
memcpy(&pkt, CMSG_DATA(cm), sizeof(pkt));
|
|
break;
|
|
case IPV6_HOPLIMIT:
|
|
if (cm->cmsg_len == CMSG_LEN(sizeof(int)))
|
|
memcpy(&hoplimit, CMSG_DATA(cm), sizeof(int));
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (pkt.ipi6_ifindex == 0 || hoplimit == 0) {
|
|
syslog(LOG_ERR,
|
|
"IPv6 RA did not contain index or hop limit from %s",
|
|
sfrom);
|
|
return;
|
|
}
|
|
|
|
icp = (struct icmp6_hdr *)rcvhdr.msg_iov[0].iov_base;
|
|
if (icp->icmp6_type != ND_ROUTER_ADVERT ||
|
|
icp->icmp6_code != 0)
|
|
{
|
|
syslog(LOG_ERR, "invalid IPv6 type or code from %s", sfrom);
|
|
return;
|
|
}
|
|
|
|
if (!IN6_IS_ADDR_LINKLOCAL(&from.sin6_addr)) {
|
|
syslog(LOG_ERR, "RA from non local address %s", sfrom);
|
|
return;
|
|
}
|
|
|
|
for (ifp = ifaces; ifp; ifp = ifp->next)
|
|
if (ifp->index == (unsigned int)pkt.ipi6_ifindex)
|
|
break;
|
|
if (ifp == NULL) {
|
|
#ifdef DEBUG_RS
|
|
syslog(LOG_DEBUG, "RA for unexpected interface from %s", sfrom);
|
|
#endif
|
|
return;
|
|
}
|
|
TAILQ_FOREACH(rap, &ipv6_routers, next) {
|
|
if (memcmp(rap->from.s6_addr, from.sin6_addr.s6_addr,
|
|
sizeof(rap->from.s6_addr)) == 0)
|
|
break;
|
|
}
|
|
|
|
/* We don't want to spam the log with the fact we got an RA every
|
|
* 30 seconds or so, so only spam the log if it's different. */
|
|
if (options & DHCPCD_DEBUG || rap == NULL ||
|
|
(rap->data_len != len ||
|
|
memcmp(rap->data, (unsigned char *)icp, rap->data_len) != 0))
|
|
{
|
|
if (rap) {
|
|
free(rap->data);
|
|
rap->data_len = 0;
|
|
free(rap->ns);
|
|
rap->ns = NULL;
|
|
rap->nslen = 0;
|
|
}
|
|
new_data = 1;
|
|
syslog(LOG_INFO, "%s: Router Advertisement from %s",
|
|
ifp->name, sfrom);
|
|
} else
|
|
new_data = 0;
|
|
|
|
if (rap == NULL) {
|
|
rap = xzalloc(sizeof(*rap));
|
|
rap->iface = ifp;
|
|
memcpy(rap->from.s6_addr, from.sin6_addr.s6_addr,
|
|
sizeof(rap->from.s6_addr));
|
|
strlcpy(rap->sfrom, sfrom, sizeof(rap->sfrom));
|
|
TAILQ_INIT(&rap->addrs);
|
|
TAILQ_INIT(&rap->options);
|
|
new_rap = 1;
|
|
} else
|
|
new_rap = 0;
|
|
if (rap->data_len == 0) {
|
|
rap->data = xmalloc(len);
|
|
memcpy(rap->data, icp, len);
|
|
rap->data_len = len;
|
|
}
|
|
|
|
get_monotonic(&rap->received);
|
|
nd_ra = (struct nd_router_advert *)icp;
|
|
rap->flags = nd_ra->nd_ra_flags_reserved;
|
|
rap->lifetime = ntohs(nd_ra->nd_ra_router_lifetime);
|
|
if (nd_ra->nd_ra_reachable) {
|
|
rap->reachable = ntohl(nd_ra->nd_ra_reachable);
|
|
if (rap->reachable > MAX_REACHABLE_TIME)
|
|
rap->reachable = 0;
|
|
}
|
|
if (nd_ra->nd_ra_retransmit)
|
|
rap->retrans = ntohl(nd_ra->nd_ra_retransmit);
|
|
if (rap->lifetime)
|
|
rap->expired = 0;
|
|
|
|
len -= sizeof(struct nd_router_advert);
|
|
p = ((uint8_t *)icp) + sizeof(struct nd_router_advert);
|
|
olen = 0;
|
|
lifetime = ~0U;
|
|
has_dns = 0;
|
|
for (olen = 0; len > 0; p += olen, len -= olen) {
|
|
if ((size_t)len < sizeof(struct nd_opt_hdr)) {
|
|
syslog(LOG_ERR, "%s: Short option", ifp->name);
|
|
break;
|
|
}
|
|
ndo = (struct nd_opt_hdr *)p;
|
|
olen = ndo->nd_opt_len * 8 ;
|
|
if (olen == 0) {
|
|
syslog(LOG_ERR, "%s: zero length option", ifp->name);
|
|
break;
|
|
}
|
|
if (olen > len) {
|
|
syslog(LOG_ERR,
|
|
"%s: Option length exceeds message", ifp->name);
|
|
break;
|
|
}
|
|
|
|
opt = NULL;
|
|
switch (ndo->nd_opt_type) {
|
|
case ND_OPT_PREFIX_INFORMATION:
|
|
pi = (struct nd_opt_prefix_info *)(void *)ndo;
|
|
if (pi->nd_opt_pi_len != 4) {
|
|
syslog(LOG_ERR,
|
|
"%s: invalid option len for prefix",
|
|
ifp->name);
|
|
break;
|
|
}
|
|
if (pi->nd_opt_pi_prefix_len > 128) {
|
|
syslog(LOG_ERR, "%s: invalid prefix len",
|
|
ifp->name);
|
|
break;
|
|
}
|
|
if (IN6_IS_ADDR_MULTICAST(&pi->nd_opt_pi_prefix) ||
|
|
IN6_IS_ADDR_LINKLOCAL(&pi->nd_opt_pi_prefix))
|
|
{
|
|
syslog(LOG_ERR,
|
|
"%s: invalid prefix in RA", ifp->name);
|
|
break;
|
|
}
|
|
if (ntohl(pi->nd_opt_pi_preferred_time) >
|
|
ntohl(pi->nd_opt_pi_valid_time))
|
|
{
|
|
syslog(LOG_ERR,
|
|
"%s: pltime > vltime", ifp->name);
|
|
break;
|
|
}
|
|
TAILQ_FOREACH(ap, &rap->addrs, next)
|
|
if (ap->prefix_len ==pi->nd_opt_pi_prefix_len &&
|
|
memcmp(ap->prefix.s6_addr,
|
|
pi->nd_opt_pi_prefix.s6_addr,
|
|
sizeof(ap->prefix.s6_addr)) == 0)
|
|
break;
|
|
if (ap == NULL) {
|
|
if (!(pi->nd_opt_pi_flags_reserved &
|
|
ND_OPT_PI_FLAG_AUTO) &&
|
|
!(pi->nd_opt_pi_flags_reserved &
|
|
ND_OPT_PI_FLAG_ONLINK))
|
|
break;
|
|
ap = xmalloc(sizeof(*ap));
|
|
ap->new = 1;
|
|
ap->prefix_len = pi->nd_opt_pi_prefix_len;
|
|
memcpy(ap->prefix.s6_addr,
|
|
pi->nd_opt_pi_prefix.s6_addr,
|
|
sizeof(ap->prefix.s6_addr));
|
|
if (pi->nd_opt_pi_flags_reserved &
|
|
ND_OPT_PI_FLAG_AUTO)
|
|
{
|
|
ipv6_makeaddr(&ap->addr, ifp->name,
|
|
&ap->prefix,
|
|
pi->nd_opt_pi_prefix_len);
|
|
cbp = inet_ntop(AF_INET6,
|
|
ap->addr.s6_addr,
|
|
ntopbuf, INET6_ADDRSTRLEN);
|
|
if (cbp)
|
|
snprintf(ap->saddr,
|
|
sizeof(ap->saddr),
|
|
"%s/%d",
|
|
cbp, ap->prefix_len);
|
|
else
|
|
ap->saddr[0] = '\0';
|
|
} else {
|
|
memset(&ap->addr, 0, sizeof(ap->addr));
|
|
ap->saddr[0] = '\0';
|
|
}
|
|
TAILQ_INSERT_TAIL(&rap->addrs, ap, next);
|
|
} else if (ap->prefix_vltime !=
|
|
ntohl(pi->nd_opt_pi_valid_time) ||
|
|
ap->prefix_pltime !=
|
|
ntohl(pi->nd_opt_pi_preferred_time))
|
|
ap->new = 1;
|
|
else
|
|
ap->new = 0;
|
|
if (pi->nd_opt_pi_flags_reserved &
|
|
ND_OPT_PI_FLAG_ONLINK)
|
|
ap->onlink = 1;
|
|
ap->prefix_vltime =
|
|
ntohl(pi->nd_opt_pi_valid_time);
|
|
ap->prefix_pltime =
|
|
ntohl(pi->nd_opt_pi_preferred_time);
|
|
if (opt) {
|
|
l = strlen(opt);
|
|
opt = xrealloc(opt,
|
|
l + strlen(ap->saddr) + 2);
|
|
opt[l] = ' ';
|
|
strcpy(opt + l + 1, ap->saddr);
|
|
} else
|
|
opt = xstrdup(ap->saddr);
|
|
lifetime = ap->prefix_vltime;
|
|
break;
|
|
|
|
case ND_OPT_MTU:
|
|
mtu = (struct nd_opt_mtu *)(void *)p;
|
|
mtuv = ntohl(mtu->nd_opt_mtu_mtu);
|
|
if (mtuv < IPV6_MMTU) {
|
|
syslog(LOG_ERR, "%s: invalid MTU %d",
|
|
ifp->name, mtuv);
|
|
break;
|
|
}
|
|
rap->mtu = mtuv;
|
|
snprintf(buf, sizeof(buf), "%d", mtuv);
|
|
opt = xstrdup(buf);
|
|
break;
|
|
|
|
case ND_OPT_RDNSS:
|
|
rdnss = (struct nd_opt_rdnss *)p;
|
|
lifetime = ntohl(rdnss->nd_opt_rdnss_lifetime);
|
|
op = (uint8_t *)ndo;
|
|
op += offsetof(struct nd_opt_rdnss,
|
|
nd_opt_rdnss_lifetime);
|
|
op += sizeof(rdnss->nd_opt_rdnss_lifetime);
|
|
l = 0;
|
|
for (n = ndo->nd_opt_len - 1; n > 1; n -= 2,
|
|
op += sizeof(addr.s6_addr))
|
|
{
|
|
m = ipv6_printaddr(NULL, 0, op, ifp->name);
|
|
if (m != -1)
|
|
l += m + 1;
|
|
}
|
|
op = (uint8_t *)ndo;
|
|
op += offsetof(struct nd_opt_rdnss,
|
|
nd_opt_rdnss_lifetime);
|
|
op += sizeof(rdnss->nd_opt_rdnss_lifetime);
|
|
tmp = opt = malloc(l);
|
|
if (opt) {
|
|
for (n = ndo->nd_opt_len - 1; n > 1; n -= 2,
|
|
op += sizeof(addr.s6_addr))
|
|
{
|
|
m = ipv6_printaddr(tmp, l, op,
|
|
ifp->name);
|
|
if (m != -1) {
|
|
l -= (m + 1);
|
|
tmp += m;
|
|
*tmp++ = ' ';
|
|
if (lifetime > 0)
|
|
has_dns = 1;
|
|
}
|
|
}
|
|
if (tmp != opt)
|
|
(*--tmp) = '\0';
|
|
else
|
|
*opt = '\0';
|
|
}
|
|
break;
|
|
|
|
case ND_OPT_DNSSL:
|
|
dnssl = (struct nd_opt_dnssl *)p;
|
|
lifetime = ntohl(dnssl->nd_opt_dnssl_lifetime);
|
|
op = p + offsetof(struct nd_opt_dnssl,
|
|
nd_opt_dnssl_lifetime);
|
|
op += sizeof(dnssl->nd_opt_dnssl_lifetime);
|
|
n = (dnssl->nd_opt_dnssl_len - 1) * 8;
|
|
l = decode_rfc3397(NULL, 0, n, op);
|
|
if (l < 1) {
|
|
syslog(LOG_ERR, "%s: invalid DNSSL option",
|
|
ifp->name);
|
|
} else {
|
|
tmp = xmalloc(l);
|
|
decode_rfc3397(tmp, l, n, op);
|
|
n = print_string(NULL, 0,
|
|
l - 1, (const uint8_t *)tmp);
|
|
opt = xmalloc(n);
|
|
print_string(opt, n,
|
|
l - 1, (const uint8_t *)tmp);
|
|
free(tmp);
|
|
}
|
|
break;
|
|
}
|
|
|
|
if (opt == NULL)
|
|
continue;
|
|
TAILQ_FOREACH(rao, &rap->options, next) {
|
|
if (rao->type == ndo->nd_opt_type &&
|
|
strcmp(rao->option, opt) == 0)
|
|
break;
|
|
}
|
|
if (lifetime == 0) {
|
|
if (rao) {
|
|
TAILQ_REMOVE(&rap->options, rao, next);
|
|
free(rao->option);
|
|
free(rao);
|
|
}
|
|
continue;
|
|
}
|
|
|
|
if (rao == NULL) {
|
|
rao = xmalloc(sizeof(*rao));
|
|
rao->type = ndo->nd_opt_type;
|
|
rao->option = opt;
|
|
TAILQ_INSERT_TAIL(&rap->options, rao, next);
|
|
} else
|
|
free(opt);
|
|
if (lifetime == ~0U)
|
|
timerclear(&rao->expire);
|
|
else {
|
|
expire.tv_sec = lifetime;
|
|
expire.tv_usec = 0;
|
|
timeradd(&rap->received, &expire, &rao->expire);
|
|
}
|
|
}
|
|
|
|
if (new_rap)
|
|
add_router(rap);
|
|
if (options & DHCPCD_IPV6RA_OWN && !(options & DHCPCD_TEST))
|
|
ipv6_addaddrs(ifp, &rap->addrs);
|
|
if (options & DHCPCD_TEST) {
|
|
run_script_reason(ifp, "TEST");
|
|
goto handle_flag;
|
|
}
|
|
ipv6_buildroutes();
|
|
/* We will get run by the expire function */
|
|
if (rap->lifetime)
|
|
run_script_reason(ifp, "ROUTERADVERT");
|
|
|
|
/* If we don't require RDNSS then set has_dns = 1 so we fork */
|
|
if (!(ifp->state->options->options & DHCPCD_IPV6RA_REQRDNSS))
|
|
has_dns = 1;
|
|
|
|
eloop_timeout_delete(NULL, ifp);
|
|
eloop_timeout_delete(NULL, rap); /* reachable timer */
|
|
if (has_dns)
|
|
daemonise();
|
|
else if (options & DHCPCD_DAEMONISE &&
|
|
!(options & DHCPCD_DAEMONISED) && new_data)
|
|
syslog(LOG_WARNING,
|
|
"%s: did not fork due to an absent RDNSS option in the RA",
|
|
ifp->name);
|
|
|
|
/* If we're owning the RA then we need to try and ensure the
|
|
* router is actually reachable */
|
|
if (options & DHCPCD_IPV6RA_OWN ||
|
|
options & DHCPCD_IPV6RA_OWN_DEFAULT)
|
|
{
|
|
rap->nsprobes = 0;
|
|
ipv6ns_sendprobe(rap);
|
|
}
|
|
|
|
handle_flag:
|
|
if (rap->flags & ND_RA_FLAG_MANAGED) {
|
|
if (dhcp6_start(ifp, 1) == -1)
|
|
syslog(LOG_ERR, "dhcp6_start: %s: %m", ifp->name);
|
|
} else if (rap->flags & ND_RA_FLAG_OTHER) {
|
|
if (dhcp6_start(ifp, 0) == -1)
|
|
syslog(LOG_ERR, "dhcp6_start: %s: %m", ifp->name);
|
|
} else {
|
|
if (new_data)
|
|
syslog(LOG_DEBUG, "%s: No DHCPv6 instruction in RA",
|
|
ifp->name);
|
|
if (options & DHCPCD_TEST)
|
|
exit(EXIT_SUCCESS);
|
|
}
|
|
|
|
/* Expire should be called last as the rap object could be destroyed */
|
|
ipv6rs_expire(ifp);
|
|
}
|
|
|
|
int
|
|
ipv6rs_has_ra(const struct interface *ifp)
|
|
{
|
|
const struct ra *rap;
|
|
|
|
TAILQ_FOREACH(rap, &ipv6_routers, next)
|
|
if (rap->iface == ifp)
|
|
return 1;
|
|
return 0;
|
|
}
|
|
|
|
ssize_t
|
|
ipv6rs_env(char **env, const char *prefix, const struct interface *ifp)
|
|
{
|
|
ssize_t l;
|
|
size_t len;
|
|
struct timeval now;
|
|
const struct ra *rap;
|
|
const struct ra_opt *rao;
|
|
int i;
|
|
char buffer[32];
|
|
const char *optn;
|
|
char **pref, **mtu, **rdnss, **dnssl, ***var, *new;
|
|
|
|
i = 0;
|
|
l = 0;
|
|
get_monotonic(&now);
|
|
TAILQ_FOREACH(rap, &ipv6_routers, next) {
|
|
i++;
|
|
if (rap->iface != ifp)
|
|
continue;
|
|
if (env) {
|
|
snprintf(buffer, sizeof(buffer),
|
|
"ra%d_from", i);
|
|
setvar(&env, prefix, buffer, rap->sfrom);
|
|
}
|
|
l++;
|
|
|
|
pref = mtu = rdnss = dnssl = NULL;
|
|
TAILQ_FOREACH(rao, &rap->options, next) {
|
|
if (rao->option == NULL)
|
|
continue;
|
|
var = NULL;
|
|
switch(rao->type) {
|
|
case ND_OPT_PREFIX_INFORMATION:
|
|
optn = "prefix";
|
|
var = &pref;
|
|
break;
|
|
case ND_OPT_MTU:
|
|
optn = "mtu";
|
|
var = &mtu;
|
|
break;
|
|
case ND_OPT_RDNSS:
|
|
optn = "rdnss";
|
|
var = &rdnss;
|
|
break;
|
|
case ND_OPT_DNSSL:
|
|
optn = "dnssl";
|
|
var = &dnssl;
|
|
break;
|
|
default:
|
|
continue;
|
|
}
|
|
if (*var == NULL) {
|
|
*var = env ? env : &new;
|
|
l++;
|
|
} else if (env) {
|
|
/* With single only options, last one takes
|
|
* precedence */
|
|
if (rao->type == ND_OPT_MTU) {
|
|
new = strchr(**var, '=');
|
|
if (new == NULL) {
|
|
syslog(LOG_ERR, "new is null");
|
|
continue;
|
|
} else
|
|
new++;
|
|
len = (new - **var) +
|
|
strlen(rao->option) + 1;
|
|
if (len > strlen(**var))
|
|
new = realloc(**var, len);
|
|
else
|
|
new = **var;
|
|
if (new) {
|
|
**var = new;
|
|
new = strchr(**var, '=');
|
|
if (new)
|
|
strcpy(new + 1,
|
|
rao->option);
|
|
else
|
|
syslog(LOG_ERR,
|
|
"new is null");
|
|
}
|
|
continue;
|
|
}
|
|
new = realloc(**var,
|
|
strlen(**var) + 1 +
|
|
strlen(rao->option) + 1);
|
|
if (new) {
|
|
**var = new;
|
|
new += strlen(new);
|
|
*new++ = ' ';
|
|
strcpy(new, rao->option);
|
|
continue;
|
|
}
|
|
}
|
|
if (env) {
|
|
snprintf(buffer, sizeof(buffer),
|
|
"ra%d_%s", i, optn);
|
|
setvar(&env, prefix, buffer, rao->option);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (env)
|
|
setvard(&env, prefix, "ra_count", i);
|
|
l++;
|
|
return l;
|
|
}
|
|
|
|
const struct ipv6_addr *
|
|
ipv6rs_findprefix(const struct ipv6_addr *a)
|
|
{
|
|
const struct ra *rap;
|
|
const struct ipv6_addr *ap;
|
|
const struct in6_addr *p1, *p2;
|
|
int bytelen, bitlen;
|
|
|
|
p1 = &a->addr;
|
|
TAILQ_FOREACH(rap, &ipv6_routers, next) {
|
|
TAILQ_FOREACH(ap, &rap->addrs, next) {
|
|
p2 = & ap->prefix;
|
|
bytelen = ap->prefix_len / NBBY;
|
|
bitlen = ap->prefix_len % NBBY;
|
|
if (memcmp(&p1->s6_addr, &p2->s6_addr, bytelen))
|
|
continue;
|
|
if (bitlen != 0) {
|
|
bitlen = NBBY - bitlen;
|
|
if (p1->s6_addr[bytelen] >> bitlen !=
|
|
p2->s6_addr[bytelen] >> bitlen)
|
|
continue;
|
|
}
|
|
return ap;
|
|
}
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
static const struct ipv6_addr *
|
|
ipv6rs_findsameaddr(const struct ipv6_addr *ap)
|
|
{
|
|
const struct ra *rap;
|
|
const struct ipv6_addr *a;
|
|
|
|
TAILQ_FOREACH(rap, &ipv6_routers, next) {
|
|
TAILQ_FOREACH(a, &rap->addrs, next) {
|
|
if (ap != a &&
|
|
memcmp(&a->addr, &ap->addr, sizeof(ap->addr) == 0))
|
|
return a;
|
|
}
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
void
|
|
ipv6rs_expire(void *arg)
|
|
{
|
|
struct interface *ifp;
|
|
struct ra *rap, *ran;
|
|
struct ipv6_addr *ap, *apn;
|
|
struct ra_opt *rao, *raon;
|
|
struct timeval now, lt, expire, next;
|
|
int expired, valid;
|
|
|
|
ifp = arg;
|
|
get_monotonic(&now);
|
|
expired = 0;
|
|
timerclear(&next);
|
|
|
|
TAILQ_FOREACH_SAFE(rap, &ipv6_routers, next, ran) {
|
|
if (rap->iface != ifp)
|
|
continue;
|
|
lt.tv_sec = rap->lifetime;
|
|
lt.tv_usec = 0;
|
|
timeradd(&rap->received, <, &expire);
|
|
if (timercmp(&now, &expire, >)) {
|
|
valid = 0;
|
|
if (!rap->expired) {
|
|
syslog(LOG_INFO,
|
|
"%s: %s: expired default Router",
|
|
ifp->name, rap->sfrom);
|
|
rap->expired = expired = 1;
|
|
}
|
|
} else {
|
|
valid = 1;
|
|
timersub(&expire, &now, <);
|
|
if (!timerisset(&next) || timercmp(&next, <, >))
|
|
next = lt;
|
|
}
|
|
|
|
if (options & DHCPCD_IPV6RA_OWN) {
|
|
TAILQ_FOREACH_SAFE(ap, &rap->addrs, next, apn) {
|
|
lt.tv_sec = ap->prefix_vltime;
|
|
lt.tv_usec = 0;
|
|
timeradd(&rap->received, <, &expire);
|
|
if (timercmp(&now, &expire, >) &&
|
|
ipv6rs_findsameaddr(ap) == NULL)
|
|
{
|
|
syslog(LOG_INFO,
|
|
"%s: %s: expired address",
|
|
ifp->name, ap->saddr);
|
|
TAILQ_REMOVE(&rap->addrs, ap, next);
|
|
free(ap);
|
|
/* No need to delete it as the kernel
|
|
* should have done this. */
|
|
}
|
|
}
|
|
}
|
|
|
|
TAILQ_FOREACH_SAFE(rao, &rap->options, next, raon) {
|
|
if (rap->expired) {
|
|
switch(rao->type) {
|
|
case ND_OPT_RDNSS: /* FALLTHROUGH */
|
|
case ND_OPT_DNSSL:
|
|
/* RFC6018 end of section 5.2 states
|
|
* that if tha RA has a lifetime of 0
|
|
* then we should expire these
|
|
* options */
|
|
TAILQ_REMOVE(&rap->options, rao, next);
|
|
expired = 1;
|
|
free(rao->option);
|
|
free(rao);
|
|
continue;
|
|
}
|
|
}
|
|
if (!timerisset(&rao->expire))
|
|
continue;
|
|
if (timercmp(&now, &rao->expire, >)) {
|
|
/* Expired prefixes are logged above */
|
|
if (rao->type != ND_OPT_PREFIX_INFORMATION)
|
|
syslog(LOG_INFO,
|
|
"%s: %s: expired option %d",
|
|
ifp->name, rap->sfrom, rao->type);
|
|
TAILQ_REMOVE(&rap->options, rao, next);
|
|
expired = 1;
|
|
free(rao->option);
|
|
free(rao);
|
|
continue;
|
|
}
|
|
valid = 1;
|
|
timersub(&rao->expire, &now, <);
|
|
if (!timerisset(&next) || timercmp(&next, <, >))
|
|
next = lt;
|
|
}
|
|
|
|
/* No valid lifetimes are left on the RA, so we might
|
|
* as well punt it. */
|
|
if (!valid)
|
|
ipv6rs_free_ra(rap);
|
|
}
|
|
|
|
if (timerisset(&next))
|
|
eloop_timeout_add_tv(&next, ipv6rs_expire, ifp);
|
|
if (expired) {
|
|
ipv6_buildroutes();
|
|
run_script_reason(ifp, "ROUTERADVERT");
|
|
}
|
|
}
|
|
|
|
int
|
|
ipv6rs_start(struct interface *ifp)
|
|
{
|
|
struct rs_state *state;
|
|
|
|
eloop_timeout_delete(NULL, ifp);
|
|
|
|
state = RS_STATE(ifp);
|
|
if (state == NULL) {
|
|
ifp->if_data[IF_DATA_IPV6RS] = xzalloc(sizeof(*state));
|
|
state = RS_STATE(ifp);
|
|
}
|
|
|
|
/* Always make a new probe as the underlying hardware
|
|
* address could have changed. */
|
|
ipv6rs_makeprobe(ifp);
|
|
if (state->rs == NULL)
|
|
return -1;
|
|
|
|
state->rsprobes = 0;
|
|
ipv6rs_sendprobe(ifp);
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
ipv6rs_drop(struct interface *ifp)
|
|
{
|
|
struct ra *rap, *ran;
|
|
int expired = 0;
|
|
TAILQ_HEAD(, ipv6_addr) addrs;
|
|
|
|
eloop_timeout_delete(NULL, ifp);
|
|
/* We need to drop routes before addresses
|
|
* We do this by moving addresses to a local list, then building
|
|
* the routes and finally adding the addresses back to a RA before
|
|
* dropping it. Which RA the addresses end up on does not matter. */
|
|
TAILQ_INIT(&addrs);
|
|
TAILQ_FOREACH(rap, &ipv6_routers, next) {
|
|
if (rap->iface == ifp) {
|
|
rap->expired = expired = 1;
|
|
TAILQ_CONCAT(&addrs, &rap->addrs, next);
|
|
}
|
|
}
|
|
if (expired) {
|
|
ipv6_buildroutes();
|
|
TAILQ_FOREACH_SAFE(rap, &ipv6_routers, next, ran) {
|
|
if (rap->iface == ifp) {
|
|
TAILQ_CONCAT(&rap->addrs, &addrs, next);
|
|
ipv6rs_drop_ra(rap);
|
|
}
|
|
}
|
|
run_script_reason(ifp, "ROUTERADVERT");
|
|
}
|
|
}
|