1 /* 2 * Copyright (c) 1983, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 4. Neither the name of the University nor the names of its contributors 14 * may be used to endorse or promote products derived from this software 15 * without specific prior written permission. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27 * SUCH DAMAGE. 28 */ 29 30 #ifndef lint 31 static const char rcsid[] = 32 "$FreeBSD$"; 33 #endif /* not lint */ 34 35 #include <sys/types.h> 36 #include <sys/ioctl.h> 37 #include <sys/socket.h> 38 #include <net/if.h> 39 40 #include <ctype.h> 41 #include <err.h> 42 #include <stdio.h> 43 #include <stdlib.h> 44 #include <string.h> 45 #include <unistd.h> 46 #include <ifaddrs.h> 47 48 #include <netinet/in.h> 49 #include <net/if_var.h> /* for struct ifaddr */ 50 #include <netinet/in_var.h> 51 #include <arpa/inet.h> 52 #include <netdb.h> 53 54 #include "ifconfig.h" 55 56 static struct in_aliasreq in_addreq; 57 static struct ifreq in_ridreq; 58 59 static void 60 in_status(int s __unused, const struct ifaddrs *ifa) 61 { 62 struct sockaddr_in *sin, null_sin; 63 64 memset(&null_sin, 0, sizeof(null_sin)); 65 66 sin = (struct sockaddr_in *)ifa->ifa_addr; 67 if (sin == NULL) 68 return; 69 70 printf("\tinet %s ", inet_ntoa(sin->sin_addr)); 71 72 if (ifa->ifa_flags & IFF_POINTOPOINT) { 73 sin = (struct sockaddr_in *)ifa->ifa_dstaddr; 74 if (sin == NULL) 75 sin = &null_sin; 76 printf("--> %s ", inet_ntoa(sin->sin_addr)); 77 } 78 79 sin = (struct sockaddr_in *)ifa->ifa_netmask; 80 if (sin == NULL) 81 sin = &null_sin; 82 printf("netmask 0x%lx ", (unsigned long)ntohl(sin->sin_addr.s_addr)); 83 84 if (ifa->ifa_flags & IFF_BROADCAST) { 85 sin = (struct sockaddr_in *)ifa->ifa_broadaddr; 86 if (sin != NULL && sin->sin_addr.s_addr != 0) 87 printf("broadcast %s ", inet_ntoa(sin->sin_addr)); 88 } 89 90 print_vhid(ifa, " "); 91 92 putchar('\n'); 93 } 94 95 #define SIN(x) ((struct sockaddr_in *) &(x)) 96 static struct sockaddr_in *sintab[] = { 97 SIN(in_ridreq.ifr_addr), SIN(in_addreq.ifra_addr), 98 SIN(in_addreq.ifra_mask), SIN(in_addreq.ifra_broadaddr) 99 }; 100 101 static void 102 in_getaddr(const char *s, int which) 103 { 104 #define MIN(a,b) ((a)<(b)?(a):(b)) 105 struct sockaddr_in *sin = sintab[which]; 106 struct hostent *hp; 107 struct netent *np; 108 109 sin->sin_len = sizeof(*sin); 110 sin->sin_family = AF_INET; 111 112 if (which == ADDR) { 113 char *p = NULL; 114 115 if((p = strrchr(s, '/')) != NULL) { 116 const char *errstr; 117 /* address is `name/masklen' */ 118 int masklen; 119 struct sockaddr_in *min = sintab[MASK]; 120 *p = '\0'; 121 if (!isdigit(*(p + 1))) 122 errstr = "invalid"; 123 else 124 masklen = (int)strtonum(p + 1, 0, 32, &errstr); 125 if (errstr != NULL) { 126 *p = '/'; 127 errx(1, "%s: bad value (width %s)", s, errstr); 128 } 129 min->sin_family = AF_INET; 130 min->sin_len = sizeof(*min); 131 min->sin_addr.s_addr = htonl(~((1LL << (32 - masklen)) - 1) & 132 0xffffffff); 133 } 134 } 135 136 if (inet_aton(s, &sin->sin_addr)) 137 return; 138 if ((hp = gethostbyname(s)) != 0) 139 bcopy(hp->h_addr, (char *)&sin->sin_addr, 140 MIN((size_t)hp->h_length, sizeof(sin->sin_addr))); 141 else if ((np = getnetbyname(s)) != 0) 142 sin->sin_addr = inet_makeaddr(np->n_net, INADDR_ANY); 143 else 144 errx(1, "%s: bad value", s); 145 #undef MIN 146 } 147 148 static void 149 in_status_tunnel(int s) 150 { 151 char src[NI_MAXHOST]; 152 char dst[NI_MAXHOST]; 153 struct ifreq ifr; 154 const struct sockaddr *sa = (const struct sockaddr *) &ifr.ifr_addr; 155 156 memset(&ifr, 0, sizeof(ifr)); 157 strncpy(ifr.ifr_name, name, IFNAMSIZ); 158 159 if (ioctl(s, SIOCGIFPSRCADDR, (caddr_t)&ifr) < 0) 160 return; 161 if (sa->sa_family != AF_INET) 162 return; 163 if (getnameinfo(sa, sa->sa_len, src, sizeof(src), 0, 0, NI_NUMERICHOST) != 0) 164 src[0] = '\0'; 165 166 if (ioctl(s, SIOCGIFPDSTADDR, (caddr_t)&ifr) < 0) 167 return; 168 if (sa->sa_family != AF_INET) 169 return; 170 if (getnameinfo(sa, sa->sa_len, dst, sizeof(dst), 0, 0, NI_NUMERICHOST) != 0) 171 dst[0] = '\0'; 172 173 printf("\ttunnel inet %s --> %s\n", src, dst); 174 } 175 176 static void 177 in_set_tunnel(int s, struct addrinfo *srcres, struct addrinfo *dstres) 178 { 179 struct in_aliasreq addreq; 180 181 memset(&addreq, 0, sizeof(addreq)); 182 strncpy(addreq.ifra_name, name, IFNAMSIZ); 183 memcpy(&addreq.ifra_addr, srcres->ai_addr, srcres->ai_addr->sa_len); 184 memcpy(&addreq.ifra_dstaddr, dstres->ai_addr, dstres->ai_addr->sa_len); 185 186 if (ioctl(s, SIOCSIFPHYADDR, &addreq) < 0) 187 warn("SIOCSIFPHYADDR"); 188 } 189 190 static struct afswtch af_inet = { 191 .af_name = "inet", 192 .af_af = AF_INET, 193 .af_status = in_status, 194 .af_getaddr = in_getaddr, 195 .af_status_tunnel = in_status_tunnel, 196 .af_settunnel = in_set_tunnel, 197 .af_difaddr = SIOCDIFADDR, 198 .af_aifaddr = SIOCAIFADDR, 199 .af_ridreq = &in_ridreq, 200 .af_addreq = &in_addreq, 201 }; 202 203 static __constructor void 204 inet_ctor(void) 205 { 206 207 #ifndef RESCUE 208 if (!feature_present("inet")) 209 return; 210 #endif 211 af_register(&af_inet); 212 } 213