Optimize tr_freehook
[glibc.git] / resolv / res_hconf.c
blob6f831ec6b888e8165ced87f8a9085a07f412edee
1 /* Copyright (C) 1993,1995-2006,2007,2009,2011
2 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by David Mosberger (davidm@azstarnet.com).
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA. */
21 /* This file provides a Linux /etc/host.conf compatible front end to
22 the various name resolvers (/etc/hosts, named, NIS server, etc.).
23 Though mostly compatibly, the following differences exist compared
24 to the original implementation:
26 - new command "spoof" takes an arguments like RESOLV_SPOOF_CHECK
27 environment variable (i.e., `off', `nowarn', or `warn').
29 - line comments can appear anywhere (not just at the beginning of
30 a line)
33 #include <assert.h>
34 #include <errno.h>
35 #include <ctype.h>
36 #include <libintl.h>
37 #include <memory.h>
38 #include <stdio.h>
39 #include <stdio_ext.h>
40 #include <stdlib.h>
41 #include <string.h>
42 #include <net/if.h>
43 #include <sys/ioctl.h>
44 #include <unistd.h>
45 #include <netinet/in.h>
46 #include <bits/libc-lock.h>
47 #include "ifreq.h"
48 #include "res_hconf.h"
49 #include <wchar.h>
51 #define _PATH_HOSTCONF "/etc/host.conf"
53 /* Environment vars that all user to override default behavior: */
54 #define ENV_HOSTCONF "RESOLV_HOST_CONF"
55 #define ENV_SPOOF "RESOLV_SPOOF_CHECK"
56 #define ENV_TRIM_OVERR "RESOLV_OVERRIDE_TRIM_DOMAINS"
57 #define ENV_TRIM_ADD "RESOLV_ADD_TRIM_DOMAINS"
58 #define ENV_MULTI "RESOLV_MULTI"
59 #define ENV_REORDER "RESOLV_REORDER"
61 enum parse_cbs
63 CB_none,
64 CB_arg_trimdomain_list,
65 CB_arg_spoof,
66 CB_arg_bool
69 static const struct cmd
71 const char name[11];
72 uint8_t cb;
73 unsigned int arg;
74 } cmd[] =
76 {"order", CB_none, 0},
77 {"trim", CB_arg_trimdomain_list, 0},
78 {"spoof", CB_arg_spoof, 0},
79 {"multi", CB_arg_bool, HCONF_FLAG_MULTI},
80 {"nospoof", CB_arg_bool, HCONF_FLAG_SPOOF},
81 {"spoofalert", CB_arg_bool, HCONF_FLAG_SPOOFALERT},
82 {"reorder", CB_arg_bool, HCONF_FLAG_REORDER}
85 /* Structure containing the state. */
86 struct hconf _res_hconf;
88 /* Skip white space. */
89 static const char *
90 skip_ws (const char *str)
92 while (isspace (*str)) ++str;
93 return str;
97 /* Skip until whitespace, comma, end of line, or comment character. */
98 static const char *
99 skip_string (const char *str)
101 while (*str && !isspace (*str) && *str != '#' && *str != ',')
102 ++str;
103 return str;
107 static const char *
108 arg_trimdomain_list (const char *fname, int line_num, const char *args)
110 const char * start;
111 size_t len;
115 start = args;
116 args = skip_string (args);
117 len = args - start;
119 if (_res_hconf.num_trimdomains >= TRIMDOMAINS_MAX)
121 char *buf;
123 if (__asprintf (&buf, _("\
124 %s: line %d: cannot specify more than %d trim domains"),
125 fname, line_num, TRIMDOMAINS_MAX) < 0)
126 return 0;
128 __fxprintf (NULL, "%s", buf);
130 free (buf);
131 return 0;
133 _res_hconf.trimdomain[_res_hconf.num_trimdomains++] =
134 __strndup (start, len);
135 args = skip_ws (args);
136 switch (*args)
138 case ',': case ';': case ':':
139 args = skip_ws (++args);
140 if (!*args || *args == '#')
142 char *buf;
144 if (__asprintf (&buf, _("\
145 %s: line %d: list delimiter not followed by domain"),
146 fname, line_num) < 0)
147 return 0;
149 __fxprintf (NULL, "%s", buf);
151 free (buf);
152 return 0;
154 default:
155 break;
158 while (*args && *args != '#');
159 return args;
163 static const char *
164 arg_spoof (const char *fname, int line_num, const char *args)
166 const char *start = args;
167 size_t len;
169 args = skip_string (args);
170 len = args - start;
172 if (len == 3 && __strncasecmp (start, "off", len) == 0)
173 _res_hconf.flags &= ~(HCONF_FLAG_SPOOF | HCONF_FLAG_SPOOFALERT);
174 else
176 _res_hconf.flags |= (HCONF_FLAG_SPOOF | HCONF_FLAG_SPOOFALERT);
177 if ((len == 6 && __strncasecmp (start, "nowarn", len) == 0)
178 || !(len == 4 && __strncasecmp (start, "warn", len) == 0))
179 _res_hconf.flags &= ~HCONF_FLAG_SPOOFALERT;
181 return args;
185 static const char *
186 arg_bool (const char *fname, int line_num, const char *args, unsigned flag)
188 if (__strncasecmp (args, "on", 2) == 0)
190 args += 2;
191 _res_hconf.flags |= flag;
193 else if (__strncasecmp (args, "off", 3) == 0)
195 args += 3;
196 _res_hconf.flags &= ~flag;
198 else
200 char *buf;
202 if (__asprintf (&buf,
203 _("%s: line %d: expected `on' or `off', found `%s'\n"),
204 fname, line_num, args) < 0)
205 return 0;
207 __fxprintf (NULL, "%s", buf);
209 free (buf);
210 return 0;
212 return args;
216 static void
217 parse_line (const char *fname, int line_num, const char *str)
219 const char *start;
220 const struct cmd *c = 0;
221 size_t len;
222 size_t i;
224 str = skip_ws (str);
226 /* skip line comment and empty lines: */
227 if (*str == '\0' || *str == '#') return;
229 start = str;
230 str = skip_string (str);
231 len = str - start;
233 for (i = 0; i < sizeof (cmd) / sizeof (cmd[0]); ++i)
235 if (__strncasecmp (start, cmd[i].name, len) == 0
236 && strlen (cmd[i].name) == len)
238 c = &cmd[i];
239 break;
242 if (c == NULL)
244 char *buf;
246 if (__asprintf (&buf, _("%s: line %d: bad command `%s'\n"),
247 fname, line_num, start) < 0)
248 return;
250 __fxprintf (NULL, "%s", buf);
252 free (buf);
253 return;
256 /* process args: */
257 str = skip_ws (str);
259 if (c->cb == CB_arg_trimdomain_list)
260 str = arg_trimdomain_list (fname, line_num, str);
261 else if (c->cb == CB_arg_spoof)
262 str = arg_spoof (fname, line_num, str);
263 else if (c->cb == CB_arg_bool)
264 str = arg_bool (fname, line_num, str, c->arg);
265 else
266 /* Ignore the line. */
267 return;
269 if (!str)
270 return;
272 /* rest of line must contain white space or comment only: */
273 while (*str)
275 if (!isspace (*str)) {
276 if (*str != '#')
278 char *buf;
280 if (__asprintf (&buf,
281 _("%s: line %d: ignoring trailing garbage `%s'\n"),
282 fname, line_num, str) < 0)
283 break;
285 __fxprintf (NULL, "%s", buf);
287 free (buf);
289 break;
291 ++str;
296 static void
297 do_init (void)
299 const char *hconf_name;
300 int line_num = 0;
301 char buf[256], *envval;
302 FILE *fp;
304 memset (&_res_hconf, '\0', sizeof (_res_hconf));
306 hconf_name = getenv (ENV_HOSTCONF);
307 if (hconf_name == NULL)
308 hconf_name = _PATH_HOSTCONF;
310 fp = fopen (hconf_name, "rce");
311 if (fp)
313 /* No threads using this stream. */
314 __fsetlocking (fp, FSETLOCKING_BYCALLER);
316 while (fgets_unlocked (buf, sizeof (buf), fp))
318 ++line_num;
319 *__strchrnul (buf, '\n') = '\0';
320 parse_line (hconf_name, line_num, buf);
322 fclose (fp);
325 envval = getenv (ENV_SPOOF);
326 if (envval)
327 arg_spoof (ENV_SPOOF, 1, envval);
329 envval = getenv (ENV_MULTI);
330 if (envval)
331 arg_bool (ENV_MULTI, 1, envval, HCONF_FLAG_MULTI);
333 envval = getenv (ENV_REORDER);
334 if (envval)
335 arg_bool (ENV_REORDER, 1, envval, HCONF_FLAG_REORDER);
337 envval = getenv (ENV_TRIM_ADD);
338 if (envval)
339 arg_trimdomain_list (ENV_TRIM_ADD, 1, envval);
341 envval = getenv (ENV_TRIM_OVERR);
342 if (envval)
344 _res_hconf.num_trimdomains = 0;
345 arg_trimdomain_list (ENV_TRIM_OVERR, 1, envval);
348 _res_hconf.initialized = 1;
352 /* Initialize hconf datastructure by reading host.conf file and
353 environment variables. */
354 void
355 _res_hconf_init (void)
357 __libc_once_define (static, once);
359 __libc_once (once, do_init);
363 #ifndef NOT_IN_libc
364 /* List of known interfaces. */
365 libc_freeres_ptr (
366 static struct netaddr
368 int addrtype;
369 union
371 struct
373 u_int32_t addr;
374 u_int32_t mask;
375 } ipv4;
376 } u;
377 } *ifaddrs);
379 /* Reorder addresses returned in a hostent such that the first address
380 is an address on the local subnet, if there is such an address.
381 Otherwise, nothing is changed.
383 Note that this function currently only handles IPv4 addresses. */
385 void
386 _res_hconf_reorder_addrs (struct hostent *hp)
388 #if defined SIOCGIFCONF && defined SIOCGIFNETMASK
389 int i, j;
390 /* Number of interfaces. */
391 static int num_ifs = -1;
392 /* We need to protect the dynamic buffer handling. */
393 __libc_lock_define_initialized (static, lock);
395 /* Only reorder if we're supposed to. */
396 if ((_res_hconf.flags & HCONF_FLAG_REORDER) == 0)
397 return;
399 /* Can't deal with anything but IPv4 for now... */
400 if (hp->h_addrtype != AF_INET)
401 return;
403 if (num_ifs <= 0)
405 struct ifreq *ifr, *cur_ifr;
406 int sd, num, i;
407 /* Save errno. */
408 int save = errno;
410 /* Initialize interface table. */
412 /* The SIOCGIFNETMASK ioctl will only work on an AF_INET socket. */
413 sd = __socket (AF_INET, SOCK_DGRAM, 0);
414 if (sd < 0)
415 return;
417 /* Get lock. */
418 __libc_lock_lock (lock);
420 /* Recheck, somebody else might have done the work by done. */
421 if (num_ifs <= 0)
423 int new_num_ifs = 0;
425 /* Get a list of interfaces. */
426 __ifreq (&ifr, &num, sd);
427 if (!ifr)
428 goto cleanup;
430 ifaddrs = malloc (num * sizeof (ifaddrs[0]));
431 if (!ifaddrs)
432 goto cleanup1;
434 /* Copy usable interfaces in ifaddrs structure. */
435 for (cur_ifr = ifr, i = 0; i < num;
436 cur_ifr = __if_nextreq (cur_ifr), ++i)
438 if (cur_ifr->ifr_addr.sa_family != AF_INET)
439 continue;
441 ifaddrs[new_num_ifs].addrtype = AF_INET;
442 ifaddrs[new_num_ifs].u.ipv4.addr =
443 ((struct sockaddr_in *) &cur_ifr->ifr_addr)->sin_addr.s_addr;
445 if (__ioctl (sd, SIOCGIFNETMASK, cur_ifr) < 0)
446 continue;
448 ifaddrs[new_num_ifs].u.ipv4.mask =
449 ((struct sockaddr_in *) &cur_ifr->ifr_netmask)->sin_addr.s_addr;
451 /* Now we're committed to this entry. */
452 ++new_num_ifs;
454 /* Just keep enough memory to hold all the interfaces we want. */
455 ifaddrs = realloc (ifaddrs, new_num_ifs * sizeof (ifaddrs[0]));
456 assert (ifaddrs != NULL);
458 cleanup1:
459 __if_freereq (ifr, num);
461 cleanup:
462 /* Release lock, preserve error value, and close socket. */
463 errno = save;
465 num_ifs = new_num_ifs;
467 __libc_lock_unlock (lock);
470 __close (sd);
473 if (num_ifs == 0)
474 return;
476 /* Find an address for which we have a direct connection. */
477 for (i = 0; hp->h_addr_list[i]; ++i)
479 struct in_addr *haddr = (struct in_addr *) hp->h_addr_list[i];
481 for (j = 0; j < num_ifs; ++j)
483 u_int32_t if_addr = ifaddrs[j].u.ipv4.addr;
484 u_int32_t if_netmask = ifaddrs[j].u.ipv4.mask;
486 if (((haddr->s_addr ^ if_addr) & if_netmask) == 0)
488 void *tmp;
490 tmp = hp->h_addr_list[i];
491 hp->h_addr_list[i] = hp->h_addr_list[0];
492 hp->h_addr_list[0] = tmp;
493 return;
497 #endif /* defined(SIOCGIFCONF) && ... */
501 /* If HOSTNAME has a postfix matching any of the trimdomains, trim away
502 that postfix. Notice that HOSTNAME is modified inplace. Also, the
503 original code applied all trimdomains in order, meaning that the
504 same domainname could be trimmed multiple times. I believe this
505 was unintentional. */
506 void
507 _res_hconf_trim_domain (char *hostname)
509 size_t hostname_len, trim_len;
510 int i;
512 hostname_len = strlen (hostname);
514 for (i = 0; i < _res_hconf.num_trimdomains; ++i)
516 const char *trim = _res_hconf.trimdomain[i];
518 trim_len = strlen (trim);
519 if (hostname_len > trim_len
520 && __strcasecmp (&hostname[hostname_len - trim_len], trim) == 0)
522 hostname[hostname_len - trim_len] = '\0';
523 break;
529 /* Trim all hostnames/aliases in HP according to the trimdomain list.
530 Notice that HP is modified inplace! */
531 void
532 _res_hconf_trim_domains (struct hostent *hp)
534 int i;
536 if (_res_hconf.num_trimdomains == 0)
537 return;
539 _res_hconf_trim_domain (hp->h_name);
540 for (i = 0; hp->h_aliases[i]; ++i)
541 _res_hconf_trim_domain (hp->h_aliases[i]);
543 #endif