]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libc/net/res_init.c
This commit was generated by cvs2svn to compensate for changes in r53796,
[FreeBSD/FreeBSD.git] / lib / libc / net / res_init.c
1 /*
2  * Copyright (c) 1985, 1989, 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  * Portions Copyright (c) 1996 by Internet Software Consortium.
56  *
57  * Permission to use, copy, modify, and distribute this software for any
58  * purpose with or without fee is hereby granted, provided that the above
59  * copyright notice and this permission notice appear in all copies.
60  *
61  * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
62  * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
63  * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
64  * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
65  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
66  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
67  * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
68  * SOFTWARE.
69  */
70
71 #if defined(LIBC_SCCS) && !defined(lint)
72 static char sccsid[] = "@(#)res_init.c  8.1 (Berkeley) 6/7/93";
73 static char orig_rcsid[] = "From: Id: res_init.c,v 8.7 1996/11/18 09:10:04 vixie Exp $";
74 static char rcsid[] = "$FreeBSD$";
75 #endif /* LIBC_SCCS and not lint */
76
77 #include <sys/types.h>
78 #include <sys/param.h>
79 #include <sys/socket.h>
80 #include <sys/time.h>
81 #include <netinet/in.h>
82 #include <arpa/inet.h>
83 #include <arpa/nameser.h>
84 #include <ctype.h>
85 #include <resolv.h>
86 #include <stdio.h>
87 #include <stdlib.h>
88 #include <string.h>
89 #include <unistd.h>
90
91 #include "res_config.h"
92
93 static void res_setoptions __P((char *, char *));
94
95 #ifdef RESOLVSORT
96 static const char sort_mask[] = "/&";
97 #define ISSORTMASK(ch) (strchr(sort_mask, ch) != NULL)
98 static u_int32_t net_mask __P((struct in_addr));
99 #endif
100
101 #if !defined(isascii) /* XXX - could be a function */
102 # define isascii(c) (!(c & 0200))
103 #endif
104
105 /*
106  * Resolver state default settings.
107  */
108
109 struct __res_state _res
110 # if defined(__BIND_RES_TEXT)
111         = { RES_TIMEOUT, }      /* Motorola, et al. */
112 # endif
113         ;
114
115
116 /*
117  * Set up default settings.  If the configuration file exist, the values
118  * there will have precedence.  Otherwise, the server address is set to
119  * INADDR_ANY and the default domain name comes from the gethostname().
120  *
121  * An interrim version of this code (BIND 4.9, pre-4.4BSD) used 127.0.0.1
122  * rather than INADDR_ANY ("0.0.0.0") as the default name server address
123  * since it was noted that INADDR_ANY actually meant ``the first interface
124  * you "ifconfig"'d at boot time'' and if this was a SLIP or PPP interface,
125  * it had to be "up" in order for you to reach your own name server.  It
126  * was later decided that since the recommended practice is to always 
127  * install local static routes through 127.0.0.1 for all your network
128  * interfaces, that we could solve this problem without a code change.
129  *
130  * The configuration file should always be used, since it is the only way
131  * to specify a default domain.  If you are running a server on your local
132  * machine, you should say "nameserver 0.0.0.0" or "nameserver 127.0.0.1"
133  * in the configuration file.
134  *
135  * Return 0 if completes successfully, -1 on error
136  */
137 int
138 res_init()
139 {
140         register FILE *fp;
141         register char *cp, **pp;
142         register int n;
143         char buf[MAXDNAME];
144         int nserv = 0;    /* number of nameserver records read from file */
145         int haveenv = 0;
146         int havesearch = 0;
147 #ifdef RESOLVSORT
148         int nsort = 0;
149         char *net;
150 #endif
151 #ifndef RFC1535
152         int dots;
153 #endif
154
155         /*
156          * These three fields used to be statically initialized.  This made
157          * it hard to use this code in a shared library.  It is necessary,
158          * now that we're doing dynamic initialization here, that we preserve
159          * the old semantics: if an application modifies one of these three
160          * fields of _res before res_init() is called, res_init() will not
161          * alter them.  Of course, if an application is setting them to
162          * _zero_ before calling res_init(), hoping to override what used
163          * to be the static default, we can't detect it and unexpected results
164          * will follow.  Zero for any of these fields would make no sense,
165          * so one can safely assume that the applications were already getting
166          * unexpected results.
167          *
168          * _res.options is tricky since some apps were known to diddle the bits
169          * before res_init() was first called. We can't replicate that semantic
170          * with dynamic initialization (they may have turned bits off that are
171          * set in RES_DEFAULT).  Our solution is to declare such applications
172          * "broken".  They could fool us by setting RES_INIT but none do (yet).
173          */
174         if (!_res.retrans)
175                 _res.retrans = RES_TIMEOUT;
176         if (!_res.retry)
177                 _res.retry = 4;
178         if (!(_res.options & RES_INIT))
179                 _res.options = RES_DEFAULT;
180
181         /*
182          * This one used to initialize implicitly to zero, so unless the app
183          * has set it to something in particular, we can randomize it now.
184          */
185         if (!_res.id)
186                 _res.id = res_randomid();
187
188 #ifdef USELOOPBACK
189         _res.nsaddr.sin_addr = inet_makeaddr(IN_LOOPBACKNET, 1);
190 #else
191         _res.nsaddr.sin_addr.s_addr = INADDR_ANY;
192 #endif
193         _res.nsaddr.sin_family = AF_INET;
194         _res.nsaddr.sin_port = htons(NAMESERVER_PORT);
195         _res.nscount = 1;
196         _res.ndots = 1;
197         _res.pfcode = 0;
198
199         /* Allow user to override the local domain definition */
200         if (issetugid() == 0 && (cp = getenv("LOCALDOMAIN")) != NULL) {
201                 (void)strncpy(_res.defdname, cp, sizeof(_res.defdname) - 1);
202                 _res.defdname[sizeof(_res.defdname) - 1] = '\0';
203                 haveenv++;
204
205                 /*
206                  * Set search list to be blank-separated strings
207                  * from rest of env value.  Permits users of LOCALDOMAIN
208                  * to still have a search list, and anyone to set the
209                  * one that they want to use as an individual (even more
210                  * important now that the rfc1535 stuff restricts searches)
211                  */
212                 cp = _res.defdname;
213                 pp = _res.dnsrch;
214                 *pp++ = cp;
215                 for (n = 0; *cp && pp < _res.dnsrch + MAXDNSRCH; cp++) {
216                         if (*cp == '\n')        /* silly backwards compat */
217                                 break;
218                         else if (*cp == ' ' || *cp == '\t') {
219                                 *cp = 0;
220                                 n = 1;
221                         } else if (n) {
222                                 *pp++ = cp;
223                                 n = 0;
224                                 havesearch = 1;
225                         }
226                 }
227                 /* null terminate last domain if there are excess */
228                 while (*cp != '\0' && *cp != ' ' && *cp != '\t' && *cp != '\n')
229                         cp++;
230                 *cp = '\0';
231                 *pp++ = 0;
232         }
233
234 #define MATCH(line, name) \
235         (!strncmp(line, name, sizeof(name) - 1) && \
236         (line[sizeof(name) - 1] == ' ' || \
237          line[sizeof(name) - 1] == '\t'))
238
239         if ((fp = fopen(_PATH_RESCONF, "r")) != NULL) {
240             /* read the config file */
241             while (fgets(buf, sizeof(buf), fp) != NULL) {
242                 /* skip comments */
243                 if (*buf == ';' || *buf == '#')
244                         continue;
245                 /* read default domain name */
246                 if (MATCH(buf, "domain")) {
247                     if (haveenv)        /* skip if have from environ */
248                             continue;
249                     cp = buf + sizeof("domain") - 1;
250                     while (*cp == ' ' || *cp == '\t')
251                             cp++;
252                     if ((*cp == '\0') || (*cp == '\n'))
253                             continue;
254                     strncpy(_res.defdname, cp, sizeof(_res.defdname) - 1);
255                     _res.defdname[sizeof(_res.defdname) - 1] = '\0';
256                     if ((cp = strpbrk(_res.defdname, " \t\n")) != NULL)
257                             *cp = '\0';
258                     havesearch = 0;
259                     continue;
260                 }
261                 /* set search list */
262                 if (MATCH(buf, "search")) {
263                     if (haveenv)        /* skip if have from environ */
264                             continue;
265                     cp = buf + sizeof("search") - 1;
266                     while (*cp == ' ' || *cp == '\t')
267                             cp++;
268                     if ((*cp == '\0') || (*cp == '\n'))
269                             continue;
270                     strncpy(_res.defdname, cp, sizeof(_res.defdname) - 1);
271                     _res.defdname[sizeof(_res.defdname) - 1] = '\0';
272                     if ((cp = strchr(_res.defdname, '\n')) != NULL)
273                             *cp = '\0';
274                     /*
275                      * Set search list to be blank-separated strings
276                      * on rest of line.
277                      */
278                     cp = _res.defdname;
279                     pp = _res.dnsrch;
280                     *pp++ = cp;
281                     for (n = 0; *cp && pp < _res.dnsrch + MAXDNSRCH; cp++) {
282                             if (*cp == ' ' || *cp == '\t') {
283                                     *cp = 0;
284                                     n = 1;
285                             } else if (n) {
286                                     *pp++ = cp;
287                                     n = 0;
288                             }
289                     }
290                     /* null terminate last domain if there are excess */
291                     while (*cp != '\0' && *cp != ' ' && *cp != '\t')
292                             cp++;
293                     *cp = '\0';
294                     *pp++ = 0;
295                     havesearch = 1;
296                     continue;
297                 }
298                 /* read nameservers to query */
299                 if (MATCH(buf, "nameserver") && nserv < MAXNS) {
300                     struct in_addr a;
301
302                     cp = buf + sizeof("nameserver") - 1;
303                     while (*cp == ' ' || *cp == '\t')
304                         cp++;
305                     if ((*cp != '\0') && (*cp != '\n') && inet_aton(cp, &a)) {
306                         _res.nsaddr_list[nserv].sin_addr = a;
307                         _res.nsaddr_list[nserv].sin_family = AF_INET;
308                         _res.nsaddr_list[nserv].sin_port =
309                                 htons(NAMESERVER_PORT);
310                         nserv++;
311                     }
312                     continue;
313                 }
314 #ifdef RESOLVSORT
315                 if (MATCH(buf, "sortlist")) {
316                     struct in_addr a;
317
318                     cp = buf + sizeof("sortlist") - 1;
319                     while (nsort < MAXRESOLVSORT) {
320                         while (*cp == ' ' || *cp == '\t')
321                             cp++;
322                         if (*cp == '\0' || *cp == '\n' || *cp == ';')
323                             break;
324                         net = cp;
325                         while (*cp && !ISSORTMASK(*cp) && *cp != ';' &&
326                                isascii(*cp) && !isspace(*cp))
327                                 cp++;
328                         n = *cp;
329                         *cp = 0;
330                         if (inet_aton(net, &a)) {
331                             _res.sort_list[nsort].addr = a;
332                             if (ISSORTMASK(n)) {
333                                 *cp++ = n;
334                                 net = cp;
335                                 while (*cp && *cp != ';' &&
336                                         isascii(*cp) && !isspace(*cp))
337                                     cp++;
338                                 n = *cp;
339                                 *cp = 0;
340                                 if (inet_aton(net, &a)) {
341                                     _res.sort_list[nsort].mask = a.s_addr;
342                                 } else {
343                                     _res.sort_list[nsort].mask = 
344                                         net_mask(_res.sort_list[nsort].addr);
345                                 }
346                             } else {
347                                 _res.sort_list[nsort].mask = 
348                                     net_mask(_res.sort_list[nsort].addr);
349                             }
350                             nsort++;
351                         }
352                         *cp = n;
353                     }
354                     continue;
355                 }
356 #endif
357                 if (MATCH(buf, "options")) {
358                     res_setoptions(buf + sizeof("options") - 1, "conf");
359                     continue;
360                 }
361             }
362             if (nserv > 1) 
363                 _res.nscount = nserv;
364 #ifdef RESOLVSORT
365             _res.nsort = nsort;
366 #endif
367             (void) fclose(fp);
368         }
369         if (_res.defdname[0] == 0 &&
370             gethostname(buf, sizeof(_res.defdname) - 1) == 0 &&
371             (cp = strchr(buf, '.')) != NULL)
372                 strcpy(_res.defdname, cp + 1);
373
374         /* find components of local domain that might be searched */
375         if (havesearch == 0) {
376                 pp = _res.dnsrch;
377                 *pp++ = _res.defdname;
378                 *pp = NULL;
379
380 #ifndef RFC1535
381                 dots = 0;
382                 for (cp = _res.defdname; *cp; cp++)
383                         dots += (*cp == '.');
384
385                 cp = _res.defdname;
386                 while (pp < _res.dnsrch + MAXDFLSRCH) {
387                         if (dots < LOCALDOMAINPARTS)
388                                 break;
389                         cp = strchr(cp, '.') + 1;    /* we know there is one */
390                         *pp++ = cp;
391                         dots--;
392                 }
393                 *pp = NULL;
394 #ifdef DEBUG
395                 if (_res.options & RES_DEBUG) {
396                         printf(";; res_init()... default dnsrch list:\n");
397                         for (pp = _res.dnsrch; *pp; pp++)
398                                 printf(";;\t%s\n", *pp);
399                         printf(";;\t..END..\n");
400                 }
401 #endif
402 #endif /* !RFC1535 */
403         }
404
405         if (issetugid())
406                 _res.options |= RES_NOALIASES;
407         else if ((cp = getenv("RES_OPTIONS")) != NULL)
408                 res_setoptions(cp, "env");
409         _res.options |= RES_INIT;
410         return (0);
411 }
412
413 static void
414 res_setoptions(options, source)
415         char *options, *source;
416 {
417         char *cp = options;
418         int i;
419
420 #ifdef DEBUG
421         if (_res.options & RES_DEBUG)
422                 printf(";; res_setoptions(\"%s\", \"%s\")...\n",
423                        options, source);
424 #endif
425         while (*cp) {
426                 /* skip leading and inner runs of spaces */
427                 while (*cp == ' ' || *cp == '\t')
428                         cp++;
429                 /* search for and process individual options */
430                 if (!strncmp(cp, "ndots:", sizeof("ndots:") - 1)) {
431                         i = atoi(cp + sizeof("ndots:") - 1);
432                         if (i <= RES_MAXNDOTS)
433                                 _res.ndots = i;
434                         else
435                                 _res.ndots = RES_MAXNDOTS;
436 #ifdef DEBUG
437                         if (_res.options & RES_DEBUG)
438                                 printf(";;\tndots=%d\n", _res.ndots);
439 #endif
440                 } else if (!strncmp(cp, "debug", sizeof("debug") - 1)) {
441 #ifdef DEBUG
442                         if (!(_res.options & RES_DEBUG)) {
443                                 printf(";; res_setoptions(\"%s\", \"%s\")..\n",
444                                        options, source);
445                                 _res.options |= RES_DEBUG;
446                         }
447                         printf(";;\tdebug\n");
448 #endif
449                 } else if (!strncmp(cp, "inet6", sizeof("inet6") - 1)) {
450                         _res.options |= RES_USE_INET6;
451                 } else if (!strncmp(cp, "no_tld_query", sizeof("no_tld_query") - 1)) {
452                         _res.options |= RES_NOTLDQUERY;
453                 } else {
454                         /* XXX - print a warning here? */
455                 }
456                 /* skip to next run of spaces */
457                 while (*cp && *cp != ' ' && *cp != '\t')
458                         cp++;
459         }
460 }
461
462 #ifdef RESOLVSORT
463 /* XXX - should really support CIDR which means explicit masks always. */
464 static u_int32_t
465 net_mask(in)            /* XXX - should really use system's version of this */
466         struct in_addr in;
467 {
468         register u_int32_t i = ntohl(in.s_addr);
469
470         if (IN_CLASSA(i))
471                 return (htonl(IN_CLASSA_NET));
472         else if (IN_CLASSB(i))
473                 return (htonl(IN_CLASSB_NET));
474         return (htonl(IN_CLASSC_NET));
475 }
476 #endif
477
478 u_int
479 res_randomid()
480 {
481         struct timeval now;
482
483         gettimeofday(&now, NULL);
484         return (0xffff & (now.tv_sec ^ now.tv_usec ^ getpid()));
485 }
486
487 /*
488  * Weak aliases for applications that use certain private entry points,
489  * and fail to include <resolv.h>.
490  */
491 #undef res_init
492 __weak_reference(__res_init, res_init);