1 #if defined(LIBC_SCCS) && !defined(lint)
2 static const char rcsid
[] = "$BINDId: hesiod.c,v 1.21 2000/02/28 14:51:08 vixie Exp $";
6 * Copyright (c) 1996,1999 by Internet Software Consortium.
8 * Permission to use, copy, modify, and distribute this software for any
9 * purpose with or without fee is hereby granted, provided that the above
10 * copyright notice and this permission notice appear in all copies.
12 * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
13 * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
14 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
15 * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
16 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
17 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
18 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
23 * This file is primarily maintained by <tytso@mit.edu> and <ghudson@mit.edu>.
27 * hesiod.c --- the core portion of the hesiod resolver.
29 * This file is derived from the hesiod library from Project Athena;
30 * It has been extensively rewritten by Theodore Ts'o to have a more
31 * thread-safe interface.
36 #include <sys/types.h>
37 #include <netinet/in.h>
38 #include <arpa/nameser.h>
51 #define _PATH_HESIOD_CONF "/etc/hesiod.conf"
55 int hesiod_init(void **context
);
56 void hesiod_end(void *context
);
57 char * hesiod_to_bind(void *context
, const char *name
,
59 char ** hesiod_resolve(void *context
, const char *name
,
61 void hesiod_free_list(void *context
, char **list
);
63 static int parse_config_file(struct hesiod_p
*ctx
, const char *filename
);
64 static char ** get_txt_records(struct hesiod_p
*ctx
, int class,
66 static int init(struct hesiod_p
*ctx
);
71 * This function is called to initialize a hesiod_p.
74 hesiod_init(void **context
) {
76 const char *configname
;
79 ctx
= malloc(sizeof(struct hesiod_p
));
87 configname
= __secure_getenv("HESIOD_CONFIG");
89 configname
= _PATH_HESIOD_CONF
;
90 if (parse_config_file(ctx
, configname
) < 0) {
93 * Use compiled in defaults.
95 ctx
->LHS
= malloc(strlen(DEF_LHS
)+1);
96 ctx
->RHS
= malloc(strlen(DEF_RHS
)+1);
97 if (ctx
->LHS
== 0 || ctx
->RHS
== 0)
99 strcpy(ctx
->LHS
, DEF_LHS
);
100 strcpy(ctx
->RHS
, DEF_RHS
);
106 * The default RHS can be overridden by an environment
109 if ((cp
= __secure_getenv("HES_DOMAIN")) != NULL
) {
111 ctx
->RHS
= malloc(strlen(cp
)+2);
115 strcpy(ctx
->RHS
, cp
);
118 strcpy(ctx
->RHS
+ 1, cp
);
123 * If there is no default hesiod realm set, we return an
127 __set_errno(ENOEXEC
);
132 if (res_ninit(ctx
->res
) < 0)
145 * This function deallocates the hesiod_p
148 hesiod_end(void *context
) {
149 struct hesiod_p
*ctx
= (struct hesiod_p
*) context
;
150 int save_errno
= errno
;
153 res_nclose(ctx
->res
);
156 if (ctx
->res
&& ctx
->free_res
)
157 (*ctx
->free_res
)(ctx
->res
);
159 __set_errno(save_errno
);
163 * This function takes a hesiod (name, type) and returns a DNS
164 * name which is to be resolved.
167 hesiod_to_bind(void *context
, const char *name
, const char *type
) {
168 struct hesiod_p
*ctx
= (struct hesiod_p
*) context
;
170 char **rhs_list
= NULL
;
171 const char *RHS
, *cp
;
174 /* Decide what our RHS is, and set cp to the end of the actual name. */
175 if ((cp
= strchr(name
, '@')) != NULL
) {
176 if (strchr(cp
+ 1, '.'))
178 else if ((rhs_list
= hesiod_resolve(context
, cp
+ 1,
179 "rhs-extension")) != NULL
)
187 cp
= name
+ strlen(name
);
191 * Allocate the space we need, including up to three periods and
192 * the terminating NUL.
194 if ((bindname
= malloc((cp
- name
) + strlen(type
) + strlen(RHS
) +
195 (ctx
->LHS
? strlen(ctx
->LHS
) : 0) + 4)) == NULL
) {
197 hesiod_free_list(context
, rhs_list
);
201 /* Now put together the DNS name. */
202 endp
= (char *) __mempcpy (bindname
, name
, cp
- name
);
204 endp
= (char *) __stpcpy (endp
, type
);
206 if (ctx
->LHS
[0] != '.')
208 endp
= __stpcpy (endp
, ctx
->LHS
);
215 hesiod_free_list(context
, rhs_list
);
221 * This is the core function. Given a hesiod (name, type), it
222 * returns an array of strings returned by the resolver.
225 hesiod_resolve(void *context
, const char *name
, const char *type
) {
226 struct hesiod_p
*ctx
= (struct hesiod_p
*) context
;
227 char *bindname
= hesiod_to_bind(context
, name
, type
);
230 if (bindname
== NULL
)
232 if (init(ctx
) == -1) {
237 if ((retvec
= get_txt_records(ctx
, C_IN
, bindname
))) {
242 if (errno
!= ENOENT
&& errno
!= ECONNREFUSED
)
245 retvec
= get_txt_records(ctx
, C_HS
, bindname
);
251 hesiod_free_list(void *context
, char **list
) {
254 for (p
= list
; *p
; p
++)
260 * This function parses the /etc/hesiod.conf file
263 parse_config_file(struct hesiod_p
*ctx
, const char *filename
) {
264 char *key
, *data
, *cp
, **cpp
;
265 char buf
[MAXDNAME
+7];
269 * Clear the existing configuration variable, just in case
274 ctx
->RHS
= ctx
->LHS
= 0;
277 * Now open and parse the file...
279 if (!(fp
= fopen(filename
, "r")))
282 while (fgets(buf
, sizeof(buf
), fp
) != NULL
) {
284 if (*cp
== '#' || *cp
== '\n' || *cp
== '\r')
286 while(*cp
== ' ' || *cp
== '\t')
289 while(*cp
!= ' ' && *cp
!= '\t' && *cp
!= '=')
293 while(*cp
== ' ' || *cp
== '\t' || *cp
== '=')
296 while(*cp
!= ' ' && *cp
!= '\n' && *cp
!= '\r')
300 if (strcmp(key
, "lhs") == 0)
302 else if (strcmp(key
, "rhs") == 0)
307 *cpp
= malloc(strlen(data
) + 1);
319 ctx
->RHS
= ctx
->LHS
= 0;
324 * Given a DNS class and a DNS name, do a lookup for TXT records, and
325 * return a list of them.
328 get_txt_records(struct hesiod_p
*ctx
, int class, const char *name
) {
330 int type
; /* RR type */
331 int class; /* RR class */
332 int dlen
; /* len of data section */
333 u_char
*data
; /* pointer to data */
336 u_char qbuf
[MAX_HESRESP
], abuf
[MAX_HESRESP
];
337 u_char
*cp
, *erdata
, *eom
;
338 char *dst
, *edst
, **list
;
339 int ancount
, qdcount
;
343 * Construct the query and send it.
345 n
= res_nmkquery(ctx
->res
, QUERY
, name
, class, T_TXT
, NULL
, 0,
346 NULL
, qbuf
, MAX_HESRESP
);
348 __set_errno(EMSGSIZE
);
351 n
= res_nsend(ctx
->res
, qbuf
, n
, abuf
, MAX_HESRESP
);
353 __set_errno(ECONNREFUSED
);
357 __set_errno(EMSGSIZE
);
362 * OK, parse the result.
364 hp
= (HEADER
*) abuf
;
365 ancount
= ntohs(hp
->ancount
);
366 qdcount
= ntohs(hp
->qdcount
);
367 cp
= abuf
+ sizeof(HEADER
);
370 /* Skip query, trying to get to the answer section which follows. */
371 for (i
= 0; i
< qdcount
; i
++) {
372 skip
= dn_skipname(cp
, eom
);
373 if (skip
< 0 || cp
+ skip
+ QFIXEDSZ
> eom
) {
374 __set_errno(EMSGSIZE
);
377 cp
+= skip
+ QFIXEDSZ
;
380 list
= malloc((ancount
+ 1) * sizeof(char *));
384 for (i
= 0; i
< ancount
; i
++) {
385 skip
= dn_skipname(cp
, eom
);
387 __set_errno(EMSGSIZE
);
391 if (cp
+ 3 * INT16SZ
+ INT32SZ
> eom
) {
392 __set_errno(EMSGSIZE
);
395 rr
.type
= ns_get16(cp
);
397 rr
.class = ns_get16(cp
);
398 cp
+= INT16SZ
+ INT32SZ
; /* skip the ttl, too */
399 rr
.dlen
= ns_get16(cp
);
401 if (cp
+ rr
.dlen
> eom
) {
402 __set_errno(EMSGSIZE
);
407 if (rr
.class != class || rr
.type
!= T_TXT
)
409 if (!(list
[j
] = malloc(rr
.dlen
)))
412 edst
= dst
+ rr
.dlen
;
413 erdata
= rr
.data
+ rr
.dlen
;
415 while (cp
< erdata
) {
416 n
= (unsigned char) *cp
++;
417 if (cp
+ n
> eom
|| dst
+ n
> edst
) {
418 __set_errno(EMSGSIZE
);
426 __set_errno(EMSGSIZE
);
439 for (i
= 0; i
< j
; i
++)
446 __hesiod_res_get(void *context
) {
447 struct hesiod_p
*ctx
= context
;
450 struct __res_state
*res
;
451 res
= (struct __res_state
*)calloc(1, sizeof *res
);
454 __hesiod_res_set(ctx
, res
, free
);
461 __hesiod_res_set(void *context
, struct __res_state
*res
,
462 void (*free_res
)(void *)) {
463 struct hesiod_p
*ctx
= context
;
465 if (ctx
->res
&& ctx
->free_res
) {
466 res_nclose(ctx
->res
);
467 if ((ctx
->res
->options
& RES_INIT
) && ctx
->res
->nscount
> 0) {
468 for (int ns
= 0; ns
< MAXNS
; ns
++) {
469 free (ctx
->res
->_u
._ext
.nsaddrs
[ns
]);
470 ctx
->res
->_u
._ext
.nsaddrs
[ns
] = NULL
;
473 (*ctx
->free_res
)(ctx
->res
);
477 ctx
->free_res
= free_res
;
481 init(struct hesiod_p
*ctx
) {
483 if (!ctx
->res
&& !__hesiod_res_get(ctx
))
486 if (__res_maybe_init (ctx
->res
, 0) == -1)