mount.cifs: check access of credential files before opening
[Samba.git] / source / libads / dns.c
blobbfb2dc09d5bb9eba75ad4c8004b5df76bc2d9d0b
1 /*
2 Unix SMB/CIFS implementation.
3 DNS utility library
4 Copyright (C) Gerald (Jerry) Carter 2006.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program 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
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include "includes.h"
23 /* AIX resolv.h uses 'class' in struct ns_rr */
25 #if defined(AIX)
26 # if defined(class)
27 # undef class
28 # endif
29 #endif /* AIX */
31 /* resolver headers */
33 #include <sys/types.h>
34 #include <netinet/in.h>
35 #include <arpa/nameser.h>
36 #include <resolv.h>
37 #include <netdb.h>
39 #define MAX_DNS_PACKET_SIZE 0xffff
41 #ifdef NS_HFIXEDSZ /* Bind 8/9 interface */
42 #if !defined(C_IN) /* AIX 5.3 already defines C_IN */
43 # define C_IN ns_c_in
44 #endif
45 #if !defined(T_A) /* AIX 5.3 already defines T_A */
46 # define T_A ns_t_a
47 #endif
48 # define T_SRV ns_t_srv
49 #if !defined(T_NS) /* AIX 5.3 already defines T_NS */
50 # define T_NS ns_t_ns
51 #endif
52 #else
53 # ifdef HFIXEDSZ
54 # define NS_HFIXEDSZ HFIXEDSZ
55 # else
56 # define NS_HFIXEDSZ sizeof(HEADER)
57 # endif /* HFIXEDSZ */
58 # ifdef PACKETSZ
59 # define NS_PACKETSZ PACKETSZ
60 # else /* 512 is usually the default */
61 # define NS_PACKETSZ 512
62 # endif /* PACKETSZ */
63 # define T_SRV 33
64 #endif
66 /*********************************************************************
67 *********************************************************************/
69 static BOOL ads_dns_parse_query( TALLOC_CTX *ctx, uint8 *start, uint8 *end,
70 uint8 **ptr, struct dns_query *q )
72 uint8 *p = *ptr;
73 pstring hostname;
74 int namelen;
76 ZERO_STRUCTP( q );
78 if ( !start || !end || !q || !*ptr)
79 return False;
81 /* See RFC 1035 for details. If this fails, then return. */
83 namelen = dn_expand( start, end, p, hostname, sizeof(hostname) );
84 if ( namelen < 0 ) {
85 return False;
87 p += namelen;
88 q->hostname = talloc_strdup( ctx, hostname );
90 /* check that we have space remaining */
92 if ( PTR_DIFF(p+4, end) > 0 )
93 return False;
95 q->type = RSVAL( p, 0 );
96 q->in_class = RSVAL( p, 2 );
97 p += 4;
99 *ptr = p;
101 return True;
104 /*********************************************************************
105 *********************************************************************/
107 static BOOL ads_dns_parse_rr( TALLOC_CTX *ctx, uint8 *start, uint8 *end,
108 uint8 **ptr, struct dns_rr *rr )
110 uint8 *p = *ptr;
111 pstring hostname;
112 int namelen;
114 if ( !start || !end || !rr || !*ptr)
115 return -1;
117 ZERO_STRUCTP( rr );
118 /* pull the name from the answer */
120 namelen = dn_expand( start, end, p, hostname, sizeof(hostname) );
121 if ( namelen < 0 ) {
122 return -1;
124 p += namelen;
125 rr->hostname = talloc_strdup( ctx, hostname );
127 /* check that we have space remaining */
129 if ( PTR_DIFF(p+10, end) > 0 )
130 return False;
132 /* pull some values and then skip onto the string */
134 rr->type = RSVAL(p, 0);
135 rr->in_class = RSVAL(p, 2);
136 rr->ttl = RIVAL(p, 4);
137 rr->rdatalen = RSVAL(p, 8);
139 p += 10;
141 /* sanity check the available space */
143 if ( PTR_DIFF(p+rr->rdatalen, end ) > 0 ) {
144 return False;
148 /* save a point to the rdata for this section */
150 rr->rdata = p;
151 p += rr->rdatalen;
153 *ptr = p;
155 return True;
158 /*********************************************************************
159 *********************************************************************/
161 static BOOL ads_dns_parse_rr_srv( TALLOC_CTX *ctx, uint8 *start, uint8 *end,
162 uint8 **ptr, struct dns_rr_srv *srv )
164 struct dns_rr rr;
165 uint8 *p;
166 pstring dcname;
167 int namelen;
169 if ( !start || !end || !srv || !*ptr)
170 return -1;
172 /* Parse the RR entry. Coming out of the this, ptr is at the beginning
173 of the next record */
175 if ( !ads_dns_parse_rr( ctx, start, end, ptr, &rr ) ) {
176 DEBUG(1,("ads_dns_parse_rr_srv: Failed to parse RR record\n"));
177 return False;
180 if ( rr.type != T_SRV ) {
181 DEBUG(1,("ads_dns_parse_rr_srv: Bad answer type (%d)\n", rr.type));
182 return False;
185 p = rr.rdata;
187 srv->priority = RSVAL(p, 0);
188 srv->weight = RSVAL(p, 2);
189 srv->port = RSVAL(p, 4);
191 p += 6;
193 namelen = dn_expand( start, end, p, dcname, sizeof(dcname) );
194 if ( namelen < 0 ) {
195 DEBUG(1,("ads_dns_parse_rr_srv: Failed to uncompress name!\n"));
196 return False;
199 srv->hostname = talloc_strdup( ctx, dcname );
201 DEBUG(10,("ads_dns_parse_rr_srv: Parsed %s [%u, %u, %u]\n",
202 srv->hostname,
203 srv->priority,
204 srv->weight,
205 srv->port));
207 return True;
210 /*********************************************************************
211 *********************************************************************/
213 static BOOL ads_dns_parse_rr_ns( TALLOC_CTX *ctx, uint8 *start, uint8 *end,
214 uint8 **ptr, struct dns_rr_ns *nsrec )
216 struct dns_rr rr;
217 uint8 *p;
218 pstring nsname;
219 int namelen;
221 if ( !start || !end || !nsrec || !*ptr)
222 return -1;
224 /* Parse the RR entry. Coming out of the this, ptr is at the beginning
225 of the next record */
227 if ( !ads_dns_parse_rr( ctx, start, end, ptr, &rr ) ) {
228 DEBUG(1,("ads_dns_parse_rr_ns: Failed to parse RR record\n"));
229 return False;
232 if ( rr.type != T_NS ) {
233 DEBUG(1,("ads_dns_parse_rr_ns: Bad answer type (%d)\n", rr.type));
234 return False;
237 p = rr.rdata;
239 /* ame server hostname */
241 namelen = dn_expand( start, end, p, nsname, sizeof(nsname) );
242 if ( namelen < 0 ) {
243 DEBUG(1,("ads_dns_parse_rr_ns: Failed to uncompress name!\n"));
244 return False;
246 nsrec->hostname = talloc_strdup( ctx, nsname );
248 return True;
251 /*********************************************************************
252 Sort SRV record list based on weight and priority. See RFC 2782.
253 *********************************************************************/
255 static int dnssrvcmp( struct dns_rr_srv *a, struct dns_rr_srv *b )
257 if ( a->priority == b->priority ) {
259 /* randomize entries with an equal weight and priority */
260 if ( a->weight == b->weight )
261 return 0;
263 /* higher weights should be sorted lower */
264 if ( a->weight > b->weight )
265 return -1;
266 else
267 return 1;
270 if ( a->priority < b->priority )
271 return -1;
273 return 1;
276 /*********************************************************************
277 Simple wrapper for a DNS query
278 *********************************************************************/
280 static NTSTATUS dns_send_req( TALLOC_CTX *ctx, const char *name, int q_type,
281 uint8 **buf, int *resp_length )
283 uint8 *buffer = NULL;
284 size_t buf_len = 0;
285 int resp_len = NS_PACKETSZ;
287 do {
288 if ( buffer )
289 TALLOC_FREE( buffer );
291 buf_len = resp_len * sizeof(uint8);
293 if (buf_len) {
294 if ( (buffer = TALLOC_ARRAY(ctx, uint8, buf_len)) == NULL ) {
295 DEBUG(0,("ads_dns_lookup_srv: talloc() failed!\n"));
296 return NT_STATUS_NO_MEMORY;
298 } else {
299 buffer = NULL;
302 if ( (resp_len = res_query(name, C_IN, q_type, buffer, buf_len)) < 0 ) {
303 DEBUG(3,("ads_dns_lookup_srv: Failed to resolve %s (%s)\n", name, strerror(errno)));
304 TALLOC_FREE( buffer );
305 if (errno == ETIMEDOUT) {
306 return NT_STATUS_IO_TIMEOUT;
308 if (errno == ECONNREFUSED) {
309 return NT_STATUS_CONNECTION_REFUSED;
311 return NT_STATUS_UNSUCCESSFUL;
314 /* On AIX, Solaris, and possibly some older glibc systems (e.g. SLES8)
315 truncated replies never give back a resp_len > buflen
316 which ends up causing DNS resolve failures on large tcp DNS replies */
318 if (buf_len == resp_len) {
319 if (resp_len == MAX_DNS_PACKET_SIZE) {
320 DEBUG(1,("dns_send_req: DNS reply too large when resolving %s\n",
321 name));
322 TALLOC_FREE( buffer );
323 return NT_STATUS_BUFFER_TOO_SMALL;
326 resp_len = MIN(resp_len*2, MAX_DNS_PACKET_SIZE);
330 } while ( buf_len < resp_len && resp_len <= MAX_DNS_PACKET_SIZE );
332 *buf = buffer;
333 *resp_length = resp_len;
335 return NT_STATUS_OK;
338 /*********************************************************************
339 Simple wrapper for a DNS SRV query
340 *********************************************************************/
342 static NTSTATUS ads_dns_lookup_srv( TALLOC_CTX *ctx, const char *name, struct dns_rr_srv **dclist, int *numdcs )
344 uint8 *buffer = NULL;
345 int resp_len = 0;
346 struct dns_rr_srv *dcs = NULL;
347 int query_count, answer_count, auth_count, additional_count;
348 uint8 *p = buffer;
349 int rrnum;
350 int idx = 0;
351 NTSTATUS status;
353 if ( !ctx || !name || !dclist ) {
354 return NT_STATUS_INVALID_PARAMETER;
357 /* Send the request. May have to loop several times in case
358 of large replies */
360 status = dns_send_req( ctx, name, T_SRV, &buffer, &resp_len );
361 if ( !NT_STATUS_IS_OK(status) ) {
362 DEBUG(3,("ads_dns_lookup_srv: Failed to send DNS query (%s)\n",
363 nt_errstr(status)));
364 return status;
366 p = buffer;
368 /* For some insane reason, the ns_initparse() et. al. routines are only
369 available in libresolv.a, and not the shared lib. Who knows why....
370 So we have to parse the DNS reply ourselves */
372 /* Pull the answer RR's count from the header. Use the NMB ordering macros */
374 query_count = RSVAL( p, 4 );
375 answer_count = RSVAL( p, 6 );
376 auth_count = RSVAL( p, 8 );
377 additional_count = RSVAL( p, 10 );
379 DEBUG(4,("ads_dns_lookup_srv: %d records returned in the answer section.\n",
380 answer_count));
382 if (answer_count) {
383 if ( (dcs = TALLOC_ZERO_ARRAY(ctx, struct dns_rr_srv, answer_count)) == NULL ) {
384 DEBUG(0,("ads_dns_lookup_srv: talloc() failure for %d char*'s\n",
385 answer_count));
386 return NT_STATUS_NO_MEMORY;
388 } else {
389 dcs = NULL;
392 /* now skip the header */
394 p += NS_HFIXEDSZ;
396 /* parse the query section */
398 for ( rrnum=0; rrnum<query_count; rrnum++ ) {
399 struct dns_query q;
401 if (!ads_dns_parse_query(ctx, buffer,
402 buffer+resp_len, &p, &q)) {
403 DEBUG(1,("ads_dns_lookup_srv: "
404 "Failed to parse query record [%d]!\n", rrnum));
405 return NT_STATUS_UNSUCCESSFUL;
409 /* now we are at the answer section */
411 for ( rrnum=0; rrnum<answer_count; rrnum++ ) {
412 if (!ads_dns_parse_rr_srv(ctx, buffer, buffer+resp_len,
413 &p, &dcs[rrnum])) {
414 DEBUG(1,("ads_dns_lookup_srv: "
415 "Failed to parse answer recordi [%d]!\n", rrnum));
416 return NT_STATUS_UNSUCCESSFUL;
419 idx = rrnum;
421 /* Parse the authority section */
422 /* just skip these for now */
424 for ( rrnum=0; rrnum<auth_count; rrnum++ ) {
425 struct dns_rr rr;
427 if (!ads_dns_parse_rr( ctx, buffer,
428 buffer+resp_len, &p, &rr)) {
429 DEBUG(1,("ads_dns_lookup_srv: "
430 "Failed to parse authority record! [%d]\n", rrnum));
431 return NT_STATUS_UNSUCCESSFUL;
435 /* Parse the additional records section */
437 for ( rrnum=0; rrnum<additional_count; rrnum++ ) {
438 struct dns_rr rr;
439 int i;
441 if (!ads_dns_parse_rr(ctx, buffer, buffer+resp_len,
442 &p, &rr)) {
443 DEBUG(1,("ads_dns_lookup_srv: Failed "
444 "to parse additional records section! [%d]\n", rrnum));
445 return NT_STATUS_UNSUCCESSFUL;
448 /* only interested in A records as a shortcut for having to come
449 back later and lookup the name. For multi-homed hosts, the
450 number of additional records and exceed the number of answer
451 records. */
454 if ( (rr.type != T_A) || (rr.rdatalen != 4) )
455 continue;
457 for ( i=0; i<idx; i++ ) {
458 if ( strcmp( rr.hostname, dcs[i].hostname ) == 0 ) {
459 int num_ips = dcs[i].num_ips;
460 uint8 *buf;
461 struct in_addr *tmp_ips;
463 /* allocate new memory */
465 if ( dcs[i].num_ips == 0 ) {
466 if ( (dcs[i].ips = TALLOC_ARRAY( dcs,
467 struct in_addr, 1 )) == NULL )
469 return NT_STATUS_NO_MEMORY;
471 } else {
472 if ( (tmp_ips = TALLOC_REALLOC_ARRAY( dcs, dcs[i].ips,
473 struct in_addr, dcs[i].num_ips+1)) == NULL )
475 return NT_STATUS_NO_MEMORY;
478 dcs[i].ips = tmp_ips;
480 dcs[i].num_ips++;
482 /* copy the new IP address */
484 buf = (uint8*)&dcs[i].ips[num_ips].s_addr;
485 memcpy( buf, rr.rdata, 4 );
490 qsort( dcs, idx, sizeof(struct dns_rr_srv), QSORT_CAST dnssrvcmp );
492 *dclist = dcs;
493 *numdcs = idx;
495 return NT_STATUS_OK;
498 /*********************************************************************
499 Simple wrapper for a DNS NS query
500 *********************************************************************/
502 NTSTATUS ads_dns_lookup_ns( TALLOC_CTX *ctx, const char *dnsdomain, struct dns_rr_ns **nslist, int *numns )
504 uint8 *buffer = NULL;
505 int resp_len = 0;
506 struct dns_rr_ns *nsarray = NULL;
507 int query_count, answer_count, auth_count, additional_count;
508 uint8 *p;
509 int rrnum;
510 int idx = 0;
511 NTSTATUS status;
513 if ( !ctx || !dnsdomain || !nslist ) {
514 return NT_STATUS_INVALID_PARAMETER;
517 /* Send the request. May have to loop several times in case
518 of large replies */
520 status = dns_send_req( ctx, dnsdomain, T_NS, &buffer, &resp_len );
521 if ( !NT_STATUS_IS_OK(status) ) {
522 DEBUG(3,("ads_dns_lookup_ns: Failed to send DNS query (%s)\n",
523 nt_errstr(status)));
524 return status;
526 p = buffer;
528 /* For some insane reason, the ns_initparse() et. al. routines are only
529 available in libresolv.a, and not the shared lib. Who knows why....
530 So we have to parse the DNS reply ourselves */
532 /* Pull the answer RR's count from the header. Use the NMB ordering macros */
534 query_count = RSVAL( p, 4 );
535 answer_count = RSVAL( p, 6 );
536 auth_count = RSVAL( p, 8 );
537 additional_count = RSVAL( p, 10 );
539 DEBUG(4,("ads_dns_lookup_ns: %d records returned in the answer section.\n",
540 answer_count));
542 if (answer_count) {
543 if ( (nsarray = TALLOC_ARRAY(ctx, struct dns_rr_ns, answer_count)) == NULL ) {
544 DEBUG(0,("ads_dns_lookup_ns: talloc() failure for %d char*'s\n",
545 answer_count));
546 return NT_STATUS_NO_MEMORY;
548 } else {
549 nsarray = NULL;
552 /* now skip the header */
554 p += NS_HFIXEDSZ;
556 /* parse the query section */
558 for ( rrnum=0; rrnum<query_count; rrnum++ ) {
559 struct dns_query q;
561 if ( !ads_dns_parse_query( ctx, buffer, buffer+resp_len, &p, &q ) ) {
562 DEBUG(1,("ads_dns_lookup_ns: Failed to parse query record!\n"));
563 return NT_STATUS_UNSUCCESSFUL;
567 /* now we are at the answer section */
569 for ( rrnum=0; rrnum<answer_count; rrnum++ ) {
570 if ( !ads_dns_parse_rr_ns( ctx, buffer, buffer+resp_len, &p, &nsarray[rrnum] ) ) {
571 DEBUG(1,("ads_dns_lookup_ns: Failed to parse answer record!\n"));
572 return NT_STATUS_UNSUCCESSFUL;
575 idx = rrnum;
577 /* Parse the authority section */
578 /* just skip these for now */
580 for ( rrnum=0; rrnum<auth_count; rrnum++ ) {
581 struct dns_rr rr;
583 if ( !ads_dns_parse_rr( ctx, buffer, buffer+resp_len, &p, &rr ) ) {
584 DEBUG(1,("ads_dns_lookup_ns: Failed to parse authority record!\n"));
585 return NT_STATUS_UNSUCCESSFUL;
589 /* Parse the additional records section */
591 for ( rrnum=0; rrnum<additional_count; rrnum++ ) {
592 struct dns_rr rr;
593 int i;
595 if ( !ads_dns_parse_rr( ctx, buffer, buffer+resp_len, &p, &rr ) ) {
596 DEBUG(1,("ads_dns_lookup_ns: Failed to parse additional records section!\n"));
597 return NT_STATUS_UNSUCCESSFUL;
600 /* only interested in A records as a shortcut for having to come
601 back later and lookup the name */
603 if ( (rr.type != T_A) || (rr.rdatalen != 4) )
604 continue;
606 for ( i=0; i<idx; i++ ) {
607 if ( strcmp( rr.hostname, nsarray[i].hostname ) == 0 ) {
608 uint8 *buf = (uint8*)&nsarray[i].ip.s_addr;
609 memcpy( buf, rr.rdata, 4 );
614 *nslist = nsarray;
615 *numns = idx;
617 return NT_STATUS_OK;
620 /****************************************************************************
621 Store and fetch the AD client sitename.
622 ****************************************************************************/
624 #define SITENAME_KEY "AD_SITENAME/DOMAIN/%s"
626 static char *sitename_key(const char *realm)
628 char *keystr;
630 if (asprintf(&keystr, SITENAME_KEY, strupper_static(realm)) == -1) {
631 return NULL;
634 return keystr;
638 /****************************************************************************
639 Store the AD client sitename.
640 We store indefinately as every new CLDAP query will re-write this.
641 ****************************************************************************/
643 BOOL sitename_store(const char *realm, const char *sitename)
645 time_t expire;
646 BOOL ret = False;
647 char *key;
649 if (!gencache_init()) {
650 return False;
653 if (!realm || (strlen(realm) == 0)) {
654 DEBUG(0,("sitename_store: no realm\n"));
655 return False;
658 key = sitename_key(realm);
660 if (!sitename || (sitename && !*sitename)) {
661 DEBUG(5,("sitename_store: deleting empty sitename!\n"));
662 ret = gencache_del(key);
663 SAFE_FREE(key);
664 return ret;
667 expire = get_time_t_max(); /* Store indefinately. */
669 DEBUG(10,("sitename_store: realm = [%s], sitename = [%s], expire = [%u]\n",
670 realm, sitename, (unsigned int)expire ));
672 ret = gencache_set( key, sitename, expire );
673 SAFE_FREE(key);
674 return ret;
677 /****************************************************************************
678 Fetch the AD client sitename.
679 Caller must free.
680 ****************************************************************************/
682 char *sitename_fetch(const char *realm)
684 char *sitename = NULL;
685 time_t timeout;
686 BOOL ret = False;
687 const char *query_realm;
688 char *key;
690 if (!gencache_init()) {
691 return NULL;
694 if (!realm || (strlen(realm) == 0)) {
695 query_realm = lp_realm();
696 } else {
697 query_realm = realm;
700 key = sitename_key(query_realm);
702 ret = gencache_get( key, &sitename, &timeout );
703 SAFE_FREE(key);
704 if ( !ret ) {
705 DEBUG(5,("sitename_fetch: No stored sitename for %s\n",
706 query_realm));
707 } else {
708 DEBUG(5,("sitename_fetch: Returning sitename for %s: \"%s\"\n",
709 query_realm, sitename ));
711 return sitename;
714 /****************************************************************************
715 Did the sitename change ?
716 ****************************************************************************/
718 BOOL stored_sitename_changed(const char *realm, const char *sitename)
720 BOOL ret = False;
722 char *new_sitename;
724 if (!realm || (strlen(realm) == 0)) {
725 DEBUG(0,("stored_sitename_changed: no realm\n"));
726 return False;
729 new_sitename = sitename_fetch(realm);
731 if (sitename && new_sitename && !strequal(sitename, new_sitename)) {
732 ret = True;
733 } else if ((sitename && !new_sitename) ||
734 (!sitename && new_sitename)) {
735 ret = True;
737 SAFE_FREE(new_sitename);
738 return ret;
741 /********************************************************************
742 Query with optional sitename.
743 ********************************************************************/
745 NTSTATUS ads_dns_query_internal(TALLOC_CTX *ctx,
746 const char *servicename,
747 const char *realm,
748 const char *sitename,
749 struct dns_rr_srv **dclist,
750 int *numdcs )
752 char *name;
753 if (sitename) {
754 name = talloc_asprintf(ctx, "%s._tcp.%s._sites.dc._msdcs.%s",
755 servicename, sitename, realm );
756 } else {
757 name = talloc_asprintf(ctx, "%s._tcp.dc._msdcs.%s",
758 servicename, realm );
760 if (!name) {
761 return NT_STATUS_NO_MEMORY;
763 return ads_dns_lookup_srv( ctx, name, dclist, numdcs );
766 /********************************************************************
767 Query for AD DC's.
768 ********************************************************************/
770 NTSTATUS ads_dns_query_dcs(TALLOC_CTX *ctx,
771 const char *realm,
772 const char *sitename,
773 struct dns_rr_srv **dclist,
774 int *numdcs )
776 NTSTATUS status;
778 status = ads_dns_query_internal(ctx, "_ldap", realm, sitename,
779 dclist, numdcs);
781 if (NT_STATUS_EQUAL(status, NT_STATUS_IO_TIMEOUT) ||
782 NT_STATUS_EQUAL(status, NT_STATUS_CONNECTION_REFUSED)) {
783 return status;
786 if (sitename && !NT_STATUS_IS_OK(status)) {
787 /* Sitename DNS query may have failed. Try without. */
788 status = ads_dns_query_internal(ctx, "_ldap", realm, NULL,
789 dclist, numdcs);
791 return status;
794 /********************************************************************
795 Query for AD KDC's.
796 Even if our underlying kerberos libraries are UDP only, this
797 is pretty safe as it's unlikely that a KDC supports TCP and not UDP.
798 ********************************************************************/
800 NTSTATUS ads_dns_query_kdcs(TALLOC_CTX *ctx,
801 const char *realm,
802 const char *sitename,
803 struct dns_rr_srv **dclist,
804 int *numdcs )
806 NTSTATUS status;
808 status = ads_dns_query_internal(ctx, "_kerberos", realm, sitename,
809 dclist, numdcs);
811 if (NT_STATUS_EQUAL(status, NT_STATUS_IO_TIMEOUT) ||
812 NT_STATUS_EQUAL(status, NT_STATUS_CONNECTION_REFUSED)) {
813 return status;
816 if (sitename && !NT_STATUS_IS_OK(status)) {
817 /* Sitename DNS query may have failed. Try without. */
818 status = ads_dns_query_internal(ctx, "_kerberos", realm, NULL,
819 dclist, numdcs);
821 return status;