Remove unused local functions. Const correctness. Sign correctness.
[dragonfly/netmp.git] / lib / libc / net / name6.c
blob4c1feb56a953bf5980903a4e53637b5e2c2306ad
1 /* $FreeBSD: src/lib/libc/net/name6.c,v 1.6.2.9 2002/11/02 18:54:57 ume Exp $ */
2 /* $DragonFly: src/lib/libc/net/name6.c,v 1.6 2005/04/27 16:46:12 joerg Exp $ */
3 /* $KAME: name6.c,v 1.25 2000/06/26 16:44:40 itojun Exp $ */
5 /*
6 * Copyright (C) 1995, 1996, 1997, 1998, and 1999 WIDE Project.
7 * All rights reserved.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the project 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.
21 * THIS SOFTWARE IS PROVIDED BY THE PROJECT 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 PROJECT 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.
34 * ++Copyright++ 1985, 1988, 1993
35 * -
36 * Copyright (c) 1985, 1988, 1993
37 * The Regents of the University of California. All rights reserved.
39 * Redistribution and use in source and binary forms, with or without
40 * modification, are permitted provided that the following conditions
41 * are met:
42 * 1. Redistributions of source code must retain the above copyright
43 * notice, this list of conditions and the following disclaimer.
44 * 2. Redistributions in binary form must reproduce the above copyright
45 * notice, this list of conditions and the following disclaimer in the
46 * documentation and/or other materials provided with the distribution.
47 * 3. All advertising materials mentioning features or use of this software
48 * must display the following acknowledgement:
49 * This product includes software developed by the University of
50 * California, Berkeley and its contributors.
51 * 4. Neither the name of the University nor the names of its contributors
52 * may be used to endorse or promote products derived from this software
53 * without specific prior written permission.
55 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
56 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
57 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
58 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
59 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
60 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
61 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
62 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
63 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
64 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
65 * SUCH DAMAGE.
66 * -
67 * Portions Copyright (c) 1993 by Digital Equipment Corporation.
69 * Permission to use, copy, modify, and distribute this software for any
70 * purpose with or without fee is hereby granted, provided that the above
71 * copyright notice and this permission notice appear in all copies, and that
72 * the name of Digital Equipment Corporation not be used in advertising or
73 * publicity pertaining to distribution of the document or software without
74 * specific, written prior permission.
76 * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
77 * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
78 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT
79 * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
80 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
81 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
82 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
83 * SOFTWARE.
84 * -
85 * --Copyright--
89 * Atsushi Onoe <onoe@sm.sony.co.jp>
93 * TODO for thread safe
94 * use mutex for _hostconf, _hostconf_init.
95 * rewrite resolvers to be thread safe
98 #include "namespace.h"
99 #include <sys/param.h>
100 #include <sys/socket.h>
101 #include <sys/time.h>
102 #include <sys/queue.h>
103 #include <netinet/in.h>
105 #include <arpa/inet.h>
106 #include <arpa/nameser.h>
108 #include <errno.h>
109 #include <netdb.h>
110 #include <resolv.h>
111 #include <stdio.h>
112 #include <stdlib.h>
113 #include <string.h>
114 #include <unistd.h>
115 #include "un-namespace.h"
117 #ifndef _PATH_HOSTS
118 #define _PATH_HOSTS "/etc/hosts"
119 #endif
121 #ifndef MAXALIASES
122 #define MAXALIASES 10
123 #endif
124 #ifndef MAXADDRS
125 #define MAXADDRS 20
126 #endif
127 #ifndef MAXDNAME
128 #define MAXDNAME 1025
129 #endif
131 #ifdef INET6
132 #define ADDRLEN(af) ((af) == AF_INET6 ? sizeof(struct in6_addr) : \
133 sizeof(struct in_addr))
134 #else
135 #define ADDRLEN(af) sizeof(struct in_addr)
136 #endif
138 #define MAPADDR(ab, ina) \
139 do { \
140 memcpy(&(ab)->map_inaddr, ina, sizeof(struct in_addr)); \
141 memset((ab)->map_zero, 0, sizeof((ab)->map_zero)); \
142 memset((ab)->map_one, 0xff, sizeof((ab)->map_one)); \
143 } while (0)
144 #define MAPADDRENABLED(flags) \
145 (((flags) & AI_V4MAPPED) || \
146 (((flags) & AI_V4MAPPED_CFG) && _mapped_addr_enabled()))
148 union inx_addr {
149 struct in_addr in_addr;
150 #ifdef INET6
151 struct in6_addr in6_addr;
152 #endif
153 struct {
154 u_char mau_zero[10];
155 u_char mau_one[2];
156 struct in_addr mau_inaddr;
157 } map_addr_un;
158 #define map_zero map_addr_un.mau_zero
159 #define map_one map_addr_un.mau_one
160 #define map_inaddr map_addr_un.mau_inaddr
163 static struct hostent *_hpcopy(struct hostent *hp, int *errp);
164 static struct hostent *_hpaddr(int af, const char *name, void *addr, int *errp);
165 static struct hostent *_hpmerge(struct hostent *hp1, struct hostent *hp2, int *errp);
166 #ifdef INET6
167 static struct hostent *_hpmapv6(struct hostent *hp, int *errp);
168 #endif
169 static struct hostent *_hpsort(struct hostent *hp);
170 static struct hostent *_ghbyname(const char *name, int af, int flags, int *errp);
171 static char *_hgetword(char **pp);
172 static int _mapped_addr_enabled(void);
174 static FILE *_files_open(int *errp);
175 static struct hostent *_files_ghbyname(const char *name, int af, int *errp);
176 static struct hostent *_files_ghbyaddr(const void *addr, int addrlen, int af, int *errp);
177 #ifdef YP
178 static struct hostent *_nis_ghbyname(const char *name, int af, int *errp);
179 static struct hostent *_nis_ghbyaddr(const void *addr, int addrlen, int af, int *errp);
180 #endif
181 static struct hostent *_dns_ghbyname(const char *name, int af, int *errp);
182 static struct hostent *_dns_ghbyaddr(const void *addr, int addrlen, int af, int *errp);
183 #ifdef ICMPNL
184 static struct hostent *_icmp_ghbyaddr(const void *addr, int addrlen, int af, int *errp);
185 #endif /* ICMPNL */
187 /* Make getipnodeby*() thread-safe in libc for use with kernel threads. */
188 #include "libc_private.h"
189 #include "spinlock.h"
191 * XXX: Our res_*() is not thread-safe. So, we share lock between
192 * getaddrinfo() and getipnodeby*(). Still, we cannot use
193 * getaddrinfo() and getipnodeby*() in conjunction with other
194 * functions which call res_*().
196 extern spinlock_t __getaddrinfo_thread_lock;
197 #define THREAD_LOCK() \
198 if (__isthreaded) _SPINLOCK(&__getaddrinfo_thread_lock);
199 #define THREAD_UNLOCK() \
200 if (__isthreaded) _SPINUNLOCK(&__getaddrinfo_thread_lock);
203 * Select order host function.
205 #define MAXHOSTCONF 4
207 #ifndef HOSTCONF
208 # define HOSTCONF "/etc/host.conf"
209 #endif /* !HOSTCONF */
211 struct _hostconf {
212 struct hostent *(*byname)(const char *name, int af, int *errp);
213 struct hostent *(*byaddr)(const void *addr, int addrlen, int af, int *errp);
216 /* default order */
217 static struct _hostconf _hostconf[MAXHOSTCONF] = {
218 { _dns_ghbyname, _dns_ghbyaddr },
219 { _files_ghbyname, _files_ghbyaddr },
220 #ifdef ICMPNL
221 { NULL, _icmp_ghbyaddr },
222 #endif /* ICMPNL */
225 static int _hostconf_init_done;
226 static void _hostconf_init(void);
229 * Initialize hostconf structure.
232 static void
233 _hostconf_init(void)
235 FILE *fp;
236 int n;
237 const char *p;
238 char *line;
239 char buf[BUFSIZ];
241 _hostconf_init_done = 1;
242 n = 0;
243 p = HOSTCONF;
244 if ((fp = fopen(p, "r")) == NULL)
245 return;
246 while (n < MAXHOSTCONF && fgets(buf, sizeof(buf), fp)) {
247 line = buf;
248 if ((p = _hgetword(&line)) == NULL)
249 continue;
250 do {
251 if (strcmp(p, "hosts") == 0
252 || strcmp(p, "local") == 0
253 || strcmp(p, "file") == 0
254 || strcmp(p, "files") == 0) {
255 _hostconf[n].byname = _files_ghbyname;
256 _hostconf[n].byaddr = _files_ghbyaddr;
257 n++;
259 else if (strcmp(p, "dns") == 0
260 || strcmp(p, "bind") == 0) {
261 _hostconf[n].byname = _dns_ghbyname;
262 _hostconf[n].byaddr = _dns_ghbyaddr;
263 n++;
265 #ifdef YP
266 else if (strcmp(p, "nis") == 0) {
267 _hostconf[n].byname = _nis_ghbyname;
268 _hostconf[n].byaddr = _nis_ghbyaddr;
269 n++;
271 #endif
272 #ifdef ICMPNL
273 else if (strcmp(p, "icmp") == 0) {
274 _hostconf[n].byname = NULL;
275 _hostconf[n].byaddr = _icmp_ghbyaddr;
276 n++;
278 #endif /* ICMPNL */
279 } while ((p = _hgetword(&line)) != NULL);
281 fclose(fp);
282 if (n < 0) {
283 /* no keyword found. do not change default configuration */
284 return;
286 for (; n < MAXHOSTCONF; n++) {
287 _hostconf[n].byname = NULL;
288 _hostconf[n].byaddr = NULL;
293 * Check if kernel supports mapped address.
294 * implementation dependent
296 #ifdef __KAME__
297 #include <sys/sysctl.h>
298 #endif /* __KAME__ */
300 static int
301 _mapped_addr_enabled(void)
303 /* implementation dependent check */
304 #if defined(__KAME__) && defined(IPV6CTL_MAPPED_ADDR)
305 int mib[4];
306 size_t len;
307 int val;
309 mib[0] = CTL_NET;
310 mib[1] = PF_INET6;
311 mib[2] = IPPROTO_IPV6;
312 mib[3] = IPV6CTL_MAPPED_ADDR;
313 len = sizeof(val);
314 if (sysctl(mib, 4, &val, &len, 0, 0) == 0 && val != 0)
315 return 1;
316 #endif /* __KAME__ && IPV6CTL_MAPPED_ADDR */
317 return 0;
321 * Functions defined in RFC2553
322 * getipnodebyname, getipnodebyaddr, freehostent
325 static struct hostent *
326 _ghbyname(const char *name, int af, int flags, int *errp)
328 struct hostent *hp;
329 int i;
331 if (flags & AI_ADDRCONFIG) {
332 int s;
335 * TODO:
336 * Note that implementation dependent test for address
337 * configuration should be done everytime called
338 * (or apropriate interval),
339 * because addresses will be dynamically assigned or deleted.
341 if (af == AF_UNSPEC) {
342 if ((s = _socket(AF_INET6, SOCK_DGRAM, 0)) < 0)
343 af = AF_INET;
344 else {
345 _close(s);
346 if ((s = _socket(AF_INET, SOCK_DGRAM, 0)) < 0)
347 af = AF_INET6;
348 else
349 _close(s);
353 if (af != AF_UNSPEC) {
354 if ((s = _socket(af, SOCK_DGRAM, 0)) < 0)
355 return NULL;
356 _close(s);
360 THREAD_LOCK();
361 for (i = 0; i < MAXHOSTCONF; i++) {
362 if (_hostconf[i].byname
363 && (hp = (*_hostconf[i].byname)(name, af, errp)) != NULL) {
364 THREAD_UNLOCK();
365 return hp;
368 THREAD_UNLOCK();
370 return NULL;
373 /* getipnodebyname() internal routine for multiple query(PF_UNSPEC) support. */
374 static struct hostent *
375 _getipnodebyname_multi(const char *name, int af, int flags, int *errp)
377 struct hostent *hp;
378 union inx_addr addrbuf;
380 /* XXX: PF_UNSPEC is only supposed to be passed from getaddrinfo() */
381 if (af != AF_INET
382 #ifdef INET6
383 && af != AF_INET6
384 #endif
385 && af != PF_UNSPEC
388 *errp = NO_RECOVERY;
389 return NULL;
392 #ifdef INET6
393 /* special case for literal address */
394 if (inet_pton(AF_INET6, name, &addrbuf) == 1) {
395 if (af != AF_INET6) {
396 *errp = HOST_NOT_FOUND;
397 return NULL;
399 return _hpaddr(af, name, &addrbuf, errp);
401 #endif
402 if (inet_aton(name, (struct in_addr *)&addrbuf) == 1) {
403 if (af != AF_INET) {
404 if (MAPADDRENABLED(flags)) {
405 MAPADDR(&addrbuf, &addrbuf.in_addr);
406 } else {
407 *errp = HOST_NOT_FOUND;
408 return NULL;
411 return _hpaddr(af, name, &addrbuf, errp);
414 if (!_hostconf_init_done)
415 _hostconf_init();
417 *errp = HOST_NOT_FOUND;
418 hp = _ghbyname(name, af, flags, errp);
420 #ifdef INET6
421 if (af == AF_INET6
422 && ((flags & AI_ALL) || hp == NULL)
423 && (MAPADDRENABLED(flags))) {
424 struct hostent *hp2 = _ghbyname(name, AF_INET, flags, errp);
425 if (hp == NULL)
426 hp = _hpmapv6(hp2, errp);
427 else {
428 if (hp2 && strcmp(hp->h_name, hp2->h_name) != 0) {
429 freehostent(hp2);
430 hp2 = NULL;
432 hp = _hpmerge(hp, hp2, errp);
435 #endif
436 return _hpsort(hp);
439 struct hostent *
440 getipnodebyname(const char *name, int af, int flags, int *errp)
442 if (af != AF_INET
443 #ifdef INET6
444 && af != AF_INET6
445 #endif
448 *errp = NO_RECOVERY;
449 return NULL;
451 return(_getipnodebyname_multi(name, af ,flags, errp));
454 struct hostent *
455 getipnodebyaddr(const void *src, size_t len, int af, int *errp)
457 struct hostent *hp;
458 int i;
459 #ifdef INET6
460 struct in6_addr addrbuf;
461 #else
462 struct in_addr addrbuf;
463 #endif
465 *errp = HOST_NOT_FOUND;
467 switch (af) {
468 case AF_INET:
469 if (len != sizeof(struct in_addr)) {
470 *errp = NO_RECOVERY;
471 return NULL;
473 if ((long)src & ~(sizeof(struct in_addr) - 1)) {
474 memcpy(&addrbuf, src, len);
475 src = &addrbuf;
477 if (((const struct in_addr *)src)->s_addr == 0)
478 return NULL;
479 break;
480 #ifdef INET6
481 case AF_INET6:
482 if (len != sizeof(struct in6_addr)) {
483 *errp = NO_RECOVERY;
484 return NULL;
486 if ((long)src & ~(sizeof(struct in6_addr) / 2 - 1)) { /*XXX*/
487 memcpy(&addrbuf, src, len);
488 src = &addrbuf;
490 if (IN6_IS_ADDR_UNSPECIFIED((const struct in6_addr *)src))
491 return NULL;
492 if (IN6_IS_ADDR_V4MAPPED((const struct in6_addr *)src)
493 || IN6_IS_ADDR_V4COMPAT((const struct in6_addr *)src)) {
494 src = (const char *)src +
495 (sizeof(struct in6_addr) - sizeof(struct in_addr));
496 af = AF_INET;
497 len = sizeof(struct in_addr);
499 break;
500 #endif
501 default:
502 *errp = NO_RECOVERY;
503 return NULL;
506 if (!_hostconf_init_done)
507 _hostconf_init();
508 THREAD_LOCK();
509 for (i = 0; i < MAXHOSTCONF; i++) {
510 if (_hostconf[i].byaddr
511 && (hp = (*_hostconf[i].byaddr)(src, len, af, errp)) != NULL) {
512 THREAD_UNLOCK();
513 return hp;
516 THREAD_UNLOCK();
518 return NULL;
521 void
522 freehostent(struct hostent *ptr)
524 free(ptr);
527 #if 0
529 /* XXX: should be deprecated */
530 struct hostent *
531 getnodebyname(const char *name, int af, int flags)
533 return getipnodebyname(name, af, flags, &h_errno);
536 #ifdef __warn_references
537 __warn_references(getnodebyname,
538 "warning: getnodebyname() deprecated, "
539 "should use getaddrinfo() or getipnodebyname()");
540 #endif
542 struct hostent *
543 getnodebyaddr(const void *src, size_t len, int af)
545 return getipnodebyaddr(src, len, af, &h_errno);
548 #ifdef __warn_references
549 __warn_references(getnodebyaddr,
550 "warning: getnodebyaddr() deprecated, "
551 "should use getnameinfo() or getipnodebyaddr()");
552 #endif
554 #endif
557 * Private utility functions
561 * _hpcopy: allocate and copy hostent structure
563 static struct hostent *
564 _hpcopy(struct hostent *hp, int *errp)
566 struct hostent *nhp;
567 char *cp, **pp;
568 int size, addrsize;
569 int nalias = 0, naddr = 0;
570 int al_off;
571 int i;
573 if (hp == NULL)
574 return hp;
576 /* count size to be allocated */
577 size = sizeof(struct hostent);
578 if (hp->h_name != NULL)
579 size += strlen(hp->h_name) + 1;
580 if ((pp = hp->h_aliases) != NULL) {
581 for (i = 0; *pp != NULL; i++, pp++) {
582 if (**pp != '\0') {
583 size += strlen(*pp) + 1;
584 nalias++;
588 /* adjust alignment */
589 size = ALIGN(size);
590 al_off = size;
591 size += sizeof(char *) * (nalias + 1);
592 addrsize = ALIGN(hp->h_length);
593 if ((pp = hp->h_addr_list) != NULL) {
594 while (*pp++ != NULL)
595 naddr++;
597 size += addrsize * naddr;
598 size += sizeof(char *) * (naddr + 1);
600 /* copy */
601 if ((nhp = (struct hostent *)malloc(size)) == NULL) {
602 *errp = TRY_AGAIN;
603 return NULL;
605 cp = (char *)&nhp[1];
606 if (hp->h_name != NULL) {
607 nhp->h_name = cp;
608 strcpy(cp, hp->h_name);
609 cp += strlen(cp) + 1;
610 } else
611 nhp->h_name = NULL;
612 nhp->h_aliases = (char **)((char *)nhp + al_off);
613 if ((pp = hp->h_aliases) != NULL) {
614 for (i = 0; *pp != NULL; pp++) {
615 if (**pp != '\0') {
616 nhp->h_aliases[i++] = cp;
617 strcpy(cp, *pp);
618 cp += strlen(cp) + 1;
622 nhp->h_aliases[nalias] = NULL;
623 cp = (char *)&nhp->h_aliases[nalias + 1];
624 nhp->h_addrtype = hp->h_addrtype;
625 nhp->h_length = hp->h_length;
626 nhp->h_addr_list = (char **)cp;
627 if ((pp = hp->h_addr_list) != NULL) {
628 cp = (char *)&nhp->h_addr_list[naddr + 1];
629 for (i = 0; *pp != NULL; pp++) {
630 nhp->h_addr_list[i++] = cp;
631 memcpy(cp, *pp, hp->h_length);
632 cp += addrsize;
635 nhp->h_addr_list[naddr] = NULL;
636 return nhp;
640 * _hpaddr: construct hostent structure with one address
642 static struct hostent *
643 _hpaddr(int af, const char *name, void *addr, int *errp)
645 struct hostent *hp, hpbuf;
646 char *addrs[2];
648 hp = &hpbuf;
649 hp->h_name = name;
650 hp->h_aliases = NULL;
651 hp->h_addrtype = af;
652 hp->h_length = ADDRLEN(af);
653 hp->h_addr_list = addrs;
654 addrs[0] = addr;
655 addrs[1] = NULL;
656 return _hpcopy(hp, errp);
660 * _hpmerge: merge 2 hostent structure, arguments will be freed
662 static struct hostent *
663 _hpmerge(struct hostent *hp1, struct hostent *hp2, int *errp)
665 int i, j;
666 int naddr, nalias;
667 char **pp;
668 struct hostent *hp, hpbuf;
669 char *aliases[MAXALIASES + 1], *addrs[MAXADDRS + 1];
670 union inx_addr addrbuf[MAXADDRS];
672 if (hp1 == NULL)
673 return hp2;
674 if (hp2 == NULL)
675 return hp1;
677 #define HP(i) (i == 1 ? hp1 : hp2)
678 hp = &hpbuf;
679 hp->h_name = (hp1->h_name != NULL ? hp1->h_name : hp2->h_name);
680 hp->h_aliases = aliases;
681 nalias = 0;
682 for (i = 1; i <= 2; i++) {
683 if ((pp = HP(i)->h_aliases) == NULL)
684 continue;
685 for (; nalias < MAXALIASES && *pp != NULL; pp++) {
686 /* check duplicates */
687 for (j = 0; j < nalias; j++)
688 if (strcasecmp(*pp, aliases[j]) == 0)
689 break;
690 if (j == nalias)
691 aliases[nalias++] = *pp;
694 aliases[nalias] = NULL;
695 #ifdef INET6
696 if (hp1->h_length != hp2->h_length) {
697 hp->h_addrtype = AF_INET6;
698 hp->h_length = sizeof(struct in6_addr);
699 } else {
700 #endif
701 hp->h_addrtype = hp1->h_addrtype;
702 hp->h_length = hp1->h_length;
703 #ifdef INET6
705 #endif
706 hp->h_addr_list = addrs;
707 naddr = 0;
708 for (i = 1; i <= 2; i++) {
709 if ((pp = HP(i)->h_addr_list) == NULL)
710 continue;
711 if (HP(i)->h_length == hp->h_length) {
712 while (naddr < MAXADDRS && *pp != NULL)
713 addrs[naddr++] = *pp++;
714 } else {
715 /* copy IPv4 addr as mapped IPv6 addr */
716 while (naddr < MAXADDRS && *pp != NULL) {
717 MAPADDR(&addrbuf[naddr], *pp++);
718 addrs[naddr] = (char *)&addrbuf[naddr];
719 naddr++;
723 addrs[naddr] = NULL;
724 hp = _hpcopy(hp, errp);
725 freehostent(hp1);
726 freehostent(hp2);
727 return hp;
731 * _hpmapv6: convert IPv4 hostent into IPv4-mapped IPv6 addresses
733 #ifdef INET6
734 static struct hostent *
735 _hpmapv6(struct hostent *hp, int *errp)
737 struct hostent *hp6;
739 if (hp == NULL)
740 return NULL;
741 if (hp->h_addrtype == AF_INET6)
742 return hp;
744 /* make dummy hostent to convert IPv6 address */
745 if ((hp6 = (struct hostent *)malloc(sizeof(struct hostent))) == NULL) {
746 *errp = TRY_AGAIN;
747 return NULL;
749 hp6->h_name = NULL;
750 hp6->h_aliases = NULL;
751 hp6->h_addrtype = AF_INET6;
752 hp6->h_length = sizeof(struct in6_addr);
753 hp6->h_addr_list = NULL;
754 return _hpmerge(hp6, hp, errp);
756 #endif
759 * _hpsort: sort address by sortlist
761 static struct hostent *
762 _hpsort(struct hostent *hp)
764 int i, j, n;
765 u_char *ap, *sp, *mp, **pp;
766 char t;
767 char order[MAXADDRS];
768 int nsort = _res.nsort;
770 if (hp == NULL || hp->h_addr_list[1] == NULL || nsort == 0)
771 return hp;
772 for (i = 0; (ap = (u_char *)hp->h_addr_list[i]); i++) {
773 for (j = 0; j < nsort; j++) {
774 #ifdef INET6
775 if (_res_ext.sort_list[j].af != hp->h_addrtype)
776 continue;
777 sp = (u_char *)&_res_ext.sort_list[j].addr;
778 mp = (u_char *)&_res_ext.sort_list[j].mask;
779 #else
780 sp = (u_char *)&_res.sort_list[j].addr;
781 mp = (u_char *)&_res.sort_list[j].mask;
782 #endif
783 for (n = 0; n < hp->h_length; n++) {
784 if ((ap[n] & mp[n]) != sp[n])
785 break;
787 if (n == hp->h_length)
788 break;
790 order[i] = j;
792 n = i;
793 pp = (u_char **)hp->h_addr_list;
794 for (i = 0; i < n - 1; i++) {
795 for (j = i + 1; j < n; j++) {
796 if (order[i] > order[j]) {
797 ap = pp[i];
798 pp[i] = pp[j];
799 pp[j] = ap;
800 t = order[i];
801 order[i] = order[j];
802 order[j] = t;
806 return hp;
809 static char *
810 _hgetword(char **pp)
812 char c, *p, *ret;
813 const char *sp;
814 static const char sep[] = "# \t\n";
816 ret = NULL;
817 for (p = *pp; (c = *p) != '\0'; p++) {
818 for (sp = sep; *sp != '\0'; sp++) {
819 if (c == *sp)
820 break;
822 if (c == '#')
823 p[1] = '\0'; /* ignore rest of line */
824 if (ret == NULL) {
825 if (*sp == '\0')
826 ret = p;
827 } else {
828 if (*sp != '\0') {
829 *p++ = '\0';
830 break;
834 *pp = p;
835 if (ret == NULL || *ret == '\0')
836 return NULL;
837 return ret;
841 * FILES (/etc/hosts)
844 static FILE *
845 _files_open(int *errp)
847 FILE *fp;
848 fp = fopen(_PATH_HOSTS, "r");
849 if (fp == NULL)
850 *errp = NO_RECOVERY;
851 return fp;
854 static struct hostent *
855 _files_ghbyname(const char *name, int af, int *errp)
857 int match, nalias;
858 char *p, *line, *addrstr, *cname;
859 FILE *fp;
860 struct hostent *rethp, *hp, hpbuf;
861 char *aliases[MAXALIASES + 1], *addrs[2];
862 union inx_addr addrbuf;
863 char buf[BUFSIZ];
864 int af0 = af;
866 if ((fp = _files_open(errp)) == NULL)
867 return NULL;
868 rethp = hp = NULL;
870 while (fgets(buf, sizeof(buf), fp)) {
871 line = buf;
872 if ((addrstr = _hgetword(&line)) == NULL
873 || (cname = _hgetword(&line)) == NULL)
874 continue;
875 match = (strcasecmp(cname, name) == 0);
876 nalias = 0;
877 while ((p = _hgetword(&line)) != NULL) {
878 if (!match)
879 match = (strcasecmp(p, name) == 0);
880 if (nalias < MAXALIASES)
881 aliases[nalias++] = p;
883 if (!match)
884 continue;
885 switch (af0) {
886 case AF_INET:
887 if (inet_aton(addrstr, (struct in_addr *)&addrbuf)
888 != 1) {
889 *errp = NO_DATA; /* name found */
890 continue;
892 af = af0;
893 break;
894 #ifdef INET6
895 case AF_INET6:
896 if (inet_pton(af, addrstr, &addrbuf) != 1) {
897 *errp = NO_DATA; /* name found */
898 continue;
900 af = af0;
901 break;
902 #endif
903 case AF_UNSPEC:
904 if (inet_aton(addrstr, (struct in_addr *)&addrbuf)
905 == 1) {
906 af = AF_INET;
907 break;
909 #ifdef INET6
910 if (inet_pton(AF_INET6, addrstr, &addrbuf) == 1) {
911 af = AF_INET6;
912 break;
914 #endif
915 *errp = NO_DATA; /* name found */
916 continue;
917 /* NOTREACHED */
919 hp = &hpbuf;
920 hp->h_name = cname;
921 hp->h_aliases = aliases;
922 aliases[nalias] = NULL;
923 hp->h_addrtype = af;
924 hp->h_length = ADDRLEN(af);
925 hp->h_addr_list = addrs;
926 addrs[0] = (char *)&addrbuf;
927 addrs[1] = NULL;
928 hp = _hpcopy(hp, errp);
929 rethp = _hpmerge(rethp, hp, errp);
931 fclose(fp);
932 return rethp;
935 static struct hostent *
936 _files_ghbyaddr(const void *addr, int addrlen, int af, int *errp)
938 int nalias;
939 char *p, *line;
940 FILE *fp;
941 struct hostent *hp, hpbuf;
942 char *aliases[MAXALIASES + 1], *addrs[2];
943 union inx_addr addrbuf;
944 char buf[BUFSIZ];
946 if ((fp = _files_open(errp)) == NULL)
947 return NULL;
948 hp = NULL;
949 while (fgets(buf, sizeof(buf), fp)) {
950 line = buf;
951 if ((p = _hgetword(&line)) == NULL
952 || (af == AF_INET
953 ? inet_aton(p, (struct in_addr *)&addrbuf)
954 : inet_pton(af, p, &addrbuf)) != 1
955 || memcmp(addr, &addrbuf, addrlen) != 0
956 || (p = _hgetword(&line)) == NULL)
957 continue;
958 hp = &hpbuf;
959 hp->h_name = p;
960 hp->h_aliases = aliases;
961 nalias = 0;
962 while ((p = _hgetword(&line)) != NULL) {
963 if (nalias < MAXALIASES)
964 aliases[nalias++] = p;
966 aliases[nalias] = NULL;
967 hp->h_addrtype = af;
968 hp->h_length = addrlen;
969 hp->h_addr_list = addrs;
970 addrs[0] = (char *)&addrbuf;
971 addrs[1] = NULL;
972 hp = _hpcopy(hp, errp);
973 break;
975 fclose(fp);
976 return hp;
979 #ifdef YP
981 * NIS
983 * XXX actually a hack, these are INET4 specific.
985 static struct hostent *
986 _nis_ghbyname(const char *name, int af, int *errp)
988 struct hostent *hp = NULL;
990 if (af == AF_UNSPEC)
991 af = AF_INET;
992 if (af == AF_INET) {
993 hp = _gethostbynisname(name, af);
994 if (hp != NULL)
995 hp = _hpcopy(hp, errp);
997 return (hp);
1001 static struct hostent *
1002 _nis_ghbyaddr(const void *addr, int addrlen, int af, int *errp)
1004 struct hostent *hp = NULL;
1006 if (af == AF_INET) {
1007 hp = _gethostbynisaddr(addr, addrlen, af);
1008 if (hp != NULL)
1009 hp = _hpcopy(hp, errp);
1011 return (hp);
1013 #endif
1015 struct __res_type_list {
1016 SLIST_ENTRY(__res_type_list) rtl_entry;
1017 int rtl_type;
1020 #define MAXPACKET (64*1024)
1022 typedef union {
1023 HEADER hdr;
1024 u_char buf[MAXPACKET];
1025 } querybuf;
1027 static struct hostent *getanswer (const querybuf *, int, const char *,
1028 int, struct hostent *, int *);
1031 * we don't need to take care about sorting, nor IPv4 mapped address here.
1033 static struct hostent *
1034 getanswer(answer, anslen, qname, qtype, template, errp)
1035 const querybuf *answer;
1036 int anslen;
1037 const char *qname;
1038 int qtype;
1039 struct hostent *template;
1040 int *errp;
1042 const HEADER *hp;
1043 const u_char *cp;
1044 int n;
1045 const u_char *eom, *erdata;
1046 char *bp, **ap, **hap, *obp;
1047 int type, class, buflen, ancount, qdcount;
1048 int haveanswer, had_error;
1049 char tbuf[MAXDNAME];
1050 const char *tname;
1051 int (*name_ok) (const char *);
1052 static char *h_addr_ptrs[MAXADDRS + 1];
1053 static char *host_aliases[MAXALIASES];
1054 static char hostbuf[8*1024];
1056 #define BOUNDED_INCR(x) \
1057 do { \
1058 cp += x; \
1059 if (cp > eom) { \
1060 *errp = NO_RECOVERY; \
1061 return (NULL); \
1063 } while (0)
1065 #define BOUNDS_CHECK(ptr, count) \
1066 do { \
1067 if ((ptr) + (count) > eom) { \
1068 *errp = NO_RECOVERY; \
1069 return (NULL); \
1071 } while (0)
1073 /* XXX do {} while (0) cannot be put here */
1074 #define DNS_ASSERT(x) \
1076 if (!(x)) { \
1077 cp += n; \
1078 continue; \
1082 /* XXX do {} while (0) cannot be put here */
1083 #define DNS_FATAL(x) \
1085 if (!(x)) { \
1086 had_error++; \
1087 continue; \
1091 tname = qname;
1092 template->h_name = NULL;
1093 eom = answer->buf + anslen;
1094 switch (qtype) {
1095 case T_A:
1096 case T_AAAA:
1097 name_ok = res_hnok;
1098 break;
1099 case T_PTR:
1100 name_ok = res_dnok;
1101 break;
1102 default:
1103 return (NULL); /* XXX should be abort(); */
1106 * find first satisfactory answer
1108 hp = &answer->hdr;
1109 ancount = ntohs(hp->ancount);
1110 qdcount = ntohs(hp->qdcount);
1111 bp = hostbuf;
1112 buflen = sizeof hostbuf;
1113 cp = answer->buf;
1114 BOUNDED_INCR(HFIXEDSZ);
1115 if (qdcount != 1) {
1116 *errp = NO_RECOVERY;
1117 return (NULL);
1119 n = dn_expand(answer->buf, eom, cp, bp, buflen);
1120 if ((n < 0) || !(*name_ok)(bp)) {
1121 *errp = NO_RECOVERY;
1122 return (NULL);
1124 BOUNDED_INCR(n + QFIXEDSZ);
1125 if (qtype == T_A || qtype == T_AAAA) {
1126 /* res_send() has already verified that the query name is the
1127 * same as the one we sent; this just gets the expanded name
1128 * (i.e., with the succeeding search-domain tacked on).
1130 n = strlen(bp) + 1; /* for the \0 */
1131 if (n >= MAXHOSTNAMELEN) {
1132 *errp = NO_RECOVERY;
1133 return (NULL);
1135 template->h_name = bp;
1136 bp += n;
1137 buflen -= n;
1138 /* The qname can be abbreviated, but h_name is now absolute. */
1139 qname = template->h_name;
1141 ap = host_aliases;
1142 *ap = NULL;
1143 template->h_aliases = host_aliases;
1144 hap = h_addr_ptrs;
1145 *hap = NULL;
1146 template->h_addr_list = h_addr_ptrs;
1147 haveanswer = 0;
1148 had_error = 0;
1149 while (ancount-- > 0 && cp < eom && !had_error) {
1150 n = dn_expand(answer->buf, eom, cp, bp, buflen);
1151 DNS_FATAL(n >= 0);
1152 DNS_FATAL((*name_ok)(bp));
1153 cp += n; /* name */
1154 BOUNDS_CHECK(cp, 3 * INT16SZ + INT32SZ);
1155 NS_GET16(type, cp);
1156 cp += INT16SZ; /* type */
1157 NS_GET16(class, cp);
1158 cp += INT16SZ + INT32SZ; /* class, TTL */
1159 NS_GET16(n, cp);
1160 cp += INT16SZ; /* len */
1161 BOUNDS_CHECK(cp, n);
1162 erdata = cp + n;
1163 DNS_ASSERT(class == C_IN);
1164 if ((qtype == T_A || qtype == T_AAAA) && type == T_CNAME) {
1165 if (ap >= &host_aliases[MAXALIASES-1])
1166 continue;
1167 n = dn_expand(answer->buf, eom, cp, tbuf, sizeof tbuf);
1168 DNS_FATAL(n >= 0);
1169 DNS_FATAL((*name_ok)(tbuf));
1170 cp += n;
1171 if (cp != erdata) {
1172 *errp = NO_RECOVERY;
1173 return (NULL);
1175 /* Store alias. */
1176 *ap++ = bp;
1177 n = strlen(bp) + 1; /* for the \0 */
1178 DNS_FATAL(n < MAXHOSTNAMELEN);
1179 bp += n;
1180 buflen -= n;
1181 /* Get canonical name. */
1182 n = strlen(tbuf) + 1; /* for the \0 */
1183 DNS_FATAL(n <= buflen);
1184 DNS_FATAL(n < MAXHOSTNAMELEN);
1185 strcpy(bp, tbuf);
1186 template->h_name = bp;
1187 bp += n;
1188 buflen -= n;
1189 continue;
1191 if (qtype == T_PTR && type == T_CNAME) {
1192 n = dn_expand(answer->buf, eom, cp, tbuf, sizeof tbuf);
1193 if (n < 0 || !res_dnok(tbuf)) {
1194 had_error++;
1195 continue;
1197 cp += n;
1198 if (cp != erdata) {
1199 *errp = NO_RECOVERY;
1200 return (NULL);
1202 /* Get canonical name. */
1203 n = strlen(tbuf) + 1; /* for the \0 */
1204 if (n > buflen || n >= MAXHOSTNAMELEN) {
1205 had_error++;
1206 continue;
1208 strcpy(bp, tbuf);
1209 tname = bp;
1210 bp += n;
1211 buflen -= n;
1212 continue;
1214 DNS_ASSERT(type == qtype);
1215 switch (type) {
1216 case T_PTR:
1217 DNS_ASSERT(strcasecmp(tname, bp) == 0);
1218 n = dn_expand(answer->buf, eom, cp, bp, buflen);
1219 DNS_FATAL(n >= 0);
1220 DNS_FATAL(res_hnok(bp));
1221 #if MULTI_PTRS_ARE_ALIASES
1222 cp += n;
1223 if (cp != erdata) {
1224 *errp = NO_RECOVERY;
1225 return (NULL);
1227 if (!haveanswer)
1228 template->h_name = bp;
1229 else if (ap < &host_aliases[MAXALIASES-1])
1230 *ap++ = bp;
1231 else
1232 n = -1;
1233 if (n != -1) {
1234 n = strlen(bp) + 1; /* for the \0 */
1235 if (n >= MAXHOSTNAMELEN) {
1236 had_error++;
1237 break;
1239 bp += n;
1240 buflen -= n;
1242 break;
1243 #else
1244 template->h_name = bp;
1245 *errp = NETDB_SUCCESS;
1246 return (template);
1247 #endif
1248 case T_A:
1249 case T_AAAA:
1250 DNS_ASSERT(strcasecmp(template->h_name, bp) == 0);
1251 DNS_ASSERT(n == template->h_length);
1252 if (!haveanswer) {
1253 int nn;
1255 template->h_name = bp;
1256 nn = strlen(bp) + 1; /* for the \0 */
1257 bp += nn;
1258 buflen -= nn;
1260 obp = bp; /* ALIGN rounds up */
1261 bp = (char *)ALIGN(bp);
1262 buflen -= (bp - obp);
1264 DNS_FATAL(bp + n < &hostbuf[sizeof hostbuf]);
1265 DNS_ASSERT(hap < &h_addr_ptrs[MAXADDRS-1]);
1266 #ifdef FILTER_V4MAPPED
1267 if (type == T_AAAA) {
1268 struct in6_addr in6;
1269 memcpy(&in6, cp, sizeof(in6));
1270 DNS_ASSERT(IN6_IS_ADDR_V4MAPPED(&in6) == 0);
1272 #endif
1273 bcopy(cp, *hap++ = bp, n);
1274 bp += n;
1275 buflen -= n;
1276 cp += n;
1277 if (cp != erdata) {
1278 *errp = NO_RECOVERY;
1279 return (NULL);
1281 break;
1282 default:
1283 abort();
1285 if (!had_error)
1286 haveanswer++;
1288 if (haveanswer) {
1289 *ap = NULL;
1290 *hap = NULL;
1291 if (!template->h_name) {
1292 n = strlen(qname) + 1; /* for the \0 */
1293 if (n > buflen || n >= MAXHOSTNAMELEN)
1294 goto no_recovery;
1295 strcpy(bp, qname);
1296 template->h_name = bp;
1297 bp += n;
1298 buflen -= n;
1300 *errp = NETDB_SUCCESS;
1301 return (template);
1303 no_recovery:
1304 *errp = NO_RECOVERY;
1305 return (NULL);
1307 #undef BOUNDED_INCR
1308 #undef BOUNDS_CHECK
1309 #undef DNS_ASSERT
1310 #undef DNS_FATAL
1313 /* res_search() variant with multiple query support. */
1314 static struct hostent *
1315 _res_search_multi(const char *name, struct __res_type_list *rtl, int *errp)
1317 const char *cp, * const *domain;
1318 struct hostent *hp0 = NULL, *hp;
1319 struct hostent hpbuf;
1320 u_int dots;
1321 int trailing_dot, ret, saved_herrno;
1322 int got_nodata = 0, got_servfail = 0, tried_as_is = 0;
1323 struct __res_type_list *rtl0 = rtl;
1324 querybuf *buf;
1326 if ((_res.options & RES_INIT) == 0 && res_init() == -1) {
1327 *errp = NETDB_INTERNAL;
1328 return (NULL);
1330 dots = 0;
1331 for (cp = name; *cp; cp++)
1332 dots += (*cp == '.');
1333 trailing_dot = 0;
1334 if (cp > name && *--cp == '.')
1335 trailing_dot++;
1337 buf = malloc(sizeof(*buf));
1338 if (buf == NULL) {
1339 *errp = NETDB_INTERNAL;
1340 return NULL;
1343 /* If there aren't any dots, it could be a user-level alias */
1344 if (!dots && (cp = hostalias(name)) != NULL) {
1345 for(rtl = rtl0; rtl != NULL;
1346 rtl = SLIST_NEXT(rtl, rtl_entry)) {
1347 ret = res_query(cp, C_IN, rtl->rtl_type, buf->buf,
1348 sizeof(buf->buf));
1349 if (ret > 0 && (size_t)ret < sizeof(buf->buf)) {
1350 hpbuf.h_addrtype = (rtl->rtl_type == T_AAAA)
1351 ? AF_INET6 : AF_INET;
1352 hpbuf.h_length = ADDRLEN(hpbuf.h_addrtype);
1353 hp = getanswer(buf, ret, name, rtl->rtl_type,
1354 &hpbuf, errp);
1355 if (!hp)
1356 continue;
1357 hp = _hpcopy(&hpbuf, errp);
1358 hp0 = _hpmerge(hp0, hp, errp);
1361 free(buf);
1362 return (hp0);
1366 * If there are dots in the name already, let's just give it a try
1367 * 'as is'. The threshold can be set with the "ndots" option.
1369 saved_herrno = -1;
1370 if (dots >= _res.ndots) {
1371 for(rtl = rtl0; rtl != NULL;
1372 rtl = SLIST_NEXT(rtl, rtl_entry)) {
1373 ret = res_querydomain(name, NULL, C_IN, rtl->rtl_type,
1374 buf->buf, sizeof(buf->buf));
1375 if (ret > 0 && (size_t)ret < sizeof(buf->buf)) {
1376 hpbuf.h_addrtype = (rtl->rtl_type == T_AAAA)
1377 ? AF_INET6 : AF_INET;
1378 hpbuf.h_length = ADDRLEN(hpbuf.h_addrtype);
1379 hp = getanswer(buf, ret, name, rtl->rtl_type,
1380 &hpbuf, errp);
1381 if (!hp)
1382 continue;
1383 hp = _hpcopy(&hpbuf, errp);
1384 hp0 = _hpmerge(hp0, hp, errp);
1387 if (hp0 != NULL) {
1388 free(buf);
1389 return (hp0);
1391 saved_herrno = *errp;
1392 tried_as_is++;
1396 * We do at least one level of search if
1397 * - there is no dot and RES_DEFNAME is set, or
1398 * - there is at least one dot, there is no trailing dot,
1399 * and RES_DNSRCH is set.
1401 if ((!dots && (_res.options & RES_DEFNAMES)) ||
1402 (dots && !trailing_dot && (_res.options & RES_DNSRCH))) {
1403 int done = 0;
1405 for (domain = (const char * const *)_res.dnsrch;
1406 *domain && !done;
1407 domain++) {
1409 for(rtl = rtl0; rtl != NULL;
1410 rtl = SLIST_NEXT(rtl, rtl_entry)) {
1411 ret = res_querydomain(name, *domain, C_IN,
1412 rtl->rtl_type,
1413 buf->buf, sizeof(buf->buf));
1414 if (ret > 0 && (size_t)ret < sizeof(buf->buf)) {
1415 hpbuf.h_addrtype = (rtl->rtl_type == T_AAAA)
1416 ? AF_INET6 : AF_INET;
1417 hpbuf.h_length = ADDRLEN(hpbuf.h_addrtype);
1418 hp = getanswer(buf, ret, name,
1419 rtl->rtl_type, &hpbuf, errp);
1420 if (!hp)
1421 continue;
1422 hp = _hpcopy(&hpbuf, errp);
1423 hp0 = _hpmerge(hp0, hp, errp);
1426 if (hp0 != NULL) {
1427 free(buf);
1428 return (hp0);
1432 * If no server present, give up.
1433 * If name isn't found in this domain,
1434 * keep trying higher domains in the search list
1435 * (if that's enabled).
1436 * On a NO_DATA error, keep trying, otherwise
1437 * a wildcard entry of another type could keep us
1438 * from finding this entry higher in the domain.
1439 * If we get some other error (negative answer or
1440 * server failure), then stop searching up,
1441 * but try the input name below in case it's
1442 * fully-qualified.
1444 if (errno == ECONNREFUSED) {
1445 free(buf);
1446 *errp = TRY_AGAIN;
1447 return (NULL);
1450 switch (*errp) {
1451 case NO_DATA:
1452 got_nodata++;
1453 /* FALLTHROUGH */
1454 case HOST_NOT_FOUND:
1455 /* keep trying */
1456 break;
1457 case TRY_AGAIN:
1458 if (buf->hdr.rcode == SERVFAIL) {
1459 /* try next search element, if any */
1460 got_servfail++;
1461 break;
1463 /* FALLTHROUGH */
1464 default:
1465 /* anything else implies that we're done */
1466 done++;
1469 /* if we got here for some reason other than DNSRCH,
1470 * we only wanted one iteration of the loop, so stop.
1472 if (!(_res.options & RES_DNSRCH))
1473 done++;
1478 * If we have not already tried the name "as is", do that now.
1479 * note that we do this regardless of how many dots were in the
1480 * name or whether it ends with a dot unless NOTLDQUERY is set.
1482 if (!tried_as_is && (dots || !(_res.options & RES_NOTLDQUERY))) {
1483 for(rtl = rtl0; rtl != NULL;
1484 rtl = SLIST_NEXT(rtl, rtl_entry)) {
1485 ret = res_querydomain(name, NULL, C_IN, rtl->rtl_type,
1486 buf->buf, sizeof(buf->buf));
1487 if (ret > 0 && (size_t)ret < sizeof(buf->buf)) {
1488 hpbuf.h_addrtype = (rtl->rtl_type == T_AAAA)
1489 ? AF_INET6 : AF_INET;
1490 hpbuf.h_length = ADDRLEN(hpbuf.h_addrtype);
1491 hp = getanswer(buf, ret, name, rtl->rtl_type,
1492 &hpbuf, errp);
1493 if (!hp)
1494 continue;
1495 hp = _hpcopy(&hpbuf, errp);
1496 hp0 = _hpmerge(hp0, hp, errp);
1499 if (hp0 != NULL) {
1500 free(buf);
1501 return (hp0);
1505 free(buf);
1507 /* if we got here, we didn't satisfy the search.
1508 * if we did an initial full query, return that query's h_errno
1509 * (note that we wouldn't be here if that query had succeeded).
1510 * else if we ever got a nodata, send that back as the reason.
1511 * else send back meaningless h_errno, that being the one from
1512 * the last DNSRCH we did.
1514 if (saved_herrno != -1)
1515 *errp = saved_herrno;
1516 else if (got_nodata)
1517 *errp = NO_DATA;
1518 else if (got_servfail)
1519 *errp = TRY_AGAIN;
1520 return (NULL);
1523 static struct hostent *
1524 _dns_ghbyname(const char *name, int af, int *errp)
1526 struct __res_type_list *rtl, rtl4;
1527 #ifdef INET6
1528 struct __res_type_list rtl6;
1529 #endif
1531 #ifdef INET6
1532 switch (af) {
1533 case AF_UNSPEC:
1534 SLIST_NEXT(&rtl4, rtl_entry) = NULL; rtl4.rtl_type = T_A;
1535 SLIST_NEXT(&rtl6, rtl_entry) = &rtl4; rtl6.rtl_type = T_AAAA;
1536 rtl = &rtl6;
1537 break;
1538 case AF_INET6:
1539 SLIST_NEXT(&rtl6, rtl_entry) = NULL; rtl6.rtl_type = T_AAAA;
1540 rtl = &rtl6;
1541 break;
1542 case AF_INET:
1543 SLIST_NEXT(&rtl4, rtl_entry) = NULL; rtl4.rtl_type = T_A;
1544 rtl = &rtl4;
1545 break;
1546 default:
1547 return(NULL);
1549 #else
1550 SLIST_NEXT(&rtl4, rtl_entry) = NULL; rtl4.rtl_type = T_A;
1551 rtl = &rtl4;
1552 #endif
1553 return(_res_search_multi(name, rtl, errp));
1556 static struct hostent *
1557 _dns_ghbyaddr(const void *addr, int addrlen, int af, int *errp)
1559 int n;
1560 struct hostent *hp;
1561 u_char c;
1562 const u_char *cp;
1563 char *bp;
1564 struct hostent hbuf;
1565 int na;
1566 #ifdef INET6
1567 static const char hex[] = "0123456789abcdef";
1568 #endif
1569 querybuf *buf;
1570 char qbuf[MAXDNAME+1];
1571 char *hlist[2];
1572 const char *tld6[] = { "ip6.arpa", "ip6.int", NULL };
1573 const char *tld4[] = { "in-addr.arpa", NULL };
1574 const char **tld;
1576 #ifdef INET6
1577 /* XXX */
1578 if (af == AF_INET6 && IN6_IS_ADDR_LINKLOCAL((const struct in6_addr *)addr))
1579 return NULL;
1580 #endif
1582 switch (af) {
1583 #ifdef INET6
1584 case AF_INET6:
1585 tld = tld6;
1586 break;
1587 #endif
1588 case AF_INET:
1589 tld = tld4;
1590 break;
1591 default:
1592 return NULL;
1595 if ((_res.options & RES_INIT) == 0) {
1596 if (res_init() < 0) {
1597 *errp = h_errno;
1598 return NULL;
1601 memset(&hbuf, 0, sizeof(hbuf));
1602 hbuf.h_name = NULL;
1603 hbuf.h_addrtype = af;
1604 hbuf.h_length = addrlen;
1605 na = 0;
1607 buf = malloc(sizeof(*buf));
1608 if (buf == NULL) {
1609 *errp = NETDB_INTERNAL;
1610 return NULL;
1612 for (/* nothing */; *tld; tld++) {
1614 * XXX assumes that MAXDNAME is big enough - error checks
1615 * has been made by callers
1617 n = 0;
1618 bp = qbuf;
1619 cp = (const uint8_t *)addr+addrlen-1;
1620 switch (af) {
1621 #ifdef INET6
1622 case AF_INET6:
1623 for (; n < addrlen; n++, cp--) {
1624 c = *cp;
1625 *bp++ = hex[c & 0xf];
1626 *bp++ = '.';
1627 *bp++ = hex[c >> 4];
1628 *bp++ = '.';
1630 strcpy(bp, *tld);
1631 break;
1632 #endif
1633 case AF_INET:
1634 for (; n < addrlen; n++, cp--) {
1635 c = *cp;
1636 if (c >= 100)
1637 *bp++ = '0' + c / 100;
1638 if (c >= 10)
1639 *bp++ = '0' + (c % 100) / 10;
1640 *bp++ = '0' + c % 10;
1641 *bp++ = '.';
1643 strcpy(bp, *tld);
1644 break;
1647 n = res_query(qbuf, C_IN, T_PTR, buf->buf, sizeof buf->buf);
1648 if (n < 0) {
1649 *errp = h_errno;
1650 continue;
1651 } else if ((size_t)n > sizeof(buf->buf)) {
1652 *errp = NETDB_INTERNAL;
1653 #if 0
1654 errno = ERANGE; /* XXX is it OK to set errno here? */
1655 #endif
1656 continue;
1658 hp = getanswer(buf, n, qbuf, T_PTR, &hbuf, errp);
1659 if (!hp)
1660 continue;
1661 free(buf);
1662 hbuf.h_addrtype = af;
1663 hbuf.h_length = addrlen;
1664 hbuf.h_addr_list = hlist;
1665 hlist[0] = addr;
1666 hlist[1] = NULL;
1667 return _hpcopy(&hbuf, errp);
1669 free(buf);
1670 return NULL;
1673 #ifdef ICMPNL
1676 * experimental:
1677 * draft-ietf-ipngwg-icmp-namelookups-02.txt
1678 * ifindex is assumed to be encoded in addr.
1680 #include <sys/uio.h>
1681 #include <netinet/ip6.h>
1682 #include <netinet/icmp6.h>
1684 struct _icmp_host_cache {
1685 struct _icmp_host_cache *hc_next;
1686 int hc_ifindex;
1687 struct in6_addr hc_addr;
1688 char *hc_name;
1691 static char *
1692 _icmp_fqdn_query(const struct in6_addr *addr, int ifindex)
1694 int s;
1695 struct icmp6_filter filter;
1696 struct msghdr msg;
1697 struct cmsghdr *cmsg;
1698 struct in6_pktinfo *pkt;
1699 char cbuf[256];
1700 char buf[1024];
1701 int cc;
1702 struct icmp6_fqdn_query *fq;
1703 struct icmp6_fqdn_reply *fr;
1704 struct _icmp_host_cache *hc;
1705 struct sockaddr_in6 sin6;
1706 struct iovec iov;
1707 fd_set s_fds, fds;
1708 struct timeval tout;
1709 int len;
1710 char *name;
1711 static int pid;
1712 static struct _icmp_host_cache *hc_head;
1714 for (hc = hc_head; hc; hc = hc->hc_next) {
1715 if (hc->hc_ifindex == ifindex
1716 && IN6_ARE_ADDR_EQUAL(&hc->hc_addr, addr))
1717 return hc->hc_name;
1720 if (pid == 0)
1721 pid = getpid();
1723 ICMP6_FILTER_SETBLOCKALL(&filter);
1724 ICMP6_FILTER_SETPASS(ICMP6_FQDN_REPLY, &filter);
1726 FD_ZERO(&s_fds);
1727 tout.tv_sec = 0;
1728 tout.tv_usec = 200000; /*XXX: 200ms*/
1730 fq = (struct icmp6_fqdn_query *)buf;
1731 fq->icmp6_fqdn_type = ICMP6_FQDN_QUERY;
1732 fq->icmp6_fqdn_code = 0;
1733 fq->icmp6_fqdn_cksum = 0;
1734 fq->icmp6_fqdn_id = (u_short)pid;
1735 fq->icmp6_fqdn_unused = 0;
1736 fq->icmp6_fqdn_cookie[0] = 0;
1737 fq->icmp6_fqdn_cookie[1] = 0;
1739 memset(&sin6, 0, sizeof(sin6));
1740 sin6.sin6_family = AF_INET6;
1741 sin6.sin6_addr = *addr;
1743 memset(&msg, 0, sizeof(msg));
1744 msg.msg_name = (caddr_t)&sin6;
1745 msg.msg_namelen = sizeof(sin6);
1746 msg.msg_iov = &iov;
1747 msg.msg_iovlen = 1;
1748 msg.msg_control = NULL;
1749 msg.msg_controllen = 0;
1750 iov.iov_base = (caddr_t)buf;
1751 iov.iov_len = sizeof(struct icmp6_fqdn_query);
1753 if (ifindex) {
1754 msg.msg_control = cbuf;
1755 msg.msg_controllen = sizeof(cbuf);
1756 cmsg = CMSG_FIRSTHDR(&msg);
1757 cmsg->cmsg_len = CMSG_LEN(sizeof(struct in6_pktinfo));
1758 cmsg->cmsg_level = IPPROTO_IPV6;
1759 cmsg->cmsg_type = IPV6_PKTINFO;
1760 pkt = (struct in6_pktinfo *)&cmsg[1];
1761 memset(&pkt->ipi6_addr, 0, sizeof(struct in6_addr));
1762 pkt->ipi6_ifindex = ifindex;
1763 cmsg = CMSG_NXTHDR(&msg, cmsg);
1764 msg.msg_controllen = (char *)cmsg - cbuf;
1767 if ((s = _socket(PF_INET6, SOCK_RAW, IPPROTO_ICMPV6)) < 0)
1768 return NULL;
1769 (void)_setsockopt(s, IPPROTO_ICMPV6, ICMP6_FILTER,
1770 (char *)&filter, sizeof(filter));
1771 cc = _sendmsg(s, &msg, 0);
1772 if (cc < 0) {
1773 _close(s);
1774 return NULL;
1776 FD_SET(s, &s_fds);
1777 for (;;) {
1778 fds = s_fds;
1779 if (select(s + 1, &fds, NULL, NULL, &tout) <= 0) {
1780 _close(s);
1781 return NULL;
1783 len = sizeof(sin6);
1784 cc = _recvfrom(s, buf, sizeof(buf), 0,
1785 (struct sockaddr *)&sin6, &len);
1786 if (cc <= 0) {
1787 _close(s);
1788 return NULL;
1790 if (cc < sizeof(struct ip6_hdr) + sizeof(struct icmp6_hdr))
1791 continue;
1792 if (!IN6_ARE_ADDR_EQUAL(addr, &sin6.sin6_addr))
1793 continue;
1794 fr = (struct icmp6_fqdn_reply *)(buf + sizeof(struct ip6_hdr));
1795 if (fr->icmp6_fqdn_type == ICMP6_FQDN_REPLY)
1796 break;
1798 _close(s);
1799 if (fr->icmp6_fqdn_cookie[1] != 0) {
1800 /* rfc1788 type */
1801 name = buf + sizeof(struct ip6_hdr) + sizeof(struct icmp6_hdr) + 4;
1802 len = (buf + cc) - name;
1803 } else {
1804 len = fr->icmp6_fqdn_namelen;
1805 name = fr->icmp6_fqdn_name;
1807 if (len <= 0)
1808 return NULL;
1809 name[len] = 0;
1811 if ((hc = (struct _icmp_host_cache *)malloc(sizeof(*hc))) == NULL)
1812 return NULL;
1813 /* XXX: limit number of cached entries */
1814 hc->hc_ifindex = ifindex;
1815 hc->hc_addr = *addr;
1816 hc->hc_name = strdup(name);
1817 hc->hc_next = hc_head;
1818 hc_head = hc;
1819 return hc->hc_name;
1822 static struct hostent *
1823 _icmp_ghbyaddr(const void *addr, int addrlen, int af, int *errp)
1825 char *hname;
1826 int ifindex;
1827 struct in6_addr addr6;
1829 if (af != AF_INET6) {
1831 * Note: rfc1788 defines Who Are You for IPv4,
1832 * but no one implements it.
1834 return NULL;
1837 memcpy(&addr6, addr, addrlen);
1838 ifindex = (addr6.s6_addr[2] << 8) | addr6.s6_addr[3];
1839 addr6.s6_addr[2] = addr6.s6_addr[3] = 0;
1841 if (!IN6_IS_ADDR_LINKLOCAL(&addr6))
1842 return NULL; /*XXX*/
1844 if ((hname = _icmp_fqdn_query(&addr6, ifindex)) == NULL)
1845 return NULL;
1846 return _hpaddr(af, hname, &addr6, errp);
1848 #endif /* ICMPNL */