Home | History | Annotate | Line # | Download | only in ifconfig
af_inet.c revision 1.14
      1  1.14    dyoung /*	$NetBSD: af_inet.c,v 1.14 2009/09/11 22:06:29 dyoung Exp $	*/
      2   1.1   thorpej 
      3   1.1   thorpej /*
      4   1.1   thorpej  * Copyright (c) 1983, 1993
      5   1.1   thorpej  *      The Regents of the University of California.  All rights reserved.
      6   1.1   thorpej  *
      7   1.1   thorpej  * Redistribution and use in source and binary forms, with or without
      8   1.1   thorpej  * modification, are permitted provided that the following conditions
      9   1.1   thorpej  * are met:
     10   1.1   thorpej  * 1. Redistributions of source code must retain the above copyright
     11   1.1   thorpej  *    notice, this list of conditions and the following disclaimer.
     12   1.1   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1   thorpej  *    notice, this list of conditions and the following disclaimer in the
     14   1.1   thorpej  *    documentation and/or other materials provided with the distribution.
     15   1.1   thorpej  * 3. Neither the name of the University nor the names of its contributors
     16   1.1   thorpej  *    may be used to endorse or promote products derived from this software
     17   1.1   thorpej  *    without specific prior written permission.
     18   1.1   thorpej  *
     19   1.1   thorpej  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20   1.1   thorpej  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21   1.1   thorpej  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22   1.1   thorpej  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23   1.1   thorpej  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24   1.1   thorpej  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25   1.1   thorpej  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26   1.1   thorpej  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27   1.1   thorpej  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28   1.1   thorpej  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29   1.1   thorpej  * SUCH DAMAGE.
     30   1.1   thorpej  */
     31   1.1   thorpej 
     32   1.1   thorpej #include <sys/cdefs.h>
     33   1.1   thorpej #ifndef lint
     34  1.14    dyoung __RCSID("$NetBSD: af_inet.c,v 1.14 2009/09/11 22:06:29 dyoung Exp $");
     35   1.1   thorpej #endif /* not lint */
     36   1.1   thorpej 
     37   1.1   thorpej #include <sys/param.h>
     38   1.1   thorpej #include <sys/ioctl.h>
     39   1.1   thorpej #include <sys/socket.h>
     40   1.1   thorpej 
     41   1.1   thorpej #include <net/if.h>
     42   1.1   thorpej #include <netinet/in.h>
     43   1.1   thorpej #include <netinet/in_var.h>
     44   1.1   thorpej 
     45   1.1   thorpej #include <arpa/inet.h>
     46   1.1   thorpej 
     47   1.6    dyoung #include <assert.h>
     48   1.1   thorpej #include <err.h>
     49   1.1   thorpej #include <errno.h>
     50   1.1   thorpej #include <ifaddrs.h>
     51   1.1   thorpej #include <netdb.h>
     52   1.1   thorpej #include <string.h>
     53   1.1   thorpej #include <stdlib.h>
     54   1.1   thorpej #include <stdio.h>
     55   1.4  christos #include <util.h>
     56   1.1   thorpej 
     57   1.6    dyoung #include "env.h"
     58   1.1   thorpej #include "extern.h"
     59   1.8    dyoung #include "af_inetany.h"
     60   1.1   thorpej 
     61  1.12    dyoung static void in_constructor(void) __attribute__((constructor));
     62  1.12    dyoung static void in_status(prop_dictionary_t, prop_dictionary_t, bool);
     63  1.12    dyoung static void in_commit_address(prop_dictionary_t, prop_dictionary_t);
     64  1.10    dyoung static void in_alias(const char *, prop_dictionary_t, prop_dictionary_t,
     65  1.10    dyoung     struct in_aliasreq *);
     66   1.5    dyoung 
     67  1.12    dyoung static struct afswtch af = {
     68  1.12    dyoung 	.af_name = "inet", .af_af = AF_INET, .af_status = in_status,
     69  1.12    dyoung 	.af_addr_commit = in_commit_address
     70  1.12    dyoung };
     71  1.12    dyoung 
     72  1.11    dyoung static void
     73   1.6    dyoung in_alias(const char *ifname, prop_dictionary_t env, prop_dictionary_t oenv,
     74  1.10    dyoung     struct in_aliasreq *creq)
     75   1.1   thorpej {
     76   1.6    dyoung 	struct ifreq ifr;
     77  1.12    dyoung 	bool alias;
     78  1.12    dyoung 	int s;
     79   1.6    dyoung 	unsigned short flags;
     80   1.6    dyoung 	struct in_aliasreq in_addreq;
     81  1.13    dyoung 	const struct sockaddr_in * const asin = &in_addreq.ifra_addr;
     82  1.13    dyoung 	const struct sockaddr_in * const dsin = &in_addreq.ifra_dstaddr;
     83  1.13    dyoung 	const struct sockaddr_in * const bsin = &in_addreq.ifra_broadaddr;
     84  1.13    dyoung 	char hbuf[NI_MAXHOST];
     85  1.13    dyoung 	const int niflag = Nflag ? 0 : NI_NUMERICHOST;
     86   1.1   thorpej 
     87   1.1   thorpej 	if (lflag)
     88   1.1   thorpej 		return;
     89   1.1   thorpej 
     90  1.12    dyoung 	alias = true;
     91   1.1   thorpej 
     92   1.1   thorpej 	/* Get the non-alias address for this interface. */
     93   1.6    dyoung 	if ((s = getsock(AF_INET)) == -1) {
     94   1.2      tron 		if (errno == EAFNOSUPPORT)
     95   1.1   thorpej 			return;
     96   1.1   thorpej 		err(EXIT_FAILURE, "socket");
     97   1.1   thorpej 	}
     98   1.6    dyoung 	memset(&ifr, 0, sizeof(ifr));
     99   1.6    dyoung 	estrlcpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
    100   1.1   thorpej 	if (ioctl(s, SIOCGIFADDR, &ifr) == -1) {
    101  1.10    dyoung 		if (errno == EADDRNOTAVAIL || errno == EAFNOSUPPORT)
    102   1.1   thorpej 			return;
    103  1.10    dyoung 		warn("SIOCGIFADDR");
    104   1.1   thorpej 	}
    105   1.1   thorpej 	/* If creq and ifr are the same address, this is not an alias. */
    106  1.10    dyoung 	if (memcmp(&ifr.ifr_addr, &creq->ifra_addr, sizeof(ifr.ifr_addr)) == 0)
    107  1.12    dyoung 		alias = false;
    108  1.10    dyoung 	in_addreq = *creq;
    109   1.1   thorpej 	if (ioctl(s, SIOCGIFALIAS, &in_addreq) == -1) {
    110   1.1   thorpej 		if (errno == EADDRNOTAVAIL || errno == EAFNOSUPPORT) {
    111   1.1   thorpej 			return;
    112   1.1   thorpej 		} else
    113   1.1   thorpej 			warn("SIOCGIFALIAS");
    114   1.1   thorpej 	}
    115   1.1   thorpej 
    116  1.13    dyoung 	if (getnameinfo((const struct sockaddr *)asin, asin->sin_len,
    117  1.13    dyoung 			hbuf, sizeof(hbuf), NULL, 0, niflag))
    118  1.13    dyoung 		strlcpy(hbuf, "", sizeof(hbuf));	/* some message? */
    119  1.13    dyoung 	printf("\tinet %s%s", alias ? "alias " : "", hbuf);
    120   1.6    dyoung 
    121   1.6    dyoung 	if (getifflags(env, oenv, &flags) == -1)
    122   1.6    dyoung 		err(EXIT_FAILURE, "%s: getifflags", __func__);
    123   1.1   thorpej 
    124  1.13    dyoung 	if (flags & IFF_POINTOPOINT) {
    125  1.13    dyoung 		if (getnameinfo((const struct sockaddr *)dsin, dsin->sin_len,
    126  1.13    dyoung 				hbuf, sizeof(hbuf), NULL, 0, niflag))
    127  1.13    dyoung 			strlcpy(hbuf, "", sizeof(hbuf)); /* some message? */
    128  1.13    dyoung 		printf(" -> %s", hbuf);
    129  1.13    dyoung 	}
    130   1.1   thorpej 
    131  1.10    dyoung 	printf(" netmask 0x%x", ntohl(in_addreq.ifra_mask.sin_addr.s_addr));
    132   1.1   thorpej 
    133   1.1   thorpej 	if (flags & IFF_BROADCAST) {
    134  1.13    dyoung 		if (getnameinfo((const struct sockaddr *)bsin, bsin->sin_len,
    135  1.13    dyoung 				hbuf, sizeof(hbuf), NULL, 0, niflag))
    136  1.13    dyoung 			strlcpy(hbuf, "", sizeof(hbuf)); /* some message? */
    137  1.13    dyoung 		printf(" broadcast %s", hbuf);
    138   1.1   thorpej 	}
    139   1.5    dyoung }
    140   1.5    dyoung 
    141  1.12    dyoung static void
    142   1.7    dyoung in_status(prop_dictionary_t env, prop_dictionary_t oenv, bool force)
    143   1.1   thorpej {
    144   1.1   thorpej 	struct ifaddrs *ifap, *ifa;
    145  1.10    dyoung 	struct in_aliasreq ifra;
    146  1.14    dyoung 	bool printprefs = false;
    147   1.6    dyoung 	const char *ifname;
    148   1.6    dyoung 
    149   1.6    dyoung 	if ((ifname = getifname(env)) == NULL)
    150   1.6    dyoung 		err(EXIT_FAILURE, "%s: getifname", __func__);
    151   1.1   thorpej 
    152   1.1   thorpej 	if (getifaddrs(&ifap) != 0)
    153   1.1   thorpej 		err(EXIT_FAILURE, "getifaddrs");
    154  1.10    dyoung 
    155  1.14    dyoung 	printprefs = ifa_any_preferences(ifname, ifap, AF_INET);
    156  1.14    dyoung 
    157  1.10    dyoung 	for (ifa = ifap; ifa != NULL; ifa = ifa->ifa_next) {
    158   1.6    dyoung 		if (strcmp(ifname, ifa->ifa_name) != 0)
    159   1.1   thorpej 			continue;
    160   1.1   thorpej 		if (ifa->ifa_addr->sa_family != AF_INET)
    161   1.1   thorpej 			continue;
    162  1.10    dyoung 		if (sizeof(ifra.ifra_addr) < ifa->ifa_addr->sa_len)
    163   1.1   thorpej 			continue;
    164   1.1   thorpej 
    165  1.10    dyoung 		memset(&ifra, 0, sizeof(ifra));
    166  1.10    dyoung 		estrlcpy(ifra.ifra_name, ifa->ifa_name, sizeof(ifra.ifra_name));
    167  1.10    dyoung 		memcpy(&ifra.ifra_addr, ifa->ifa_addr, ifa->ifa_addr->sa_len);
    168  1.10    dyoung 		in_alias(ifa->ifa_name, env, oenv, &ifra);
    169   1.5    dyoung 		if (printprefs)
    170  1.14    dyoung 			ifa_print_preference(ifa->ifa_name, ifa->ifa_addr);
    171   1.5    dyoung 		printf("\n");
    172   1.5    dyoung 	}
    173   1.1   thorpej 	freeifaddrs(ifap);
    174   1.1   thorpej }
    175   1.8    dyoung 
    176  1.12    dyoung static void
    177   1.8    dyoung in_commit_address(prop_dictionary_t env, prop_dictionary_t oenv)
    178   1.8    dyoung {
    179   1.8    dyoung 	struct ifreq in_ifr;
    180   1.8    dyoung 	struct in_aliasreq in_ifra;
    181   1.8    dyoung 	struct afparam inparam = {
    182   1.8    dyoung 		  .req = BUFPARAM(in_ifra)
    183   1.8    dyoung 		, .dgreq = BUFPARAM(in_ifr)
    184   1.8    dyoung 		, .name = {
    185   1.8    dyoung 			  {.buf = in_ifr.ifr_name,
    186   1.8    dyoung 			   .buflen = sizeof(in_ifr.ifr_name)}
    187   1.8    dyoung 			, {.buf = in_ifra.ifra_name,
    188   1.8    dyoung 			   .buflen = sizeof(in_ifra.ifra_name)}
    189   1.8    dyoung 		  }
    190   1.8    dyoung 		, .dgaddr = BUFPARAM(in_ifr.ifr_addr)
    191   1.8    dyoung 		, .addr = BUFPARAM(in_ifra.ifra_addr)
    192   1.8    dyoung 		, .dst = BUFPARAM(in_ifra.ifra_dstaddr)
    193   1.8    dyoung 		, .brd = BUFPARAM(in_ifra.ifra_broadaddr)
    194   1.8    dyoung 		, .mask = BUFPARAM(in_ifra.ifra_mask)
    195   1.8    dyoung 		, .aifaddr = IFADDR_PARAM(SIOCAIFADDR)
    196   1.8    dyoung 		, .difaddr = IFADDR_PARAM(SIOCDIFADDR)
    197   1.8    dyoung 		, .gifaddr = IFADDR_PARAM(SIOCGIFADDR)
    198   1.8    dyoung 		, .defmask = {.buf = NULL, .buflen = 0}
    199   1.8    dyoung 	};
    200   1.9    dyoung 	memset(&in_ifr, 0, sizeof(in_ifr));
    201   1.9    dyoung 	memset(&in_ifra, 0, sizeof(in_ifra));
    202   1.8    dyoung 	commit_address(env, oenv, &inparam);
    203   1.8    dyoung }
    204  1.12    dyoung 
    205  1.12    dyoung static void
    206  1.12    dyoung in_constructor(void)
    207  1.12    dyoung {
    208  1.12    dyoung 	register_family(&af);
    209  1.12    dyoung }
    210