xref: /freebsd/lib/libc/net/gethostbyht.c (revision 1b6c76a2fe091c74f08427e6c870851025a9cf67)
1 /*-
2  * Copyright (c) 1985, 1988, 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  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *	This product includes software developed by the University of
16  *	California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  * -
33  * Portions Copyright (c) 1993 by Digital Equipment Corporation.
34  *
35  * Permission to use, copy, modify, and distribute this software for any
36  * purpose with or without fee is hereby granted, provided that the above
37  * copyright notice and this permission notice appear in all copies, and that
38  * the name of Digital Equipment Corporation not be used in advertising or
39  * publicity pertaining to distribution of the document or software without
40  * specific, written prior permission.
41  *
42  * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
43  * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
44  * OF MERCHANTABILITY AND FITNESS.   IN NO EVENT SHALL DIGITAL EQUIPMENT
45  * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
46  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
47  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
48  * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
49  * SOFTWARE.
50  * -
51  * --Copyright--
52  */
53 
54 #if defined(LIBC_SCCS) && !defined(lint)
55 static char sccsid[] = "@(#)gethostnamadr.c	8.1 (Berkeley) 6/4/93";
56 static char rcsid[] = "$FreeBSD$";
57 #endif /* LIBC_SCCS and not lint */
58 
59 #include <sys/param.h>
60 #include <sys/socket.h>
61 #include <netinet/in.h>
62 #include <arpa/inet.h>
63 #include <netdb.h>
64 #include <stdio.h>
65 #include <ctype.h>
66 #include <string.h>
67 #include <stdarg.h>
68 #include <nsswitch.h>
69 #include <arpa/nameser.h>	/* XXX */
70 #include <resolv.h>		/* XXX */
71 
72 #define	MAXALIASES	35
73 
74 static struct hostent host;
75 static char *host_aliases[MAXALIASES];
76 static char hostbuf[BUFSIZ+1];
77 static FILE *hostf = NULL;
78 static u_int32_t host_addr[4];	/* IPv4 or IPv6 */
79 static char *h_addr_ptrs[2];
80 static int stayopen = 0;
81 
82 void
83 _sethosthtent(f)
84 	int f;
85 {
86 	if (!hostf)
87 		hostf = fopen(_PATH_HOSTS, "r" );
88 	else
89 		rewind(hostf);
90 	stayopen = f;
91 }
92 
93 void
94 _endhosthtent()
95 {
96 	if (hostf && !stayopen) {
97 		(void) fclose(hostf);
98 		hostf = NULL;
99 	}
100 }
101 
102 struct hostent *
103 gethostent()
104 {
105 	char *p;
106 	register char *cp, **q;
107 	int af, len;
108 
109 	if (!hostf && !(hostf = fopen(_PATH_HOSTS, "r" ))) {
110 		h_errno = NETDB_INTERNAL;
111 		return (NULL);
112 	}
113  again:
114 	if (!(p = fgets(hostbuf, sizeof hostbuf, hostf))) {
115 		h_errno = HOST_NOT_FOUND;
116 		return (NULL);
117 	}
118 	if (*p == '#')
119 		goto again;
120 	if (!(cp = strpbrk(p, "#\n")))
121 		goto again;
122 	*cp = '\0';
123 	if (!(cp = strpbrk(p, " \t")))
124 		goto again;
125 	*cp++ = '\0';
126 	if (inet_pton(AF_INET6, p, host_addr) > 0) {
127 		af = AF_INET6;
128 		len = IN6ADDRSZ;
129 	} else if (inet_pton(AF_INET, p, host_addr) > 0) {
130 		if (_res.options & RES_USE_INET6) {
131 			_map_v4v6_address((char*)host_addr, (char*)host_addr);
132 			af = AF_INET6;
133 			len = IN6ADDRSZ;
134 		} else {
135 			af = AF_INET;
136 			len = INADDRSZ;
137 		}
138 	} else {
139 		goto again;
140 	}
141 	h_addr_ptrs[0] = (char *)host_addr;
142 	h_addr_ptrs[1] = NULL;
143 	host.h_addr_list = h_addr_ptrs;
144 	host.h_length = len;
145 	host.h_addrtype = af;
146 	while (*cp == ' ' || *cp == '\t')
147 		cp++;
148 	host.h_name = cp;
149 	q = host.h_aliases = host_aliases;
150 	if ((cp = strpbrk(cp, " \t")) != NULL)
151 		*cp++ = '\0';
152 	while (cp && *cp) {
153 		if (*cp == ' ' || *cp == '\t') {
154 			cp++;
155 			continue;
156 		}
157 		if (q < &host_aliases[MAXALIASES - 1])
158 			*q++ = cp;
159 		if ((cp = strpbrk(cp, " \t")) != NULL)
160 			*cp++ = '\0';
161 	}
162 	*q = NULL;
163 	h_errno = NETDB_SUCCESS;
164 	return (&host);
165 }
166 
167 int
168 _ht_gethostbyname(void *rval, void *cb_data, va_list ap)
169 {
170 	const char *name;
171 	int af;
172 	register struct hostent *p;
173 	register char **cp;
174 
175 	name = va_arg(ap, const char *);
176 	af = va_arg(ap, int);
177 
178 	sethostent(0);
179 	while ((p = gethostent()) != NULL) {
180 		if (p->h_addrtype != af)
181 			continue;
182 		if (strcasecmp(p->h_name, name) == 0)
183 			break;
184 		for (cp = p->h_aliases; *cp != 0; cp++)
185 			if (strcasecmp(*cp, name) == 0)
186 				goto found;
187 	}
188 found:
189 	endhostent();
190 	*(struct hostent **)rval = p;
191 
192 	return (p != NULL) ? NS_SUCCESS : NS_NOTFOUND;
193 }
194 
195 int
196 _ht_gethostbyaddr(void *rval, void *cb_data, va_list ap)
197 {
198 	const char *addr;
199 	int len, af;
200 	register struct hostent *p;
201 
202 	addr = va_arg(ap, const char *);
203 	len = va_arg(ap, int);
204 	af = va_arg(ap, int);
205 
206 	sethostent(0);
207 	while ((p = gethostent()) != NULL)
208 		if (p->h_addrtype == af && !bcmp(p->h_addr, addr, len))
209 			break;
210 	endhostent();
211 
212 	*(struct hostent **)rval = p;
213 	return (p != NULL) ? NS_SUCCESS : NS_NOTFOUND;
214 }
215