]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libc/resolv/res_query.c
Vendor import of BIND 9.4.1
[FreeBSD/FreeBSD.git] / lib / libc / resolv / res_query.c
1 /*
2  * Copyright (c) 1988, 1993
3  *    The Regents of the University of California.  All rights reserved.
4  * 
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  * 
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 /*
35  * Portions Copyright (c) 1993 by Digital Equipment Corporation.
36  * 
37  * Permission to use, copy, modify, and distribute this software for any
38  * purpose with or without fee is hereby granted, provided that the above
39  * copyright notice and this permission notice appear in all copies, and that
40  * the name of Digital Equipment Corporation not be used in advertising or
41  * publicity pertaining to distribution of the document or software without
42  * specific, written prior permission.
43  * 
44  * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
45  * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
46  * OF MERCHANTABILITY AND FITNESS.   IN NO EVENT SHALL DIGITAL EQUIPMENT
47  * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
48  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
49  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
50  * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
51  * SOFTWARE.
52  */
53
54 /*
55  * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
56  * Portions Copyright (c) 1996-1999 by Internet Software Consortium.
57  *
58  * Permission to use, copy, modify, and distribute this software for any
59  * purpose with or without fee is hereby granted, provided that the above
60  * copyright notice and this permission notice appear in all copies.
61  *
62  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
63  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
64  * MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR
65  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
66  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
67  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
68  * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
69  */
70
71 #if defined(LIBC_SCCS) && !defined(lint)
72 static const char sccsid[] = "@(#)res_query.c   8.1 (Berkeley) 6/4/93";
73 static const char rcsid[] = "$Id: res_query.c,v 1.7.18.1 2005/04/27 05:01:11 sra Exp $";
74 #endif /* LIBC_SCCS and not lint */
75
76 #include "port_before.h"
77 #include <sys/types.h>
78 #include <sys/param.h>
79 #include <netinet/in.h>
80 #include <arpa/inet.h>
81 #include <arpa/nameser.h>
82 #include <ctype.h>
83 #include <errno.h>
84 #include <netdb.h>
85 #include <resolv.h>
86 #include <stdio.h>
87 #include <stdlib.h>
88 #include <string.h>
89 #include "port_after.h"
90
91 /* Options.  Leave them on. */
92 #define DEBUG
93
94 #if PACKETSZ > 1024
95 #define MAXPACKET       PACKETSZ
96 #else
97 #define MAXPACKET       1024
98 #endif
99
100 /*%
101  * Formulate a normal query, send, and await answer.
102  * Returned answer is placed in supplied buffer "answer".
103  * Perform preliminary check of answer, returning success only
104  * if no error is indicated and the answer count is nonzero.
105  * Return the size of the response on success, -1 on error.
106  * Error number is left in H_ERRNO.
107  *
108  * Caller must parse answer and determine whether it answers the question.
109  */
110 int
111 res_nquery(res_state statp,
112            const char *name,    /*%< domain name */
113            int class, int type, /*%< class and type of query */
114            u_char *answer,      /*%< buffer to put answer */
115            int anslen)          /*%< size of answer buffer */
116 {
117         u_char buf[MAXPACKET];
118         HEADER *hp = (HEADER *) answer;
119         int n;
120         u_int oflags;
121
122         oflags = statp->_flags;
123
124 again:
125         hp->rcode = NOERROR;    /*%< default */
126 #ifdef DEBUG
127         if (statp->options & RES_DEBUG)
128                 printf(";; res_query(%s, %d, %d)\n", name, class, type);
129 #endif
130
131         n = res_nmkquery(statp, QUERY, name, class, type, NULL, 0, NULL,
132                          buf, sizeof(buf));
133 #ifdef RES_USE_EDNS0
134         if (n > 0 && (statp->_flags & RES_F_EDNS0ERR) == 0 &&
135             (statp->options & (RES_USE_EDNS0|RES_USE_DNSSEC)) != 0U)
136                 n = res_nopt(statp, n, buf, sizeof(buf), anslen);
137 #endif
138         if (n <= 0) {
139 #ifdef DEBUG
140                 if (statp->options & RES_DEBUG)
141                         printf(";; res_query: mkquery failed\n");
142 #endif
143                 RES_SET_H_ERRNO(statp, NO_RECOVERY);
144                 return (n);
145         }
146         n = res_nsend(statp, buf, n, answer, anslen);
147         if (n < 0) {
148 #ifdef RES_USE_EDNS0
149                 /* if the query choked with EDNS0, retry without EDNS0 */
150                 if ((statp->options & (RES_USE_EDNS0|RES_USE_DNSSEC)) != 0U &&
151                     ((oflags ^ statp->_flags) & RES_F_EDNS0ERR) != 0) {
152                         statp->_flags |= RES_F_EDNS0ERR;
153                         if (statp->options & RES_DEBUG)
154                                 printf(";; res_nquery: retry without EDNS0\n");
155                         goto again;
156                 }
157 #endif
158 #ifdef DEBUG
159                 if (statp->options & RES_DEBUG)
160                         printf(";; res_query: send error\n");
161 #endif
162                 RES_SET_H_ERRNO(statp, TRY_AGAIN);
163                 return (n);
164         }
165
166         if (hp->rcode != NOERROR || ntohs(hp->ancount) == 0) {
167 #ifdef DEBUG
168                 if (statp->options & RES_DEBUG)
169                         printf(";; rcode = (%s), counts = an:%d ns:%d ar:%d\n",
170                                p_rcode(hp->rcode),
171                                ntohs(hp->ancount),
172                                ntohs(hp->nscount),
173                                ntohs(hp->arcount));
174 #endif
175                 switch (hp->rcode) {
176                 case NXDOMAIN:
177                         RES_SET_H_ERRNO(statp, HOST_NOT_FOUND);
178                         break;
179                 case SERVFAIL:
180                         RES_SET_H_ERRNO(statp, TRY_AGAIN);
181                         break;
182                 case NOERROR:
183                         RES_SET_H_ERRNO(statp, NO_DATA);
184                         break;
185                 case FORMERR:
186                 case NOTIMP:
187                 case REFUSED:
188                 default:
189                         RES_SET_H_ERRNO(statp, NO_RECOVERY);
190                         break;
191                 }
192                 return (-1);
193         }
194         return (n);
195 }
196
197 /*%
198  * Formulate a normal query, send, and retrieve answer in supplied buffer.
199  * Return the size of the response on success, -1 on error.
200  * If enabled, implement search rules until answer or unrecoverable failure
201  * is detected.  Error code, if any, is left in H_ERRNO.
202  */
203 int
204 res_nsearch(res_state statp,
205             const char *name,   /*%< domain name */
206             int class, int type,        /*%< class and type of query */
207             u_char *answer,     /*%< buffer to put answer */
208             int anslen)         /*%< size of answer */
209 {
210         const char *cp, * const *domain;
211         HEADER *hp = (HEADER *) answer;
212         char tmp[NS_MAXDNAME];
213         u_int dots;
214         int trailing_dot, ret, saved_herrno;
215         int got_nodata = 0, got_servfail = 0, root_on_list = 0;
216         int tried_as_is = 0;
217         int searched = 0;
218
219         errno = 0;
220         RES_SET_H_ERRNO(statp, HOST_NOT_FOUND);  /*%< True if we never query. */
221         dots = 0;
222         for (cp = name; *cp != '\0'; cp++)
223                 dots += (*cp == '.');
224         trailing_dot = 0;
225         if (cp > name && *--cp == '.')
226                 trailing_dot++;
227
228         /* If there aren't any dots, it could be a user-level alias. */
229         if (!dots && (cp = res_hostalias(statp, name, tmp, sizeof tmp))!= NULL)
230                 return (res_nquery(statp, cp, class, type, answer, anslen));
231
232         /*
233          * If there are enough dots in the name, let's just give it a
234          * try 'as is'. The threshold can be set with the "ndots" option.
235          * Also, query 'as is', if there is a trailing dot in the name.
236          */
237         saved_herrno = -1;
238         if (dots >= statp->ndots || trailing_dot) {
239                 ret = res_nquerydomain(statp, name, NULL, class, type,
240                                          answer, anslen);
241                 if (ret > 0 || trailing_dot)
242                         return (ret);
243                 saved_herrno = statp->res_h_errno;
244                 tried_as_is++;
245         }
246
247         /*
248          * We do at least one level of search if
249          *      - there is no dot and RES_DEFNAME is set, or
250          *      - there is at least one dot, there is no trailing dot,
251          *        and RES_DNSRCH is set.
252          */
253         if ((!dots && (statp->options & RES_DEFNAMES) != 0U) ||
254             (dots && !trailing_dot && (statp->options & RES_DNSRCH) != 0U)) {
255                 int done = 0;
256
257                 for (domain = (const char * const *)statp->dnsrch;
258                      *domain && !done;
259                      domain++) {
260                         searched = 1;
261
262                         if (domain[0][0] == '\0' ||
263                             (domain[0][0] == '.' && domain[0][1] == '\0'))
264                                 root_on_list++;
265
266                         ret = res_nquerydomain(statp, name, *domain,
267                                                class, type,
268                                                answer, anslen);
269                         if (ret > 0)
270                                 return (ret);
271
272                         /*
273                          * If no server present, give up.
274                          * If name isn't found in this domain,
275                          * keep trying higher domains in the search list
276                          * (if that's enabled).
277                          * On a NO_DATA error, keep trying, otherwise
278                          * a wildcard entry of another type could keep us
279                          * from finding this entry higher in the domain.
280                          * If we get some other error (negative answer or
281                          * server failure), then stop searching up,
282                          * but try the input name below in case it's
283                          * fully-qualified.
284                          */
285                         if (errno == ECONNREFUSED) {
286                                 RES_SET_H_ERRNO(statp, TRY_AGAIN);
287                                 return (-1);
288                         }
289
290                         switch (statp->res_h_errno) {
291                         case NO_DATA:
292                                 got_nodata++;
293                                 /* FALLTHROUGH */
294                         case HOST_NOT_FOUND:
295                                 /* keep trying */
296                                 break;
297                         case TRY_AGAIN:
298                                 if (hp->rcode == SERVFAIL) {
299                                         /* try next search element, if any */
300                                         got_servfail++;
301                                         break;
302                                 }
303                                 /* FALLTHROUGH */
304                         default:
305                                 /* anything else implies that we're done */
306                                 done++;
307                         }
308
309                         /* if we got here for some reason other than DNSRCH,
310                          * we only wanted one iteration of the loop, so stop.
311                          */
312                         if ((statp->options & RES_DNSRCH) == 0U)
313                                 done++;
314                 }
315         }
316
317         /*
318          * If the query has not already been tried as is then try it
319          * unless RES_NOTLDQUERY is set and there were no dots.
320          */
321         if ((dots || !searched || (statp->options & RES_NOTLDQUERY) == 0U) &&
322             !(tried_as_is || root_on_list)) {
323                 ret = res_nquerydomain(statp, name, NULL, class, type,
324                                        answer, anslen);
325                 if (ret > 0)
326                         return (ret);
327         }
328
329         /* if we got here, we didn't satisfy the search.
330          * if we did an initial full query, return that query's H_ERRNO
331          * (note that we wouldn't be here if that query had succeeded).
332          * else if we ever got a nodata, send that back as the reason.
333          * else send back meaningless H_ERRNO, that being the one from
334          * the last DNSRCH we did.
335          */
336         if (saved_herrno != -1)
337                 RES_SET_H_ERRNO(statp, saved_herrno);
338         else if (got_nodata)
339                 RES_SET_H_ERRNO(statp, NO_DATA);
340         else if (got_servfail)
341                 RES_SET_H_ERRNO(statp, TRY_AGAIN);
342         return (-1);
343 }
344
345 /*%
346  * Perform a call on res_query on the concatenation of name and domain,
347  * removing a trailing dot from name if domain is NULL.
348  */
349 int
350 res_nquerydomain(res_state statp,
351             const char *name,
352             const char *domain,
353             int class, int type,        /*%< class and type of query */
354             u_char *answer,             /*%< buffer to put answer */
355             int anslen)         /*%< size of answer */
356 {
357         char nbuf[MAXDNAME];
358         const char *longname = nbuf;
359         int n, d;
360
361 #ifdef DEBUG
362         if (statp->options & RES_DEBUG)
363                 printf(";; res_nquerydomain(%s, %s, %d, %d)\n",
364                        name, domain?domain:"<Nil>", class, type);
365 #endif
366         if (domain == NULL) {
367                 /*
368                  * Check for trailing '.';
369                  * copy without '.' if present.
370                  */
371                 n = strlen(name);
372                 if (n >= MAXDNAME) {
373                         RES_SET_H_ERRNO(statp, NO_RECOVERY);
374                         return (-1);
375                 }
376                 n--;
377                 if (n >= 0 && name[n] == '.') {
378                         strncpy(nbuf, name, n);
379                         nbuf[n] = '\0';
380                 } else
381                         longname = name;
382         } else {
383                 n = strlen(name);
384                 d = strlen(domain);
385                 if (n + d + 1 >= MAXDNAME) {
386                         RES_SET_H_ERRNO(statp, NO_RECOVERY);
387                         return (-1);
388                 }
389                 sprintf(nbuf, "%s.%s", name, domain);
390         }
391         return (res_nquery(statp, longname, class, type, answer, anslen));
392 }
393
394 const char *
395 res_hostalias(const res_state statp, const char *name, char *dst, size_t siz) {
396         char *file, *cp1, *cp2;
397         char buf[BUFSIZ];
398         FILE *fp;
399
400         if (statp->options & RES_NOALIASES)
401                 return (NULL);
402         file = getenv("HOSTALIASES");
403         if (file == NULL || (fp = fopen(file, "r")) == NULL)
404                 return (NULL);
405         setbuf(fp, NULL);
406         buf[sizeof(buf) - 1] = '\0';
407         while (fgets(buf, sizeof(buf), fp)) {
408                 for (cp1 = buf; *cp1 && !isspace((unsigned char)*cp1); ++cp1)
409                         ;
410                 if (!*cp1)
411                         break;
412                 *cp1 = '\0';
413                 if (ns_samename(buf, name) == 1) {
414                         while (isspace((unsigned char)*++cp1))
415                                 ;
416                         if (!*cp1)
417                                 break;
418                         for (cp2 = cp1 + 1; *cp2 &&
419                              !isspace((unsigned char)*cp2); ++cp2)
420                                 ;
421                         *cp2 = '\0';
422                         strncpy(dst, cp1, siz - 1);
423                         dst[siz - 1] = '\0';
424                         fclose(fp);
425                         return (dst);
426                 }
427         }
428         fclose(fp);
429         return (NULL);
430 }
431
432 /*! \file */