4afd04a98f96d8097ff6836b3ad068c51c0e6ed8
[ira/wip.git] / source / libsmb / namequery_dc.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    Winbind daemon connection manager
5
6    Copyright (C) Tim Potter 2001
7    Copyright (C) Andrew Bartlett 2002
8    Copyright (C) Gerald Carter 2003
9    
10    This program is free software; you can redistribute it and/or modify
11    it under the terms of the GNU General Public License as published by
12    the Free Software Foundation; either version 2 of the License, or
13    (at your option) any later version.
14    
15    This program is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18    GNU General Public License for more details.
19    
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 */
24
25
26 #include "includes.h"
27
28 /**************************************************************************
29  Find the name and IP address for a server in he realm/domain
30  *************************************************************************/
31  
32 static BOOL ads_dc_name(const char *domain, const char *realm, struct in_addr *dc_ip, fstring srv_name)
33 {
34         ADS_STRUCT *ads;
35
36         if (!realm && strequal(domain, lp_workgroup()))
37                 realm = lp_realm();
38
39         ads = ads_init(realm, domain, NULL);
40         if (!ads)
41                 return False;
42
43         DEBUG(4,("ads_dc_name: domain=%s\n", domain));
44
45 #ifdef HAVE_ADS
46         /* we don't need to bind, just connect */
47         ads->auth.flags |= ADS_AUTH_NO_BIND;
48
49         ads_connect(ads);
50 #endif
51
52         if (!ads->config.realm) {
53                 ads_destroy(&ads);
54                 return False;
55         }
56
57         fstrcpy(srv_name, ads->config.ldap_server_name);
58         strupper_m(srv_name);
59         *dc_ip = ads->ldap_ip;
60         ads_destroy(&ads);
61         
62         DEBUG(4,("ads_dc_name: using server='%s' IP=%s\n",
63                  srv_name, inet_ntoa(*dc_ip)));
64         
65         return True;
66 }
67
68 /****************************************************************************
69  Utility function to return the name of a DC. The name is guaranteed to be 
70  valid since we have already done a name_status_find on it 
71  ***************************************************************************/
72
73 static BOOL rpc_dc_name(const char *domain, fstring srv_name, struct in_addr *ip_out)
74 {
75         struct ip_service *ip_list = NULL;
76         struct in_addr dc_ip, exclude_ip;
77         int count, i;
78         NTSTATUS result;
79         
80         zero_ip(&exclude_ip);
81
82         /* get a list of all domain controllers */
83         
84         if (!NT_STATUS_IS_OK(get_sorted_dc_list(domain, &ip_list, &count,
85                                                 False))) {
86                 DEBUG(3, ("Could not look up dc's for domain %s\n", domain));
87                 return False;
88         }
89
90         /* Remove the entry we've already failed with (should be the PDC). */
91
92         for (i = 0; i < count; i++) {
93                 if (is_zero_ip(ip_list[i].ip))
94                         continue;
95
96                 if (name_status_find(domain, 0x1c, 0x20, ip_list[i].ip, srv_name)) {
97                         result = check_negative_conn_cache( domain, srv_name );
98                         if ( NT_STATUS_IS_OK(result) ) {
99                                 dc_ip = ip_list[i].ip;
100                                 goto done;
101                         }
102                 }
103         }
104         
105
106         SAFE_FREE(ip_list);
107
108         /* No-one to talk to )-: */
109         return False;           /* Boo-hoo */
110         
111  done:
112         /* We have the netbios name and IP address of a domain controller.
113            Ideally we should sent a SAMLOGON request to determine whether
114            the DC is alive and kicking.  If we can catch a dead DC before
115            performing a cli_connect() we can avoid a 30-second timeout. */
116
117         DEBUG(3, ("rpc_dc_name: Returning DC %s (%s) for domain %s\n", srv_name,
118                   inet_ntoa(dc_ip), domain));
119
120         *ip_out = dc_ip;
121
122         SAFE_FREE(ip_list);
123
124         return True;
125 }
126
127 /**********************************************************************
128  wrapper around ads and rpc methods of finds DC's
129 **********************************************************************/
130
131 BOOL get_dc_name(const char *domain, const char *realm, fstring srv_name, struct in_addr *ip_out)
132 {
133         struct in_addr dc_ip;
134         BOOL ret;
135         BOOL our_domain = False;
136
137         zero_ip(&dc_ip);
138
139         ret = False;
140         
141         if ( strequal(lp_workgroup(), domain) || strequal(lp_realm(), realm) )
142                 our_domain = True;
143         
144         /* always try to obey what the admin specified in smb.conf 
145            (for the local domain) */
146         
147         if ( (our_domain && lp_security()==SEC_ADS) || realm ) {
148                 ret = ads_dc_name(domain, realm, &dc_ip, srv_name);
149         }
150         
151         if (!ret) {
152                 /* fall back on rpc methods if the ADS methods fail */
153                 ret = rpc_dc_name(domain, srv_name, &dc_ip);
154         }
155                 
156         *ip_out = dc_ip;
157
158         return ret;
159 }
160