/* SPDX-License-Identifier: BSD-2-Clause */
/*
* BSD interface driver for dhcpcd
* Copyright (c) 2006-2023 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 <sys/stat.h>
#include <sys/sysctl.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/uio.h>
#include <sys/utsname.h>
#include "config.h"
#include <arpa/inet.h>
#include <net/bpf.h>
#include <net/if.h>
#include <net/if_dl.h>
#include <net/if_media.h>
#include <net/route.h>
#include <netinet/if_ether.h>
#include <netinet/in.h>
#include <netinet/in_var.h>
#include <netinet6/in6_var.h>
#include <netinet6/nd6.h>
#ifdef __NetBSD__
#include <net/if_vlanvar.h> /* Needs netinet/if_ether.h */
#elif defined(__DragonFly__)
#include <net/vlan/if_vlan_var.h>
#else
#include <net/if_vlan_var.h>
#endif
#ifdef __DragonFly__
# include <netproto/802_11/ieee80211_ioctl.h>
#else
# include <net80211/ieee80211.h>
# include <net80211/ieee80211_ioctl.h>
#endif
#include <assert.h>
#include <errno.h>
#include <fcntl.h>
#include <fnmatch.h>
#include <paths.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#if defined(OpenBSD) && OpenBSD >= 201411
/* OpenBSD dropped the global setting from sysctl but left the #define
* which causes a EPERM error when trying to use it.
* I think both the error and keeping the define are wrong, so we #undef it. */
#undef IPV6CTL_ACCEPT_RTADV
#endif
#include "common.h"
#include "dhcp.h"
#include "if.h"
#include "if-options.h"
#include "ipv4.h"
#include "ipv4ll.h"
#include "ipv6.h"
#include "ipv6nd.h"
#include "logerr.h"
#include "privsep.h"
#include "route.h"
#include "sa.h"
#ifndef RT_ROUNDUP
#define RT_ROUNDUP(a) \
((a) > 0 ? (1 + (((a) - 1) | (sizeof(long) - 1))) : sizeof(long))
#define RT_ADVANCE(x, n) (x += RT_ROUNDUP((n)->sa_len))
#endif
/* Ignore these interface names which look like ethernet but are virtual or
* just won't work without explicit configuration. */
static const char * const ifnames_ignore[] = {
"bridge",
"epair", /* Virtual patch cable */
"fwe", /* Firewire */
"fwip", /* Firewire */
"tap",
"vether",
"xvif", /* XEN DOM0 -> guest interface */
NULL
};
struct rtm
{
struct rt_msghdr hdr;
char buffer[sizeof(struct sockaddr_storage) * RTAX_MAX];
};
int
os_init(void)
{
return 0;
}
int
if_init(__unused struct interface *iface)
{
/* BSD promotes secondary address by default */
return 0;
}
int
if_conf(__unused struct interface *iface)
{
/* No extra checks needed on BSD */
return 0;
}
int
if_opensockets_os(struct dhcpcd_ctx *ctx)
{
struct priv *priv;
int n;
#if defined(RO_MSGFILTER) || defined(ROUTE_MSGFILTER)
unsigned char msgfilter[] = {
RTM_IFINFO,
#ifdef RTM_IFANNOUNCE
RTM_IFANNOUNCE,
#endif
RTM_ADD, RTM_CHANGE, RTM_DELETE, RTM_MISS,
#ifdef RTM_CHGADDR
RTM_CHGADDR,
#endif
RTM_NEWADDR, RTM_DELADDR
};
#ifdef ROUTE_MSGFILTER
unsigned int i, msgfilter_mask;
#endif
#endif
if ((priv = malloc(sizeof(*priv))) == NULL)
return -1;
ctx->priv = priv;
#ifdef INET6
priv->pf_inet6_fd = xsocket(PF_INET6, SOCK_DGRAM | SOCK_CLOEXEC, 0);
/* Don't return an error so we at least work on kernels witout INET6
* even though we expect INET6 support.
* We will fail noisily elsewhere anyway. */
#ifdef PRIVSEP_RIGHTS
if (priv->pf_inet6_fd != -1 && IN_PRIVSEP(ctx))
ps_rights_limit_ioctl(priv->pf_inet6_fd);
#endif
#endif
ctx->link_fd = xsocket(PF_ROUTE, SOCK_RAW | SOCK_CXNB, AF_UNSPEC);
if (ctx->link_fd == -1)
return -1;
#ifdef SO_RERROR
n = 1;
if (setsockopt(ctx->link_fd, SOL_SOCKET, SO_RERROR, &n,sizeof(n)) == -1)
logerr("%s: SO_RERROR", __func__);
#endif
/* Ignore our own route(4) messages.
* Sadly there is no way of doing this for route(4) messages
* generated from addresses we add/delete. */
n = 0;
if (setsockopt(ctx->link_fd, SOL_SOCKET, SO_USELOOPBACK,
&n, sizeof(n)) == -1)
logerr("%s: SO_USELOOPBACK", __func__);
#if defined(RO_MSGFILTER)
if (setsockopt(ctx->link_fd, PF_ROUTE, RO_MSGFILTER,
&msgfilter, sizeof(msgfilter)) == -1)
logerr(__func__);
#elif defined(ROUTE_MSGFILTER)
/* Convert the array into a bitmask. */
msgfilter_mask = 0;
for (i = 0; i < __arraycount(msgfilter); i++)
msgfilter_mask |= ROUTE_FILTER(msgfilter[i]);
if (setsockopt(ctx->link_fd, PF_ROUTE, ROUTE_MSGFILTER,
&msgfilter_mask, sizeof(msgfilter_mask)) == -1)
logerr(__func__);
#else
#warning kernel does not support route message filtering
#endif
#ifdef PRIVSEP_RIGHTS
/* We need to getsockopt for SO_RCVBUF and
* setsockopt for RO_MISSFILTER. */
if (IN_PRIVSEP(ctx))
ps_rights_limit_fd_sockopt(ctx->link_fd);
#endif
#if defined(SIOCALIFADDR) && defined(IFLR_ACTIVE) /*NetBSD */
priv->pf_link_fd = socket(PF_LINK, SOCK_DGRAM, 0);
if (priv->pf_link_fd == -1)
logerr("%s: socket(PF_LINK)", __func__);
#endif
return 0;
}
void
if_closesockets_os(struct dhcpcd_ctx *ctx)
{
struct priv *priv;
priv = (struct priv *)ctx->priv;
#ifdef INET6
if (priv->pf_inet6_fd != -1)
close(priv->pf_inet6_fd);
#endif
#if defined(SIOCALIFADDR) && defined(IFLR_ACTIVE) /*NetBSD */
if (priv->pf_link_fd != -1)
close(priv->pf_link_fd);
#endif
free(priv);
ctx->priv = NULL;
free(ctx->rt_missfilter);
}
#if defined(SIOCALIFADDR) && defined(IFLR_ACTIVE) /*NetBSD */
static int
if_ioctllink(struct dhcpcd_ctx *ctx, unsigned long req, void *data, size_t len)
{
struct priv *priv = (struct priv *)ctx->priv;
#ifdef PRIVSEP
if (ctx->options & DHCPCD_PRIVSEP)
return (int)ps_root_ioctllink(ctx, req, data, len);
#endif
return ioctl(priv->pf_link_fd, req, data, len);
}
#endif
int
if_setmac(struct interface *ifp, void *mac, uint8_t maclen)
{
if (ifp->hwlen != maclen) {
errno = EINVAL;
return -1;
}
#if defined(SIOCALIFADDR) && defined(IFLR_ACTIVE) /*NetBSD */
struct if_laddrreq iflr = { .flags = IFLR_ACTIVE };
struct sockaddr_dl *sdl = satosdl(&iflr.addr);
int retval;
strlcpy(iflr.iflr_name, ifp->name, sizeof(iflr.iflr_name));
sdl->sdl_family = AF_LINK;
sdl->sdl_len = sizeof(*sdl);
sdl->sdl_alen = maclen;
memcpy(LLADDR(sdl), mac, maclen);
retval = if_ioctllink(ifp->ctx, SIOCALIFADDR, &iflr, sizeof(iflr));
/* Try and remove the old address */
memcpy(LLADDR(sdl), ifp->hwaddr, ifp->hwlen);
if_ioctllink(ifp->ctx, SIOCDLIFADDR, &iflr, sizeof(iflr));
return retval;
#else
struct ifreq ifr = {
.ifr_addr.sa_family = AF_LINK,
.ifr_addr.sa_len = maclen,
};
strlcpy(ifr.ifr_name, ifp->name, sizeof(ifr.ifr_name));
memcpy(ifr.ifr_addr.sa_data, mac, maclen);
return if_ioctl(ifp->ctx, SIOCSIFLLADDR, &ifr, sizeof(ifr));
#endif
}
static bool
if_ignore1(const char *drvname)
{
const char * const *p;
for (p = ifnames_ignore; *p; p++) {
if (strcmp(*p, drvname) == 0)
return true;
}
return false;
}
#ifdef SIOCGIFGROUP
int
if_ignoregroup(int s, const char *ifname)
{
struct ifgroupreq ifgr = { .ifgr_len = 0 };
struct ifg_req *ifg;
size_t ifg_len;
/* Sadly it is possible to remove the device name
* from the interface groups, but hopefully this
* will be very unlikely.... */
strlcpy(ifgr.ifgr_name, ifname, sizeof(ifgr.ifgr_name));
if (ioctl(s, SIOCGIFGROUP, &ifgr) == -1 ||
(ifgr.ifgr_groups = malloc(ifgr.ifgr_len)) == NULL ||
ioctl(s, SIOCGIFGROUP, &ifgr) == -1)
{
logerr(__func__);
return -1;
}
for (ifg = ifgr.ifgr_groups, ifg_len = ifgr.ifgr_len;
ifg && ifg_len >= sizeof(*ifg);
ifg++, ifg_len -= sizeof(*ifg))
{
if (if_ignore1(ifg->ifgrq_group))
return 1;
}
return 0;
}
#endif
bool
if_ignore(struct dhcpcd_ctx *ctx, const char *ifname)
{
struct if_spec spec;
if (if_nametospec(ifname, &spec) != 0)
return false;
if (if_ignore1(spec.drvname))
return true;
#ifdef SIOCGIFGROUP
#if defined(PRIVSEP) && defined(HAVE_PLEDGE)
if (IN_PRIVSEP(ctx))
return ps_root_ifignoregroup(ctx, ifname) == 1 ? true : false;
#endif
else
return if_ignoregroup(ctx->pf_inet_fd, ifname) == 1 ?
true : false;
#else
UNUSED(ctx);
return false;
#endif
}
static int if_indirect_ioctl(struct dhcpcd_ctx *ctx,
const char *ifname, unsigned long cmd, void *data, size_t len)
{
struct ifreq ifr = { .ifr_flags = 0 };
#if defined(PRIVSEP) && (defined(HAVE_CAPSICUM) || defined(HAVE_PLEDGE))
if (IN_PRIVSEP(ctx))
return (int)ps_root_indirectioctl(ctx, cmd, ifname, data, len);
#else
UNUSED(len);
#endif
strlcpy(ifr.ifr_name, ifname, IFNAMSIZ);
ifr.ifr_data = data;
return ioctl(ctx->pf_inet_fd, cmd, &ifr);
}
int
if_carrier(struct interface *ifp, const void *ifadata)
{
const struct if_data *ifi = ifadata;
/*
* Every BSD returns this and it is the sole source of truth.
* Not all BSD's support SIOCGIFDATA and not all interfaces
* support SIOCGIFMEDIA.
*/
assert(ifadata != NULL);
if (ifi->ifi_link_state >= LINK_STATE_UP)
return LINK_UP;
if (ifi->ifi_link_state == LINK_STATE_UNKNOWN) {
/*
* Work around net80211 issues in some BSDs.
* Wireless MUST support link state change.
*/
if (ifp->wireless)
return LINK_DOWN;
return LINK_UNKNOWN;
}
return LINK_DOWN;
}
bool
if_roaming(struct interface *ifp)
{
/* Check for NetBSD as a safety measure.
* If other BSD's gain IN_IFF_TENTATIVE check they re-do DAD
* when the carrier comes up again. */
#if defined(IN_IFF_TENTATIVE) && defined(__NetBSD__)
return ifp->flags & IFF_UP && ifp->carrier == LINK_DOWN;
#else
UNUSED(ifp);
return false;
#endif
}
static void
if_linkaddr(struct sockaddr_dl *sdl, const struct interface *ifp)
{
memset(sdl, 0, sizeof(*sdl));
sdl->sdl_family = AF_LINK;
sdl->sdl_len = sizeof(*sdl);
sdl->sdl_nlen = sdl->sdl_alen = sdl->sdl_slen = 0;
sdl->sdl_index = (unsigned short)ifp->index;
}
static int
if_getssid1(struct dhcpcd_ctx *ctx, const char *ifname, void *ssid)
{
int retval = -1;
#if defined(SIOCG80211NWID)
struct ieee80211_nwid nwid;
#elif defined(IEEE80211_IOC_SSID)
struct ieee80211req ireq;
char nwid[IEEE80211_NWID_LEN];
#endif
#if defined(SIOCG80211NWID) /* NetBSD */
memset(&nwid, 0, sizeof(nwid));
if (if_indirect_ioctl(ctx, ifname, SIOCG80211NWID,
&nwid, sizeof(nwid)) == 0)
{
if (ssid == NULL)
retval = nwid.i_len;
else if (nwid.i_len > IF_SSIDLEN)
errno = ENOBUFS;
else {
retval = nwid.i_len;
memcpy(ssid, nwid.i_nwid, nwid.i_len);
}
}
#elif defined(IEEE80211_IOC_SSID) /* FreeBSD */
memset(&ireq, 0, sizeof(ireq));
strlcpy(ireq.i_name, ifname, sizeof(ireq.i_name));
ireq.i_type = IEEE80211_IOC_SSID;
ireq.i_val = -1;
memset(nwid, 0, sizeof(nwid));
ireq.i_data = &nwid;
if (ioctl(ctx->pf_inet_fd, SIOCG80211, &ireq) == 0) {
if (ssid == NULL)
retval = ireq.i_len;
else if (ireq.i_len > IF_SSIDLEN)
errno = ENOBUFS;
else {
retval = ireq.i_len;
memcpy(ssid, nwid, ireq.i_len);
}
}
#else
errno = ENOSYS;
#endif
return retval;
}
int
if_getssid(struct interface *ifp)
{
int r;
r = if_getssid1(ifp->ctx, ifp->name, ifp->ssid);
if (r != -1)
ifp->ssid_len = (unsigned int)r;
else
ifp->ssid_len = 0;
ifp->ssid[ifp->ssid_len] = '\0';
return r;
}
/*
* FreeBSD allows for Virtual Access Points
* We need to check if the interface is a Virtual Interface Master
* and if so, don't use it.
* This check is made by virtue of being a IEEE80211 device but
* returning the SSID gives an error.
*/
int
if_vimaster(struct dhcpcd_ctx *ctx, const char *ifname)
{
int r;
struct ifmediareq ifmr = { .ifm_active = 0 };
strlcpy(ifmr.ifm_name, ifname, sizeof(ifmr.ifm_name));
r = ioctl(ctx->pf_inet_fd, SIOCGIFMEDIA, &ifmr);
if (r == -1)
return -1;
if (ifmr.ifm_status & IFM_AVALID &&
IFM_TYPE(ifmr.ifm_active) == IFM_IEEE80211)
{
if (if_getssid1(ctx, ifname, NULL) == -1)
return 1;
}
return 0;
}
unsigned short
if_vlanid(const struct interface *ifp)
{
#ifdef SIOCGETVLAN
struct vlanreq vlr = { .vlr_tag = 0 };
if (if_indirect_ioctl(ifp->ctx, ifp->name, SIOCGETVLAN,
&vlr, sizeof(vlr)) != 0)
return 0; /* 0 means no VLANID */
return vlr.vlr_tag;
#elif defined(SIOCGVNETID)
struct ifreq ifr = { .ifr_vnetid = 0 };
strlcpy(ifr.ifr_name, ifp->name, sizeof(ifr.ifr_name));
if (ioctl(ifp->ctx->pf_inet_fd, SIOCGVNETID, &ifr) != 0)
return 0; /* 0 means no VLANID */
return ifr.ifr_vnetid;
#else
UNUSED(ifp);
return 0; /* 0 means no VLANID */
#endif
}
static int
get_addrs(int type, const void *data, size_t data_len,
const struct sockaddr **sa)
{
const char *cp, *ep;
int i;
cp = data;
ep = cp + data_len;
for (i = 0; i < RTAX_MAX; i++) {
if (type & (1 << i)) {
if (cp >= ep) {
errno = EINVAL;
return -1;
}
sa[i] = (const struct sockaddr *)cp;
RT_ADVANCE(cp, sa[i]);
} else
sa[i] = NULL;
}
return 0;
}
static struct interface *
if_findsdl(struct dhcpcd_ctx *ctx, const struct sockaddr_dl *sdl)
{
if (sdl->sdl_index)
return if_findindex(ctx->ifaces, sdl->sdl_index);
if (sdl->sdl_nlen) {
char ifname[IF_NAMESIZE];
memcpy(ifname, sdl->sdl_data, sdl->sdl_nlen);
ifname[sdl->sdl_nlen] = '\0';
return if_find(ctx->ifaces, ifname);
}
if (sdl->sdl_alen) {
struct interface *ifp;
TAILQ_FOREACH(ifp, ctx->ifaces, next) {
if (ifp->hwlen == sdl->sdl_alen &&
memcmp(ifp->hwaddr,
sdl->sdl_data, sdl->sdl_alen) == 0)
return ifp;
}
}
errno = ENOENT;
return NULL;
}
static struct interface *
if_findsa(struct dhcpcd_ctx *ctx, const struct sockaddr *sa)
{
if (sa == NULL) {
errno = EINVAL;
return NULL;
}
switch (sa->sa_family) {
case AF_LINK:
{
const struct sockaddr_dl *sdl;
sdl = (const void *)sa;
return if_findsdl(ctx, sdl);
}
#ifdef INET
case AF_INET:
{
const struct sockaddr_in *sin;
struct ipv4_addr *ia;
sin = (const void *)sa;
if ((ia = ipv4_findmaskaddr(ctx, &sin->sin_addr)))
return ia->iface;
if ((ia = ipv4_findmaskbrd(ctx, &sin->sin_addr)))
return ia->iface;
break;
}
#endif
#ifdef INET6
case AF_INET6:
{
const struct sockaddr_in6 *sin;
unsigned int scope;
struct ipv6_addr *ia;
sin = (const void *)sa;
scope = ipv6_getscope(sin);
if (scope != 0)
return if_findindex(ctx->ifaces, scope);
if ((ia = ipv6_findmaskaddr(ctx, &sin->sin6_addr)))
return ia->iface;
break;
}
#endif
default:
errno = EAFNOSUPPORT;
return NULL;
}
errno = ENOENT;
return NULL;
}
static void
if_copysa(struct sockaddr *dst, const struct sockaddr *src)
{
assert(dst != NULL);
assert(src != NULL);
memcpy(dst, src, src->sa_len);
#if defined(INET6) && defined(__KAME__)
if (dst->sa_family == AF_INET6) {
struct in6_addr *in6;
in6 = &satosin6(dst)->sin6_addr;
if (IN6_IS_ADDR_LINKLOCAL(in6))
in6->s6_addr[2] = in6->s6_addr[3] = '\0';
}
#endif
}
int
if_route(unsigned char cmd, const struct rt *rt)
{
struct dhcpcd_ctx *ctx;
struct rtm rtmsg;
struct rt_msghdr *rtm = &rtmsg.hdr;
char *bp = rtmsg.buffer;
struct sockaddr_dl sdl;
bool gateway_unspec;
assert(rt != NULL);
assert(rt->rt_ifp != NULL);
assert(rt->rt_ifp->ctx != NULL);
ctx = rt->rt_ifp->ctx;
#define ADDSA(sa) do { \
memcpy(bp, (sa), (sa)->sa_len); \
bp += RT_ROUNDUP((sa)->sa_len); \
} while (0 /* CONSTCOND */)
memset(&rtmsg, 0, sizeof(rtmsg));
rtm->rtm_version = RTM_VERSION;
rtm->rtm_type = cmd;
#ifdef __OpenBSD__
rtm->rtm_pid = getpid();
#endif
rtm->rtm_seq = ++ctx->seq;
rtm->rtm_flags = (int)rt->rt_flags;
rtm->rtm_addrs = RTA_DST;
#ifdef RTF_PINNED
if (cmd != RTM_ADD)
rtm->rtm_flags |= RTF_PINNED;
#endif
gateway_unspec = sa_is_unspecified(&rt->rt_gateway);
if (cmd == RTM_ADD || cmd == RTM_CHANGE) {
bool netmask_bcast = sa_is_allones(&rt->rt_netmask);
rtm->rtm_flags |= RTF_UP;
rtm->rtm_addrs |= RTA_GATEWAY;
if (!(rtm->rtm_flags & RTF_REJECT) &&
!sa_is_loopback(&rt->rt_gateway))
{
rtm->rtm_index = (unsigned short)rt->rt_ifp->index;
/*
* OpenBSD rejects the message for on-link routes.
* FreeBSD-12 kernel apparently panics.
* I can't replicate the panic, but better safe than sorry!
* https://roy.marples.name/archives/dhcpcd-discuss/0002286.html
*
* Neither OS currently allows IPv6 address sharing anyway, so let's
* try to encourage someone to fix that by logging a waring during compile.
*/
#if defined(__FreeBSD__) || defined(__OpenBSD__)
#warning kernel does not allow IPv6 address sharing
if (!gateway_unspec || rt->rt_dest.sa_family!=AF_INET6)
#endif
rtm->rtm_addrs |= RTA_IFP;
if (!sa_is_unspecified(&rt->rt_ifa))
rtm->rtm_addrs |= RTA_IFA;
}
if (netmask_bcast)
rtm->rtm_flags |= RTF_HOST;
/* Network routes are cloning or connected if supported.
* All other routes are static. */
if (gateway_unspec) {
#ifdef RTF_CLONING
rtm->rtm_flags |= RTF_CLONING;
#endif
#ifdef RTF_CONNECTED
rtm->rtm_flags |= RTF_CONNECTED;
#endif
#ifdef RTP_CONNECTED
rtm->rtm_priority = RTP_CONNECTED;
#endif
#ifdef RTF_CLONING
if (netmask_bcast) {
/*
* We add a cloning network route for a single
* host. Traffic to the host will generate a
* cloned route and the hardware address will
* resolve correctly.
* It might be more correct to use RTF_HOST
* instead of RTF_CLONING, and that does work,
* but some OS generate an arp warning
* diagnostic which we don't want to do.
*/
rtm->rtm_flags &= ~RTF_HOST;
}
#endif
} else
rtm->rtm_flags |= RTF_GATEWAY;
if (rt->rt_dflags & RTDF_STATIC)
rtm->rtm_flags |= RTF_STATIC;
if (rt->rt_mtu != 0) {
rtm->rtm_inits |= RTV_MTU;
rtm->rtm_rmx.rmx_mtu = rt->rt_mtu;
}
}
if (!(rtm->rtm_flags & RTF_HOST))
rtm->rtm_addrs |= RTA_NETMASK;
if_linkaddr(&sdl, rt->rt_ifp);
ADDSA(&rt->rt_dest);
if (rtm->rtm_addrs & RTA_GATEWAY) {
if (gateway_unspec)
ADDSA((struct sockaddr *)&sdl);
else {
union sa_ss gateway;
if_copysa(&gateway.sa, &rt->rt_gateway);
#ifdef INET6
if (gateway.sa.sa_family == AF_INET6)
ipv6_setscope(&gateway.sin6, rt->rt_ifp->index);
#endif
ADDSA(&gateway.sa);
}
}
if (rtm->rtm_addrs & RTA_NETMASK)
ADDSA(&rt->rt_netmask);
if (rtm->rtm_addrs & RTA_IFP)
ADDSA((struct sockaddr *)&sdl);
if (rtm->rtm_addrs & RTA_IFA)
ADDSA(&rt->rt_ifa);
#undef ADDSA
rtm->rtm_msglen = (unsigned short)(bp - (char *)rtm);
#ifdef PRIVSEP
if (ctx->options & DHCPCD_PRIVSEP) {
if (ps_root_route(ctx, rtm, rtm->rtm_msglen) == -1)
return -1;
return 0;
}
#endif
if (write(ctx->link_fd, rtm, rtm->rtm_msglen) == -1)
return -1;
return 0;
}
static bool
if_realroute(const struct rt_msghdr *rtm)
{
#ifdef RTF_CLONED
if (rtm->rtm_flags & RTF_CLONED)
return false;
#endif
#ifdef RTF_WASCLONED
if (rtm->rtm_flags & RTF_WASCLONED)
return false;
#endif
#ifdef RTF_LOCAL
if (rtm->rtm_flags & RTF_LOCAL)
return false;
#endif
#ifdef RTF_BROADCAST
if (rtm->rtm_flags & RTF_BROADCAST)
return false;
#endif
return true;
}
static int
if_copyrt(struct dhcpcd_ctx *ctx, struct rt *rt, const struct rt_msghdr *rtm)
{
const struct sockaddr *rti_info[RTAX_MAX];
if (!(rtm->rtm_addrs & RTA_DST)) {
errno = EINVAL;
return -1;
}
if (rtm->rtm_type != RTM_MISS && !(rtm->rtm_addrs & RTA_GATEWAY)) {
errno = EINVAL;
return -1;
}
if (get_addrs(rtm->rtm_addrs, (const char *)rtm + sizeof(*rtm),
rtm->rtm_msglen - sizeof(*rtm), rti_info) == -1)
return -1;
memset(rt, 0, sizeof(*rt));
rt->rt_flags = (unsigned int)rtm->rtm_flags;
if_copysa(&rt->rt_dest, rti_info[RTAX_DST]);
if (rtm->rtm_addrs & RTA_NETMASK) {
if_copysa(&rt->rt_netmask, rti_info[RTAX_NETMASK]);
if (rt->rt_netmask.sa_family == 255) /* Why? */
rt->rt_netmask.sa_family = rt->rt_dest.sa_family;
}
/* dhcpcd likes an unspecified gateway to indicate via the link.
* However we need to know if gateway was a link with an address. */
if (rtm->rtm_addrs & RTA_GATEWAY) {
if (rti_info[RTAX_GATEWAY]->sa_family == AF_LINK) {
const struct sockaddr_dl *sdl;
sdl = (const struct sockaddr_dl*)
(const void *)rti_info[RTAX_GATEWAY];
if (sdl->sdl_alen != 0)
rt->rt_dflags |= RTDF_GATELINK;
} else if (rtm->rtm_flags & RTF_GATEWAY)
if_copysa(&rt->rt_gateway, rti_info[RTAX_GATEWAY]);
}
if (rtm->rtm_addrs & RTA_IFA)
if_copysa(&rt->rt_ifa, rti_info[RTAX_IFA]);
rt->rt_mtu = (unsigned int)rtm->rtm_rmx.rmx_mtu;
if (rtm->rtm_index)
rt->rt_ifp = if_findindex(ctx->ifaces, rtm->rtm_index);
else if (rtm->rtm_addrs & RTA_IFP)
rt->rt_ifp = if_findsa(ctx, rti_info[RTAX_IFP]);
else if (rtm->rtm_addrs & RTA_GATEWAY)
rt->rt_ifp = if_findsa(ctx, rti_info[RTAX_GATEWAY]);
else
rt->rt_ifp = if_findsa(ctx, rti_info[RTAX_DST]);
if (rt->rt_ifp == NULL && rtm->rtm_type == RTM_MISS)
rt->rt_ifp = if_find(ctx->ifaces, "lo0");
if (rt->rt_ifp == NULL) {
errno = ESRCH;
return -1;
}
return 0;
}
static int
if_sysctl(struct dhcpcd_ctx *ctx,
const int *name, u_int namelen,
void *oldp, size_t *oldlenp, void *newp, size_t newlen)
{
#if defined(PRIVSEP) && defined(HAVE_CAPSICUM)
if (IN_PRIVSEP(ctx))
return (int)ps_root_sysctl(ctx, name, namelen,
oldp, oldlenp, newp, newlen);
#else
UNUSED(ctx);
#endif
return sysctl(name, namelen, oldp, oldlenp, newp, newlen);
}
int
if_initrt(struct dhcpcd_ctx *ctx, rb_tree_t *kroutes, int af)
{
struct rt_msghdr *rtm;
int mib[6] = { CTL_NET, PF_ROUTE, 0, af, NET_RT_DUMP, 0 };
size_t bufl;
char *buf, *p, *end;
struct rt rt, *rtn;
if (if_sysctl(ctx, mib, __arraycount(mib), NULL, &bufl, NULL, 0) == -1)
return -1;
if (bufl == 0)
return 0;
if ((buf = malloc(bufl)) == NULL)
return -1;
if (if_sysctl(ctx, mib, __arraycount(mib), buf, &bufl, NULL, 0) == -1)
{
free(buf);
return -1;
}
end = buf + bufl;
for (p = buf; p < end; p += rtm->rtm_msglen) {
rtm = (void *)p;
if (p + sizeof(*rtm) > end || p + rtm->rtm_msglen > end) {
errno = EINVAL;
break;
}
if (!if_realroute(rtm))
continue;
if (if_copyrt(ctx, &rt, rtm) != 0)
continue;
if ((rtn = rt_new(rt.rt_ifp)) == NULL) {
logerr(__func__);
break;
}
memcpy(rtn, &rt, sizeof(*rtn));
if (rb_tree_insert_node(kroutes, rtn) != rtn)
rt_free(rtn);
}
free(buf);
return p == end ? 0 : -1;
}
#ifdef INET
int
if_address(unsigned char cmd, const struct ipv4_addr *ia)
{
int r;
struct in_aliasreq ifra;
struct dhcpcd_ctx *ctx = ia->iface->ctx;
memset(&ifra, 0, sizeof(ifra));
strlcpy(ifra.ifra_name, ia->iface->name, sizeof(ifra.ifra_name));
#define ADDADDR(var, addr) do { \
(var)->sin_family = AF_INET; \
(var)->sin_len = sizeof(*(var)); \
(var)->sin_addr = *(addr); \
} while (/*CONSTCOND*/0)
ADDADDR(&ifra.ifra_addr, &ia->addr);
ADDADDR(&ifra.ifra_mask, &ia->mask);
if (cmd == RTM_NEWADDR && ia->brd.s_addr != INADDR_ANY)
ADDADDR(&ifra.ifra_broadaddr, &ia->brd);
#undef ADDADDR
r = if_ioctl(ctx,
cmd == RTM_DELADDR ? SIOCDIFADDR : SIOCAIFADDR, &ifra,sizeof(ifra));
return r;
}
#if !(defined(HAVE_IFADDRS_ADDRFLAGS) && defined(HAVE_IFAM_ADDRFLAGS))
int
if_addrflags(const struct interface *ifp, const struct in_addr *addr,
__unused const char *alias)
{
#ifdef SIOCGIFAFLAG_IN
struct ifreq ifr;
struct sockaddr_in *sin;
memset(&ifr, 0, sizeof(ifr));
strlcpy(ifr.ifr_name, ifp->name, sizeof(ifr.ifr_name));
sin = (void *)&ifr.ifr_addr;
sin->sin_family = AF_INET;
sin->sin_addr = *addr;
if (ioctl(ifp->ctx->pf_inet_fd, SIOCGIFAFLAG_IN, &ifr) == -1)
return -1;
return ifr.ifr_addrflags;
#else
UNUSED(ifp);
UNUSED(addr);
return 0;
#endif
}
#endif
#endif /* INET */
#ifdef INET6
static int
if_ioctl6(struct dhcpcd_ctx *ctx, unsigned long req, void *data, size_t len)
{
struct priv *priv;
#ifdef PRIVSEP
if (ctx->options & DHCPCD_PRIVSEP)
return (int)ps_root_ioctl6(ctx, req, data, len);
#endif
priv = ctx->priv;
return ioctl(priv->pf_inet6_fd, req, data, len);
}
int
if_address6(unsigned char cmd, const struct ipv6_addr *ia)
{
struct in6_aliasreq ifa = { .ifra_flags = 0 };
struct in6_addr mask;
struct dhcpcd_ctx *ctx = ia->iface->ctx;
strlcpy(ifa.ifra_name, ia->iface->name, sizeof(ifa.ifra_name));
#if defined(__FreeBSD__) || defined(__DragonFly__)
/* This is a bug - the kernel should work this out. */
if (ia->addr_flags & IN6_IFF_TENTATIVE)
ifa.ifra_flags |= IN6_IFF_TENTATIVE;
#endif
#if (defined(__NetBSD__) || defined(__OpenBSD__)) && \
(defined(IPV6CTL_ACCEPT_RTADV) || defined(ND6_IFF_ACCEPT_RTADV))
/* These kernels don't accept userland setting IN6_IFF_AUTOCONF */
#else
if (ia->flags & IPV6_AF_AUTOCONF)
ifa.ifra_flags |= IN6_IFF_AUTOCONF;
#endif
#ifdef IPV6_MANAGETEMPADDR
if (ia->flags & IPV6_AF_TEMPORARY)
ifa.ifra_flags |= IN6_IFF_TEMPORARY;
#endif
#define ADDADDR(v, addr) { \
(v)->sin6_family = AF_INET6; \
(v)->sin6_len = sizeof(*v); \
(v)->sin6_addr = *(addr); \
}
ADDADDR(&ifa.ifra_addr, &ia->addr);
ipv6_setscope(&ifa.ifra_addr, ia->iface->index);
ipv6_mask(&mask, ia->prefix_len);
ADDADDR(&ifa.ifra_prefixmask, &mask);
#undef ADDADDR
/*
* Every BSD kernel wants to add the prefix of the address to it's
* list of RA received prefixes.
* THIS IS WRONG because there (as the comments in the kernel state)
* is no API for managing prefix lifetime and the kernel should not
* pretend it's from a RA either.
*
* The issue is that the very first assigned prefix will inherit the
* lifetime of the address, but any subsequent alteration of the
* address OR it's lifetime will not affect the prefix lifetime.
* As such, we cannot stop the prefix from timing out and then
* constantly removing the prefix route dhcpcd is capable of adding
* in it's absense.
*
* What we can do to mitigate the issue is to add the address with
* infinite lifetimes, so the prefix route will never time out.
* Once done, we can then set lifetimes on the address and all is good.
* The downside of this approach is that we need to manually remove
* the kernel route because it has no lifetime, but this is OK as
* dhcpcd will handle this too.
*
* This issue is discussed on the NetBSD mailing lists here:
* http://mail-index.netbsd.org/tech-net/2016/08/05/msg006044.html
*
* Fixed in NetBSD-7.99.36
* NOT fixed in FreeBSD - bug 195197
* Fixed in OpenBSD-5.9
*/
#if !((defined(__NetBSD_Version__) && __NetBSD_Version__ >= 799003600) || \
(defined(__OpenBSD__) && OpenBSD >= 201605))
if (cmd == RTM_NEWADDR && !(ia->flags & IPV6_AF_ADDED)) {
ifa.ifra_lifetime.ia6t_vltime = ND6_INFINITE_LIFETIME;
ifa.ifra_lifetime.ia6t_pltime = ND6_INFINITE_LIFETIME;
(void)if_ioctl6(ctx, SIOCAIFADDR_IN6, &ifa, sizeof(ifa));
}
#endif
#if defined(__OpenBSD__) && OpenBSD <= 201705
/* BUT OpenBSD older than 6.2 does not reset the address lifetime
* for subsequent calls...
* Luckily dhcpcd will remove the lease when it expires so
* just set an infinite lifetime, unless a temporary address. */
if (ifa.ifra_flags & IN6_IFF_PRIVACY) {
ifa.ifra_lifetime.ia6t_vltime = ia->prefix_vltime;
ifa.ifra_lifetime.ia6t_pltime = ia->prefix_pltime;
} else {
ifa.ifra_lifetime.ia6t_vltime = ND6_INFINITE_LIFETIME;
ifa.ifra_lifetime.ia6t_pltime = ND6_INFINITE_LIFETIME;
}
#else
ifa.ifra_lifetime.ia6t_vltime = ia->prefix_vltime;
ifa.ifra_lifetime.ia6t_pltime = ia->prefix_pltime;
#endif
return if_ioctl6(ctx,
cmd == RTM_DELADDR ? SIOCDIFADDR_IN6 : SIOCAIFADDR_IN6,
&ifa, sizeof(ifa));
}
int
if_addrflags6(const struct interface *ifp, const struct in6_addr *addr,
__unused const char *alias)
{
int flags;
struct in6_ifreq ifr6;
struct priv *priv;
memset(&ifr6, 0, sizeof(ifr6));
strlcpy(ifr6.ifr_name, ifp->name, sizeof(ifr6.ifr_name));
ifr6.ifr_addr.sin6_family = AF_INET6;
ifr6.ifr_addr.sin6_addr = *addr;
ipv6_setscope(&ifr6.ifr_addr, ifp->index);
priv = (struct priv *)ifp->ctx->priv;
if (ioctl(priv->pf_inet6_fd, SIOCGIFAFLAG_IN6, &ifr6) != -1)
flags = ifr6.ifr_ifru.ifru_flags6;
else
flags = -1;
return flags;
}
int
if_getlifetime6(struct ipv6_addr *ia)
{
struct in6_ifreq ifr6;
time_t t;
struct in6_addrlifetime *lifetime;
struct priv *priv;
memset(&ifr6, 0, sizeof(ifr6));
strlcpy(ifr6.ifr_name, ia->iface->name, sizeof(ifr6.ifr_name));
ifr6.ifr_addr.sin6_family = AF_INET6;
ifr6.ifr_addr.sin6_addr = ia->addr;
ipv6_setscope(&ifr6.ifr_addr, ia->iface->index);
priv = (struct priv *)ia->iface->ctx->priv;
if (ioctl(priv->pf_inet6_fd, SIOCGIFALIFETIME_IN6, &ifr6) == -1)
return -1;
clock_gettime(CLOCK_MONOTONIC, &ia->created);
#if defined(__FreeBSD__) || defined(__DragonFly__)
t = ia->created.tv_sec;
#else
t = time(NULL);
#endif
lifetime = &ifr6.ifr_ifru.ifru_lifetime;
if (lifetime->ia6t_preferred)
ia->prefix_pltime = (uint32_t)(lifetime->ia6t_preferred -
MIN(t, lifetime->ia6t_preferred));
else
ia->prefix_pltime = ND6_INFINITE_LIFETIME;
if (lifetime->ia6t_expire) {
ia->prefix_vltime = (uint32_t)(lifetime->ia6t_expire -
MIN(t, lifetime->ia6t_expire));
/* Calculate the created time */
ia->created.tv_sec -= lifetime->ia6t_vltime - ia->prefix_vltime;
} else
ia->prefix_vltime = ND6_INFINITE_LIFETIME;
return 0;
}
#endif
static int
if_announce(struct dhcpcd_ctx *ctx, const struct if_announcemsghdr *ifan)
{
if (ifan->ifan_msglen < sizeof(*ifan)) {
errno = EINVAL;
return -1;
}
switch(ifan->ifan_what) {
case IFAN_ARRIVAL:
return dhcpcd_handleinterface(ctx, 1, ifan->ifan_name);
case IFAN_DEPARTURE:
return dhcpcd_handleinterface(ctx, -1, ifan->ifan_name);
}
return 0;
}
static int
if_ifinfo(struct dhcpcd_ctx *ctx, const struct if_msghdr *ifm)
{
struct interface *ifp;
int link_state;
if (ifm->ifm_msglen < sizeof(*ifm)) {
errno = EINVAL;
return -1;
}
if ((ifp = if_findindex(ctx->ifaces, ifm->ifm_index)) == NULL)
return 0;
link_state = if_carrier(ifp, &ifm->ifm_data);
dhcpcd_handlecarrier(ifp, link_state, (unsigned int)ifm->ifm_flags);
return 0;
}
static int
if_rtm(struct dhcpcd_ctx *ctx, const struct rt_msghdr *rtm)
{
struct rt rt;
if (rtm->rtm_msglen < sizeof(*rtm)) {
errno = EINVAL;
return -1;
}
/* Ignore errors. */
if (rtm->rtm_errno != 0)
return 0;
/* Ignore messages from ourself. */
#ifdef PRIVSEP
if (ctx->ps_root != NULL) {
if (rtm->rtm_pid == ctx->ps_root->psp_pid)
return 0;
}
#endif
if (if_copyrt(ctx, &rt, rtm) == -1)
return errno == ENOTSUP ? 0 : -1;
#ifdef INET6
/*
* BSD announces host routes.
* As such, we should be notified of reachability by its
* existance with a hardware address.
* Ensure we don't call this for a newly incomplete state.
*/
if (rt.rt_dest.sa_family == AF_INET6 &&
(rt.rt_flags & RTF_HOST || rtm->rtm_type == RTM_MISS) &&
!(rtm->rtm_type == RTM_ADD && !(rt.rt_dflags & RTDF_GATELINK)))
{
bool reachable;
reachable = (rtm->rtm_type == RTM_ADD ||
rtm->rtm_type == RTM_CHANGE) &&
rt.rt_dflags & RTDF_GATELINK;
ipv6nd_neighbour(ctx, &rt.rt_ss_dest.sin6.sin6_addr, reachable);
}
#endif
if (rtm->rtm_type != RTM_MISS && if_realroute(rtm))
rt_recvrt(rtm->rtm_type, &rt, rtm->rtm_pid);
return 0;
}
static int
if_ifa(struct dhcpcd_ctx *ctx, const struct ifa_msghdr *ifam)
{
struct interface *ifp;
const struct sockaddr *rti_info[RTAX_MAX];
int flags;
pid_t pid;
if (ifam->ifam_msglen < sizeof(*ifam)) {
errno = EINVAL;
return -1;
}
#ifdef HAVE_IFAM_PID
/* Ignore address deletions from ourself.
* We need to process address flag changes though. */
if (ifam->ifam_type == RTM_DELADDR) {
#ifdef PRIVSEP
if (ctx->ps_root != NULL) {
if (ifam->ifam_pid == ctx->ps_root->psp_pid)
return 0;
} else
#endif
/* address management is done via ioctl,
* so SO_USELOOPBACK has no effect,
* so we do need to check the pid. */
if (ifam->ifam_pid == getpid())
return 0;
}
pid = ifam->ifam_pid;
#else
pid = 0;
#endif
if (~ifam->ifam_addrs & RTA_IFA)
return 0;
if ((ifp = if_findindex(ctx->ifaces, ifam->ifam_index)) == NULL)
return 0;
if (get_addrs(ifam->ifam_addrs, (const char *)ifam + sizeof(*ifam),
ifam->ifam_msglen - sizeof(*ifam), rti_info) == -1)
return -1;
switch (rti_info[RTAX_IFA]->sa_family) {
case AF_LINK:
{
struct sockaddr_dl sdl;
#ifdef RTM_CHGADDR
if (ifam->ifam_type != RTM_CHGADDR)
break;
#else
if (ifam->ifam_type != RTM_NEWADDR)
break;
#endif
memcpy(&sdl, rti_info[RTAX_IFA], rti_info[RTAX_IFA]->sa_len);
dhcpcd_handlehwaddr(ifp, ifp->hwtype,
CLLADDR(&sdl), sdl.sdl_alen);
break;
}
#ifdef INET
case AF_INET:
case 255: /* FIXME: Why 255? */
{
const struct sockaddr_in *sin;
struct in_addr addr, mask, bcast;
sin = (const void *)rti_info[RTAX_IFA];
addr.s_addr = sin != NULL && sin->sin_family == AF_INET ?
sin->sin_addr.s_addr : INADDR_ANY;
sin = (const void *)rti_info[RTAX_NETMASK];
mask.s_addr = sin != NULL && sin->sin_family == AF_INET ?
sin->sin_addr.s_addr : INADDR_ANY;
sin = (const void *)rti_info[RTAX_BRD];
bcast.s_addr = sin != NULL && sin->sin_family == AF_INET ?
sin->sin_addr.s_addr : INADDR_ANY;
/*
* NetBSD-7 and older send an invalid broadcast address.
* So we need to query the actual address to get
* the right one.
* We can also use this to test if the address
* has really been added or deleted.
*/
#ifdef SIOCGIFALIAS
struct in_aliasreq ifra;
memset(&ifra, 0, sizeof(ifra));
strlcpy(ifra.ifra_name, ifp->name, sizeof(ifra.ifra_name));
ifra.ifra_addr.sin_family = AF_INET;
ifra.ifra_addr.sin_len = sizeof(ifra.ifra_addr);
ifra.ifra_addr.sin_addr = addr;
if (ioctl(ctx->pf_inet_fd, SIOCGIFALIAS, &ifra) == -1) {
if (errno != ENXIO && errno != EADDRNOTAVAIL)
logerr("%s: SIOCGIFALIAS", __func__);
if (ifam->ifam_type != RTM_DELADDR)
break;
} else {
if (ifam->ifam_type == RTM_DELADDR)
break;
#if defined(__NetBSD_Version__) && __NetBSD_Version__ < 800000000
bcast = ifra.ifra_broadaddr.sin_addr;
#endif
}
#else
#warning No SIOCGIFALIAS support
/*
* No SIOCGIFALIAS? That sucks!
* This makes this call very heavy weight, but we
* really need to know if the message is late or not.
*/
const struct sockaddr *sa;
struct ifaddrs *ifaddrs = NULL, *ifa;
sa = rti_info[RTAX_IFA];
#ifdef PRIVSEP_GETIFADDRS
if (IN_PRIVSEP(ctx)) {
if (ps_root_getifaddrs(ctx, &ifaddrs) == -1) {
logerr("ps_root_getifaddrs");
break;
}
} else
#endif
if (getifaddrs(&ifaddrs) == -1) {
logerr("getifaddrs");
break;
}
for (ifa = ifaddrs; ifa; ifa = ifa->ifa_next) {
if (ifa->ifa_addr == NULL)
continue;
if (sa_cmp(ifa->ifa_addr, sa) == 0 &&
strcmp(ifa->ifa_name, ifp->name) == 0)
break;
}
#ifdef PRIVSEP_GETIFADDRS
if (IN_PRIVSEP(ctx))
free(ifaddrs);
else
#endif
freeifaddrs(ifaddrs);
if (ifam->ifam_type == RTM_DELADDR) {
if (ifa != NULL)
break;
} else {
if (ifa == NULL)
break;
}
#endif
#ifdef HAVE_IFAM_ADDRFLAGS
flags = ifam->ifam_addrflags;
#else
flags = 0;
#endif
ipv4_handleifa(ctx, ifam->ifam_type, NULL, ifp->name,
&addr, &mask, &bcast, flags, pid);
break;
}
#endif
#ifdef INET6
case AF_INET6:
{
struct in6_addr addr6, mask6;
const struct sockaddr_in6 *sin6;
sin6 = (const void *)rti_info[RTAX_IFA];
addr6 = sin6->sin6_addr;
sin6 = (const void *)rti_info[RTAX_NETMASK];
mask6 = sin6->sin6_addr;
/*
* If the address was deleted, lets check if it's
* a late message and it still exists (maybe modified).
* If so, ignore it as deleting an address causes
* dhcpcd to drop any lease to which it belongs.
* Also check an added address was really added.
*/
flags = if_addrflags6(ifp, &addr6, NULL);
if (flags == -1) {
if (errno != ENXIO && errno != EADDRNOTAVAIL)
logerr("%s: if_addrflags6", __func__);
if (ifam->ifam_type != RTM_DELADDR)
break;
flags = 0;
} else if (ifam->ifam_type == RTM_DELADDR)
break;
#ifdef __KAME__
if (IN6_IS_ADDR_LINKLOCAL(&addr6))
/* Remove the scope from the address */
addr6.s6_addr[2] = addr6.s6_addr[3] = '\0';
#endif
ipv6_handleifa(ctx, ifam->ifam_type, NULL,
ifp->name, &addr6, ipv6_prefixlen(&mask6), flags, pid);
break;
}
#endif
}
return 0;
}
static int
if_dispatch(struct dhcpcd_ctx *ctx, const struct rt_msghdr *rtm)
{
if (rtm->rtm_version != RTM_VERSION)
return 0;
switch(rtm->rtm_type) {
#ifdef RTM_IFANNOUNCE
case RTM_IFANNOUNCE:
return if_announce(ctx, (const void *)rtm);
#endif
case RTM_IFINFO:
return if_ifinfo(ctx, (const void *)rtm);
case RTM_ADD: /* FALLTHROUGH */
case RTM_CHANGE: /* FALLTHROUGH */
case RTM_DELETE: /* FALLTHROUGH */
case RTM_MISS:
return if_rtm(ctx, (const void *)rtm);
#ifdef RTM_CHGADDR
case RTM_CHGADDR: /* FALLTHROUGH */
#endif
case RTM_DELADDR: /* FALLTHROUGH */
case RTM_NEWADDR:
return if_ifa(ctx, (const void *)rtm);
#ifdef RTM_DESYNC
case RTM_DESYNC:
dhcpcd_linkoverflow(ctx);
#elif !defined(SO_RERROR)
#warning cannot detect route socket overflow within kernel
#endif
}
return 0;
}
static int
if_missfilter0(struct dhcpcd_ctx *ctx, struct interface *ifp,
struct sockaddr *sa)
{
size_t salen = (size_t)RT_ROUNDUP(sa->sa_len);
size_t newlen = ctx->rt_missfilterlen + salen;
size_t diff = salen - (sa->sa_len);
uint8_t *cp;
if (ctx->rt_missfiltersize < newlen) {
void *n = realloc(ctx->rt_missfilter, newlen);
if (n == NULL)
return -1;
ctx->rt_missfilter = n;
ctx->rt_missfiltersize = newlen;
}
#ifdef INET6
if (sa->sa_family == AF_INET6)
ipv6_setscope(satosin6(sa), ifp->index);
#else
UNUSED(ifp);
#endif
cp = ctx->rt_missfilter + ctx->rt_missfilterlen;
memcpy(cp, sa, sa->sa_len);
if (diff != 0)
memset(cp + sa->sa_len, 0, diff);
ctx->rt_missfilterlen += salen;
#ifdef INET6
if (sa->sa_family == AF_INET6)
ipv6_setscope(satosin6(sa), 0);
#endif
return 0;
}
int
if_missfilter(struct interface *ifp, struct sockaddr *sa)
{
return if_missfilter0(ifp->ctx, ifp, sa);
}
int
if_missfilter_apply(struct dhcpcd_ctx *ctx)
{
#ifdef RO_MISSFILTER
if (ctx->rt_missfilterlen == 0) {
struct sockaddr sa = {
.sa_family = AF_UNSPEC,
.sa_len = sizeof(sa),
};
if (if_missfilter0(ctx, NULL, &sa) == -1)
return -1;
}
return setsockopt(ctx->link_fd, PF_ROUTE, RO_MISSFILTER,
ctx->rt_missfilter, (socklen_t)ctx->rt_missfilterlen);
#else
#warning kernel does not support RTM_MISS DST filtering
UNUSED(ctx);
errno = ENOTSUP;
return -1;
#endif
}
__CTASSERT(offsetof(struct rt_msghdr, rtm_msglen) == 0);
int
if_handlelink(struct dhcpcd_ctx *ctx)
{
struct rtm rtm;
ssize_t len;
len = read(ctx->link_fd, &rtm, sizeof(rtm));
if (len == -1)
return -1;
if (len == 0)
return 0;
if ((size_t)len < sizeof(rtm.hdr.rtm_msglen) ||
len != rtm.hdr.rtm_msglen)
{
errno = EINVAL;
return -1;
}
/*
* Coverity thinks that the data could be tainted from here.
* I have no idea how because the length of the data we read
* is guarded by len and checked to match rtm_msglen.
* The issue seems to be related to extracting the addresses
* at the end of the header, but seems to have no issues with the
* equivalent call in if_initrt.
*/
/* coverity[tainted_data] */
return if_dispatch(ctx, &rtm.hdr);
}
#ifndef SYS_NMLN /* OSX */
# define SYS_NMLN __SYS_NAMELEN
#endif
#ifndef HW_MACHINE_ARCH
# ifdef HW_MODEL /* OpenBSD */
# define HW_MACHINE_ARCH HW_MODEL
# endif
#endif
int
if_machinearch(char *str, size_t len)
{
int mib[2] = { CTL_HW, HW_MACHINE_ARCH };
return sysctl(mib, sizeof(mib) / sizeof(mib[0]), str, &len, NULL, 0);
}
#ifdef INET6
#if (defined(IPV6CTL_ACCEPT_RTADV) && !defined(ND6_IFF_ACCEPT_RTADV)) || \
defined(IPV6CTL_FORWARDING)
#define get_inet6_sysctl(code) inet6_sysctl(code, 0, 0)
#define set_inet6_sysctl(code, val) inet6_sysctl(code, val, 1)
static int
inet6_sysctl(int code, int val, int action)
{
int mib[] = { CTL_NET, PF_INET6, IPPROTO_IPV6, 0 };
size_t size;
mib[3] = code;
size = sizeof(val);
if (action) {
if (sysctl(mib, __arraycount(mib), NULL, 0, &val, size) == -1)
return -1;
return 0;
}
if (sysctl(mib, __arraycount(mib), &val, &size, NULL, 0) == -1)
return -1;
return val;
}
#endif
int
if_applyra(const struct ra *rap)
{
#ifdef SIOCSIFINFO_IN6
struct in6_ndireq nd = { .ndi.chlim = 0 };
struct dhcpcd_ctx *ctx = rap->iface->ctx;
int error;
strlcpy(nd.ifname, rap->iface->name, sizeof(nd.ifname));
#ifdef IPV6CTL_ACCEPT_RTADV
struct priv *priv = ctx->priv;
/*
* NetBSD changed SIOCSIFINFO_IN6 to NOT set flags when kernel
* RA was removed, however both FreeBSD and DragonFlyBSD still do.
* linkmtu was also removed.
* Hopefully this guard will still work if either remove kernel RA.
*/
if (ioctl(priv->pf_inet6_fd, SIOCGIFINFO_IN6, &nd, sizeof(nd)) == -1)
return -1;
nd.ndi.linkmtu = rap->mtu;
#endif
nd.ndi.chlim = rap->hoplimit;
nd.ndi.retrans = rap->retrans;
nd.ndi.basereachable = rap->reachable;
error = if_ioctl6(ctx, SIOCSIFINFO_IN6, &nd, sizeof(nd));
#ifdef IPV6CTL_ACCEPT_RTADV
if (error == -1 && errno == EINVAL) {
/*
* Very likely that this is caused by a dodgy MTU
* setting specific to the interface.
* Let's set it to "unspecified" and try again.
* Doesn't really matter as we fix the MTU against the
* routes we add as not all OS support SIOCSIFINFO_IN6.
*/
nd.ndi.linkmtu = 0;
error = if_ioctl6(ctx, SIOCSIFINFO_IN6, &nd, sizeof(nd));
}
#endif
return error;
#else
#warning OS does not allow setting of RA bits hoplimit, retrans or reachable
UNUSED(rap);
return 0;
#endif
}
#ifndef IPV6CTL_FORWARDING
#define get_inet6_sysctlbyname(code) inet6_sysctlbyname(code, 0, 0)
#define set_inet6_sysctlbyname(code, val) inet6_sysctlbyname(code, val, 1)
static int
inet6_sysctlbyname(const char *name, int val, int action)
{
size_t size;
size = sizeof(val);
if (action) {
if (sysctlbyname(name, NULL, 0, &val, size) == -1)
return -1;
return 0;
}
if (sysctlbyname(name, &val, &size, NULL, 0) == -1)
return -1;
return val;
}
#endif
int
ip6_forwarding(__unused const char *ifname)
{
int val;
#ifdef IPV6CTL_FORWARDING
val = get_inet6_sysctl(IPV6CTL_FORWARDING);
#else
val = get_inet6_sysctlbyname("net.inet6.ip6.forwarding");
#endif
return val < 0 ? 0 : val;
}
#ifdef SIOCIFAFATTACH
static int
if_af_attach(const struct interface *ifp, int af)
{
struct if_afreq ifar;
strlcpy(ifar.ifar_name, ifp->name, sizeof(ifar.ifar_name));
ifar.ifar_af = af;
return if_ioctl6(ifp->ctx, SIOCIFAFATTACH, &ifar, sizeof(ifar));
}
#endif
#ifdef SIOCGIFXFLAGS
static int
if_set_ifxflags(const struct interface *ifp)
{
struct ifreq ifr;
int flags;
struct priv *priv = ifp->ctx->priv;
strlcpy(ifr.ifr_name, ifp->name, sizeof(ifr.ifr_name));
if (ioctl(priv->pf_inet6_fd, SIOCGIFXFLAGS, &ifr) == -1)
return -1;
flags = ifr.ifr_flags;
#ifdef IFXF_NOINET6
flags &= ~IFXF_NOINET6;
#endif
/*
* If not doing autoconf, don't disable the kernel from doing it.
* If we need to, we should have another option actively disable it.
*
* OpenBSD moved from kernel based SLAAC to userland via slaacd(8).
* It has a similar featureset to dhcpcd such as stable private
* addresses, but lacks the ability to handle DNS inside the RA
* which is a serious shortfall in this day and age.
* Appease their user base by working alongside slaacd(8) if
* dhcpcd is instructed not to do auto configuration of addresses.
*/
#if defined(ND6_IFF_ACCEPT_RTADV)
#define BSD_AUTOCONF DHCPCD_IPV6RS
#else
#define BSD_AUTOCONF DHCPCD_IPV6RA_AUTOCONF
#endif
if (ifp->options->options & BSD_AUTOCONF)
flags &= ~IFXF_AUTOCONF6;
if (ifr.ifr_flags == flags)
return 0;
ifr.ifr_flags = flags;
return if_ioctl6(ifp->ctx, SIOCSIFXFLAGS, &ifr, sizeof(ifr));
}
#endif
/* OpenBSD removed ND6 flags entirely, so we need to check for their
* existance. */
#if defined(ND6_IFF_AUTO_LINKLOCAL) || \
defined(ND6_IFF_PERFORMNUD) || \
defined(ND6_IFF_ACCEPT_RTADV) || \
defined(ND6_IFF_OVERRIDE_RTADV) || \
defined(ND6_IFF_IFDISABLED)
#define ND6_NDI_FLAGS
#endif
void
if_disable_rtadv(void)
{
#if defined(IPV6CTL_ACCEPT_RTADV) && !defined(ND6_IFF_ACCEPT_RTADV)
int ra = get_inet6_sysctl(IPV6CTL_ACCEPT_RTADV);
if (ra == -1) {
if (errno != ENOENT)
logerr("IPV6CTL_ACCEPT_RTADV");
else if (ra != 0)
if (set_inet6_sysctl(IPV6CTL_ACCEPT_RTADV, 0) == -1)
logerr("IPV6CTL_ACCEPT_RTADV");
}
#endif
}
void
if_setup_inet6(const struct interface *ifp)
{
struct priv *priv;
int s;
#ifdef ND6_NDI_FLAGS
struct in6_ndireq nd;
int flags;
#endif
priv = (struct priv *)ifp->ctx->priv;
s = priv->pf_inet6_fd;
#ifdef ND6_NDI_FLAGS
memset(&nd, 0, sizeof(nd));
strlcpy(nd.ifname, ifp->name, sizeof(nd.ifname));
if (ioctl(s, SIOCGIFINFO_IN6, &nd) == -1)
logerr("%s: SIOCGIFINFO_FLAGS", ifp->name);
flags = (int)nd.ndi.flags;
#endif
#ifdef ND6_IFF_AUTO_LINKLOCAL
/* Unlike the kernel, dhcpcd make make a stable private address. */
flags &= ~ND6_IFF_AUTO_LINKLOCAL;
#endif
#ifdef ND6_IFF_PERFORMNUD
/* NUD is kind of essential. */
flags |= ND6_IFF_PERFORMNUD;
#endif
#ifdef ND6_IFF_IFDISABLED
/* Ensure the interface is not disabled. */
flags &= ~ND6_IFF_IFDISABLED;
#endif
/*
* If not doing autoconf, don't disable the kernel from doing it.
* If we need to, we should have another option actively disable it.
*/
#ifdef ND6_IFF_ACCEPT_RTADV
if (ifp->options->options & DHCPCD_IPV6RS)
flags &= ~ND6_IFF_ACCEPT_RTADV;
#ifdef ND6_IFF_OVERRIDE_RTADV
if (ifp->options->options & DHCPCD_IPV6RS)
flags |= ND6_IFF_OVERRIDE_RTADV;
#endif
#endif
#ifdef ND6_NDI_FLAGS
if (nd.ndi.flags != (uint32_t)flags) {
nd.ndi.flags = (uint32_t)flags;
if (if_ioctl6(ifp->ctx, SIOCSIFINFO_FLAGS,
&nd, sizeof(nd)) == -1)
logerr("%s: SIOCSIFINFO_FLAGS", ifp->name);
}
#endif
/* Enabling IPv6 by whatever means must be the
* last action undertaken to ensure kernel RS and
* LLADDR auto configuration are disabled where applicable. */
#ifdef SIOCIFAFATTACH
if (if_af_attach(ifp, AF_INET6) == -1)
logerr("%s: if_af_attach", ifp->name);
#endif
#ifdef SIOCGIFXFLAGS
if (if_set_ifxflags(ifp) == -1)
logerr("%s: set_ifxflags", ifp->name);
#endif
#ifdef SIOCSRTRFLUSH_IN6
/* Flush the kernel knowledge of advertised routers
* and prefixes so the kernel does not expire prefixes
* and default routes we are trying to own. */
if (ifp->options->options & DHCPCD_IPV6RS) {
struct in6_ifreq ifr;
memset(&ifr, 0, sizeof(ifr));
strlcpy(ifr.ifr_name, ifp->name, sizeof(ifr.ifr_name));
if (if_ioctl6(ifp->ctx, SIOCSRTRFLUSH_IN6,
&ifr, sizeof(ifr)) == -1 &&
errno != ENOTSUP && errno != ENOTTY)
logwarn("SIOCSRTRFLUSH_IN6 %d", errno);
#ifdef SIOCSPFXFLUSH_IN6
if (if_ioctl6(ifp->ctx, SIOCSPFXFLUSH_IN6,
&ifr, sizeof(ifr)) == -1 &&
errno != ENOTSUP && errno != ENOTTY)
logwarn("SIOCSPFXFLUSH_IN6");
#endif
}
#endif
}
#endif