Make inline syscall to _exit.
[glibc.git] / resolv / gethnamaddr.c
blobe941b5c1ac2eb5f49e2b8e0952ffe71d24989859
1 /*
2 * ++Copyright++ 1985, 1988, 1993
3 * -
4 * Copyright (c) 1985, 1988, 1993
5 * The Regents of the University of California. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 4. Neither the name of the University nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 * -
31 * Portions Copyright (c) 1993 by Digital Equipment Corporation.
33 * Permission to use, copy, modify, and distribute this software for any
34 * purpose with or without fee is hereby granted, provided that the above
35 * copyright notice and this permission notice appear in all copies, and that
36 * the name of Digital Equipment Corporation not be used in advertising or
37 * publicity pertaining to distribution of the document or software without
38 * specific, written prior permission.
40 * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
41 * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
42 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT
43 * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
44 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
45 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
46 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
47 * SOFTWARE.
48 * -
49 * --Copyright--
52 #if defined(LIBC_SCCS) && !defined(lint)
53 static char sccsid[] = "@(#)gethostnamadr.c 8.1 (Berkeley) 6/4/93";
54 static char rcsid[] = "$Id$";
55 #endif /* LIBC_SCCS and not lint */
57 #include <sys/types.h>
58 #include <sys/param.h>
59 #include <sys/socket.h>
60 #include <netinet/in.h>
61 #include <arpa/inet.h>
62 #include <arpa/nameser.h>
64 #include <stdio.h>
65 #include <netdb.h>
66 #include <resolv.h>
67 #include <ctype.h>
68 #include <errno.h>
69 #include <syslog.h>
71 #define RESOLVSORT
73 #ifndef LOG_AUTH
74 # define LOG_AUTH 0
75 #endif
77 #define MULTI_PTRS_ARE_ALIASES 1 /* XXX - experimental */
79 #if defined(BSD) && (BSD >= 199103) && defined(AF_INET6)
80 # include <stdlib.h>
81 # include <string.h>
82 #else
83 # include "../conf/portability.h"
84 #endif
86 #if defined(USE_OPTIONS_H)
87 # include <../conf/options.h>
88 #endif
90 #ifdef SPRINTF_CHAR
91 # define SPRINTF(x) strlen(sprintf/**/x)
92 #else
93 # define SPRINTF(x) ((size_t)sprintf x)
94 #endif
96 #define MAXALIASES 35
97 #define MAXADDRS 35
99 static const char AskedForGot[] =
100 "gethostby*.getanswer: asked for \"%s\", got \"%s\"";
102 static char *h_addr_ptrs[MAXADDRS + 1];
104 static struct hostent host;
105 static char *host_aliases[MAXALIASES];
106 static char hostbuf[8*1024];
107 static u_char host_addr[16]; /* IPv4 or IPv6 */
108 static FILE *hostf = NULL;
109 static int stayopen = 0;
111 static void map_v4v6_address __P((const char *src, char *dst));
112 static void map_v4v6_hostent __P((struct hostent *hp, char **bp, int *len));
114 #ifdef RESOLVSORT
115 extern void addrsort __P((char **, int));
116 #endif
118 #if PACKETSZ > 65536
119 #define MAXPACKET PACKETSZ
120 #else
121 #define MAXPACKET 65536
122 #endif
124 /* As per RFC 1034 and 1035 a host name cannot exceed 255 octets in length. */
125 #ifdef MAXHOSTNAMELEN
126 # undef MAXHOSTNAMELEN
127 #endif
128 #define MAXHOSTNAMELEN 256
130 typedef union {
131 HEADER hdr;
132 u_char buf[MAXPACKET];
133 } querybuf;
135 typedef union {
136 int32_t al;
137 char ac;
138 } align;
140 #ifndef h_errno
141 extern int h_errno;
142 #endif
144 #ifdef DEBUG
145 static void
146 dprintf(msg, num)
147 char *msg;
148 int num;
150 if (_res.options & RES_DEBUG) {
151 int save = errno;
153 printf(msg, num);
154 __set_errno (save);
157 #else
158 # define dprintf(msg, num) /*nada*/
159 #endif
161 #define BOUNDED_INCR(x) \
162 do { \
163 cp += x; \
164 if (cp > eom) { \
165 __set_h_errno (NO_RECOVERY); \
166 return (NULL); \
168 } while (0)
170 #define BOUNDS_CHECK(ptr, count) \
171 do { \
172 if ((ptr) + (count) > eom) { \
173 __set_h_errno (NO_RECOVERY); \
174 return (NULL); \
176 } while (0)
179 static struct hostent *
180 getanswer(answer, anslen, qname, qtype)
181 const querybuf *answer;
182 int anslen;
183 const char *qname;
184 int qtype;
186 register const HEADER *hp;
187 register const u_char *cp;
188 register int n;
189 const u_char *eom, *erdata;
190 char *bp, **ap, **hap;
191 int type, class, buflen, ancount, qdcount;
192 int haveanswer, had_error;
193 int toobig = 0;
194 char tbuf[MAXDNAME];
195 const char *tname;
196 int (*name_ok) __P((const char *));
198 tname = qname;
199 host.h_name = NULL;
200 eom = answer->buf + anslen;
201 switch (qtype) {
202 case T_A:
203 case T_AAAA:
204 name_ok = res_hnok;
205 break;
206 case T_PTR:
207 name_ok = res_dnok;
208 break;
209 default:
210 return (NULL); /* XXX should be abort(); */
213 * find first satisfactory answer
215 hp = &answer->hdr;
216 ancount = ntohs(hp->ancount);
217 qdcount = ntohs(hp->qdcount);
218 bp = hostbuf;
219 buflen = sizeof hostbuf;
220 cp = answer->buf;
221 BOUNDED_INCR(HFIXEDSZ);
222 if (qdcount != 1) {
223 __set_h_errno (NO_RECOVERY);
224 return (NULL);
226 n = dn_expand(answer->buf, eom, cp, bp, buflen);
227 if ((n < 0) || !(*name_ok)(bp)) {
228 __set_h_errno (NO_RECOVERY);
229 return (NULL);
231 BOUNDED_INCR(n + QFIXEDSZ);
232 if (qtype == T_A || qtype == T_AAAA) {
233 /* res_send() has already verified that the query name is the
234 * same as the one we sent; this just gets the expanded name
235 * (i.e., with the succeeding search-domain tacked on).
237 n = strlen(bp) + 1; /* for the \0 */
238 if (n >= MAXHOSTNAMELEN) {
239 __set_h_errno (NO_RECOVERY);
240 return (NULL);
242 host.h_name = bp;
243 bp += n;
244 buflen -= n;
245 /* The qname can be abbreviated, but h_name is now absolute. */
246 qname = host.h_name;
248 ap = host_aliases;
249 *ap = NULL;
250 host.h_aliases = host_aliases;
251 hap = h_addr_ptrs;
252 *hap = NULL;
253 host.h_addr_list = h_addr_ptrs;
254 haveanswer = 0;
255 had_error = 0;
256 while (ancount-- > 0 && cp < eom && !had_error) {
257 n = dn_expand(answer->buf, eom, cp, bp, buflen);
258 if ((n < 0) || !(*name_ok)(bp)) {
259 had_error++;
260 continue;
262 cp += n; /* name */
263 BOUNDS_CHECK(cp, 3 * INT16SZ + INT32SZ);
264 type = ns_get16(cp);
265 cp += INT16SZ; /* type */
266 class = ns_get16(cp);
267 cp += INT16SZ + INT32SZ; /* class, TTL */
268 n = ns_get16(cp);
269 cp += INT16SZ; /* len */
270 BOUNDS_CHECK(cp, n);
271 erdata = cp + n;
272 if (class != C_IN) {
273 /* XXX - debug? syslog? */
274 cp += n;
275 continue; /* XXX - had_error++ ? */
277 if ((qtype == T_A || qtype == T_AAAA) && type == T_CNAME) {
278 if (ap >= &host_aliases[MAXALIASES-1])
279 continue;
280 n = dn_expand(answer->buf, eom, cp, tbuf, sizeof tbuf);
281 if ((n < 0) || !(*name_ok)(tbuf)) {
282 had_error++;
283 continue;
285 cp += n;
286 if (cp != erdata) {
287 __set_h_errno (NO_RECOVERY);
288 return (NULL);
290 /* Store alias. */
291 *ap++ = bp;
292 n = strlen(bp) + 1; /* for the \0 */
293 if (n >= MAXHOSTNAMELEN) {
294 had_error++;
295 continue;
297 bp += n;
298 buflen -= n;
299 /* Get canonical name. */
300 n = strlen(tbuf) + 1; /* for the \0 */
301 if (n > buflen || n >= MAXHOSTNAMELEN) {
302 had_error++;
303 continue;
305 strcpy(bp, tbuf);
306 host.h_name = bp;
307 bp += n;
308 buflen -= n;
309 continue;
311 if (qtype == T_PTR && type == T_CNAME) {
312 n = dn_expand(answer->buf, eom, cp, tbuf, sizeof tbuf);
313 if (n < 0 || !res_dnok(tbuf)) {
314 had_error++;
315 continue;
317 cp += n;
318 if (cp != erdata) {
319 __set_h_errno (NO_RECOVERY);
320 return (NULL);
322 /* Get canonical name. */
323 n = strlen(tbuf) + 1; /* for the \0 */
324 if (n > buflen || n >= MAXHOSTNAMELEN) {
325 had_error++;
326 continue;
328 strcpy(bp, tbuf);
329 tname = bp;
330 bp += n;
331 buflen -= n;
332 continue;
334 if ((type == T_SIG) || (type == T_KEY) || (type == T_NXT)) {
335 /* We don't support DNSSEC yet. For now, ignore
336 * the record and send a low priority message
337 * to syslog.
339 syslog(LOG_DEBUG|LOG_AUTH,
340 "gethostby*.getanswer: asked for \"%s %s %s\", got type \"%s\"",
341 qname, p_class(C_IN), p_type(qtype),
342 p_type(type));
343 cp += n;
344 continue;
346 if (type != qtype) {
347 syslog(LOG_NOTICE|LOG_AUTH,
348 "gethostby*.getanswer: asked for \"%s %s %s\", got type \"%s\"",
349 qname, p_class(C_IN), p_type(qtype),
350 p_type(type));
351 cp += n;
352 continue; /* XXX - had_error++ ? */
354 switch (type) {
355 case T_PTR:
356 if (strcasecmp(tname, bp) != 0) {
357 syslog(LOG_NOTICE|LOG_AUTH,
358 AskedForGot, qname, bp);
359 cp += n;
360 continue; /* XXX - had_error++ ? */
362 n = dn_expand(answer->buf, eom, cp, bp, buflen);
363 if ((n < 0) || !res_hnok(bp)) {
364 had_error++;
365 break;
367 #if MULTI_PTRS_ARE_ALIASES
368 cp += n;
369 if (cp != erdata) {
370 __set_h_errno (NO_RECOVERY);
371 return (NULL);
373 if (!haveanswer)
374 host.h_name = bp;
375 else if (ap < &host_aliases[MAXALIASES-1])
376 *ap++ = bp;
377 else
378 n = -1;
379 if (n != -1) {
380 n = strlen(bp) + 1; /* for the \0 */
381 if (n >= MAXHOSTNAMELEN) {
382 had_error++;
383 break;
385 bp += n;
386 buflen -= n;
388 break;
389 #else
390 host.h_name = bp;
391 if (_res.options & RES_USE_INET6) {
392 n = strlen(bp) + 1; /* for the \0 */
393 if (n >= MAXHOSTNAMELEN) {
394 had_error++;
395 break;
397 bp += n;
398 buflen -= n;
399 map_v4v6_hostent(&host, &bp, &buflen);
401 __set_h_errno (NETDB_SUCCESS);
402 return (&host);
403 #endif
404 case T_A:
405 case T_AAAA:
406 if (strcasecmp(host.h_name, bp) != 0) {
407 syslog(LOG_NOTICE|LOG_AUTH,
408 AskedForGot, host.h_name, bp);
409 cp += n;
410 continue; /* XXX - had_error++ ? */
412 if (n != host.h_length) {
413 cp += n;
414 continue;
416 if (!haveanswer) {
417 register int nn;
419 host.h_name = bp;
420 nn = strlen(bp) + 1; /* for the \0 */
421 bp += nn;
422 buflen -= nn;
425 /* XXX: when incrementing bp, we have to decrement
426 * buflen by the same amount --okir */
427 buflen -= sizeof(align) - ((u_long)bp % sizeof(align));
429 bp += sizeof(align) - ((u_long)bp % sizeof(align));
431 if (bp + n >= &hostbuf[sizeof hostbuf]) {
432 dprintf("size (%d) too big\n", n);
433 had_error++;
434 continue;
436 if (hap >= &h_addr_ptrs[MAXADDRS-1]) {
437 if (!toobig++) {
438 dprintf("Too many addresses (%d)\n",
439 MAXADDRS);
441 cp += n;
442 continue;
444 memmove(*hap++ = bp, cp, n);
445 bp += n;
446 buflen -= n;
447 cp += n;
448 if (cp != erdata) {
449 __set_h_errno (NO_RECOVERY);
450 return (NULL);
452 break;
453 default:
454 abort();
456 if (!had_error)
457 haveanswer++;
459 if (haveanswer) {
460 *ap = NULL;
461 *hap = NULL;
462 # if defined(RESOLVSORT)
464 * Note: we sort even if host can take only one address
465 * in its return structures - should give it the "best"
466 * address in that case, not some random one
468 if (_res.nsort && haveanswer > 1 && qtype == T_A)
469 addrsort(h_addr_ptrs, haveanswer);
470 # endif /*RESOLVSORT*/
471 if (!host.h_name) {
472 n = strlen(qname) + 1; /* for the \0 */
473 if (n > buflen || n >= MAXHOSTNAMELEN)
474 goto no_recovery;
475 strcpy(bp, qname);
476 host.h_name = bp;
477 bp += n;
478 buflen -= n;
480 if (_res.options & RES_USE_INET6)
481 map_v4v6_hostent(&host, &bp, &buflen);
482 __set_h_errno (NETDB_SUCCESS);
483 return (&host);
485 no_recovery:
486 __set_h_errno (NO_RECOVERY);
487 return (NULL);
490 struct hostent *
491 gethostbyname(name)
492 const char *name;
494 struct hostent *hp;
496 if ((_res.options & RES_INIT) == 0 && __res_ninit(&_res) == -1) {
497 __set_h_errno (NETDB_INTERNAL);
498 return (NULL);
500 if (_res.options & RES_USE_INET6) {
501 hp = gethostbyname2(name, AF_INET6);
502 if (hp)
503 return (hp);
505 return (gethostbyname2(name, AF_INET));
508 struct hostent *
509 gethostbyname2(name, af)
510 const char *name;
511 int af;
513 querybuf *buf, *origbuf;
514 register const char *cp;
515 char *bp;
516 int n, size, type, len;
517 struct hostent *ret;
518 extern struct hostent *_gethtbyname2();
520 if ((_res.options & RES_INIT) == 0 && __res_ninit(&_res) == -1) {
521 __set_h_errno (NETDB_INTERNAL);
522 return (NULL);
525 switch (af) {
526 case AF_INET:
527 size = INADDRSZ;
528 type = T_A;
529 break;
530 case AF_INET6:
531 size = IN6ADDRSZ;
532 type = T_AAAA;
533 break;
534 default:
535 __set_h_errno (NETDB_INTERNAL);
536 __set_errno (EAFNOSUPPORT);
537 return (NULL);
540 host.h_addrtype = af;
541 host.h_length = size;
544 * if there aren't any dots, it could be a user-level alias.
545 * this is also done in res_query() since we are not the only
546 * function that looks up host names.
548 if (!strchr(name, '.') && (cp = __hostalias(name)))
549 name = cp;
552 * disallow names consisting only of digits/dots, unless
553 * they end in a dot.
555 if (isdigit(name[0]))
556 for (cp = name;; ++cp) {
557 if (!*cp) {
558 if (*--cp == '.')
559 break;
561 * All-numeric, no dot at the end.
562 * Fake up a hostent as if we'd actually
563 * done a lookup.
565 if (inet_pton(af, name, host_addr) <= 0) {
566 __set_h_errno (HOST_NOT_FOUND);
567 return (NULL);
569 strncpy(hostbuf, name, MAXDNAME);
570 hostbuf[MAXDNAME] = '\0';
571 bp = hostbuf + MAXDNAME;
572 len = sizeof hostbuf - MAXDNAME;
573 host.h_name = hostbuf;
574 host.h_aliases = host_aliases;
575 host_aliases[0] = NULL;
576 h_addr_ptrs[0] = (char *)host_addr;
577 h_addr_ptrs[1] = NULL;
578 host.h_addr_list = h_addr_ptrs;
579 if (_res.options & RES_USE_INET6)
580 map_v4v6_hostent(&host, &bp, &len);
581 __set_h_errno (NETDB_SUCCESS);
582 return (&host);
584 if (!isdigit(*cp) && *cp != '.')
585 break;
587 if ((isxdigit(name[0]) && strchr(name, ':') != NULL) ||
588 name[0] == ':')
589 for (cp = name;; ++cp) {
590 if (!*cp) {
591 if (*--cp == '.')
592 break;
594 * All-IPv6-legal, no dot at the end.
595 * Fake up a hostent as if we'd actually
596 * done a lookup.
598 if (inet_pton(af, name, host_addr) <= 0) {
599 __set_h_errno (HOST_NOT_FOUND);
600 return (NULL);
602 strncpy(hostbuf, name, MAXDNAME);
603 hostbuf[MAXDNAME] = '\0';
604 bp = hostbuf + MAXDNAME;
605 len = sizeof hostbuf - MAXDNAME;
606 host.h_name = hostbuf;
607 host.h_aliases = host_aliases;
608 host_aliases[0] = NULL;
609 h_addr_ptrs[0] = (char *)host_addr;
610 h_addr_ptrs[1] = NULL;
611 host.h_addr_list = h_addr_ptrs;
612 __set_h_errno (NETDB_SUCCESS);
613 return (&host);
615 if (!isxdigit(*cp) && *cp != ':' && *cp != '.')
616 break;
619 buf = origbuf = (querybuf *) alloca (1024);
621 if ((n = __libc_res_nsearch(&_res, name, C_IN, type, buf->buf, 1024,
622 (u_char **) &buf)) < 0) {
623 if (buf != origbuf)
624 free (buf);
625 dprintf("res_nsearch failed (%d)\n", n);
626 if (errno == ECONNREFUSED)
627 return (_gethtbyname2(name, af));
628 return (NULL);
630 ret = getanswer(buf, n, name, type);
631 if (buf != origbuf)
632 free (buf);
633 return ret;
636 struct hostent *
637 gethostbyaddr(addr, len, af)
638 const void *addr;
639 socklen_t len;
640 int af;
642 const u_char *uaddr = (const u_char *)addr;
643 static const u_char mapped[] = { 0,0, 0,0, 0,0, 0,0, 0,0, 0xff,0xff };
644 static const u_char tunnelled[] = { 0,0, 0,0, 0,0, 0,0, 0,0, 0,0 };
645 int n;
646 socklen_t size;
647 querybuf *buf, *orig_buf;
648 register struct hostent *hp;
649 char qbuf[MAXDNAME+1], *qp = NULL;
650 #ifdef SUNSECURITY
651 register struct hostent *rhp;
652 char **haddr;
653 u_long old_options;
654 char hname2[MAXDNAME+1];
655 #endif /*SUNSECURITY*/
656 extern struct hostent *_gethtbyaddr();
658 if ((_res.options & RES_INIT) == 0 && __res_ninit(&_res) == -1) {
659 __set_h_errno (NETDB_INTERNAL);
660 return (NULL);
662 if (af == AF_INET6 && len == IN6ADDRSZ &&
663 (!bcmp(uaddr, mapped, sizeof mapped) ||
664 !bcmp(uaddr, tunnelled, sizeof tunnelled))) {
665 /* Unmap. */
666 addr += sizeof mapped;
667 uaddr += sizeof mapped;
668 af = AF_INET;
669 len = INADDRSZ;
671 switch (af) {
672 case AF_INET:
673 size = INADDRSZ;
674 break;
675 case AF_INET6:
676 size = IN6ADDRSZ;
677 break;
678 default:
679 __set_errno (EAFNOSUPPORT);
680 __set_h_errno (NETDB_INTERNAL);
681 return (NULL);
683 if (size != len) {
684 __set_errno (EINVAL);
685 __set_h_errno (NETDB_INTERNAL);
686 return (NULL);
688 switch (af) {
689 case AF_INET:
690 (void) sprintf(qbuf, "%u.%u.%u.%u.in-addr.arpa",
691 (uaddr[3] & 0xff),
692 (uaddr[2] & 0xff),
693 (uaddr[1] & 0xff),
694 (uaddr[0] & 0xff));
695 break;
696 case AF_INET6:
697 qp = qbuf;
698 for (n = IN6ADDRSZ - 1; n >= 0; n--) {
699 qp += SPRINTF((qp, "%x.%x.",
700 uaddr[n] & 0xf,
701 (uaddr[n] >> 4) & 0xf));
703 strcpy(qp, "ip6.arpa");
704 break;
705 default:
706 abort();
709 buf = orig_buf = (querybuf *) alloca (1024);
711 n = __libc_res_nquery(&_res, qbuf, C_IN, T_PTR, buf->buf, 1024,
712 (u_char **) &buf);
713 if (n < 0 && af == AF_INET6) {
714 strcpy(qp, "ip6.int");
715 n = __libc_res_nquery(&_res, qbuf, C_IN, T_PTR, buf->buf,
716 buf != orig_buf ? MAXPACKET : 1024,
717 (u_char **) &buf);
719 if (n < 0) {
720 if (buf != orig_buf)
721 free (buf);
722 dprintf("res_nquery failed (%d)\n", n);
723 if (errno == ECONNREFUSED)
724 return (_gethtbyaddr(addr, len, af));
725 return (NULL);
727 hp = getanswer(buf, n, qbuf, T_PTR);
728 if (buf != orig_buf)
729 free (buf);
730 if (!hp)
731 return (NULL); /* h_errno was set by getanswer() */
732 #ifdef SUNSECURITY
733 if (af == AF_INET) {
735 * turn off search as the name should be absolute,
736 * 'localhost' should be matched by defnames
738 strncpy(hname2, hp->h_name, MAXDNAME);
739 hname2[MAXDNAME] = '\0';
740 old_options = _res.options;
741 _res.options &= ~RES_DNSRCH;
742 _res.options |= RES_DEFNAMES;
743 if (!(rhp = gethostbyname(hname2))) {
744 syslog(LOG_NOTICE|LOG_AUTH,
745 "gethostbyaddr: No A record for %s (verifying [%s])",
746 hname2, inet_ntoa(*((struct in_addr *)addr)));
747 _res.options = old_options;
748 __set_h_errno (HOST_NOT_FOUND);
749 return (NULL);
751 _res.options = old_options;
752 for (haddr = rhp->h_addr_list; *haddr; haddr++)
753 if (!memcmp(*haddr, addr, INADDRSZ))
754 break;
755 if (!*haddr) {
756 syslog(LOG_NOTICE|LOG_AUTH,
757 "gethostbyaddr: A record of %s != PTR record [%s]",
758 hname2, inet_ntoa(*((struct in_addr *)addr)));
759 __set_h_errno (HOST_NOT_FOUND);
760 return (NULL);
763 #endif /*SUNSECURITY*/
764 hp->h_addrtype = af;
765 hp->h_length = len;
766 memmove(host_addr, addr, len);
767 h_addr_ptrs[0] = (char *)host_addr;
768 h_addr_ptrs[1] = NULL;
769 if (af == AF_INET && (_res.options & RES_USE_INET6)) {
770 map_v4v6_address((char*)host_addr, (char*)host_addr);
771 hp->h_addrtype = AF_INET6;
772 hp->h_length = IN6ADDRSZ;
774 __set_h_errno (NETDB_SUCCESS);
775 return (hp);
778 void
779 _sethtent(f)
780 int f;
782 if (!hostf)
783 hostf = fopen(_PATH_HOSTS, "r" );
784 else
785 rewind(hostf);
786 stayopen = f;
789 void
790 _endhtent()
792 if (hostf && !stayopen) {
793 (void) fclose(hostf);
794 hostf = NULL;
798 struct hostent *
799 _gethtent()
801 char *p;
802 register char *cp, **q;
803 int af, len;
805 if (!hostf && !(hostf = fopen(_PATH_HOSTS, "r" ))) {
806 __set_h_errno (NETDB_INTERNAL);
807 return (NULL);
809 again:
810 if (!(p = fgets(hostbuf, sizeof hostbuf, hostf))) {
811 __set_h_errno (HOST_NOT_FOUND);
812 return (NULL);
814 if (*p == '#')
815 goto again;
816 if (!(cp = strpbrk(p, "#\n")))
817 goto again;
818 *cp = '\0';
819 if (!(cp = strpbrk(p, " \t")))
820 goto again;
821 *cp++ = '\0';
822 if (inet_pton(AF_INET6, p, host_addr) > 0) {
823 af = AF_INET6;
824 len = IN6ADDRSZ;
825 } else if (inet_pton(AF_INET, p, host_addr) > 0) {
826 if (_res.options & RES_USE_INET6) {
827 map_v4v6_address((char*)host_addr, (char*)host_addr);
828 af = AF_INET6;
829 len = IN6ADDRSZ;
830 } else {
831 af = AF_INET;
832 len = INADDRSZ;
834 } else {
835 goto again;
837 h_addr_ptrs[0] = (char *)host_addr;
838 h_addr_ptrs[1] = NULL;
839 host.h_addr_list = h_addr_ptrs;
840 host.h_length = len;
841 host.h_addrtype = af;
842 while (*cp == ' ' || *cp == '\t')
843 cp++;
844 host.h_name = cp;
845 q = host.h_aliases = host_aliases;
846 if ((cp = strpbrk(cp, " \t")))
847 *cp++ = '\0';
848 while (cp && *cp) {
849 if (*cp == ' ' || *cp == '\t') {
850 cp++;
851 continue;
853 if (q < &host_aliases[MAXALIASES - 1])
854 *q++ = cp;
855 if ((cp = strpbrk(cp, " \t")))
856 *cp++ = '\0';
858 *q = NULL;
859 __set_h_errno (NETDB_SUCCESS);
860 return (&host);
863 struct hostent *
864 _gethtbyname(name)
865 const char *name;
867 extern struct hostent *_gethtbyname2();
868 struct hostent *hp;
870 if (_res.options & RES_USE_INET6) {
871 hp = _gethtbyname2(name, AF_INET6);
872 if (hp)
873 return (hp);
875 return (_gethtbyname2(name, AF_INET));
878 struct hostent *
879 _gethtbyname2(name, af)
880 const char *name;
881 int af;
883 register struct hostent *p;
884 register char **cp;
886 _sethtent(0);
887 while ((p = _gethtent())) {
888 if (p->h_addrtype != af)
889 continue;
890 if (strcasecmp(p->h_name, name) == 0)
891 break;
892 for (cp = p->h_aliases; *cp != 0; cp++)
893 if (strcasecmp(*cp, name) == 0)
894 goto found;
896 found:
897 _endhtent();
898 return (p);
901 struct hostent *
902 _gethtbyaddr(addr, len, af)
903 const char *addr;
904 size_t len;
905 int af;
907 register struct hostent *p;
909 _sethtent(0);
910 while ((p = _gethtent()))
911 if (p->h_addrtype == af && !bcmp(p->h_addr, addr, len))
912 break;
913 _endhtent();
914 return (p);
917 static void
918 map_v4v6_address(src, dst)
919 const char *src;
920 char *dst;
922 u_char *p = (u_char *)dst;
923 char tmp[INADDRSZ];
924 int i;
926 /* Stash a temporary copy so our caller can update in place. */
927 memcpy(tmp, src, INADDRSZ);
928 /* Mark this ipv6 addr as a mapped ipv4. */
929 for (i = 0; i < 10; i++)
930 *p++ = 0x00;
931 *p++ = 0xff;
932 *p++ = 0xff;
933 /* Retrieve the saved copy and we're done. */
934 memcpy((void*)p, tmp, INADDRSZ);
937 static void
938 map_v4v6_hostent(hp, bpp, lenp)
939 struct hostent *hp;
940 char **bpp;
941 int *lenp;
943 char **ap;
945 if (hp->h_addrtype != AF_INET || hp->h_length != INADDRSZ)
946 return;
947 hp->h_addrtype = AF_INET6;
948 hp->h_length = IN6ADDRSZ;
949 for (ap = hp->h_addr_list; *ap; ap++) {
950 int i = sizeof(align) - ((u_long)*bpp % sizeof(align));
952 if (*lenp < (i + IN6ADDRSZ)) {
953 /* Out of memory. Truncate address list here. XXX */
954 *ap = NULL;
955 return;
957 *bpp += i;
958 *lenp -= i;
959 map_v4v6_address(*ap, *bpp);
960 *ap = *bpp;
961 *bpp += IN6ADDRSZ;
962 *lenp -= IN6ADDRSZ;
966 #ifdef RESOLVSORT
967 extern void
968 addrsort(ap, num)
969 char **ap;
970 int num;
972 int i, j;
973 char **p;
974 short aval[MAXADDRS];
975 int needsort = 0;
977 p = ap;
978 for (i = 0; i < num; i++, p++) {
979 for (j = 0 ; (unsigned)j < _res.nsort; j++)
980 if (_res.sort_list[j].addr.s_addr ==
981 (((struct in_addr *)(*p))->s_addr & _res.sort_list[j].mask))
982 break;
983 aval[i] = j;
984 if (needsort == 0 && i > 0 && j < aval[i-1])
985 needsort = i;
987 if (!needsort)
988 return;
990 while (needsort < num) {
991 for (j = needsort - 1; j >= 0; j--) {
992 if (aval[j] > aval[j+1]) {
993 char *hp;
995 i = aval[j];
996 aval[j] = aval[j+1];
997 aval[j+1] = i;
999 hp = ap[j];
1000 ap[j] = ap[j+1];
1001 ap[j+1] = hp;
1003 } else
1004 break;
1006 needsort++;
1009 #endif
1011 #if defined(BSD43_BSD43_NFS) || defined(sun)
1012 /* some libc's out there are bound internally to these names (UMIPS) */
1013 void
1014 ht_sethostent(stayopen)
1015 int stayopen;
1017 _sethtent(stayopen);
1020 void
1021 ht_endhostent()
1023 _endhtent();
1026 struct hostent *
1027 ht_gethostbyname(name)
1028 char *name;
1030 return (_gethtbyname(name));
1033 struct hostent *
1034 ht_gethostbyaddr(addr, len, af)
1035 const char *addr;
1036 size_t len;
1037 int af;
1039 return (_gethtbyaddr(addr, len, af));
1042 struct hostent *
1043 gethostent()
1045 return (_gethtent());
1048 void
1049 dns_service()
1051 return;
1054 #undef dn_skipname
1055 dn_skipname(comp_dn, eom)
1056 const u_char *comp_dn, *eom;
1058 return (__dn_skipname(comp_dn, eom));
1060 #endif /*old-style libc with yp junk in it*/