Home | History | Annotate | Line # | Download | only in ifconfig
af_inet.c revision 1.6
      1  1.6    dyoung /*	$NetBSD: af_inet.c,v 1.6 2008/05/06 04:33:42 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.6    dyoung __RCSID("$NetBSD: af_inet.c,v 1.6 2008/05/06 04:33:42 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.1   thorpej #include "af_inet.h"
     60  1.1   thorpej 
     61  1.5    dyoung static void in_preference(const char *, const struct sockaddr *);
     62  1.5    dyoung 
     63  1.1   thorpej void
     64  1.6    dyoung in_alias(const char *ifname, prop_dictionary_t env, prop_dictionary_t oenv,
     65  1.6    dyoung     struct ifreq *creq)
     66  1.1   thorpej {
     67  1.6    dyoung 	struct sockaddr_in *sin;
     68  1.6    dyoung 	struct ifreq ifr;
     69  1.6    dyoung 	int alias, s;
     70  1.6    dyoung 	unsigned short flags;
     71  1.6    dyoung 	struct in_aliasreq in_addreq;
     72  1.1   thorpej 
     73  1.1   thorpej 	if (lflag)
     74  1.1   thorpej 		return;
     75  1.1   thorpej 
     76  1.1   thorpej 	alias = 1;
     77  1.1   thorpej 
     78  1.1   thorpej 	/* Get the non-alias address for this interface. */
     79  1.6    dyoung 	if ((s = getsock(AF_INET)) == -1) {
     80  1.2      tron 		if (errno == EAFNOSUPPORT)
     81  1.1   thorpej 			return;
     82  1.1   thorpej 		err(EXIT_FAILURE, "socket");
     83  1.1   thorpej 	}
     84  1.6    dyoung 	memset(&ifr, 0, sizeof(ifr));
     85  1.6    dyoung 	estrlcpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
     86  1.1   thorpej 	if (ioctl(s, SIOCGIFADDR, &ifr) == -1) {
     87  1.1   thorpej 		if (errno == EADDRNOTAVAIL || errno == EAFNOSUPPORT) {
     88  1.1   thorpej 			return;
     89  1.1   thorpej 		} else
     90  1.1   thorpej 			warn("SIOCGIFADDR");
     91  1.1   thorpej 	}
     92  1.1   thorpej 	/* If creq and ifr are the same address, this is not an alias. */
     93  1.6    dyoung 	if (memcmp(&ifr.ifr_addr, &creq->ifr_addr, sizeof(creq->ifr_addr)) == 0)
     94  1.1   thorpej 		alias = 0;
     95  1.6    dyoung 	memset(&in_addreq, 0, sizeof(in_addreq));
     96  1.6    dyoung 	estrlcpy(in_addreq.ifra_name, ifname, sizeof(in_addreq.ifra_name));
     97  1.1   thorpej 	memcpy(&in_addreq.ifra_addr, &creq->ifr_addr,
     98  1.1   thorpej 	    sizeof(in_addreq.ifra_addr));
     99  1.1   thorpej 	if (ioctl(s, SIOCGIFALIAS, &in_addreq) == -1) {
    100  1.1   thorpej 		if (errno == EADDRNOTAVAIL || errno == EAFNOSUPPORT) {
    101  1.1   thorpej 			return;
    102  1.1   thorpej 		} else
    103  1.1   thorpej 			warn("SIOCGIFALIAS");
    104  1.1   thorpej 	}
    105  1.1   thorpej 
    106  1.6    dyoung 	sin = &in_addreq.ifra_addr;
    107  1.6    dyoung 	printf("\tinet %s%s", alias ? "alias " : "", inet_ntoa(sin->sin_addr));
    108  1.6    dyoung 
    109  1.6    dyoung 	if (getifflags(env, oenv, &flags) == -1)
    110  1.6    dyoung 		err(EXIT_FAILURE, "%s: getifflags", __func__);
    111  1.1   thorpej 
    112  1.1   thorpej 	if (flags & IFF_POINTOPOINT) {
    113  1.6    dyoung 		sin = &in_addreq.ifra_dstaddr;
    114  1.6    dyoung 		printf(" -> %s", inet_ntoa(sin->sin_addr));
    115  1.1   thorpej 	}
    116  1.1   thorpej 
    117  1.6    dyoung 	sin = &in_addreq.ifra_mask;
    118  1.6    dyoung 	printf(" netmask 0x%x", ntohl(sin->sin_addr.s_addr));
    119  1.1   thorpej 
    120  1.1   thorpej 	if (flags & IFF_BROADCAST) {
    121  1.6    dyoung 		sin = &in_addreq.ifra_broadaddr;
    122  1.6    dyoung 		printf(" broadcast %s", inet_ntoa(sin->sin_addr));
    123  1.1   thorpej 	}
    124  1.5    dyoung }
    125  1.5    dyoung 
    126  1.5    dyoung static uint16_t
    127  1.5    dyoung in_get_preference(const char *ifname, const struct sockaddr *sa)
    128  1.5    dyoung {
    129  1.5    dyoung 	struct if_addrprefreq ifap;
    130  1.6    dyoung 	int s;
    131  1.5    dyoung 
    132  1.6    dyoung 	if ((s = getsock(AF_INET)) == -1) {
    133  1.5    dyoung 		if (errno == EPROTONOSUPPORT)
    134  1.5    dyoung 			return 0;
    135  1.5    dyoung 		err(EXIT_FAILURE, "socket");
    136  1.5    dyoung 	}
    137  1.6    dyoung 	memset(&ifap, 0, sizeof(ifap));
    138  1.6    dyoung 	strncpy(ifap.ifap_name, ifname, sizeof(ifap.ifap_name));
    139  1.6    dyoung 	memcpy(&ifap.ifap_addr, sa, MIN(sizeof(ifap.ifap_addr), sa->sa_len));
    140  1.5    dyoung 	if (ioctl(s, SIOCGIFADDRPREF, &ifap) == -1) {
    141  1.5    dyoung 		if (errno == EADDRNOTAVAIL || errno == EAFNOSUPPORT)
    142  1.5    dyoung 			return 0;
    143  1.5    dyoung 		warn("SIOCGIFADDRPREF");
    144  1.5    dyoung 	}
    145  1.5    dyoung 	return ifap.ifap_preference;
    146  1.5    dyoung }
    147  1.5    dyoung 
    148  1.5    dyoung static void
    149  1.5    dyoung in_preference(const char *ifname, const struct sockaddr *sa)
    150  1.5    dyoung {
    151  1.5    dyoung 	uint16_t preference;
    152  1.5    dyoung 
    153  1.5    dyoung 	if (lflag)
    154  1.5    dyoung 		return;
    155  1.5    dyoung 
    156  1.5    dyoung 	preference = in_get_preference(ifname, sa);
    157  1.5    dyoung 	printf(" preference %" PRIu16, preference);
    158  1.1   thorpej }
    159  1.1   thorpej 
    160  1.1   thorpej void
    161  1.6    dyoung in_status(prop_dictionary_t env, prop_dictionary_t oenv, int force)
    162  1.1   thorpej {
    163  1.1   thorpej 	struct ifaddrs *ifap, *ifa;
    164  1.6    dyoung 	struct ifreq ifr;
    165  1.5    dyoung 	int printprefs = 0;
    166  1.6    dyoung 	const char *ifname;
    167  1.6    dyoung 
    168  1.6    dyoung 	if ((ifname = getifname(env)) == NULL)
    169  1.6    dyoung 		err(EXIT_FAILURE, "%s: getifname", __func__);
    170  1.1   thorpej 
    171  1.1   thorpej 	if (getifaddrs(&ifap) != 0)
    172  1.1   thorpej 		err(EXIT_FAILURE, "getifaddrs");
    173  1.5    dyoung 	/* Print address preference numbers if any address has a non-zero
    174  1.5    dyoung 	 * preference assigned.
    175  1.5    dyoung 	 */
    176  1.5    dyoung 	for (ifa = ifap; ifa; ifa = ifa->ifa_next) {
    177  1.6    dyoung 		if (strcmp(ifname, ifa->ifa_name) != 0)
    178  1.5    dyoung 			continue;
    179  1.5    dyoung 		if (ifa->ifa_addr->sa_family != AF_INET)
    180  1.5    dyoung 			continue;
    181  1.5    dyoung 		if (in_get_preference(ifa->ifa_name, ifa->ifa_addr) != 0) {
    182  1.5    dyoung 			printprefs = 1;
    183  1.5    dyoung 			break;
    184  1.5    dyoung 		}
    185  1.5    dyoung 	}
    186  1.1   thorpej 	for (ifa = ifap; ifa; ifa = ifa->ifa_next) {
    187  1.6    dyoung 		if (strcmp(ifname, ifa->ifa_name) != 0)
    188  1.1   thorpej 			continue;
    189  1.1   thorpej 		if (ifa->ifa_addr->sa_family != AF_INET)
    190  1.1   thorpej 			continue;
    191  1.6    dyoung 		if (sizeof(ifr.ifr_addr) < ifa->ifa_addr->sa_len)
    192  1.1   thorpej 			continue;
    193  1.1   thorpej 
    194  1.6    dyoung 		memset(&ifr, 0, sizeof(ifr));
    195  1.6    dyoung 		estrlcpy(ifr.ifr_name, ifa->ifa_name, sizeof(ifr.ifr_name));
    196  1.6    dyoung 		memcpy(&ifr.ifr_addr, ifa->ifa_addr, ifa->ifa_addr->sa_len);
    197  1.6    dyoung 		in_alias(ifa->ifa_name, env, oenv, &ifr);
    198  1.5    dyoung 		if (printprefs)
    199  1.5    dyoung 			in_preference(ifa->ifa_name, ifa->ifa_addr);
    200  1.5    dyoung 		printf("\n");
    201  1.5    dyoung 	}
    202  1.5    dyoung 	if (ifa != NULL) {
    203  1.5    dyoung 		for (ifa = ifap; ifa; ifa = ifa->ifa_next) {
    204  1.6    dyoung 			if (strcmp(ifname, ifa->ifa_name) != 0)
    205  1.5    dyoung 				continue;
    206  1.5    dyoung 			if (ifa->ifa_addr->sa_family != AF_INET)
    207  1.5    dyoung 				continue;
    208  1.5    dyoung 		}
    209  1.1   thorpej 	}
    210  1.1   thorpej 	freeifaddrs(ifap);
    211  1.1   thorpej }
    212