1355b4669Sjacobs /* 2355b4669Sjacobs * CDDL HEADER START 3355b4669Sjacobs * 4355b4669Sjacobs * The contents of this file are subject to the terms of the 5355b4669Sjacobs * Common Development and Distribution License (the "License"). 6355b4669Sjacobs * You may not use this file except in compliance with the License. 7355b4669Sjacobs * 8355b4669Sjacobs * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9355b4669Sjacobs * or http://www.opensolaris.org/os/licensing. 10355b4669Sjacobs * See the License for the specific language governing permissions 11355b4669Sjacobs * and limitations under the License. 12355b4669Sjacobs * 13355b4669Sjacobs * When distributing Covered Code, include this CDDL HEADER in each 14355b4669Sjacobs * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15355b4669Sjacobs * If applicable, add the following below this CDDL HEADER, with the 16355b4669Sjacobs * fields enclosed by brackets "[]" replaced with your own identifying 17355b4669Sjacobs * information: Portions Copyright [yyyy] [name of copyright owner] 18355b4669Sjacobs * 19355b4669Sjacobs * CDDL HEADER END 20355b4669Sjacobs */ 21355b4669Sjacobs 22355b4669Sjacobs /* 23*a18dc42fSps29005 * Copyright 2008 Sun Microsystems, Inc. All rights reserved. 24355b4669Sjacobs * Use is subject to license terms. 25355b4669Sjacobs * 26355b4669Sjacobs */ 27355b4669Sjacobs 28355b4669Sjacobs /* $Id: misc.c 146 2006-03-24 00:26:54Z njacobs $ */ 29355b4669Sjacobs 30355b4669Sjacobs #pragma ident "%Z%%M% %I% %E% SMI" 31355b4669Sjacobs 32355b4669Sjacobs /*LINTLIBRARY*/ 33355b4669Sjacobs 34*a18dc42fSps29005 #include <stdio.h> 35*a18dc42fSps29005 #include <stdlib.h> 36*a18dc42fSps29005 #include <unistd.h> 37355b4669Sjacobs #include <string.h> 38*a18dc42fSps29005 #include <ctype.h> 39*a18dc42fSps29005 #include <sys/types.h> 40355b4669Sjacobs #include <papi.h> 41*a18dc42fSps29005 #include <uri.h> 42355b4669Sjacobs #include <config-site.h> 43355b4669Sjacobs 44355b4669Sjacobs /* 45355b4669Sjacobs * The implementations of strlcpy() and strlcat() have been taken directly 46355b4669Sjacobs * from OpenSolaris. The contents of this file originated from 47355b4669Sjacobs * usr/src/lib/libc/port/gen/strlcpy.c 48355b4669Sjacobs * usr/src/lib/libc/port/gen/strcat.c 49355b4669Sjacobs */ 50355b4669Sjacobs 51355b4669Sjacobs #ifndef HAVE_STRLCPY 52355b4669Sjacobs size_t 53355b4669Sjacobs strlcpy(char *dst, const char *src, size_t len) 54355b4669Sjacobs { 55355b4669Sjacobs size_t slen = strlen(src); 56355b4669Sjacobs size_t copied; 57355b4669Sjacobs 58355b4669Sjacobs if (len == 0) 59355b4669Sjacobs return (slen); 60355b4669Sjacobs 61355b4669Sjacobs if (slen >= len) 62355b4669Sjacobs copied = len - 1; 63355b4669Sjacobs else 64355b4669Sjacobs copied = slen; 65355b4669Sjacobs (void) memcpy(dst, src, copied); 66355b4669Sjacobs dst[copied] = '\0'; 67355b4669Sjacobs return (slen); 68355b4669Sjacobs } 69355b4669Sjacobs #endif 70355b4669Sjacobs 71355b4669Sjacobs #ifndef HAVE_STRLCAT 72355b4669Sjacobs size_t 73355b4669Sjacobs strlcat(char *dst, const char *src, size_t dstsize) 74355b4669Sjacobs { 75355b4669Sjacobs char *df = dst; 76355b4669Sjacobs size_t left = dstsize; 77355b4669Sjacobs size_t l1; 78355b4669Sjacobs size_t l2 = strlen(src); 79355b4669Sjacobs size_t copied; 80355b4669Sjacobs 81355b4669Sjacobs while (left-- != 0 && *df != '\0') 82355b4669Sjacobs df++; 83355b4669Sjacobs l1 = df - dst; 84355b4669Sjacobs if (dstsize == l1) 85355b4669Sjacobs return (l1 + l2); 86355b4669Sjacobs 87355b4669Sjacobs copied = l1 + l2 >= dstsize ? dstsize - l1 - 1 : l2; 88355b4669Sjacobs (void) memcpy(dst + l1, src, copied); 89355b4669Sjacobs dst[l1+copied] = '\0'; 90355b4669Sjacobs return (l1 + l2); 91355b4669Sjacobs } 92355b4669Sjacobs #endif 93*a18dc42fSps29005 94*a18dc42fSps29005 #if defined(__sun) && defined(__SVR4) 95*a18dc42fSps29005 #include <sys/systeminfo.h> 96*a18dc42fSps29005 #include <sys/socket.h> 97*a18dc42fSps29005 #include <sys/ioctl.h> 98*a18dc42fSps29005 #include <sys/sockio.h> 99*a18dc42fSps29005 #include <net/if.h> 100*a18dc42fSps29005 #include <netinet/in.h> 101*a18dc42fSps29005 #include <arpa/inet.h> 102*a18dc42fSps29005 #include <netdb.h> 103*a18dc42fSps29005 104*a18dc42fSps29005 static struct in6_addr ** 105*a18dc42fSps29005 local_interfaces() 106*a18dc42fSps29005 { 107*a18dc42fSps29005 struct in6_addr **result = NULL; 108*a18dc42fSps29005 int s; 109*a18dc42fSps29005 struct lifnum n; 110*a18dc42fSps29005 struct lifconf c; 111*a18dc42fSps29005 struct lifreq *r; 112*a18dc42fSps29005 int count; 113*a18dc42fSps29005 114*a18dc42fSps29005 /* we need a socket to get the interfaces */ 115*a18dc42fSps29005 if ((s = socket(AF_INET, SOCK_DGRAM, 0)) < 0) 116*a18dc42fSps29005 return (0); 117*a18dc42fSps29005 118*a18dc42fSps29005 /* get the number of interfaces */ 119*a18dc42fSps29005 memset(&n, 0, sizeof (n)); 120*a18dc42fSps29005 n.lifn_family = AF_UNSPEC; 121*a18dc42fSps29005 if (ioctl(s, SIOCGLIFNUM, (char *)&n) < 0) { 122*a18dc42fSps29005 close(s); 123*a18dc42fSps29005 return (0); /* no interfaces */ 124*a18dc42fSps29005 } 125*a18dc42fSps29005 126*a18dc42fSps29005 /* get the interface(s) configuration */ 127*a18dc42fSps29005 memset(&c, 0, sizeof (c)); 128*a18dc42fSps29005 c.lifc_family = AF_UNSPEC; 129*a18dc42fSps29005 c.lifc_buf = calloc(n.lifn_count, sizeof (struct lifreq)); 130*a18dc42fSps29005 c.lifc_len = (n.lifn_count * sizeof (struct lifreq)); 131*a18dc42fSps29005 if (ioctl(s, SIOCGLIFCONF, (char *)&c) < 0) { 132*a18dc42fSps29005 free(c.lifc_buf); 133*a18dc42fSps29005 close(s); 134*a18dc42fSps29005 return (0); /* can't get interface(s) configuration */ 135*a18dc42fSps29005 } 136*a18dc42fSps29005 close(s); 137*a18dc42fSps29005 138*a18dc42fSps29005 r = c.lifc_req; 139*a18dc42fSps29005 for (count = c.lifc_len / sizeof (struct lifreq); 140*a18dc42fSps29005 count > 0; count--, r++) { 141*a18dc42fSps29005 struct in6_addr v6[1], *addr = NULL; 142*a18dc42fSps29005 143*a18dc42fSps29005 switch (r->lifr_addr.ss_family) { 144*a18dc42fSps29005 case AF_INET: { 145*a18dc42fSps29005 struct sockaddr_in *s = 146*a18dc42fSps29005 (struct sockaddr_in *)&r->lifr_addr; 147*a18dc42fSps29005 IN6_INADDR_TO_V4MAPPED(&s->sin_addr, v6); 148*a18dc42fSps29005 addr = v6; 149*a18dc42fSps29005 } 150*a18dc42fSps29005 break; 151*a18dc42fSps29005 case AF_INET6: { 152*a18dc42fSps29005 struct sockaddr_in6 *s = 153*a18dc42fSps29005 (struct sockaddr_in6 *)&r->lifr_addr; 154*a18dc42fSps29005 addr = &s->sin6_addr; 155*a18dc42fSps29005 } 156*a18dc42fSps29005 break; 157*a18dc42fSps29005 } 158*a18dc42fSps29005 159*a18dc42fSps29005 if (addr != NULL) { 160*a18dc42fSps29005 struct in6_addr *a = malloc(sizeof (*a)); 161*a18dc42fSps29005 162*a18dc42fSps29005 memcpy(a, addr, sizeof (*a)); 163*a18dc42fSps29005 list_append(&result, a); 164*a18dc42fSps29005 } 165*a18dc42fSps29005 } 166*a18dc42fSps29005 free(c.lifc_buf); 167*a18dc42fSps29005 168*a18dc42fSps29005 return (result); 169*a18dc42fSps29005 } 170*a18dc42fSps29005 171*a18dc42fSps29005 static int 172*a18dc42fSps29005 match_interfaces(char *host) 173*a18dc42fSps29005 { 174*a18dc42fSps29005 struct in6_addr **lif = local_interfaces(); 175*a18dc42fSps29005 struct hostent *hp; 176*a18dc42fSps29005 int rc = 0; 177*a18dc42fSps29005 int errnum; 178*a18dc42fSps29005 179*a18dc42fSps29005 /* are there any local interfaces */ 180*a18dc42fSps29005 if (lif == NULL) 181*a18dc42fSps29005 return (0); 182*a18dc42fSps29005 183*a18dc42fSps29005 /* cycle through the host db addresses */ 184*a18dc42fSps29005 hp = getipnodebyname(host, AF_INET6, AI_ALL|AI_V4MAPPED, &errnum); 185*a18dc42fSps29005 if (hp != NULL) { 186*a18dc42fSps29005 struct in6_addr **tmp = (struct in6_addr **)hp->h_addr_list; 187*a18dc42fSps29005 int i; 188*a18dc42fSps29005 189*a18dc42fSps29005 for (i = 0; ((rc == 0) && (tmp[i] != NULL)); i++) { 190*a18dc42fSps29005 int j; 191*a18dc42fSps29005 192*a18dc42fSps29005 for (j = 0; ((rc == 0) && (lif[j] != NULL)); j++) 193*a18dc42fSps29005 if (memcmp(tmp[i], lif[j], 194*a18dc42fSps29005 sizeof (struct in6_addr)) == 0) 195*a18dc42fSps29005 rc = 1; 196*a18dc42fSps29005 } 197*a18dc42fSps29005 } 198*a18dc42fSps29005 free(lif); 199*a18dc42fSps29005 200*a18dc42fSps29005 return (rc); 201*a18dc42fSps29005 } 202*a18dc42fSps29005 #endif 203*a18dc42fSps29005 204*a18dc42fSps29005 int 205*a18dc42fSps29005 is_localhost(char *host) 206*a18dc42fSps29005 { 207*a18dc42fSps29005 char hostname[BUFSIZ]; 208*a18dc42fSps29005 209*a18dc42fSps29005 /* is it "localhost" */ 210*a18dc42fSps29005 if (strncasecmp(host, "localhost", 10) == 0) 211*a18dc42fSps29005 return (1); 212*a18dc42fSps29005 213*a18dc42fSps29005 /* is it the {nodename} */ 214*a18dc42fSps29005 sysinfo(SI_HOSTNAME, hostname, sizeof (hostname)); 215*a18dc42fSps29005 if (strncasecmp(host, hostname, strlen(hostname)) == 0) 216*a18dc42fSps29005 return (1); 217*a18dc42fSps29005 218*a18dc42fSps29005 #if defined(__sun) && defined(__SVR4) 219*a18dc42fSps29005 /* does it match one of the host's configured interfaces */ 220*a18dc42fSps29005 if (match_interfaces(host) != 0) 221*a18dc42fSps29005 return (1); 222*a18dc42fSps29005 #endif 223*a18dc42fSps29005 return (0); 224*a18dc42fSps29005 } 225