1 /* resolv.c: DNS Resolver
4 * The Silver Hammer Group, Ltd.
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
13 * Portions Copyright (c) 1985, 1993
14 * The Regents of the University of California. All rights reserved.
16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions
19 * 1. Redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer.
21 * 2. Redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution.
24 * 4. Neither the name of the University nor the names of its contributors
25 * may be used to endorse or promote products derived from this software
26 * without specific prior written permission.
28 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
42 * Portions Copyright (c) 1993 by Digital Equipment Corporation.
44 * Permission to use, copy, modify, and distribute this software for any
45 * purpose with or without fee is hereby granted, provided that the above
46 * copyright notice and this permission notice appear in all copies, and that
47 * the name of Digital Equipment Corporation not be used in advertising or
48 * publicity pertaining to distribution of the document or software without
49 * specific, written prior permission.
51 * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
52 * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
53 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT
54 * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
55 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
56 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
57 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
62 * Portions Copyright (c) 1996-1999 by Internet Software Consortium.
64 * Permission to use, copy, modify, and distribute this software for any
65 * purpose with or without fee is hereby granted, provided that the above
66 * copyright notice and this permission notice appear in all copies.
68 * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
69 * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
70 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
71 * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
72 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
73 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
74 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
81 * Fix memory leak and memory corruption.
82 * -- Every name resolution resulted in
83 * a new parse of resolv.conf and new
84 * copy of nameservers allocated by
86 * -- Every name resolution resulted in
87 * a new read of resolv.conf without
88 * resetting index from prior read...
89 * resulting in exceeding array bounds.
91 * Limit nameservers read from resolv.conf
93 * Add "search" domains from resolv.conf
95 * Some systems will return a security
96 * signature along with query answer for
97 * dynamic DNS entries.
98 * -- skip/ignore this answer
100 * Include arpa/nameser.h for defines.
105 * partial IPv6 support (i.e. gethostbyname2() and resolve_address2()
106 * functions added), IPv6 nameservers are also supported.
109 * more IPv6 support (IPv6 support for gethostbyaddr();
110 * address family parameter and improved IPv6 support for get_hosts_byname
111 * and read_etc_hosts; getnameinfo() port from glibc; defined
112 * defined ip6addr_any and in6addr_loopback)
115 * Added gethostent(), sethostent(), and endhostent()
118 * Fixed __read_etc_hosts_r to return alias list, and modified buffer
119 * allocation accordingly. See MAX_ALIASES and ALIAS_DIM below.
120 * This fixes the segfault in the Python 2.2.1 socket test.
123 * Fixed __decode_dotted to count the terminating null character
127 * Lifted dn_expand() and dependent ns_name_uncompress(), ns_name_unpack(),
128 * and ns_name_ntop() from glibc 2.3.2 for compatibility with ipsec-tools
132 * Added gethostent_r()
136 #define memmove __memmove
137 #define strnlen __strnlen
138 #define strncat __strncat
139 #define strstr __strstr
141 #define __FORCE_GLIBC
142 #include <features.h>
147 #include <sys/socket.h>
148 #include <sys/types.h>
149 #include <sys/time.h>
150 #include <netinet/in.h>
151 #include <arpa/inet.h>
157 #include <arpa/nameser.h>
158 #include <sys/utsname.h>
161 #define MAX_RECURSE 5
162 #define REPLY_TIMEOUT 10
163 #define MAX_RETRIES 3
164 #define MAX_SERVERS 3
167 #define MAX_ALIASES 5
169 /* 1:ip + 1:full + MAX_ALIASES:aliases + 1:NULL */
170 #define ALIAS_DIM (2 + MAX_ALIASES + 1)
176 #define DPRINTF(X,args...) fprintf(stderr, X, ##args)
178 #define DPRINTF(X,args...)
182 /* Global stuff (stuff needing to be locked to be thread safe)... */
183 extern int __nameservers;
184 extern char * __nameserver[MAX_SERVERS];
185 extern int __searchdomains;
186 extern char * __searchdomain[MAX_SEARCH];
188 #ifdef __UCLIBC_HAS_THREADS__
190 extern pthread_mutex_t __resolv_lock;
191 # define BIGLOCK __pthread_mutex_lock(&__resolv_lock)
192 # define BIGUNLOCK __pthread_mutex_unlock(&__resolv_lock);
201 struct resolv_header {
203 int qr,opcode,aa,tc,rd,ra,rcode;
210 struct resolv_question {
216 struct resolv_answer {
222 unsigned char * rdata;
229 enum etc_hosts_action {
230 GET_HOSTS_BYNAME = 0,
235 /* function prototypes */
236 extern int __get_hosts_byname_r(const char * name, int type,
237 struct hostent * result_buf,
238 char * buf, size_t buflen,
239 struct hostent ** result,
240 int * h_errnop) attribute_hidden;
241 extern int __get_hosts_byaddr_r(const char * addr, int len, int type,
242 struct hostent * result_buf,
243 char * buf, size_t buflen,
244 struct hostent ** result,
245 int * h_errnop) attribute_hidden;
246 extern void __open_etc_hosts(FILE **fp) attribute_hidden;
247 extern int __read_etc_hosts_r(FILE *fp, const char * name, int type,
248 enum etc_hosts_action action,
249 struct hostent * result_buf,
250 char * buf, size_t buflen,
251 struct hostent ** result,
252 int * h_errnop) attribute_hidden;
253 extern int __dns_lookup(const char * name, int type, int nscount,
254 char ** nsip, unsigned char ** outpacket, struct resolv_answer * a) attribute_hidden;
256 extern int __encode_dotted(const char * dotted, unsigned char * dest, int maxlen) attribute_hidden;
257 extern int __decode_dotted(const unsigned char * message, int offset,
258 char * dest, int maxlen) attribute_hidden;
259 extern int __length_dotted(const unsigned char * message, int offset) attribute_hidden;
260 extern int __encode_header(struct resolv_header * h, unsigned char * dest, int maxlen) attribute_hidden;
261 extern int __decode_header(unsigned char * data, struct resolv_header * h) attribute_hidden;
262 extern int __encode_question(struct resolv_question * q,
263 unsigned char * dest, int maxlen) attribute_hidden;
264 extern int __decode_question(unsigned char * message, int offset,
265 struct resolv_question * q);
266 extern int __encode_answer(struct resolv_answer * a,
267 unsigned char * dest, int maxlen) attribute_hidden;
268 extern int __decode_answer(unsigned char * message, int offset,
269 struct resolv_answer * a) attribute_hidden;
270 extern int __length_question(unsigned char * message, int offset) attribute_hidden;
271 extern int __open_nameservers(void) attribute_hidden;
272 extern void __close_nameservers(void) attribute_hidden;
273 extern int __dn_expand(const u_char *, const u_char *, const u_char *,
275 extern int __libc_ns_name_uncompress(const u_char *, const u_char *,
276 const u_char *, char *, size_t) attribute_hidden;
277 extern int __libc_ns_name_ntop(const u_char *, char *, size_t) attribute_hidden;
278 extern int __libc_ns_name_unpack(const u_char *, const u_char *, const u_char *,
279 u_char *, size_t) attribute_hidden;
283 int attribute_hidden __encode_header(struct resolv_header *h, unsigned char *dest, int maxlen)
285 if (maxlen < HFIXEDSZ)
288 dest[0] = (h->id & 0xff00) >> 8;
289 dest[1] = (h->id & 0x00ff) >> 0;
290 dest[2] = (h->qr ? 0x80 : 0) |
291 ((h->opcode & 0x0f) << 3) |
295 dest[3] = (h->ra ? 0x80 : 0) | (h->rcode & 0x0f);
296 dest[4] = (h->qdcount & 0xff00) >> 8;
297 dest[5] = (h->qdcount & 0x00ff) >> 0;
298 dest[6] = (h->ancount & 0xff00) >> 8;
299 dest[7] = (h->ancount & 0x00ff) >> 0;
300 dest[8] = (h->nscount & 0xff00) >> 8;
301 dest[9] = (h->nscount & 0x00ff) >> 0;
302 dest[10] = (h->arcount & 0xff00) >> 8;
303 dest[11] = (h->arcount & 0x00ff) >> 0;
310 int attribute_hidden __decode_header(unsigned char *data, struct resolv_header *h)
312 h->id = (data[0] << 8) | data[1];
313 h->qr = (data[2] & 0x80) ? 1 : 0;
314 h->opcode = (data[2] >> 3) & 0x0f;
315 h->aa = (data[2] & 0x04) ? 1 : 0;
316 h->tc = (data[2] & 0x02) ? 1 : 0;
317 h->rd = (data[2] & 0x01) ? 1 : 0;
318 h->ra = (data[3] & 0x80) ? 1 : 0;
319 h->rcode = data[3] & 0x0f;
320 h->qdcount = (data[4] << 8) | data[5];
321 h->ancount = (data[6] << 8) | data[7];
322 h->nscount = (data[8] << 8) | data[9];
323 h->arcount = (data[10] << 8) | data[11];
330 /* Encode a dotted string into nameserver transport-level encoding.
331 This routine is fairly dumb, and doesn't attempt to compress
334 int attribute_hidden __encode_dotted(const char *dotted, unsigned char *dest, int maxlen)
338 while (dotted && *dotted) {
339 char *c = strchr(dotted, '.');
340 int l = c ? c - dotted : strlen(dotted);
342 if (l >= (maxlen - used - 1))
346 memcpy(dest + used, dotted, l);
365 /* Decode a dotted string from nameserver transport-level encoding.
366 This routine understands compressed data. */
368 int attribute_hidden __decode_dotted(const unsigned char *data, int offset,
369 char *dest, int maxlen)
379 while ((l=data[offset++])) {
382 if ((l & 0xc0) == (0xc0)) {
385 /* compressed item, redirect */
386 offset = ((l & 0x3f) << 8) | data[offset];
391 if ((used + l + 1) >= maxlen)
394 memcpy(dest + used, data + offset, l);
400 if (data[offset] != 0)
406 /* The null byte must be counted too */
411 DPRINTF("Total decode len = %d\n", total);
419 int attribute_hidden __length_dotted(const unsigned char *data, int offset)
421 int orig_offset = offset;
427 while ((l = data[offset++])) {
429 if ((l & 0xc0) == (0xc0)) {
437 return offset - orig_offset;
442 int attribute_hidden __encode_question(struct resolv_question *q,
443 unsigned char *dest, int maxlen)
447 i = __encode_dotted(q->dotted, dest, maxlen);
457 dest[0] = (q->qtype & 0xff00) >> 8;
458 dest[1] = (q->qtype & 0x00ff) >> 0;
459 dest[2] = (q->qclass & 0xff00) >> 8;
460 dest[3] = (q->qclass & 0x00ff) >> 0;
467 int __decode_question(unsigned char *message, int offset,
468 struct resolv_question *q)
473 i = __decode_dotted(message, offset, temp, sizeof(temp));
479 q->dotted = strdup(temp);
480 q->qtype = (message[offset + 0] << 8) | message[offset + 1];
481 q->qclass = (message[offset + 2] << 8) | message[offset + 3];
488 int attribute_hidden __length_question(unsigned char *message, int offset)
492 i = __length_dotted(message, offset);
501 int attribute_hidden __encode_answer(struct resolv_answer *a, unsigned char *dest, int maxlen)
505 i = __encode_dotted(a->dotted, dest, maxlen);
512 if (maxlen < (RRFIXEDSZ+a->rdlength))
515 *dest++ = (a->atype & 0xff00) >> 8;
516 *dest++ = (a->atype & 0x00ff) >> 0;
517 *dest++ = (a->aclass & 0xff00) >> 8;
518 *dest++ = (a->aclass & 0x00ff) >> 0;
519 *dest++ = (a->ttl & 0xff000000) >> 24;
520 *dest++ = (a->ttl & 0x00ff0000) >> 16;
521 *dest++ = (a->ttl & 0x0000ff00) >> 8;
522 *dest++ = (a->ttl & 0x000000ff) >> 0;
523 *dest++ = (a->rdlength & 0xff00) >> 8;
524 *dest++ = (a->rdlength & 0x00ff) >> 0;
525 memcpy(dest, a->rdata, a->rdlength);
527 return i + RRFIXEDSZ + a->rdlength;
532 int attribute_hidden __decode_answer(unsigned char *message, int offset,
533 struct resolv_answer *a)
538 i = __decode_dotted(message, offset, temp, sizeof(temp));
542 message += offset + i;
544 a->dotted = strdup(temp);
545 a->atype = (message[0] << 8) | message[1];
547 a->aclass = (message[0] << 8) | message[1];
549 a->ttl = (message[0] << 24) |
550 (message[1] << 16) | (message[2] << 8) | (message[3] << 0);
552 a->rdlength = (message[0] << 8) | message[1];
555 a->rdoffset = offset + i + RRFIXEDSZ;
557 DPRINTF("i=%d,rdlength=%d\n", i, a->rdlength);
559 return i + RRFIXEDSZ + a->rdlength;
564 int __encode_packet(struct resolv_header *h,
565 struct resolv_question **q,
566 struct resolv_answer **an,
567 struct resolv_answer **ns,
568 struct resolv_answer **ar,
569 unsigned char *dest, int maxlen)
574 i = __encode_header(h, dest, maxlen);
582 for (j = 0; j < h->qdcount; j++) {
583 i = __encode_question(q[j], dest, maxlen);
591 for (j = 0; j < h->ancount; j++) {
592 i = __encode_answer(an[j], dest, maxlen);
599 for (j = 0; j < h->nscount; j++) {
600 i = __encode_answer(ns[j], dest, maxlen);
607 for (j = 0; j < h->arcount; j++) {
608 i = __encode_answer(ar[j], dest, maxlen);
621 int __decode_packet(unsigned char *data, struct resolv_header *h)
623 return __decode_header(data, h);
628 int __form_query(int id, const char *name, int type, unsigned char *packet,
631 struct resolv_header h;
632 struct resolv_question q;
635 memset(&h, 0, sizeof(h));
639 q.dotted = (char *) name;
641 q.qclass = C_IN; /* CLASS_IN */
643 i = __encode_header(&h, packet, maxlen);
647 j = __encode_question(&q, packet + i, maxlen - i);
655 #if defined(L_dnslookup) || defined(L_gethostent)
657 #ifdef __UCLIBC_HAS_THREADS__
658 static pthread_mutex_t mylock = PTHREAD_MUTEX_INITIALIZER;
659 # define LOCK __pthread_mutex_lock(&mylock)
660 # define UNLOCK __pthread_mutex_unlock(&mylock);
669 /* Just for the record, having to lock __dns_lookup() just for these two globals
670 * is pretty lame. I think these two variables can probably be de-global-ized,
671 * which should eliminate the need for doing locking here... Needs a closer
673 static int ns=0, id=1;
675 int attribute_hidden __dns_lookup(const char *name, int type, int nscount, char **nsip,
676 unsigned char **outpacket, struct resolv_answer *a)
678 int i, j, len, fd, pos, rc;
681 struct resolv_header h;
682 struct resolv_question q;
683 struct resolv_answer ma;
684 int first_answer = 1;
686 unsigned char * packet = malloc(PACKETSZ);
687 char *dns, *lookup = malloc(MAXDNAME);
689 struct sockaddr_in sa;
690 int local_ns = -1, local_id = -1;
691 #ifdef __UCLIBC_HAS_IPV6__
693 struct sockaddr_in6 sa6;
698 if (!packet || !lookup || !nscount)
701 DPRINTF("Looking up type %d answer for '%s'\n", type, name);
703 /* Mess with globals while under lock */
705 local_ns = ns % nscount;
709 while (retries < MAX_RETRIES) {
713 memset(packet, 0, PACKETSZ);
715 memset(&h, 0, sizeof(h));
720 dns = nsip[local_ns];
725 DPRINTF("encoding header\n", h.rd);
727 i = __encode_header(&h, packet, PACKETSZ);
731 strncpy(lookup,name,MAXDNAME);
734 if (variant < __searchdomains) {
735 strncat(lookup,".", MAXDNAME);
736 strncat(lookup,__searchdomain[variant], MAXDNAME);
740 DPRINTF("lookup name: %s\n", lookup);
741 q.dotted = (char *)lookup;
743 q.qclass = C_IN; /* CLASS_IN */
745 j = __encode_question(&q, packet+i, PACKETSZ-i);
751 DPRINTF("On try %d, sending query to port %d of machine %s\n",
752 retries+1, NAMESERVER_PORT, dns);
754 #ifdef __UCLIBC_HAS_IPV6__
755 v6 = inet_pton(AF_INET6, dns, &sa6.sin6_addr) > 0;
756 fd = socket(v6 ? AF_INET6 : AF_INET, SOCK_DGRAM, IPPROTO_UDP);
758 fd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
765 /* Connect to the UDP socket so that asyncronous errors are returned */
766 #ifdef __UCLIBC_HAS_IPV6__
768 sa6.sin6_family = AF_INET6;
769 sa6.sin6_port = htons(NAMESERVER_PORT);
770 /* sa6.sin6_addr is already here */
771 rc = connect(fd, (struct sockaddr *) &sa6, sizeof(sa6));
774 sa.sin_family = AF_INET;
775 sa.sin_port = htons(NAMESERVER_PORT);
776 sa.sin_addr.s_addr = inet_addr(dns);
777 rc = connect(fd, (struct sockaddr *) &sa, sizeof(sa));
778 #ifdef __UCLIBC_HAS_IPV6__
782 if (errno == ENETUNREACH) {
783 /* routing error, presume not transient */
791 DPRINTF("Transmitting packet of length %d, id=%d, qr=%d\n",
794 send(fd, packet, len, 0);
798 tv.tv_sec = REPLY_TIMEOUT;
800 if (select(fd + 1, &fds, NULL, NULL, &tv) <= 0) {
801 DPRINTF("Timeout\n");
803 /* timed out, so retry send and receive,
804 * to next nameserver on queue */
808 len = recv(fd, packet, 512, 0);
809 if (len < HFIXEDSZ) {
814 __decode_header(packet, &h);
816 DPRINTF("id = %d, qr = %d\n", h.id, h.qr);
818 if ((h.id != local_id) || (!h.qr)) {
824 DPRINTF("Got response %s\n", "(i think)!");
825 DPRINTF("qrcount=%d,ancount=%d,nscount=%d,arcount=%d\n",
826 h.qdcount, h.ancount, h.nscount, h.arcount);
827 DPRINTF("opcode=%d,aa=%d,tc=%d,rd=%d,ra=%d,rcode=%d\n",
828 h.opcode, h.aa, h.tc, h.rd, h.ra, h.rcode);
830 if ((h.rcode) || (h.ancount < 1)) {
831 /* negative result, not present */
837 for (j = 0; j < h.qdcount; j++) {
838 DPRINTF("Skipping question %d at %d\n", j, pos);
839 i = __length_question(packet, pos);
840 DPRINTF("Length of question %d is %d\n", j, i);
845 DPRINTF("Decoding answer at pos %d\n", pos);
848 for (j=0;j<h.ancount;j++,pos += i)
850 i = __decode_answer(packet, pos, &ma);
853 DPRINTF("failed decode %d\n", i);
860 ma.buflen = a->buflen;
861 ma.add_count = a->add_count;
862 memcpy(a, &ma, sizeof(ma));
863 if (a->atype != T_SIG && (0 == a->buf || (type != T_A && type != T_AAAA)))
867 if (a->atype != type)
872 a->add_count = h.ancount - j - 1;
873 if ((a->rdlength + sizeof(struct in_addr*)) * a->add_count > a->buflen)
883 if (ma.atype != type)
887 if (a->rdlength != ma.rdlength)
890 DPRINTF("Answer address len(%u) differs from original(%u)\n",
891 ma.rdlength, a->rdlength);
894 memcpy(a->buf + (a->add_count * ma.rdlength), ma.rdata, ma.rdlength);
899 DPRINTF("Answer name = |%s|\n", a->dotted);
900 DPRINTF("Answer type = |%d|\n", a->atype);
910 /* Mess with globals while under lock */
916 return (len); /* success! */
919 /* if there are other nameservers, give them a go,
920 otherwise return with error */
923 local_ns = (local_ns + 1) % nscount;
931 /* if there are searchdomains, try them or fallback as passed */
935 sdomains=__searchdomains;
938 if (variant < sdomains - 1) {
942 /* next server, first search */
943 local_ns = (local_ns + 1) % nscount;
959 h_errno = NETDB_INTERNAL;
960 /* Mess with globals while under lock */
961 if (local_ns != -1) {
971 #ifdef L_opennameservers
974 char * __nameserver[MAX_SERVERS];
976 char * __searchdomain[MAX_SEARCH];
977 #ifdef __UCLIBC_HAS_THREADS__
978 pthread_mutex_t __resolv_lock = PTHREAD_MUTEX_INITIALIZER;
982 * we currently read formats not quite the same as that on normal
983 * unix systems, we can have a list of nameservers after the keyword.
986 int attribute_hidden __open_nameservers()
990 #define RESOLV_ARGS 5
991 char szBuffer[128], *p, *argv[RESOLV_ARGS];
995 if (__nameservers > 0) {
1000 if ((fp = fopen("/etc/resolv.conf", "r")) ||
1001 (fp = fopen("/etc/config/resolv.conf", "r")))
1004 while (fgets(szBuffer, sizeof(szBuffer), fp) != NULL) {
1006 for (p = szBuffer; *p && isspace(*p); p++)
1007 /* skip white space */;
1008 if (*p == '\0' || *p == '\n' || *p == '#') /* skip comments etc */
1011 while (*p && argc < RESOLV_ARGS) {
1013 while (*p && !isspace(*p) && *p != '\n')
1015 while (*p && (isspace(*p) || *p == '\n')) /* remove spaces */
1019 if (strcmp(argv[0], "nameserver") == 0) {
1020 for (i = 1; i < argc && __nameservers < MAX_SERVERS; i++) {
1021 __nameserver[__nameservers++] = strdup(argv[i]);
1022 DPRINTF("adding nameserver %s\n", argv[i]);
1026 /* domain and search are mutually exclusive, the last one wins */
1027 if (strcmp(argv[0],"domain")==0 || strcmp(argv[0],"search")==0) {
1028 while (__searchdomains > 0) {
1029 free(__searchdomain[--__searchdomains]);
1030 __searchdomain[__searchdomains] = NULL;
1032 for (i=1; i < argc && __searchdomains < MAX_SEARCH; i++) {
1033 __searchdomain[__searchdomains++] = strdup(argv[i]);
1034 DPRINTF("adding search %s\n", argv[i]);
1039 DPRINTF("nameservers = %d\n", __nameservers);
1043 DPRINTF("failed to open %s\n", "resolv.conf");
1044 h_errno = NO_RECOVERY;
1051 #ifdef L_closenameservers
1053 void attribute_hidden __close_nameservers(void)
1056 while (__nameservers > 0) {
1057 free(__nameserver[--__nameservers]);
1058 __nameserver[__nameservers] = NULL;
1060 while (__searchdomains > 0) {
1061 free(__searchdomain[--__searchdomains]);
1062 __searchdomain[__searchdomains] = NULL;
1068 #ifdef L_gethostbyname
1070 struct hostent *gethostbyname(const char *name)
1072 static struct hostent h;
1073 static char buf[sizeof(struct in_addr) +
1074 sizeof(struct in_addr *)*2 +
1075 sizeof(char *)*(ALIAS_DIM) + 384/*namebuffer*/ + 32/* margin */];
1078 gethostbyname_r(name, &h, buf, sizeof(buf), &hp, &h_errno);
1084 #ifdef L_gethostbyname2
1086 struct hostent *gethostbyname2(const char *name, int family)
1088 #ifndef __UCLIBC_HAS_IPV6__
1089 return family == AF_INET ? gethostbyname(name) : (struct hostent*)0;
1090 #else /* __UCLIBC_HAS_IPV6__ */
1091 static struct hostent h;
1092 static char buf[sizeof(struct in6_addr) +
1093 sizeof(struct in6_addr *)*2 +
1094 sizeof(char *)*(ALIAS_DIM) + 384/*namebuffer*/ + 32/* margin */];
1097 gethostbyname2_r(name, family, &h, buf, sizeof(buf), &hp, &h_errno);
1100 #endif /* __UCLIBC_HAS_IPV6__ */
1107 struct __res_state _res;
1111 struct __res_state *rp = &(_res);
1113 __close_nameservers();
1114 __open_nameservers();
1115 rp->retrans = RES_TIMEOUT;
1117 rp->options = RES_INIT;
1118 rp->id = (u_int) random();
1119 rp->nsaddr.sin_addr.s_addr = INADDR_ANY;
1120 rp->nsaddr.sin_family = AF_INET;
1121 rp->nsaddr.sin_port = htons(NAMESERVER_PORT);
1123 /** rp->pfcode = 0; **/
1125 /** rp->_flags = 0; **/
1126 /** rp->qhook = NULL; **/
1127 /** rp->rhook = NULL; **/
1128 /** rp->_u._ext.nsinit = 0; **/
1131 if(__searchdomains) {
1133 for(i=0; i<__searchdomains; i++) {
1134 rp->dnsrch[i] = __searchdomain[i];
1141 for(i=0; i<__nameservers; i++) {
1142 if (inet_aton(__nameserver[i], &a)) {
1143 rp->nsaddr_list[i].sin_addr = a;
1144 rp->nsaddr_list[i].sin_family = AF_INET;
1145 rp->nsaddr_list[i].sin_port = htons(NAMESERVER_PORT);
1149 rp->nscount = __nameservers;
1155 void res_close( void )
1166 #define MIN(x, y) ((x) < (y) ? (x) : (y))
1169 int res_query(const char *dname, int class, int type,
1170 unsigned char *answer, int anslen)
1173 unsigned char * packet = 0;
1174 struct resolv_answer a;
1175 int __nameserversXX;
1176 char ** __nameserverXX;
1178 __open_nameservers();
1179 if (!dname || class != 1 /* CLASS_IN */) {
1180 h_errno = NO_RECOVERY;
1184 memset((char *) &a, '\0', sizeof(a));
1187 __nameserversXX=__nameservers;
1188 __nameserverXX=__nameserver;
1190 i = __dns_lookup(dname, type, __nameserversXX, __nameserverXX, &packet, &a);
1193 h_errno = TRY_AGAIN;
1199 if (a.atype == type) { /* CNAME*/
1200 int len = MIN(anslen, i);
1201 memcpy(answer, packet, len);
1212 * Formulate a normal query, send, and retrieve answer in supplied buffer.
1213 * Return the size of the response on success, -1 on error.
1214 * If enabled, implement search rules until answer or unrecoverable failure
1215 * is detected. Error code, if any, is left in h_errno.
1217 int res_search(name, class, type, answer, anslen)
1218 const char *name; /* domain name */
1219 int class, type; /* class and type of query */
1220 u_char *answer; /* buffer to put answer */
1221 int anslen; /* size of answer */
1223 const char *cp, * const *domain;
1224 HEADER *hp = (HEADER *)(void *)answer;
1226 int trailing_dot, ret, saved_herrno;
1227 int got_nodata = 0, got_servfail = 0, tried_as_is = 0;
1229 if ((!name || !answer) || ((_res.options & RES_INIT) == 0 && res_init() == -1)) {
1230 h_errno = NETDB_INTERNAL;
1235 h_errno = HOST_NOT_FOUND; /* default, if we never query */
1237 for (cp = name; *cp; cp++)
1238 dots += (*cp == '.');
1240 if (cp > name && *--cp == '.')
1244 * If there are dots in the name already, let's just give it a try
1245 * 'as is'. The threshold can be set with the "ndots" option.
1248 if (dots >= _res.ndots) {
1249 ret = res_querydomain(name, NULL, class, type, answer, anslen);
1252 saved_herrno = h_errno;
1257 * We do at least one level of search if
1258 * - there is no dot and RES_DEFNAME is set, or
1259 * - there is at least one dot, there is no trailing dot,
1260 * and RES_DNSRCH is set.
1262 if ((!dots && (_res.options & RES_DEFNAMES)) ||
1263 (dots && !trailing_dot && (_res.options & RES_DNSRCH))) {
1266 for (domain = (const char * const *)_res.dnsrch;
1270 ret = res_querydomain(name, *domain, class, type,
1276 * If no server present, give up.
1277 * If name isn't found in this domain,
1278 * keep trying higher domains in the search list
1279 * (if that's enabled).
1280 * On a NO_DATA error, keep trying, otherwise
1281 * a wildcard entry of another type could keep us
1282 * from finding this entry higher in the domain.
1283 * If we get some other error (negative answer or
1284 * server failure), then stop searching up,
1285 * but try the input name below in case it's
1288 if (errno == ECONNREFUSED) {
1289 h_errno = TRY_AGAIN;
1297 case HOST_NOT_FOUND:
1301 if (hp->rcode == SERVFAIL) {
1302 /* try next search element, if any */
1308 /* anything else implies that we're done */
1312 * if we got here for some reason other than DNSRCH,
1313 * we only wanted one iteration of the loop, so stop.
1315 if (!(_res.options & RES_DNSRCH))
1321 * if we have not already tried the name "as is", do that now.
1322 * note that we do this regardless of how many dots were in the
1323 * name or whether it ends with a dot.
1326 ret = res_querydomain(name, NULL, class, type, answer, anslen);
1332 * if we got here, we didn't satisfy the search.
1333 * if we did an initial full query, return that query's h_errno
1334 * (note that we wouldn't be here if that query had succeeded).
1335 * else if we ever got a nodata, send that back as the reason.
1336 * else send back meaningless h_errno, that being the one from
1337 * the last DNSRCH we did.
1339 if (saved_herrno != -1)
1340 h_errno = saved_herrno;
1341 else if (got_nodata)
1343 else if (got_servfail)
1344 h_errno = TRY_AGAIN;
1349 * Perform a call on res_query on the concatenation of name and domain,
1350 * removing a trailing dot from name if domain is NULL.
1352 int res_querydomain(name, domain, class, type, answer, anslen)
1353 const char *name, *domain;
1354 int class, type; /* class and type of query */
1355 u_char *answer; /* buffer to put answer */
1356 int anslen; /* size of answer */
1358 char nbuf[MAXDNAME];
1359 const char *longname = nbuf;
1362 if ((!name || !answer) || ((_res.options & RES_INIT) == 0 && res_init() == -1)) {
1363 h_errno = NETDB_INTERNAL;
1368 if (_res.options & RES_DEBUG)
1369 printf(";; res_querydomain(%s, %s, %d, %d)\n",
1370 name, domain?domain:"<Nil>", class, type);
1372 if (domain == NULL) {
1374 * Check for trailing '.';
1375 * copy without '.' if present.
1378 if (n + 1 > sizeof(nbuf)) {
1379 h_errno = NO_RECOVERY;
1382 if (n > 0 && name[--n] == '.') {
1383 strncpy(nbuf, name, n);
1390 if (n + 1 + d + 1 > sizeof(nbuf)) {
1391 h_errno = NO_RECOVERY;
1394 snprintf(nbuf, sizeof(nbuf), "%s.%s", name, domain);
1396 return (res_query(longname, class, type, answer, anslen));
1405 #ifdef L_gethostbyaddr
1406 struct hostent *gethostbyaddr (const void *addr, socklen_t len, int type)
1408 static struct hostent h;
1410 #ifndef __UCLIBC_HAS_IPV6__
1411 sizeof(struct in_addr) + sizeof(struct in_addr *)*2 +
1413 sizeof(struct in6_addr) + sizeof(struct in6_addr *)*2 +
1414 #endif /* __UCLIBC_HAS_IPV6__ */
1415 sizeof(char *)*(ALIAS_DIM) + 384/*namebuffer*/ + 32/* margin */];
1418 gethostbyaddr_r(addr, len, type, &h, buf, sizeof(buf), &hp, &h_errno);
1425 #ifdef L_read_etc_hosts_r
1427 void attribute_hidden __open_etc_hosts(FILE **fp)
1429 if ((*fp = fopen("/etc/hosts", "r")) == NULL) {
1430 *fp = fopen("/etc/config/hosts", "r");
1435 int attribute_hidden __read_etc_hosts_r(FILE * fp, const char * name, int type,
1436 enum etc_hosts_action action,
1437 struct hostent * result_buf,
1438 char * buf, size_t buflen,
1439 struct hostent ** result,
1442 struct in_addr *in=NULL;
1443 struct in_addr **addr_list=NULL;
1444 #ifdef __UCLIBC_HAS_IPV6__
1445 struct in6_addr *in6=NULL;
1446 struct in6_addr **addr_list6=NULL;
1447 #endif /* __UCLIBC_HAS_IPV6__ */
1449 int aliases, i, ret=HOST_NOT_FOUND;
1451 if (buflen < sizeof(char *)*(ALIAS_DIM))
1454 buf+=sizeof(char **)*(ALIAS_DIM);
1455 buflen-=sizeof(char **)*(ALIAS_DIM);
1457 if (action!=GETHOSTENT) {
1458 #ifdef __UCLIBC_HAS_IPV6__
1461 #endif /* __UCLIBC_HAS_IPV6__ */
1462 *h_errnop=NETDB_INTERNAL;
1463 if (buflen < sizeof(*in))
1465 in=(struct in_addr*)buf;
1467 buflen-=sizeof(*in);
1469 if (buflen < sizeof(*addr_list)*2)
1471 addr_list=(struct in_addr **)buf;
1472 buf+=sizeof(*addr_list)*2;
1473 buflen-=sizeof(*addr_list)*2;
1475 #ifdef __UCLIBC_HAS_IPV6__
1476 if (len < sizeof(*in6))
1478 in6=(struct in6_addr*)p;
1482 if (len < sizeof(*addr_list6)*2)
1484 addr_list6=(struct in6_addr**)p;
1485 p+=sizeof(*addr_list6)*2;
1486 len-=sizeof(*addr_list6)*2;
1492 #endif /* __UCLIBC_HAS_IPV6__ */
1497 __open_etc_hosts(&fp);
1504 *h_errnop=HOST_NOT_FOUND;
1505 while (fgets(buf, buflen, fp)) {
1506 if ((cp = strchr(buf, '#')))
1508 DPRINTF("Looking at: %s\n", buf);
1513 while (*cp && isspace(*cp))
1517 if (aliases < (2+MAX_ALIASES))
1518 alias[aliases++] = cp;
1519 while (*cp && !isspace(*cp))
1525 continue; /* syntax error really */
1527 if (action==GETHOSTENT) {
1528 /* Return whatever the next entry happens to be. */
1530 } else if (action==GET_HOSTS_BYADDR) {
1531 if (strcmp(name, alias[0]) != 0)
1534 /* GET_HOSTS_BYNAME */
1535 for (i = 1; i < aliases; i++)
1536 if (strcasecmp(name, alias[i]) == 0)
1542 if (type == AF_INET && inet_pton(AF_INET, alias[0], in) > 0) {
1543 DPRINTF("Found INET\n");
1546 result_buf->h_name = alias[1];
1547 result_buf->h_addrtype = AF_INET;
1548 result_buf->h_length = sizeof(*in);
1549 result_buf->h_addr_list = (char**) addr_list;
1550 result_buf->h_aliases = alias + 2;
1553 #ifdef __UCLIBC_HAS_IPV6__
1554 } else if (type == AF_INET6 && inet_pton(AF_INET6, alias[0], in6) > 0) {
1555 DPRINTF("Found INET6\n");
1556 addr_list6[0] = in6;
1558 result_buf->h_name = alias[1];
1559 result_buf->h_addrtype = AF_INET6;
1560 result_buf->h_length = sizeof(*in6);
1561 result_buf->h_addr_list = (char**) addr_list6;
1562 result_buf->h_aliases = alias + 2;
1565 #endif /* __UCLIBC_HAS_IPV6__ */
1569 break; /* bad ip address */
1572 if (action!=GETHOSTENT) {
1577 if (action!=GETHOSTENT) {
1587 static int __stay_open;
1588 static FILE * __gethostent_fp;
1590 void endhostent (void)
1594 if (__gethostent_fp) {
1595 fclose(__gethostent_fp);
1600 void sethostent (int stay_open)
1603 __stay_open = stay_open;
1607 int gethostent_r(struct hostent *result_buf, char *buf, size_t buflen,
1608 struct hostent **result, int *h_errnop)
1613 if (__gethostent_fp == NULL) {
1614 __open_etc_hosts(&__gethostent_fp);
1615 if (__gethostent_fp == NULL) {
1622 ret = __read_etc_hosts_r(__gethostent_fp, NULL, AF_INET, GETHOSTENT,
1623 result_buf, buf, buflen, result, h_errnop);
1624 if (__stay_open==0) {
1625 fclose(__gethostent_fp);
1631 struct hostent *gethostent (void)
1633 static struct hostent h;
1635 #ifndef __UCLIBC_HAS_IPV6__
1636 sizeof(struct in_addr) + sizeof(struct in_addr *)*2 +
1638 sizeof(struct in6_addr) + sizeof(struct in6_addr *)*2 +
1639 #endif /* __UCLIBC_HAS_IPV6__ */
1640 sizeof(char *)*(ALIAS_DIM) +
1641 80/*namebuffer*/ + 2/* margin */];
1642 struct hostent *host;
1645 gethostent_r(&h, buf, sizeof(buf), &host, &h_errno);
1651 #ifdef L_get_hosts_byname_r
1653 int attribute_hidden __get_hosts_byname_r(const char * name, int type,
1654 struct hostent * result_buf,
1655 char * buf, size_t buflen,
1656 struct hostent ** result,
1659 return(__read_etc_hosts_r(NULL, name, type, GET_HOSTS_BYNAME,
1660 result_buf, buf, buflen, result, h_errnop));
1664 #ifdef L_get_hosts_byaddr_r
1666 int attribute_hidden __get_hosts_byaddr_r(const char * addr, int len, int type,
1667 struct hostent * result_buf,
1668 char * buf, size_t buflen,
1669 struct hostent ** result,
1672 #ifndef __UCLIBC_HAS_IPV6__
1673 char ipaddr[INET_ADDRSTRLEN];
1675 char ipaddr[INET6_ADDRSTRLEN];
1676 #endif /* __UCLIBC_HAS_IPV6__ */
1680 if (len != sizeof(struct in_addr))
1683 #ifdef __UCLIBC_HAS_IPV6__
1685 if (len != sizeof(struct in6_addr))
1688 #endif /* __UCLIBC_HAS_IPV6__ */
1693 inet_ntop(type, addr, ipaddr, sizeof(ipaddr));
1695 return(__read_etc_hosts_r(NULL, ipaddr, type, GET_HOSTS_BYADDR,
1696 result_buf, buf, buflen, result, h_errnop));
1700 #ifdef L_getnameinfo
1703 # define min(x,y) (((x) > (y)) ? (y) : (x))
1706 int getnameinfo (const struct sockaddr *sa, socklen_t addrlen, char *host,
1707 socklen_t hostlen, char *serv, socklen_t servlen,
1712 struct hostent *h = NULL;
1715 if (flags & ~(NI_NUMERICHOST|NI_NUMERICSERV|NI_NOFQDN|NI_NAMEREQD|NI_DGRAM))
1716 return EAI_BADFLAGS;
1718 if (sa == NULL || addrlen < sizeof (sa_family_t))
1721 switch (sa->sa_family) {
1725 if (addrlen < sizeof (struct sockaddr_in))
1728 #ifdef __UCLIBC_HAS_IPV6__
1730 if (addrlen < sizeof (struct sockaddr_in6))
1733 #endif /* __UCLIBC_HAS_IPV6__ */
1738 if (host != NULL && hostlen > 0)
1739 switch (sa->sa_family) {
1741 #ifdef __UCLIBC_HAS_IPV6__
1743 #endif /* __UCLIBC_HAS_IPV6__ */
1744 if (!(flags & NI_NUMERICHOST)) {
1745 #ifdef __UCLIBC_HAS_IPV6__
1746 if (sa->sa_family == AF_INET6)
1747 h = gethostbyaddr ((const void *)
1748 &(((const struct sockaddr_in6 *) sa)->sin6_addr),
1749 sizeof(struct in6_addr), AF_INET6);
1751 #endif /* __UCLIBC_HAS_IPV6__ */
1752 h = gethostbyaddr ((const void *) &(((const struct sockaddr_in *)sa)->sin_addr),
1753 sizeof(struct in_addr), AF_INET);
1757 if ((flags & NI_NOFQDN)
1758 && (getdomainname (domain, sizeof(domain)) == 0)
1759 && (c = strstr (h->h_name, domain))
1760 && (c != h->h_name) && (*(--c) == '.')) {
1761 strncpy (host, h->h_name,
1762 min(hostlen, (size_t) (c - h->h_name)));
1763 host[min(hostlen - 1, (size_t) (c - h->h_name))] = '\0';
1766 strncpy (host, h->h_name, hostlen);
1773 if (flags & NI_NAMEREQD) {
1778 #ifdef __UCLIBC_HAS_IPV6__
1779 if (sa->sa_family == AF_INET6) {
1780 const struct sockaddr_in6 *sin6p;
1782 sin6p = (const struct sockaddr_in6 *) sa;
1784 c = inet_ntop (AF_INET6,
1785 (const void *) &sin6p->sin6_addr, host, hostlen);
1787 /* Does scope id need to be supported? */
1789 scopeid = sin6p->sin6_scope_id;
1791 /* Buffer is >= IFNAMSIZ+1. */
1792 char scopebuf[IFNAMSIZ + 1];
1794 int ni_numericscope = 0;
1795 size_t real_hostlen = __strnlen (host, hostlen);
1796 size_t scopelen = 0;
1798 scopebuf[0] = SCOPE_DELIMITER;
1800 scopeptr = &scopebuf[1];
1802 if (IN6_IS_ADDR_LINKLOCAL (&sin6p->sin6_addr)
1803 || IN6_IS_ADDR_MC_LINKLOCAL (&sin6p->sin6_addr)) {
1804 if (if_indextoname (scopeid, scopeptr) == NULL)
1807 scopelen = strlen (scopebuf);
1812 if (ni_numericscope)
1813 scopelen = 1 + snprintf (scopeptr,
1819 if (real_hostlen + scopelen + 1 > hostlen)
1821 memcpy (host + real_hostlen, scopebuf, scopelen + 1);
1825 #endif /* __UCLIBC_HAS_IPV6__ */
1826 c = inet_ntop (AF_INET, (const void *)
1827 &(((const struct sockaddr_in *) sa)->sin_addr),
1840 if (!(flags & NI_NUMERICHOST)) {
1841 struct utsname utsname;
1843 if (!uname (&utsname)) {
1844 strncpy (host, utsname.nodename, hostlen);
1849 if (flags & NI_NAMEREQD) {
1854 strncpy (host, "localhost", hostlen);
1861 if (serv && (servlen > 0)) {
1862 switch (sa->sa_family) {
1864 #ifdef __UCLIBC_HAS_IPV6__
1866 #endif /* __UCLIBC_HAS_IPV6__ */
1867 if (!(flags & NI_NUMERICSERV)) {
1869 s = getservbyport (((const struct sockaddr_in *) sa)->sin_port,
1870 ((flags & NI_DGRAM) ? "udp" : "tcp"));
1872 strncpy (serv, s->s_name, servlen);
1876 snprintf (serv, servlen, "%d",
1877 ntohs (((const struct sockaddr_in *) sa)->sin_port));
1881 strncpy (serv, ((const struct sockaddr_un *) sa)->sun_path, servlen);
1885 if (host && (hostlen > 0))
1886 host[hostlen-1] = 0;
1887 if (serv && (servlen > 0))
1888 serv[servlen-1] = 0;
1895 #ifdef L_gethostbyname_r
1897 int gethostbyname_r(const char * name,
1898 struct hostent * result_buf,
1899 char * buf, size_t buflen,
1900 struct hostent ** result,
1904 struct in_addr **addr_list;
1906 unsigned char *packet;
1907 struct resolv_answer a;
1909 int __nameserversXX;
1910 char ** __nameserverXX;
1912 __open_nameservers();
1917 /* do /etc/hosts first */
1919 int old_errno = errno; /* Save the old errno and reset errno */
1920 __set_errno(0); /* to check for missing /etc/hosts. */
1922 if ((i=__get_hosts_byname_r(name, AF_INET, result_buf,
1923 buf, buflen, result, h_errnop))==0)
1925 switch (*h_errnop) {
1926 case HOST_NOT_FOUND:
1929 case NETDB_INTERNAL:
1930 if (errno == ENOENT) {
1933 /* else fall through */
1937 __set_errno(old_errno);
1940 DPRINTF("Nothing found in /etc/hosts\n");
1942 *h_errnop = NETDB_INTERNAL;
1943 if (buflen < sizeof(*in))
1945 in=(struct in_addr*)buf;
1947 buflen-=sizeof(*in);
1949 if (buflen < sizeof(*addr_list)*2)
1951 addr_list=(struct in_addr**)buf;
1952 buf+=sizeof(*addr_list)*2;
1953 buflen-=sizeof(*addr_list)*2;
1958 if (buflen < sizeof(char *)*(ALIAS_DIM))
1961 buf+=sizeof(char **)*(ALIAS_DIM);
1962 buflen-=sizeof(char **)*(ALIAS_DIM);
1966 strncpy(buf, name, buflen);
1971 /* First check if this is already an address */
1972 if (inet_aton(name, in)) {
1973 result_buf->h_name = buf;
1974 result_buf->h_addrtype = AF_INET;
1975 result_buf->h_length = sizeof(*in);
1976 result_buf->h_addr_list = (char **) addr_list;
1977 result_buf->h_aliases = alias;
1979 *h_errnop = NETDB_SUCCESS;
1980 return NETDB_SUCCESS;
1986 __nameserversXX=__nameservers;
1987 __nameserverXX=__nameserver;
1992 i = __dns_lookup(name, T_A, __nameserversXX, __nameserverXX, &packet, &a);
1995 *h_errnop = HOST_NOT_FOUND;
1996 DPRINTF("__dns_lookup\n");
2000 if ((a.rdlength + sizeof(struct in_addr*)) * a.add_count + 256 > buflen)
2004 *h_errnop = NETDB_INTERNAL;
2005 DPRINTF("buffer too small for all addresses\n");
2008 else if(a.add_count > 0)
2010 memmove(buf - sizeof(struct in_addr*)*2, buf, a.add_count * a.rdlength);
2011 addr_list = (struct in_addr**)(buf + a.add_count * a.rdlength);
2013 for (i = a.add_count-1; i>=0; --i)
2014 addr_list[i+1] = (struct in_addr*)(buf - sizeof(struct in_addr*)*2 + a.rdlength * i);
2015 addr_list[a.add_count + 1] = 0;
2016 buflen -= (((char*)&(addr_list[a.add_count + 2])) - buf);
2017 buf = (char*)&addr_list[a.add_count + 2];
2020 strncpy(buf, a.dotted, buflen);
2023 if (a.atype == T_A) { /* ADDRESS */
2024 memcpy(in, a.rdata, sizeof(*in));
2025 result_buf->h_name = buf;
2026 result_buf->h_addrtype = AF_INET;
2027 result_buf->h_length = sizeof(*in);
2028 result_buf->h_addr_list = (char **) addr_list;
2029 #ifdef __UCLIBC_MJN3_ONLY__
2030 #warning TODO -- generate the full list
2032 result_buf->h_aliases = alias; /* TODO: generate the full list */
2037 *h_errnop=HOST_NOT_FOUND;
2043 *h_errnop = NETDB_SUCCESS;
2044 return NETDB_SUCCESS;
2048 #ifdef L_gethostbyname2_r
2050 int gethostbyname2_r(const char *name, int family,
2051 struct hostent * result_buf,
2052 char * buf, size_t buflen,
2053 struct hostent ** result,
2056 #ifndef __UCLIBC_HAS_IPV6__
2057 return family == (AF_INET)? gethostbyname_r(name, result_buf,
2058 buf, buflen, result, h_errnop) : HOST_NOT_FOUND;
2059 #else /* __UCLIBC_HAS_IPV6__ */
2060 struct in6_addr *in;
2061 struct in6_addr **addr_list;
2062 unsigned char *packet;
2063 struct resolv_answer a;
2066 int __nameserversXX;
2067 char ** __nameserverXX;
2069 if (family == AF_INET)
2070 return gethostbyname_r(name, result_buf, buf, buflen, result, h_errnop);
2072 if (family != AF_INET6)
2075 __open_nameservers();
2080 /* do /etc/hosts first */
2082 int old_errno = errno; /* Save the old errno and reset errno */
2083 __set_errno(0); /* to check for missing /etc/hosts. */
2085 if ((i=__get_hosts_byname_r(name, AF_INET, result_buf,
2086 buf, buflen, result, h_errnop))==0)
2088 switch (*h_errnop) {
2089 case HOST_NOT_FOUND:
2092 case NETDB_INTERNAL:
2093 if (errno == ENOENT) {
2096 /* else fall through */
2100 __set_errno(old_errno);
2103 DPRINTF("Nothing found in /etc/hosts\n");
2105 *h_errnop = NETDB_INTERNAL;
2106 if (buflen < sizeof(*in))
2108 in=(struct in6_addr*)buf;
2110 buflen-=sizeof(*in);
2112 if (buflen < sizeof(*addr_list)*2)
2114 addr_list=(struct in6_addr**)buf;
2115 buf+=sizeof(*addr_list)*2;
2116 buflen-=sizeof(*addr_list)*2;
2123 strncpy(buf, name, buflen);
2125 /* First check if this is already an address */
2126 if (inet_pton(AF_INET6, name, in)) {
2127 result_buf->h_name = buf;
2128 result_buf->h_addrtype = AF_INET6;
2129 result_buf->h_length = sizeof(*in);
2130 result_buf->h_addr_list = (char **) addr_list;
2132 *h_errnop = NETDB_SUCCESS;
2133 return NETDB_SUCCESS;
2136 memset((char *) &a, '\0', sizeof(a));
2140 __nameserversXX=__nameservers;
2141 __nameserverXX=__nameserver;
2144 i = __dns_lookup(buf, T_AAAA, __nameserversXX, __nameserverXX, &packet, &a);
2147 *h_errnop = HOST_NOT_FOUND;
2151 strncpy(buf, a.dotted, buflen);
2154 if (a.atype == T_CNAME) { /* CNAME */
2155 DPRINTF("Got a CNAME in gethostbyname()\n");
2156 i = __decode_dotted(packet, a.rdoffset, buf, buflen);
2160 *h_errnop = NO_RECOVERY;
2163 if (++nest > MAX_RECURSE) {
2164 *h_errnop = NO_RECOVERY;
2168 } else if (a.atype == T_AAAA) { /* ADDRESS */
2169 memcpy(in, a.rdata, sizeof(*in));
2170 result_buf->h_name = buf;
2171 result_buf->h_addrtype = AF_INET6;
2172 result_buf->h_length = sizeof(*in);
2173 result_buf->h_addr_list = (char **) addr_list;
2178 *h_errnop=HOST_NOT_FOUND;
2184 *h_errnop = NETDB_SUCCESS;
2185 return NETDB_SUCCESS;
2186 #endif /* __UCLIBC_HAS_IPV6__ */
2190 #ifdef L_gethostbyaddr_r
2191 int gethostbyaddr_r (const void *addr, socklen_t len, int type,
2192 struct hostent * result_buf,
2193 char * buf, size_t buflen,
2194 struct hostent ** result,
2199 struct in_addr **addr_list;
2200 #ifdef __UCLIBC_HAS_IPV6__
2203 struct in6_addr *in6;
2204 struct in6_addr **addr_list6;
2205 #endif /* __UCLIBC_HAS_IPV6__ */
2206 unsigned char *packet;
2207 struct resolv_answer a;
2210 int __nameserversXX;
2211 char ** __nameserverXX;
2217 memset((char *) &a, '\0', sizeof(a));
2221 if (len != sizeof(struct in_addr))
2224 #ifdef __UCLIBC_HAS_IPV6__
2226 if (len != sizeof(struct in6_addr))
2229 #endif /* __UCLIBC_HAS_IPV6__ */
2234 /* do /etc/hosts first */
2235 if ((i=__get_hosts_byaddr_r(addr, len, type, result_buf,
2236 buf, buflen, result, h_errnop))==0)
2238 switch (*h_errnop) {
2239 case HOST_NOT_FOUND:
2246 __open_nameservers();
2248 #ifdef __UCLIBC_HAS_IPV6__
2251 #endif /* __UCLIBC_HAS_IPV6__ */
2253 *h_errnop = NETDB_INTERNAL;
2254 if (buflen < sizeof(*in))
2256 in=(struct in_addr*)buf;
2258 buflen-=sizeof(*in);
2260 if (buflen < sizeof(*addr_list)*2)
2262 addr_list=(struct in_addr**)buf;
2263 buf+=sizeof(*addr_list)*2;
2264 buflen-=sizeof(*addr_list)*2;
2266 #ifdef __UCLIBC_HAS_IPV6__
2267 if (plen < sizeof(*in6))
2269 in6=(struct in6_addr*)qp;
2273 if (plen < sizeof(*addr_list6)*2)
2275 addr_list6=(struct in6_addr**)qp;
2276 qp+=sizeof(*addr_list6)*2;
2277 plen-=sizeof(*addr_list6)*2;
2279 if (plen < buflen) {
2283 #endif /* __UCLIBC_HAS_IPV6__ */
2288 if(type == AF_INET) {
2289 unsigned char *tmp_addr = (unsigned char *)addr;
2291 memcpy(&in->s_addr, addr, len);
2295 sprintf(buf, "%u.%u.%u.%u.in-addr.arpa",
2296 tmp_addr[3], tmp_addr[2], tmp_addr[1], tmp_addr[0]);
2297 #ifdef __UCLIBC_HAS_IPV6__
2299 memcpy(in6->s6_addr, addr, len);
2301 addr_list6[0] = in6;
2304 for (i = len - 1; i >= 0; i--) {
2305 qp += sprintf(qp, "%x.%x.", in6->s6_addr[i] & 0xf,
2306 (in6->s6_addr[i] >> 4) & 0xf);
2308 strcpy(qp, "ip6.int");
2309 #endif /* __UCLIBC_HAS_IPV6__ */
2317 __nameserversXX=__nameservers;
2318 __nameserverXX=__nameserver;
2320 i = __dns_lookup(buf, T_PTR, __nameserversXX, __nameserverXX, &packet, &a);
2323 *h_errnop = HOST_NOT_FOUND;
2327 strncpy(buf, a.dotted, buflen);
2330 if (a.atype == T_CNAME) { /* CNAME */
2331 DPRINTF("Got a CNAME in gethostbyaddr()\n");
2332 i = __decode_dotted(packet, a.rdoffset, buf, buflen);
2336 *h_errnop = NO_RECOVERY;
2339 if (++nest > MAX_RECURSE) {
2340 *h_errnop = NO_RECOVERY;
2344 } else if (a.atype == T_PTR) { /* ADDRESS */
2345 i = __decode_dotted(packet, a.rdoffset, buf, buflen);
2348 result_buf->h_name = buf;
2349 result_buf->h_addrtype = type;
2351 if(type == AF_INET) {
2352 result_buf->h_length = sizeof(*in);
2353 #ifdef __UCLIBC_HAS_IPV6__
2355 result_buf->h_length = sizeof(*in6);
2356 #endif /* __UCLIBC_HAS_IPV6__ */
2359 result_buf->h_addr_list = (char **) addr_list;
2363 *h_errnop = NO_ADDRESS;
2369 *h_errnop = NETDB_SUCCESS;
2370 return NETDB_SUCCESS;
2376 * Expand compressed domain name 'comp_dn' to full domain name.
2377 * 'msg' is a pointer to the begining of the message,
2378 * 'eomorig' points to the first location after the message,
2379 * 'exp_dn' is a pointer to a buffer of size 'length' for the result.
2380 * Return size of compressed name or -1 if there was an error.
2382 int __dn_expand(const u_char *msg, const u_char *eom, const u_char *src,
2383 char *dst, int dstsiz)
2385 int n = __libc_ns_name_uncompress(msg, eom, src, dst, (size_t)dstsiz);
2387 if (n > 0 && dst[0] == '.')
2391 #endif /* L_res_comp */
2396 * Thinking in noninternationalized USASCII (per the DNS spec),
2397 * is this character visible and not a space when printed ?
2401 static int printable(int ch)
2403 return (ch > 0x20 && ch < 0x7f);
2408 * Thinking in noninternationalized USASCII (per the DNS spec),
2409 * is this characted special ("in need of quoting") ?
2413 static int special(int ch)
2416 case 0x22: /* '"' */
2417 case 0x2E: /* '.' */
2418 case 0x3B: /* ';' */
2419 case 0x5C: /* '\\' */
2420 /* Special modifiers in zone files. */
2421 case 0x40: /* '@' */
2422 case 0x24: /* '$' */
2430 * ns_name_uncompress(msg, eom, src, dst, dstsiz)
2431 * Expand compressed domain name to presentation format.
2433 * Number of bytes read out of `src', or -1 (with errno set).
2435 * Root domain returns as "." not "".
2437 int attribute_hidden __libc_ns_name_uncompress(const u_char *msg, const u_char *eom,
2438 const u_char *src, char *dst, size_t dstsiz)
2440 u_char tmp[NS_MAXCDNAME];
2443 if ((n = __libc_ns_name_unpack(msg, eom, src, tmp, sizeof tmp)) == -1)
2445 if (__libc_ns_name_ntop(tmp, dst, dstsiz) == -1)
2449 strong_alias(__libc_ns_name_uncompress,__ns_name_uncompress)
2453 * ns_name_ntop(src, dst, dstsiz)
2454 * Convert an encoded domain name to printable ascii as per RFC1035.
2456 * Number of bytes written to buffer, or -1 (with errno set)
2458 * The root is returned as "."
2459 * All other domains are returned in non absolute form
2461 int attribute_hidden __libc_ns_name_ntop(const u_char *src, char *dst, size_t dstsiz) {
2466 const char digits[] = "0123456789";
2472 while ((n = *cp++) != 0) {
2473 if ((n & NS_CMPRSFLGS) != 0) {
2474 /* Some kind of compression pointer. */
2475 __set_errno (EMSGSIZE);
2480 __set_errno (EMSGSIZE);
2485 if (dn + n >= eom) {
2486 __set_errno (EMSGSIZE);
2489 for ((void)NULL; n > 0; n--) {
2492 if (dn + 1 >= eom) {
2493 __set_errno (EMSGSIZE);
2498 } else if (!printable(c)) {
2499 if (dn + 3 >= eom) {
2500 __set_errno (EMSGSIZE);
2504 *dn++ = digits[c / 100];
2505 *dn++ = digits[(c % 100) / 10];
2506 *dn++ = digits[c % 10];
2509 __set_errno (EMSGSIZE);
2518 __set_errno (EMSGSIZE);
2524 __set_errno (EMSGSIZE);
2530 strong_alias(__libc_ns_name_ntop,__ns_name_ntop)
2533 * ns_name_unpack(msg, eom, src, dst, dstsiz)
2534 * Unpack a domain name from a message, source may be compressed.
2536 * -1 if it fails, or consumed octets if it succeeds.
2538 int attribute_hidden __libc_ns_name_unpack(const u_char *msg, const u_char *eom, const u_char *src,
2539 u_char *dst, size_t dstsiz)
2541 const u_char *srcp, *dstlim;
2543 int n, len, checked;
2549 dstlim = dst + dstsiz;
2550 if (srcp < msg || srcp >= eom) {
2551 __set_errno (EMSGSIZE);
2554 /* Fetch next label in domain name. */
2555 while ((n = *srcp++) != 0) {
2556 /* Check for indirection. */
2557 switch (n & NS_CMPRSFLGS) {
2560 if (dstp + n + 1 >= dstlim || srcp + n >= eom) {
2561 __set_errno (EMSGSIZE);
2566 memcpy(dstp, srcp, n);
2573 __set_errno (EMSGSIZE);
2577 len = srcp - src + 1;
2578 srcp = msg + (((n & 0x3f) << 8) | (*srcp & 0xff));
2579 if (srcp < msg || srcp >= eom) { /* Out of range. */
2580 __set_errno (EMSGSIZE);
2585 * Check for loops in the compressed name;
2586 * if we've looked at the whole message,
2587 * there must be a loop.
2589 if (checked >= eom - msg) {
2590 __set_errno (EMSGSIZE);
2596 __set_errno (EMSGSIZE);
2597 return (-1); /* flag error */
2605 strong_alias(__libc_ns_name_unpack,__ns_name_unpack)
2606 #endif /* L_ns_name */