2017-11-20 19:49:47 +00:00
|
|
|
/*-
|
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*
|
2004-12-08 19:18:07 +00:00
|
|
|
* Copyright (c) 1983, 1993
|
|
|
|
* The Regents of the University of California. 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.
|
2017-02-28 23:42:47 +00:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
2004-12-08 19:18:07 +00:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lint
|
|
|
|
static const char rcsid[] =
|
|
|
|
"$FreeBSD$";
|
|
|
|
#endif /* not lint */
|
|
|
|
|
2015-05-11 04:54:56 +00:00
|
|
|
#include <sys/param.h>
|
2004-12-08 19:18:07 +00:00
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <net/if.h>
|
|
|
|
|
2010-01-14 15:27:18 +00:00
|
|
|
#include <ctype.h>
|
2004-12-08 19:18:07 +00:00
|
|
|
#include <err.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2007-02-24 23:55:46 +00:00
|
|
|
#include <ifaddrs.h>
|
2004-12-08 19:18:07 +00:00
|
|
|
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/in_var.h>
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
|
|
|
|
#include "ifconfig.h"
|
|
|
|
|
2009-04-15 20:53:34 +00:00
|
|
|
static struct in_aliasreq in_addreq;
|
2004-12-08 19:18:07 +00:00
|
|
|
static struct ifreq in_ridreq;
|
2016-06-02 03:16:02 +00:00
|
|
|
static char addr_buf[NI_MAXHOST]; /*for getnameinfo()*/
|
2016-05-31 17:30:08 +00:00
|
|
|
extern char *f_inet, *f_addr;
|
2004-12-08 19:18:07 +00:00
|
|
|
|
|
|
|
static void
|
2007-02-24 23:55:46 +00:00
|
|
|
in_status(int s __unused, const struct ifaddrs *ifa)
|
2004-12-08 19:18:07 +00:00
|
|
|
{
|
|
|
|
struct sockaddr_in *sin, null_sin;
|
2016-05-31 17:30:08 +00:00
|
|
|
int error, n_flags;
|
2004-12-08 19:18:07 +00:00
|
|
|
|
|
|
|
memset(&null_sin, 0, sizeof(null_sin));
|
|
|
|
|
2007-02-24 23:55:46 +00:00
|
|
|
sin = (struct sockaddr_in *)ifa->ifa_addr;
|
2004-12-08 19:18:07 +00:00
|
|
|
if (sin == NULL)
|
|
|
|
return;
|
|
|
|
|
2016-05-31 17:30:08 +00:00
|
|
|
if (f_addr != NULL && strcmp(f_addr, "fqdn") == 0)
|
|
|
|
n_flags = 0;
|
|
|
|
else if (f_addr != NULL && strcmp(f_addr, "host") == 0)
|
|
|
|
n_flags = NI_NOFQDN;
|
|
|
|
else
|
|
|
|
n_flags = NI_NUMERICHOST;
|
|
|
|
|
|
|
|
error = getnameinfo((struct sockaddr *)sin, sin->sin_len, addr_buf,
|
|
|
|
sizeof(addr_buf), NULL, 0, n_flags);
|
|
|
|
|
|
|
|
if (error)
|
|
|
|
inet_ntop(AF_INET, &sin->sin_addr, addr_buf, sizeof(addr_buf));
|
|
|
|
|
|
|
|
printf("\tinet %s", addr_buf);
|
2004-12-08 19:18:07 +00:00
|
|
|
|
2007-02-24 23:55:46 +00:00
|
|
|
if (ifa->ifa_flags & IFF_POINTOPOINT) {
|
|
|
|
sin = (struct sockaddr_in *)ifa->ifa_dstaddr;
|
|
|
|
if (sin == NULL)
|
2004-12-08 19:18:07 +00:00
|
|
|
sin = &null_sin;
|
2016-10-09 03:20:58 +00:00
|
|
|
printf(" --> %s", inet_ntoa(sin->sin_addr));
|
2004-12-08 19:18:07 +00:00
|
|
|
}
|
|
|
|
|
2007-02-24 23:55:46 +00:00
|
|
|
sin = (struct sockaddr_in *)ifa->ifa_netmask;
|
|
|
|
if (sin == NULL)
|
2004-12-08 19:18:07 +00:00
|
|
|
sin = &null_sin;
|
2016-05-31 17:30:08 +00:00
|
|
|
if (f_inet != NULL && strcmp(f_inet, "cidr") == 0) {
|
|
|
|
int cidr = 32;
|
|
|
|
unsigned long smask;
|
|
|
|
|
|
|
|
smask = ntohl(sin->sin_addr.s_addr);
|
|
|
|
while ((smask & 1) == 0) {
|
|
|
|
smask = smask >> 1;
|
|
|
|
cidr--;
|
|
|
|
if (cidr == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
printf("/%d ", cidr);
|
|
|
|
} else if (f_inet != NULL && strcmp(f_inet, "dotted") == 0)
|
|
|
|
printf(" netmask %s ", inet_ntoa(sin->sin_addr));
|
|
|
|
else
|
|
|
|
printf(" netmask 0x%lx ", (unsigned long)ntohl(sin->sin_addr.s_addr));
|
2004-12-08 19:18:07 +00:00
|
|
|
|
2007-02-24 23:55:46 +00:00
|
|
|
if (ifa->ifa_flags & IFF_BROADCAST) {
|
|
|
|
sin = (struct sockaddr_in *)ifa->ifa_broadaddr;
|
|
|
|
if (sin != NULL && sin->sin_addr.s_addr != 0)
|
A major overhaul of the CARP implementation. The ip_carp.c was started
from scratch, copying needed functionality from the old implemenation
on demand, with a thorough review of all code. The main change is that
interface layer has been removed from the CARP. Now redundant addresses
are configured exactly on the interfaces, they run on.
The CARP configuration itself is, as before, configured and read via
SIOCSVH/SIOCGVH ioctls. A new prefix created with SIOCAIFADDR or
SIOCAIFADDR_IN6 may now be configured to a particular virtual host id,
which makes the prefix redundant.
ifconfig(8) semantics has been changed too: now one doesn't need
to clone carpXX interface, he/she should directly configure a vhid
on a Ethernet interface.
To supply vhid data from the kernel to an application the getifaddrs(8)
function had been changed to pass ifam_data with each address. [1]
The new implementation definitely closes all PRs related to carp(4)
being an interface, and may close several others. It also allows
to run a single redundant IP per interface.
Big thanks to Bjoern Zeeb for his help with inet6 part of patch, for
idea on using ifam_data and for several rounds of reviewing!
PR: kern/117000, kern/126945, kern/126714, kern/120130, kern/117448
Reviewed by: bz
Submitted by: bz [1]
2011-12-16 12:16:56 +00:00
|
|
|
printf("broadcast %s ", inet_ntoa(sin->sin_addr));
|
2004-12-08 19:18:07 +00:00
|
|
|
}
|
A major overhaul of the CARP implementation. The ip_carp.c was started
from scratch, copying needed functionality from the old implemenation
on demand, with a thorough review of all code. The main change is that
interface layer has been removed from the CARP. Now redundant addresses
are configured exactly on the interfaces, they run on.
The CARP configuration itself is, as before, configured and read via
SIOCSVH/SIOCGVH ioctls. A new prefix created with SIOCAIFADDR or
SIOCAIFADDR_IN6 may now be configured to a particular virtual host id,
which makes the prefix redundant.
ifconfig(8) semantics has been changed too: now one doesn't need
to clone carpXX interface, he/she should directly configure a vhid
on a Ethernet interface.
To supply vhid data from the kernel to an application the getifaddrs(8)
function had been changed to pass ifam_data with each address. [1]
The new implementation definitely closes all PRs related to carp(4)
being an interface, and may close several others. It also allows
to run a single redundant IP per interface.
Big thanks to Bjoern Zeeb for his help with inet6 part of patch, for
idea on using ifam_data and for several rounds of reviewing!
PR: kern/117000, kern/126945, kern/126714, kern/120130, kern/117448
Reviewed by: bz
Submitted by: bz [1]
2011-12-16 12:16:56 +00:00
|
|
|
|
|
|
|
print_vhid(ifa, " ");
|
|
|
|
|
2004-12-08 19:18:07 +00:00
|
|
|
putchar('\n');
|
|
|
|
}
|
|
|
|
|
|
|
|
#define SIN(x) ((struct sockaddr_in *) &(x))
|
|
|
|
static struct sockaddr_in *sintab[] = {
|
|
|
|
SIN(in_ridreq.ifr_addr), SIN(in_addreq.ifra_addr),
|
|
|
|
SIN(in_addreq.ifra_mask), SIN(in_addreq.ifra_broadaddr)
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
in_getaddr(const char *s, int which)
|
|
|
|
{
|
|
|
|
struct sockaddr_in *sin = sintab[which];
|
|
|
|
struct hostent *hp;
|
|
|
|
struct netent *np;
|
|
|
|
|
|
|
|
sin->sin_len = sizeof(*sin);
|
2011-11-19 19:06:08 +00:00
|
|
|
sin->sin_family = AF_INET;
|
2004-12-08 19:18:07 +00:00
|
|
|
|
|
|
|
if (which == ADDR) {
|
|
|
|
char *p = NULL;
|
|
|
|
|
|
|
|
if((p = strrchr(s, '/')) != NULL) {
|
2010-01-14 15:27:18 +00:00
|
|
|
const char *errstr;
|
2004-12-08 19:18:07 +00:00
|
|
|
/* address is `name/masklen' */
|
|
|
|
int masklen;
|
|
|
|
struct sockaddr_in *min = sintab[MASK];
|
|
|
|
*p = '\0';
|
2010-01-14 15:27:18 +00:00
|
|
|
if (!isdigit(*(p + 1)))
|
|
|
|
errstr = "invalid";
|
|
|
|
else
|
|
|
|
masklen = (int)strtonum(p + 1, 0, 32, &errstr);
|
|
|
|
if (errstr != NULL) {
|
2004-12-08 19:18:07 +00:00
|
|
|
*p = '/';
|
2010-01-14 15:27:18 +00:00
|
|
|
errx(1, "%s: bad value (width %s)", s, errstr);
|
2004-12-08 19:18:07 +00:00
|
|
|
}
|
2011-12-16 13:30:17 +00:00
|
|
|
min->sin_family = AF_INET;
|
2004-12-08 19:18:07 +00:00
|
|
|
min->sin_len = sizeof(*min);
|
|
|
|
min->sin_addr.s_addr = htonl(~((1LL << (32 - masklen)) - 1) &
|
|
|
|
0xffffffff);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (inet_aton(s, &sin->sin_addr))
|
|
|
|
return;
|
2016-04-18 14:12:42 +00:00
|
|
|
if ((hp = gethostbyname(s)) != NULL)
|
2004-12-08 19:18:07 +00:00
|
|
|
bcopy(hp->h_addr, (char *)&sin->sin_addr,
|
2009-06-23 23:49:52 +00:00
|
|
|
MIN((size_t)hp->h_length, sizeof(sin->sin_addr)));
|
2016-04-18 14:12:42 +00:00
|
|
|
else if ((np = getnetbyname(s)) != NULL)
|
2004-12-08 19:18:07 +00:00
|
|
|
sin->sin_addr = inet_makeaddr(np->n_net, INADDR_ANY);
|
|
|
|
else
|
|
|
|
errx(1, "%s: bad value", s);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
in_status_tunnel(int s)
|
|
|
|
{
|
|
|
|
char src[NI_MAXHOST];
|
|
|
|
char dst[NI_MAXHOST];
|
|
|
|
struct ifreq ifr;
|
|
|
|
const struct sockaddr *sa = (const struct sockaddr *) &ifr.ifr_addr;
|
|
|
|
|
|
|
|
memset(&ifr, 0, sizeof(ifr));
|
Use strlcpy() instead of strncpy() when copying ifname to ensure
that it is NUL terminated. Additional NUL padding is not required
for short names.
Use sizeof(destination) in a few places instead of IFNAMSIZ.
Cast afp->af_ridreq and afp->af_addreq to make the intent of
the code more obvious.
Reported by: Coverity
CID: 1009628, 1009630, 1009631, 1009632, 1009633, 1009635, 1009638
CID: 1009639, 1009640, 1009641, 1009642, 1009643, 1009644, 1009645
CID: 1009646, 1009647, 1010049, 1010050, 1010051, 1010052, 1010053
CID: 1010054, 1011293, 1011294, 1011295, 1011296, 1011297, 1011298
CID: 1011299, 1305821, 1351720, 1351721
MFC after: 1 week
2016-05-16 00:25:24 +00:00
|
|
|
strlcpy(ifr.ifr_name, name, IFNAMSIZ);
|
2004-12-08 19:18:07 +00:00
|
|
|
|
|
|
|
if (ioctl(s, SIOCGIFPSRCADDR, (caddr_t)&ifr) < 0)
|
|
|
|
return;
|
2005-06-16 19:37:09 +00:00
|
|
|
if (sa->sa_family != AF_INET)
|
|
|
|
return;
|
2004-12-08 19:18:07 +00:00
|
|
|
if (getnameinfo(sa, sa->sa_len, src, sizeof(src), 0, 0, NI_NUMERICHOST) != 0)
|
|
|
|
src[0] = '\0';
|
|
|
|
|
|
|
|
if (ioctl(s, SIOCGIFPDSTADDR, (caddr_t)&ifr) < 0)
|
|
|
|
return;
|
2005-06-16 19:37:09 +00:00
|
|
|
if (sa->sa_family != AF_INET)
|
|
|
|
return;
|
2004-12-08 19:18:07 +00:00
|
|
|
if (getnameinfo(sa, sa->sa_len, dst, sizeof(dst), 0, 0, NI_NUMERICHOST) != 0)
|
|
|
|
dst[0] = '\0';
|
|
|
|
|
|
|
|
printf("\ttunnel inet %s --> %s\n", src, dst);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
in_set_tunnel(int s, struct addrinfo *srcres, struct addrinfo *dstres)
|
|
|
|
{
|
2009-04-15 20:53:34 +00:00
|
|
|
struct in_aliasreq addreq;
|
2004-12-08 19:18:07 +00:00
|
|
|
|
|
|
|
memset(&addreq, 0, sizeof(addreq));
|
Use strlcpy() instead of strncpy() when copying ifname to ensure
that it is NUL terminated. Additional NUL padding is not required
for short names.
Use sizeof(destination) in a few places instead of IFNAMSIZ.
Cast afp->af_ridreq and afp->af_addreq to make the intent of
the code more obvious.
Reported by: Coverity
CID: 1009628, 1009630, 1009631, 1009632, 1009633, 1009635, 1009638
CID: 1009639, 1009640, 1009641, 1009642, 1009643, 1009644, 1009645
CID: 1009646, 1009647, 1010049, 1010050, 1010051, 1010052, 1010053
CID: 1010054, 1011293, 1011294, 1011295, 1011296, 1011297, 1011298
CID: 1011299, 1305821, 1351720, 1351721
MFC after: 1 week
2016-05-16 00:25:24 +00:00
|
|
|
strlcpy(addreq.ifra_name, name, IFNAMSIZ);
|
2004-12-08 19:18:07 +00:00
|
|
|
memcpy(&addreq.ifra_addr, srcres->ai_addr, srcres->ai_addr->sa_len);
|
|
|
|
memcpy(&addreq.ifra_dstaddr, dstres->ai_addr, dstres->ai_addr->sa_len);
|
|
|
|
|
|
|
|
if (ioctl(s, SIOCSIFPHYADDR, &addreq) < 0)
|
|
|
|
warn("SIOCSIFPHYADDR");
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct afswtch af_inet = {
|
|
|
|
.af_name = "inet",
|
|
|
|
.af_af = AF_INET,
|
|
|
|
.af_status = in_status,
|
|
|
|
.af_getaddr = in_getaddr,
|
|
|
|
.af_status_tunnel = in_status_tunnel,
|
|
|
|
.af_settunnel = in_set_tunnel,
|
|
|
|
.af_difaddr = SIOCDIFADDR,
|
|
|
|
.af_aifaddr = SIOCAIFADDR,
|
|
|
|
.af_ridreq = &in_ridreq,
|
|
|
|
.af_addreq = &in_addreq,
|
|
|
|
};
|
|
|
|
|
|
|
|
static __constructor void
|
|
|
|
inet_ctor(void)
|
|
|
|
{
|
2011-07-18 10:29:16 +00:00
|
|
|
|
|
|
|
#ifndef RESCUE
|
2011-05-31 14:40:21 +00:00
|
|
|
if (!feature_present("inet"))
|
|
|
|
return;
|
2011-07-18 10:29:16 +00:00
|
|
|
#endif
|
2004-12-08 19:18:07 +00:00
|
|
|
af_register(&af_inet);
|
|
|
|
}
|