af_inet.c revision 282747
1138593Ssam/*
2138593Ssam * Copyright (c) 1983, 1993
3138593Ssam *	The Regents of the University of California.  All rights reserved.
4138593Ssam *
5138593Ssam * Redistribution and use in source and binary forms, with or without
6138593Ssam * modification, are permitted provided that the following conditions
7138593Ssam * are met:
8138593Ssam * 1. Redistributions of source code must retain the above copyright
9138593Ssam *    notice, this list of conditions and the following disclaimer.
10138593Ssam * 2. Redistributions in binary form must reproduce the above copyright
11138593Ssam *    notice, this list of conditions and the following disclaimer in the
12138593Ssam *    documentation and/or other materials provided with the distribution.
13138593Ssam * 4. Neither the name of the University nor the names of its contributors
14138593Ssam *    may be used to endorse or promote products derived from this software
15138593Ssam *    without specific prior written permission.
16138593Ssam *
17138593Ssam * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18138593Ssam * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19138593Ssam * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20138593Ssam * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21138593Ssam * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22138593Ssam * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23138593Ssam * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24138593Ssam * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25138593Ssam * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26138593Ssam * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27138593Ssam * SUCH DAMAGE.
28138593Ssam */
29138593Ssam
30138593Ssam#ifndef lint
31138593Ssamstatic const char rcsid[] =
32138593Ssam  "$FreeBSD: head/sbin/ifconfig/af_inet.c 282747 2015-05-11 04:54:56Z ngie $";
33138593Ssam#endif /* not lint */
34138593Ssam
35282747Sngie#include <sys/param.h>
36138593Ssam#include <sys/ioctl.h>
37138593Ssam#include <sys/socket.h>
38138593Ssam#include <net/if.h>
39138593Ssam
40202289Semaste#include <ctype.h>
41138593Ssam#include <err.h>
42138593Ssam#include <stdio.h>
43138593Ssam#include <stdlib.h>
44138593Ssam#include <string.h>
45138593Ssam#include <unistd.h>
46166956Ssam#include <ifaddrs.h>
47138593Ssam
48138593Ssam#include <netinet/in.h>
49138593Ssam#include <netinet/in_var.h>
50138593Ssam#include <arpa/inet.h>
51138593Ssam#include <netdb.h>
52138593Ssam
53138593Ssam#include "ifconfig.h"
54138593Ssam
55191121Sbrooksstatic struct in_aliasreq in_addreq;
56138593Ssamstatic struct ifreq in_ridreq;
57138593Ssam
58138593Ssamstatic void
59166956Ssamin_status(int s __unused, const struct ifaddrs *ifa)
60138593Ssam{
61138593Ssam	struct sockaddr_in *sin, null_sin;
62138593Ssam
63138593Ssam	memset(&null_sin, 0, sizeof(null_sin));
64138593Ssam
65166956Ssam	sin = (struct sockaddr_in *)ifa->ifa_addr;
66138593Ssam	if (sin == NULL)
67138593Ssam		return;
68138593Ssam
69138593Ssam	printf("\tinet %s ", inet_ntoa(sin->sin_addr));
70138593Ssam
71166956Ssam	if (ifa->ifa_flags & IFF_POINTOPOINT) {
72166956Ssam		sin = (struct sockaddr_in *)ifa->ifa_dstaddr;
73166956Ssam		if (sin == NULL)
74138593Ssam			sin = &null_sin;
75138593Ssam		printf("--> %s ", inet_ntoa(sin->sin_addr));
76138593Ssam	}
77138593Ssam
78166956Ssam	sin = (struct sockaddr_in *)ifa->ifa_netmask;
79166956Ssam	if (sin == NULL)
80138593Ssam		sin = &null_sin;
81138593Ssam	printf("netmask 0x%lx ", (unsigned long)ntohl(sin->sin_addr.s_addr));
82138593Ssam
83166956Ssam	if (ifa->ifa_flags & IFF_BROADCAST) {
84166956Ssam		sin = (struct sockaddr_in *)ifa->ifa_broadaddr;
85166956Ssam		if (sin != NULL && sin->sin_addr.s_addr != 0)
86228571Sglebius			printf("broadcast %s ", inet_ntoa(sin->sin_addr));
87138593Ssam	}
88228571Sglebius
89228571Sglebius	print_vhid(ifa, " ");
90228571Sglebius
91138593Ssam	putchar('\n');
92138593Ssam}
93138593Ssam
94138593Ssam#define SIN(x) ((struct sockaddr_in *) &(x))
95138593Ssamstatic struct sockaddr_in *sintab[] = {
96138593Ssam	SIN(in_ridreq.ifr_addr), SIN(in_addreq.ifra_addr),
97138593Ssam	SIN(in_addreq.ifra_mask), SIN(in_addreq.ifra_broadaddr)
98138593Ssam};
99138593Ssam
100138593Ssamstatic void
101138593Ssamin_getaddr(const char *s, int which)
102138593Ssam{
103138593Ssam	struct sockaddr_in *sin = sintab[which];
104138593Ssam	struct hostent *hp;
105138593Ssam	struct netent *np;
106138593Ssam
107138593Ssam	sin->sin_len = sizeof(*sin);
108227738Sglebius	sin->sin_family = AF_INET;
109138593Ssam
110138593Ssam	if (which == ADDR) {
111138593Ssam		char *p = NULL;
112138593Ssam
113138593Ssam		if((p = strrchr(s, '/')) != NULL) {
114202289Semaste			const char *errstr;
115138593Ssam			/* address is `name/masklen' */
116138593Ssam			int masklen;
117138593Ssam			struct sockaddr_in *min = sintab[MASK];
118138593Ssam			*p = '\0';
119202289Semaste			if (!isdigit(*(p + 1)))
120202289Semaste				errstr = "invalid";
121202289Semaste			else
122202289Semaste				masklen = (int)strtonum(p + 1, 0, 32, &errstr);
123202289Semaste			if (errstr != NULL) {
124138593Ssam				*p = '/';
125202289Semaste				errx(1, "%s: bad value (width %s)", s, errstr);
126138593Ssam			}
127228574Sglebius			min->sin_family = AF_INET;
128138593Ssam			min->sin_len = sizeof(*min);
129138593Ssam			min->sin_addr.s_addr = htonl(~((1LL << (32 - masklen)) - 1) &
130138593Ssam				              0xffffffff);
131138593Ssam		}
132138593Ssam	}
133138593Ssam
134138593Ssam	if (inet_aton(s, &sin->sin_addr))
135138593Ssam		return;
136138593Ssam	if ((hp = gethostbyname(s)) != 0)
137138593Ssam		bcopy(hp->h_addr, (char *)&sin->sin_addr,
138194799Sdelphij		    MIN((size_t)hp->h_length, sizeof(sin->sin_addr)));
139138593Ssam	else if ((np = getnetbyname(s)) != 0)
140138593Ssam		sin->sin_addr = inet_makeaddr(np->n_net, INADDR_ANY);
141138593Ssam	else
142138593Ssam		errx(1, "%s: bad value", s);
143138593Ssam}
144138593Ssam
145138593Ssamstatic void
146138593Ssamin_status_tunnel(int s)
147138593Ssam{
148138593Ssam	char src[NI_MAXHOST];
149138593Ssam	char dst[NI_MAXHOST];
150138593Ssam	struct ifreq ifr;
151138593Ssam	const struct sockaddr *sa = (const struct sockaddr *) &ifr.ifr_addr;
152138593Ssam
153138593Ssam	memset(&ifr, 0, sizeof(ifr));
154138593Ssam	strncpy(ifr.ifr_name, name, IFNAMSIZ);
155138593Ssam
156138593Ssam	if (ioctl(s, SIOCGIFPSRCADDR, (caddr_t)&ifr) < 0)
157138593Ssam		return;
158147437Sume	if (sa->sa_family != AF_INET)
159147437Sume		return;
160138593Ssam	if (getnameinfo(sa, sa->sa_len, src, sizeof(src), 0, 0, NI_NUMERICHOST) != 0)
161138593Ssam		src[0] = '\0';
162138593Ssam
163138593Ssam	if (ioctl(s, SIOCGIFPDSTADDR, (caddr_t)&ifr) < 0)
164138593Ssam		return;
165147437Sume	if (sa->sa_family != AF_INET)
166147437Sume		return;
167138593Ssam	if (getnameinfo(sa, sa->sa_len, dst, sizeof(dst), 0, 0, NI_NUMERICHOST) != 0)
168138593Ssam		dst[0] = '\0';
169138593Ssam
170138593Ssam	printf("\ttunnel inet %s --> %s\n", src, dst);
171138593Ssam}
172138593Ssam
173138593Ssamstatic void
174138593Ssamin_set_tunnel(int s, struct addrinfo *srcres, struct addrinfo *dstres)
175138593Ssam{
176191121Sbrooks	struct in_aliasreq addreq;
177138593Ssam
178138593Ssam	memset(&addreq, 0, sizeof(addreq));
179138593Ssam	strncpy(addreq.ifra_name, name, IFNAMSIZ);
180138593Ssam	memcpy(&addreq.ifra_addr, srcres->ai_addr, srcres->ai_addr->sa_len);
181138593Ssam	memcpy(&addreq.ifra_dstaddr, dstres->ai_addr, dstres->ai_addr->sa_len);
182138593Ssam
183138593Ssam	if (ioctl(s, SIOCSIFPHYADDR, &addreq) < 0)
184138593Ssam		warn("SIOCSIFPHYADDR");
185138593Ssam}
186138593Ssam
187138593Ssamstatic struct afswtch af_inet = {
188138593Ssam	.af_name	= "inet",
189138593Ssam	.af_af		= AF_INET,
190138593Ssam	.af_status	= in_status,
191138593Ssam	.af_getaddr	= in_getaddr,
192138593Ssam	.af_status_tunnel = in_status_tunnel,
193138593Ssam	.af_settunnel	= in_set_tunnel,
194138593Ssam	.af_difaddr	= SIOCDIFADDR,
195138593Ssam	.af_aifaddr	= SIOCAIFADDR,
196138593Ssam	.af_ridreq	= &in_ridreq,
197138593Ssam	.af_addreq	= &in_addreq,
198138593Ssam};
199138593Ssam
200138593Ssamstatic __constructor void
201138593Ssaminet_ctor(void)
202138593Ssam{
203224179Sbz
204224179Sbz#ifndef RESCUE
205222527Sbz	if (!feature_present("inet"))
206222527Sbz		return;
207224179Sbz#endif
208138593Ssam	af_register(&af_inet);
209138593Ssam}
210