dighost.c revision a9c790c7ddfc54266899d9934c037d87cb94103b
8804fd9936acd703073c4a75072852c38738a990Brian Wellington * Copyright (C) 2004-2007 Internet Systems Consortium, Inc. ("ISC")
8804fd9936acd703073c4a75072852c38738a990Brian Wellington * Copyright (C) 2000-2003 Internet Software Consortium.
8804fd9936acd703073c4a75072852c38738a990Brian Wellington * Permission to use, copy, modify, and distribute this software for any
8804fd9936acd703073c4a75072852c38738a990Brian Wellington * purpose with or without fee is hereby granted, provided that the above
8804fd9936acd703073c4a75072852c38738a990Brian Wellington * copyright notice and this permission notice appear in all copies.
8804fd9936acd703073c4a75072852c38738a990Brian Wellington * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
8804fd9936acd703073c4a75072852c38738a990Brian Wellington * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
8804fd9936acd703073c4a75072852c38738a990Brian Wellington * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
8804fd9936acd703073c4a75072852c38738a990Brian Wellington * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
8804fd9936acd703073c4a75072852c38738a990Brian Wellington * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
8804fd9936acd703073c4a75072852c38738a990Brian Wellington * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
8804fd9936acd703073c4a75072852c38738a990Brian Wellington * PERFORMANCE OF THIS SOFTWARE.
13090db2b1c210b8386793ff0cbbb0b4348c1ecaBrian Wellington/* $Id: dighost.c,v 1.302 2007/04/03 23:06:39 marka Exp $ */
8804fd9936acd703073c4a75072852c38738a990Brian Wellington * Notice to programmers: Do not use this code as an example of how to
8804fd9936acd703073c4a75072852c38738a990Brian Wellington * use the ISC library to perform DNS lookups. Dig and Host both operate
8804fd9936acd703073c4a75072852c38738a990Brian Wellington * on the request level, since they allow fine-tuning of output and are
8804fd9936acd703073c4a75072852c38738a990Brian Wellington * intended as debugging tools. As a result, they perform many of the
8804fd9936acd703073c4a75072852c38738a990Brian Wellington * functions which could be better handled using the dns_resolver
8804fd9936acd703073c4a75072852c38738a990Brian Wellington * functions in most applications.
13090db2b1c210b8386793ff0cbbb0b4348c1ecaBrian Wellingtonunsigned int timeout = 0;
e3e3bafa138a20558a2253470effc01702fc6dfdBrian Wellingtonstatic void initialize_idn(void);
e3e3bafa138a20558a2253470effc01702fc6dfdBrian Wellingtonstatic isc_result_t output_filter(isc_buffer_t *buffer,
e3e3bafa138a20558a2253470effc01702fc6dfdBrian Wellingtonstatic idn_result_t append_textname(char *name, const char *origin,
8804fd9936acd703073c4a75072852c38738a990Brian Wellingtonstatic void idn_check_result(idn_result_t r, const char *msg);
8804fd9936acd703073c4a75072852c38738a990Brian Wellington * Exit Codes:
8804fd9936acd703073c4a75072852c38738a990Brian Wellington *\li 0 Everything went well, including things like NXDOMAIN
8804fd9936acd703073c4a75072852c38738a990Brian Wellington *\li 1 Usage error
8804fd9936acd703073c4a75072852c38738a990Brian Wellington *\li 7 Got too many RR's or Names
8804fd9936acd703073c4a75072852c38738a990Brian Wellington *\li 8 Couldn't open batch file
e3e3bafa138a20558a2253470effc01702fc6dfdBrian Wellington *\li 9 No reply from server
e3e3bafa138a20558a2253470effc01702fc6dfdBrian Wellington *\li 10 Internal error
13090db2b1c210b8386793ff0cbbb0b4348c1ecaBrian Wellingtonunsigned int digestbits = 0;
13090db2b1c210b8386793ff0cbbb0b4348c1ecaBrian Wellingtonisc_result_t get_trusted_key(isc_mem_t *mctx);
13090db2b1c210b8386793ff0cbbb0b4348c1ecaBrian Wellingtondns_rdataset_t * sigchase_scanname(dns_rdatatype_t type,
8804fd9936acd703073c4a75072852c38738a990Brian Wellingtondns_rdataset_t * chase_scanname_section(dns_message_t *msg,
c03bb27f0675a6e60ceea66b451548e8481bc05cMark Andrewsisc_result_t advanced_rrsearch(dns_rdataset_t **rdataset,
8804fd9936acd703073c4a75072852c38738a990Brian Wellingtonisc_result_t sigchase_verify_sig_key(dns_name_t *name,
8804fd9936acd703073c4a75072852c38738a990Brian Wellingtonisc_result_t sigchase_verify_sig(dns_name_t *name,
8804fd9936acd703073c4a75072852c38738a990Brian Wellingtonisc_result_t sigchase_verify_ds(dns_name_t *name,
8804fd9936acd703073c4a75072852c38738a990Brian Wellingtonvoid print_rdata(dns_rdata_t *rdata, isc_mem_t *mctx);
e3e3bafa138a20558a2253470effc01702fc6dfdBrian Wellington dns_rdataset_t *rdataset, isc_mem_t *mctx);
e3e3bafa138a20558a2253470effc01702fc6dfdBrian Wellingtonvoid dup_name(dns_name_t *source, dns_name_t* target,
8804fd9936acd703073c4a75072852c38738a990Brian Wellingtonvoid free_name(dns_name_t *name, isc_mem_t *mctx);
8804fd9936acd703073c4a75072852c38738a990Brian Wellingtonvoid dump_database_section(dns_message_t *msg, int section);
8804fd9936acd703073c4a75072852c38738a990Brian Wellingtondns_rdataset_t * search_type(dns_name_t *name, dns_rdatatype_t type,
13090db2b1c210b8386793ff0cbbb0b4348c1ecaBrian Wellingtonisc_result_t contains_trusted_key(dns_name_t *name,
13090db2b1c210b8386793ff0cbbb0b4348c1ecaBrian Wellingtonisc_result_t prove_nx_domain(dns_message_t * msg,
8804fd9936acd703073c4a75072852c38738a990Brian Wellingtonisc_result_t prove_nx_type(dns_message_t * msg, dns_name_t *name,
e3e3bafa138a20558a2253470effc01702fc6dfdBrian Wellingtonisc_result_t prove_nx(dns_message_t * msg, dns_name_t * name,
8804fd9936acd703073c4a75072852c38738a990Brian Wellingtonstatic void nameFromString(const char *str, dns_name_t *p_ret);
8804fd9936acd703073c4a75072852c38738a990Brian Wellingtonint inf_name(dns_name_t * name1, dns_name_t * name2);
8804fd9936acd703073c4a75072852c38738a990Brian Wellingtonisc_result_t opentmpkey(isc_mem_t *mctx, const char *file,
8804fd9936acd703073c4a75072852c38738a990Brian Wellingtonisc_result_t removetmpkey(isc_mem_t *mctx, const char *file);
13090db2b1c210b8386793ff0cbbb0b4348c1ecaBrian Wellingtonisc_result_t getneededrr(dns_message_t *msg);
13090db2b1c210b8386793ff0cbbb0b4348c1ecaBrian Wellingtonvoid sigchase_bottom_up(dns_message_t *msg);
13090db2b1c210b8386793ff0cbbb0b4348c1ecaBrian Wellingtonisc_result_t initialization(dns_name_t *name);
13090db2b1c210b8386793ff0cbbb0b4348c1ecaBrian Wellingtonisc_result_t prepare_lookup(dns_name_t *name);
8804fd9936acd703073c4a75072852c38738a990Brian Wellingtonisc_result_t grandfather_pb_test(dns_name_t * zone_name,
8804fd9936acd703073c4a75072852c38738a990Brian Wellingtonisc_result_t child_of_zone(dns_name_t *name,
8804fd9936acd703073c4a75072852c38738a990Brian Wellingtondns_rdataset_t *chase_sigkeyrdataset = NULL;
8804fd9936acd703073c4a75072852c38738a990Brian Wellington * the current name is the parent name when we follow delegation
8804fd9936acd703073c4a75072852c38738a990Brian Wellington * the child name is used for delegation (NS DS responses in AUTHORITY section)
8804fd9936acd703073c4a75072852c38738a990Brian Wellingtonisc_boolean_t chase_siglookedup = ISC_FALSE;
8804fd9936acd703073c4a75072852c38738a990Brian Wellingtonisc_boolean_t chase_keylookedup = ISC_FALSE;
8804fd9936acd703073c4a75072852c38738a990Brian Wellingtonisc_boolean_t chase_sigkeylookedup = ISC_FALSE;
8804fd9936acd703073c4a75072852c38738a990Brian Wellingtonisc_boolean_t chase_sigdslookedup = ISC_FALSE;
8804fd9936acd703073c4a75072852c38738a990Brian Wellingtonisc_boolean_t delegation_follow = ISC_FALSE;
8804fd9936acd703073c4a75072852c38738a990Brian Wellingtonisc_boolean_t have_delegation_ns = ISC_FALSE;
8804fd9936acd703073c4a75072852c38738a990Brian WellingtonISC_LIST(dig_message_t) chase_message_list2;
13090db2b1c210b8386793ff0cbbb0b4348c1ecaBrian Wellingtonstruct_tk_list tk_list = { {NULL, NULL, NULL, NULL, NULL}, 0};
8804fd9936acd703073c4a75072852c38738a990Brian Wellington * Apply and clear locks at the event level in global task.
8804fd9936acd703073c4a75072852c38738a990Brian Wellington * Can I get rid of these using shutdown events? XXX
8804fd9936acd703073c4a75072852c38738a990Brian Wellington debug("lock_lookup %s:%d", __FILE__, __LINE__);\
8804fd9936acd703073c4a75072852c38738a990Brian Wellington check_result(isc_mutex_lock((&lookup_lock)), "isc_mutex_lock");\
8804fd9936acd703073c4a75072852c38738a990Brian Wellington debug("unlock_lookup %s:%d", __FILE__, __LINE__);\
8804fd9936acd703073c4a75072852c38738a990Brian Wellington check_result(isc_mutex_unlock((&lookup_lock)),\
8804fd9936acd703073c4a75072852c38738a990Brian Wellington "isc_mutex_unlock");\
8804fd9936acd703073c4a75072852c38738a990Brian Wellingtonrecv_done(isc_task_t *task, isc_event_t *event);
8804fd9936acd703073c4a75072852c38738a990Brian Wellingtonconnect_timeout(isc_task_t *task, isc_event_t *event);
8804fd9936acd703073c4a75072852c38738a990Brian Wellingtonlaunch_next_query(dig_query_t *query, isc_boolean_t include_question);
8804fd9936acd703073c4a75072852c38738a990Brian Wellingtonmem_free(void *arg, void *mem, size_t size) {
e3e3bafa138a20558a2253470effc01702fc6dfdBrian Wellingtonnext_token(char **stringp, const char *delim) {
8804fd9936acd703073c4a75072852c38738a990Brian Wellington while (*s != '\0') {
8804fd9936acd703073c4a75072852c38738a990Brian Wellington if (*s == '.')
8804fd9936acd703073c4a75072852c38738a990Brian Wellington unsigned int len;
8804fd9936acd703073c4a75072852c38738a990Brian Wellington * Append 'len' bytes of 'text' at '*p', failing with
8804fd9936acd703073c4a75072852c38738a990Brian Wellington * ISC_R_NOSPACE if that would advance p past 'end'.
8804fd9936acd703073c4a75072852c38738a990Brian Wellingtonappend(const char *text, int len, char **p, char *end) {
8804fd9936acd703073c4a75072852c38738a990Brian Wellingtonreverse_octets(const char *in, char **p, char *end) {
8804fd9936acd703073c4a75072852c38738a990Brian Wellingtonget_reverse(char *reverse, size_t len, char *value, isc_boolean_t ip6_int,
8804fd9936acd703073c4a75072852c38738a990Brian Wellington r = inet_pton(AF_INET6, value, &addr.type.in6);
8804fd9936acd703073c4a75072852c38738a990Brian Wellington /* This is a valid IPv6 address. */
8804fd9936acd703073c4a75072852c38738a990Brian Wellington unsigned int options = 0;
8804fd9936acd703073c4a75072852c38738a990Brian Wellington result = dns_byaddr_createptrname2(&addr, options, name);
8804fd9936acd703073c4a75072852c38738a990Brian Wellington * Not a valid IPv6 address. Assume IPv4.
8804fd9936acd703073c4a75072852c38738a990Brian Wellington * If 'strict' is not set, construct the
8804fd9936acd703073c4a75072852c38738a990Brian Wellington * in-addr.arpa name by blindly reversing
8804fd9936acd703073c4a75072852c38738a990Brian Wellington * octets whether or not they look like integers,
8804fd9936acd703073c4a75072852c38738a990Brian Wellington * so that this can be used for RFC2317 names
8804fd9936acd703073c4a75072852c38738a990Brian Wellington if (strict && inet_pton(AF_INET, value, &addr.type.in) != 1)
8804fd9936acd703073c4a75072852c38738a990Brian Wellington /* Append .in-addr.arpa. and a terminating NUL. */
8804fd9936acd703073c4a75072852c38738a990Brian Wellington result = append(".in-addr.arpa.", 15, &p, end);
if (fatalexit != 0)
if (debugging) {
return (srv);
int af = 0;
switch (lwresaddrtype) {
case LWRES_ADDRTYPE_V4:
case LWRES_ADDRTYPE_V6:
return (af);
int af;
flush_server_list(void) {
while (s != NULL) {
ps = s;
int count, i;
for (i = 0; i < count; i++) {
static isc_result_t
return (ISC_R_FAILURE);
switch (af) {
case AF_INET:
case AF_INET6:
return (ISC_R_FAILURE);
return (ISC_R_SUCCESS);
return (ISC_R_FAILURE);
make_empty_lookup(void) {
#ifdef DIG_SIGCHASE
#if DIG_SIGCHASE_TD
return (looknew);
#if DIG_SIGCHASE_TD
#ifdef DIG_SIGCHASE
#if DIG_SIGCHASE_TD
if (servers)
return (looknew);
return (looknew);
setup_text_key(void) {
int secretsize;
unsigned char *secretstore;
goto failure;
namebuf);
goto failure;
setup_file_key(void) {
goto failure;
case DST_ALG_HMACMD5:
case DST_ALG_HMACSHA1:
case DST_ALG_HMACSHA224:
case DST_ALG_HMACSHA256:
case DST_ALG_HMACSHA384:
case DST_ALG_HMACSHA512:
goto failure;
goto failure;
static dig_searchlist_t *
return (search);
* Setup the system as a whole, reading key information and resolv.conf
setup_system(void) {
if (have_ipv4) {
if (have_ipv6) {
#ifdef WITH_IDN
if (keyfile[0] != 0)
else if (keysecret[0] != 0)
#ifdef DIG_SIGCHASE
#if DIG_SIGCHASE_TD
#if DIG_SIGCHASE_BU
clear_searchlist(void) {
* Override the search list derived from resolv.conf by 'domain'.
setup_libs(void) {
if (dnssec)
* part of dig.c, host.c, or nslookup.c) to either shutdown the system as
check_if_done(void) {
sendcount == 0) {
link);
link);
sockcount--;
static isc_boolean_t
dig_query_t *q;
if (debugging) {
while (q != NULL) {
return (ISC_FALSE);
return (ISC_TRUE);
dig_server_t *s;
void *ptr;
while (s != NULL) {
ptr = s;
start_lookup(void) {
if (cancel_now)
#if DIG_SIGCHASE_TD
isc_region_t r;
goto novalidation;
goto novalidation;
ISC_FALSE, b);
isc_buffer_usedregion(b, &r);
MXNAME);
isc_buffer_free(&b);
&chase_name);
start_lookup();
int numLookups = 0;
0, &rdataset);
&rdataset);
unsigned int nlabels;
int order;
if (!horizontal)
if (!bad)
numLookups++;
if (!success) {
isc_uint32_t i, j;
for (i = numLookups; i > 0; i--) {
isc_random_get(&j);
return (numLookups);
static isc_boolean_t
if (!usesearch)
return (ISC_FALSE);
return (ISC_FALSE);
return (ISC_FALSE);
return (ISC_TRUE);
int len;
isc_buffer_t b;
#ifdef WITH_IDN
#ifdef WITH_IDN
lookup_counter = 0;
#ifdef WITH_IDN
* is TRUE or we got a domain line in the resolv.conf file.
#ifdef WITH_IDN
#ifdef WITH_IDN
sizeof(utf8_origin));
sizeof(utf8_textname));
#ifdef WITH_IDN
DNS_SECTION_QUESTION, 0);
extrabytes = 0;
ISC_TRUE);
dig_lookup_t *l;
sendcount--;
b != NULL;
dig_lookup_t *l;
unsigned int local_timeout;
if (timeout == 0)
l, &l->timer);
dig_lookup_t *l;
if (specified_source &&
sockcount++;
if (specified_source)
sockcount++;
if (specified_source) {
link);
recvcount++;
sendcount++;
if (!l->tcp_mode)
if (!l->tcp_mode) {
l->retries--;
l->retries);
l->retries--;
cancel_lookup(l);
cancel_lookup(l);
dig_lookup_t *l;
recvcount--;
sizeof(sockstr));
sockcount--;
if (length == 0) {
recvcount++;
dig_lookup_t *l;
sockcount--;
if (include_question)
recvcount++;
sendcount++;
dig_lookup_t *l;
sockcount--;
sockcount--;
static isc_boolean_t
return (ISC_TRUE);
&name);
return (ISC_TRUE);
goto next_rdata;
goto next_rdata;
goto doexit;
goto next_rdata;
goto doexit;
goto doexit;
goto next_rdata;
goto doexit;
goto next_rdata;
goto doexit;
return (ISC_FALSE);
return (ISC_TRUE);
#ifdef DIG_SIGCHASE
dig_lookup_t *n, *l;
unsigned int parseflags;
unsigned int msgflags;
#ifdef DIG_SIGCHASE
isc_region_t r;
recvcount--;
sockcount--;
if (!l->tcp_mode &&
sizeof(buf1));
sizeof(buf2));
if (l->tcp_mode) {
if (fail) {
if (!match) {
recvcount++;
&l->querysig);
if (l->msgcounter != 0)
l->msgcounter++;
#ifdef DIG_SIGCHASE
if (!l->sigchase) {
parseflags = 0;
if (l->besteffort) {
hex_dump(b);
cancel_lookup(l);
cancel_lookup(l);
if (l->tcp_mode)
unsigned int local_timeout;
if (timeout == 0) {
if (l->tcp_mode)
NULL,
&l->interval,
#ifdef DIG_SIGCHASE
if (!do_sigchase)
} else if (l->trace) {
if (!l->ns_search_only)
if (!l->trace_root)
} else if (count == 0)
if (l->trace_root) {
#ifdef DIG_SIGCHASE
if (!do_sigchase)
#ifdef DIG_SIGCHASE
if (do_sigchase) {
sizeof(dig_message_t));
link);
isc_buffer_usedregion(b, &r);
sizeof(dig_message_t));
link);
#ifdef DIG_SIGCHASE
if (l->pending)
if (l->doing_xfr) {
if (!docancel)
if (docancel) {
cancel_lookup(l);
#ifdef DIG_SIGCHASE
if (!l->sigchase)
#ifdef DIG_SIGCHASE
if (!do_sigchase)
cancel_lookup(l);
#ifdef DIG_SIGCHASE
if (do_sigchase)
int count;
start_lookup();
cancel_all(void) {
dig_lookup_t *l, *n;
if (free_now) {
while (q != NULL) {
q, current_lookup);
clear_query(q);
q = nq;
while (l != NULL) {
try_clear_lookup(l);
destroy_libs(void) {
#ifdef DIG_SIGCHASE
void * ptr;
#ifdef WITH_IDN
#ifdef WITH_IDN
if (is_dst_up) {
#ifdef DIG_SIGCHASE
#if DIG_SIGCHASE_TD
#if DIG_SIGCHASE_BU
if (memdebugging != 0)
#ifdef WITH_IDN
initialize_idn(void) {
idn_result_t r;
#ifdef HAVE_SETLOCALE
if (r != idn_success)
idn_result_tostring(r));
static isc_result_t
return (ISC_R_SUCCESS);
fromlen++;
return (ISC_R_SUCCESS);
return (ISC_R_SUCCESS);
tolen--;
return (ISC_R_NOSPACE);
return (ISC_R_SUCCESS);
static idn_result_t
return idn_success;
return idn_buffer_overflow;
return idn_success;
if (r != idn_success) {
#ifdef DIG_SIGCHASE
isc_region_t r;
isc_buffer_usedregion(b, &r);
isc_buffer_free(&b);
dump_database(void) {
== ISC_R_SUCCESS)
== ISC_R_SUCCESS)
== ISC_R_SUCCESS)
return (rdataset);
return (rdataset);
return (rdataset);
return (NULL);
int section)
return (rdataset);
return (NULL);
== ISC_R_SUCCESS)
return (rdataset);
== ISC_R_SUCCESS)
rdataset =
return (rdataset);
== ISC_R_SUCCESS)
rdataset =
return (rdataset);
return (NULL);
isc_region_t r;
return (temp);
return (NULL);
isc_buffer_usedregion(b, &r);
isc_buffer_free(&b);
return (NULL);
return (NULL);
for (i= 0; i < MAX_TRUSTED_KEY; i++) {
char alphnum[] =
int tempnamekeylen;
return (ISC_R_NOMEMORY);
return (result);
int tempnamelen;
int tempnamekeylen;
char *cp;
return (ISC_R_NOMEMORY);
goto cleanup;
cp++;
return (ISC_R_FAILURE);
x = cp--;
x = cp--;
return (ISC_R_NOMEMORY);
return (ISC_R_FAILURE);
*fp = f;
return (ISC_R_SUCCESS);
return (result);
return (ISC_R_FAILURE);
return (ISC_R_FAILURE);
filename);
return (ISC_R_FAILURE);
return (ISC_R_FAILURE);
return (ISC_R_FAILURE);
return (ISC_R_FAILURE);
return (ISC_R_SUCCESS);
#if DIG_SIGCHASE_TD
dig_server_t *s;
void *ptr;
while (s != NULL) {
s, lookup);
ptr = s;
#define __FOLLOW_GLUE__
#ifdef __FOLLOW_GLUE__
isc_region_t r;
#ifdef __FOLLOW_GLUE__
dns_rdatatype_any, &true);
isc_buffer_usedregion(b, &r);
isc_buffer_free(&b);
dns_rdatatype_any, &true);
isc_buffer_usedregion(b, &r);
isc_buffer_free(&b);
dns_rdata_reset(&a);
return (ISC_R_SUCCESS);
int orderp;
unsigned int nlabelsp;
return (ISC_R_FAILURE);
return (ISC_R_SUCCESS);
return (ISC_R_SUCCESS);
return (ISC_R_FAILURE);
dns_rdatatype_any, &true);
return (ISC_R_FAILURE);
return (ISC_R_SUCCESS);
isc_region_t r;
isc_buffer_usedregion(b, &r);
isc_buffer_free(&b);
return (ISC_R_FAILURE);
== ISC_TRUE) {
mctx)
== ISC_R_SUCCESS) {
return (ISC_R_SUCCESS);
return (ISC_R_NOTFOUND);
return (ISC_R_SUCCESS);
return (ISC_R_NOTFOUND);
return (result);
return (ISC_R_NOTFOUND);
return (result);
&newdsrdata) == 0) {
mctx);
return (result);
return (ISC_R_NOTFOUND);
return (ISC_R_SUCCESS);
if (tmplookedup)
return (ISC_R_FAILURE);
return (ISC_R_NOTFOUND);
return (ISC_R_SUCCESS);
#if DIG_SIGCHASE_TD
== ISC_R_SUCCESS) {
have_answer = true;
&name);
if (have_answer) {
goto cleanandgo;
goto cleanandgo;
if (!delegation_follow) {
mctx);
mctx);
goto cleanandgo;
if (have_response) {
goto cleanandgo;
goto cleanandgo;
&tmp_name);
if (have_response)
goto finalstep;
if (have_delegation_ns) {
goto cleanandgo;
goto cleanandgo;
goto cleanandgo;
goto cleanandgo;
goto cleanandgo;
goto cleanandgo;
goto cleanandgo;
goto cleanandgo;
goto cleanandgo;
goto cleanandgo;
goto cleanandgo;
#if DIG_SIGCHASE_BU
!= ISC_R_SUCCESS) {
return (ISC_R_ADDRNOTAVAIL);
dns_rdatatype_any, &true);
return (ISC_R_NOTFOUND);
return (ISC_R_NOTFOUND);
return (ISC_R_NOTFOUND);
return (ISC_R_NOTFOUND);
return (ISC_R_NOTFOUND);
return (ISC_R_NOTFOUND);
return (ISC_R_NOTFOUND);
return (ISC_R_NOTFOUND);
dns_rdatatype_ds, &true);
mctx);
int ret;
#if DIG_SIGCHASE_TD
#if DIG_SIGCHASE_BU
unsigned int nblabel1;
unsigned int nblabel2;
int min_lum_label;
if (ret < 0)
else if (ret > 0)
!= ISC_R_SUCCESS) {
return (ISC_R_FAILURE);
return (ISC_R_FAILURE);
return (ISC_R_SUCCESS);
== ISC_R_SUCCESS);
return (ISC_R_FAILURE);
return (ISC_R_FAILURE);
return (ret);
!= ISC_R_SUCCESS) {
return (ISC_R_FAILURE);
return (ret);
return (ISC_R_SUCCESS);
return (ret);