2 * Copyright (c) 1985, 1989, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * Portions Copyright (c) 1993 by Digital Equipment Corporation.
33 * Permission to use, copy, modify, and distribute this software for any
34 * purpose with or without fee is hereby granted, provided that the above
35 * copyright notice and this permission notice appear in all copies, and that
36 * the name of Digital Equipment Corporation not be used in advertising or
37 * publicity pertaining to distribution of the document or software without
38 * specific, written prior permission.
40 * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
41 * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
42 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT
43 * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
44 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
45 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
46 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
51 * Portions Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
52 * Portions Copyright (c) 1995-2003 by Internet Software Consortium
54 * Permission to use, copy, modify, and distribute this software for any
55 * purpose with or without fee is hereby granted, provided that the above
56 * copyright notice and this permission notice appear in all copies.
58 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
59 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
60 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
61 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
62 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
63 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
64 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
66 * Internet Systems Consortium, Inc.
68 * Redwood City, CA 94063
73 #if defined(LIBC_SCCS) && !defined(lint)
74 static const char sccsid
[] = "@(#)res_init.c 8.1 (Berkeley) 6/7/93";
75 static const char rcsid
[] = "$Id: res_init.c,v 1.5 2007/05/27 16:27:57 tls Exp $";
76 #endif /* LIBC_SCCS and not lint */
78 #include <sys/types.h>
79 #include <sys/param.h>
80 #include <sys/socket.h>
83 #include <netinet/in.h>
84 #include <arpa/inet.h>
92 #include "minires/minires.h"
93 #include "omapip/trace_mr.h"
94 #include "arpa/nameser.h"
96 /* Options. Should all be left alone. */
101 static void res_setoptions (res_state
, const char *, const char *);
104 static const char sort_mask
[] = "/&";
105 #define ISSORTMASK(ch) (strchr(sort_mask, ch) != NULL)
106 static u_int32_t
net_mask (struct in_addr
);
109 #if !defined(isascii) /* XXX - could be a function */
110 # define isascii(c) (!(c & 0200))
114 * Resolver state default settings.
118 * Set up default settings. If the configuration file exist, the values
119 * there will have precedence. Otherwise, the server address is set to
120 * INADDR_ANY and the default domain name comes from the gethostname().
122 * An interrim version of this code (BIND 4.9, pre-4.4BSD) used 127.0.0.1
123 * rather than INADDR_ANY ("0.0.0.0") as the default name server address
124 * since it was noted that INADDR_ANY actually meant ``the first interface
125 * you "ifconfig"'d at boot time'' and if this was a SLIP or PPP interface,
126 * it had to be "up" in order for you to reach your own name server. It
127 * was later decided that since the recommended practice is to always
128 * install local static routes through 127.0.0.1 for all your network
129 * interfaces, that we could solve this problem without a code change.
131 * The configuration file should always be used, since it is the only way
132 * to specify a default domain. If you are running a server on your local
133 * machine, you should say "nameserver 0.0.0.0" or "nameserver 127.0.0.1"
134 * in the configuration file.
136 * Return 0 if completes successfully, -1 on error
138 extern int minires_vinit(res_state
, int);
140 #if defined (TRACING)
141 u_int
trace_mr_res_randomid(u_int
);
145 res_ninit(res_state statp
) {
147 return (minires_vinit(statp
, 0));
150 /* This function has to be reachable by res_data.c but not publically. */
152 minires_vinit(res_state statp
, int preinit
) {
154 register char *cp
, **pp
;
157 int nserv
= 0; /* number of nameserver records read from file */
169 statp
->retrans
= RES_TIMEOUT
;
170 statp
->retry
= RES_DFLRETRY
;
171 statp
->options
= RES_DEFAULT
;
172 statp
->id
= res_randomid();
173 #if defined (TRACING)
174 statp
->id
= trace_mr_res_randomid (statp
-> id
);
179 statp
->nsaddr
.sin_addr
= inet_makeaddr(IN_LOOPBACKNET
, 1);
181 statp
->nsaddr
.sin_addr
.s_addr
= INADDR_ANY
;
183 statp
->nsaddr
.sin_family
= AF_INET
;
184 statp
->nsaddr
.sin_port
= htons(NAMESERVER_PORT
);
193 /* Allow user to override the local domain definition */
194 if ((cp
= getenv("LOCALDOMAIN")) != NULL
) {
195 (void)strncpy(statp
->defdname
, cp
, sizeof(statp
->defdname
) - 1);
196 statp
->defdname
[sizeof(statp
->defdname
) - 1] = '\0';
200 * Set search list to be blank-separated strings
201 * from rest of env value. Permits users of LOCALDOMAIN
202 * to still have a search list, and anyone to set the
203 * one that they want to use as an individual (even more
204 * important now that the rfc1535 stuff restricts searches)
206 cp
= statp
->defdname
;
209 for (n
= 0; *cp
&& pp
< statp
->dnsrch
+ MAXDNSRCH
; cp
++) {
210 if (*cp
== '\n') /* silly backwards compat */
212 else if (*cp
== ' ' || *cp
== '\t') {
221 /* null terminate last domain if there are excess */
222 while (*cp
!= '\0' && *cp
!= ' ' && *cp
!= '\t' && *cp
!= '\n')
228 #define MATCH(line, name) \
229 (!strncmp(line, name, sizeof(name) - 1) && \
230 (line[sizeof(name) - 1] == ' ' || \
231 line[sizeof(name) - 1] == '\t'))
233 if ((fp
= fopen(_PATH_RESCONF
, "r")) != NULL
) {
234 /* read the config file */
235 while (fgets(buf
, sizeof(buf
), fp
) != NULL
) {
237 if (*buf
== ';' || *buf
== '#')
239 /* read default domain name */
240 if (MATCH(buf
, "domain")) {
241 if (haveenv
) /* skip if have from environ */
243 cp
= buf
+ sizeof("domain") - 1;
244 while (*cp
== ' ' || *cp
== '\t')
246 if ((*cp
== '\0') || (*cp
== '\n'))
248 strncpy(statp
->defdname
, cp
, sizeof(statp
->defdname
) - 1);
249 statp
->defdname
[sizeof(statp
->defdname
) - 1] = '\0';
250 if ((cp
= strpbrk(statp
->defdname
, " \t\n")) != NULL
)
255 /* set search list */
256 if (MATCH(buf
, "search")) {
257 if (haveenv
) /* skip if have from environ */
259 cp
= buf
+ sizeof("search") - 1;
260 while (*cp
== ' ' || *cp
== '\t')
262 if ((*cp
== '\0') || (*cp
== '\n'))
264 strncpy(statp
->defdname
, cp
, sizeof(statp
->defdname
) - 1);
265 statp
->defdname
[sizeof(statp
->defdname
) - 1] = '\0';
266 if ((cp
= strchr(statp
->defdname
, '\n')) != NULL
)
269 * Set search list to be blank-separated strings
272 cp
= statp
->defdname
;
275 for (n
= 0; *cp
&& pp
< statp
->dnsrch
+ MAXDNSRCH
; cp
++) {
276 if (*cp
== ' ' || *cp
== '\t') {
284 /* null terminate last domain if there are excess */
285 while (*cp
!= '\0' && *cp
!= ' ' && *cp
!= '\t')
292 /* read nameservers to query */
293 if (MATCH(buf
, "nameserver") && nserv
< MAXNS
) {
296 cp
= buf
+ sizeof("nameserver") - 1;
297 while (*cp
== ' ' || *cp
== '\t')
299 if ((*cp
!= '\0') && (*cp
!= '\n') && inet_aton(cp
, &a
)) {
300 statp
->nsaddr_list
[nserv
].sin_addr
= a
;
301 statp
->nsaddr_list
[nserv
].sin_family
= AF_INET
;
302 statp
->nsaddr_list
[nserv
].sin_port
=
303 htons(NAMESERVER_PORT
);
309 if (MATCH(buf
, "sortlist")) {
312 cp
= buf
+ sizeof("sortlist") - 1;
313 while (nsort
< MAXRESOLVSORT
) {
314 while (*cp
== ' ' || *cp
== '\t')
316 if (*cp
== '\0' || *cp
== '\n' || *cp
== ';')
319 while (*cp
&& !ISSORTMASK(*cp
) && *cp
!= ';' &&
320 !isspace((unsigned char)*cp
))
324 if (inet_aton(net
, &a
)) {
325 statp
->sort_list
[nsort
].addr
= a
;
329 while (*cp
&& *cp
!= ';' &&
330 !isspace((unsigned char)*cp
))
334 if (inet_aton(net
, &a
)) {
335 statp
->sort_list
[nsort
].mask
= a
.s_addr
;
337 statp
->sort_list
[nsort
].mask
=
338 net_mask(statp
->sort_list
[nsort
].addr
);
341 statp
->sort_list
[nsort
].mask
=
342 net_mask(statp
->sort_list
[nsort
].addr
);
351 if (MATCH(buf
, "options")) {
352 res_setoptions(statp
, buf
+ sizeof("options") - 1, "conf");
357 statp
->nscount
= nserv
;
359 statp
->nsort
= nsort
;
363 if (statp
->defdname
[0] == 0 &&
364 gethostname(buf
, sizeof(statp
->defdname
) - 1) == 0 &&
365 (cp
= strchr(buf
, '.')) != NULL
)
366 strcpy(statp
->defdname
, cp
+ 1);
368 /* find components of local domain that might be searched */
369 if (havesearch
== 0) {
371 *pp
++ = statp
->defdname
;
376 for (cp
= statp
->defdname
; *cp
; cp
++)
377 dots
+= (*cp
== '.');
379 cp
= statp
->defdname
;
380 while (pp
< statp
->dnsrch
+ MAXDFLSRCH
) {
381 if (dots
< LOCALDOMAINPARTS
)
383 cp
= strchr(cp
, '.') + 1; /* we know there is one */
389 if (statp
->options
& RES_DEBUG
) {
390 printf(";; res_init()... default dnsrch list:\n");
391 for (pp
= statp
->dnsrch
; *pp
; pp
++)
392 printf(";;\t%s\n", *pp
);
393 printf(";;\t..END..\n");
396 #endif /* !RFC1535 */
399 if ((cp
= getenv("RES_OPTIONS")) != NULL
)
400 res_setoptions(statp
, cp
, "env");
401 statp
->options
|= RES_INIT
;
406 res_setoptions(res_state statp
, const char *options
, const char *source
) {
407 const char *cp
= options
;
411 if (statp
->options
& RES_DEBUG
)
412 printf(";; res_setoptions(\"%s\", \"%s\")...\n",
416 /* skip leading and inner runs of spaces */
417 while (*cp
== ' ' || *cp
== '\t')
419 /* search for and process individual options */
420 if (!strncmp(cp
, "ndots:", sizeof("ndots:") - 1)) {
421 i
= atoi(cp
+ sizeof("ndots:") - 1);
422 if (i
<= RES_MAXNDOTS
)
425 statp
->ndots
= RES_MAXNDOTS
;
427 if (statp
->options
& RES_DEBUG
)
428 printf(";;\tndots=%d\n", statp
->ndots
);
430 } else if (!strncmp(cp
, "timeout:", sizeof("timeout:") - 1)) {
431 i
= atoi(cp
+ sizeof("timeout:") - 1);
432 if (i
<= RES_MAXRETRANS
)
435 statp
->retrans
= RES_MAXRETRANS
;
436 } else if (!strncmp(cp
, "attempts:", sizeof("attempts:") - 1)){
437 i
= atoi(cp
+ sizeof("attempts:") - 1);
438 if (i
<= RES_MAXRETRY
)
441 statp
->retry
= RES_MAXRETRY
;
442 } else if (!strncmp(cp
, "debug", sizeof("debug") - 1)) {
444 if (!(statp
->options
& RES_DEBUG
)) {
445 printf(";; res_setoptions(\"%s\", \"%s\")..\n",
447 statp
->options
|= RES_DEBUG
;
449 printf(";;\tdebug\n");
451 } else if (!strncmp(cp
, "inet6", sizeof("inet6") - 1)) {
452 statp
->options
|= RES_USE_INET6
;
453 } else if (!strncmp(cp
, "rotate", sizeof("rotate") - 1)) {
454 statp
->options
|= RES_ROTATE
;
455 } else if (!strncmp(cp
, "no-check-names",
456 sizeof("no-check-names") - 1)) {
457 statp
->options
|= RES_NOCHECKNAME
;
459 /* XXX - print a warning here? */
461 /* skip to next run of spaces */
462 while (*cp
&& *cp
!= ' ' && *cp
!= '\t')
468 /* XXX - should really support CIDR which means explicit masks always. */
470 net_mask(in
) /* XXX - should really use system's version of this */
473 register u_int32_t i
= ntohl(in
.s_addr
);
476 return (htonl(IN_CLASSA_NET
));
477 else if (IN_CLASSB(i
))
478 return (htonl(IN_CLASSB_NET
));
479 return (htonl(IN_CLASSC_NET
));
487 gettimeofday(&now
, NULL
);
488 return (0xffff & (now
.tv_sec
^ now
.tv_usec
^ getpid()));