fixed the fallback to a BDC for ADS connections
[abartlet/samba.git/.git] / source3 / libads / ads_struct.c
1 /* 
2    Unix SMB/CIFS implementation.
3    ads (active directory) utility library
4    Copyright (C) Andrew Tridgell 2001
5    Copyright (C) Andrew Bartlett 2001
6    
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22 #include "includes.h"
23
24 /* return a ldap dn path from a string, given separators and field name
25    caller must free
26 */
27 char *ads_build_path(const char *realm, const char *sep, const char *field, int reverse)
28 {
29         char *p, *r;
30         int numbits = 0;
31         char *ret;
32         int len;
33         
34         r = strdup(realm);
35
36         if (!r || !*r) return r;
37
38         for (p=r; *p; p++) {
39                 if (strchr(sep, *p)) numbits++;
40         }
41
42         len = (numbits+1)*(strlen(field)+1) + strlen(r) + 1;
43
44         ret = malloc(len);
45         strlcpy(ret,field, len);
46         p=strtok(r,sep); 
47         strlcat(ret, p, len);
48
49         while ((p=strtok(NULL,sep))) {
50                 char *s;
51                 if (reverse) {
52                         asprintf(&s, "%s%s,%s", field, p, ret);
53                 } else {
54                         asprintf(&s, "%s,%s%s", ret, field, p);
55                 }
56                 free(ret);
57                 ret = s;
58         }
59
60         free(r);
61
62         return ret;
63 }
64
65 /* return a dn of the form "dc=AA,dc=BB,dc=CC" from a 
66    realm of the form AA.BB.CC 
67    caller must free
68 */
69 char *ads_build_dn(const char *realm)
70 {
71         return ads_build_path(realm, ".", "dc=", 0);
72 }
73
74
75 #ifdef HAVE_LDAP
76 /*
77   find the ldap server from DNS
78 */
79 static char *find_ldap_server(ADS_STRUCT *ads)
80 {
81         char *list = NULL;
82         struct in_addr ip;
83
84         if (ads->realm && 
85             ldap_domain2hostlist(ads->realm, &list) == LDAP_SUCCESS) {
86                 char *p;
87                 p = strchr(list, ':');
88                 if (p) *p = 0;
89                 return list;
90         }
91
92         /* get desperate, find the domain controller IP */
93         if (resolve_name(ads->workgroup, &ip, 0x1B)) {
94                 return strdup(inet_ntoa(ip));
95         }
96         
97         /* or a BDC ... */
98         if (resolve_name(ads->workgroup, &ip, 0x1C)) {
99                 return strdup(inet_ntoa(ip));
100         }
101
102         return NULL;
103 }
104
105 #else 
106
107 static char *find_ldap_server(ADS_STRUCT *ads)
108 {
109         /* Without LDAP this doesn't make much sense */
110         return NULL;
111 }
112
113 #endif 
114
115 #ifndef LDAP_PORT
116 #define LDAP_PORT 389
117 #endif
118
119 /*
120   initialise a ADS_STRUCT, ready for some ads_ ops
121 */
122 ADS_STRUCT *ads_init(const char *realm, 
123                      const char *workgroup,
124                      const char *ldap_server,
125                      const char *bind_path,
126                      const char *password)
127 {
128         ADS_STRUCT *ads;
129         
130         ads = (ADS_STRUCT *)smb_xmalloc(sizeof(*ads));
131         ZERO_STRUCTP(ads);
132         
133         if (!workgroup) {
134                 workgroup = lp_workgroup();
135         }
136
137         ads->realm = realm? strdup(realm) : NULL;
138         ads->workgroup = strdup(workgroup);
139         ads->ldap_server = ldap_server? strdup(ldap_server) : NULL;
140         ads->bind_path = bind_path? strdup(bind_path) : NULL;
141         ads->ldap_port = LDAP_PORT;
142         if (password) ads->password = strdup(password);
143
144         if (!ads->realm) {
145                 ads->realm = strdup(lp_realm());
146                 if (!ads->realm[0]) {
147                         SAFE_FREE(ads->realm);
148                 }
149         }
150         if (!ads->bind_path && ads->realm) {
151                 ads->bind_path = ads_build_dn(ads->realm);
152         }
153         if (!ads->ldap_server) {
154                 ads->ldap_server = strdup(lp_ads_server());
155                 if (!ads->ldap_server[0]) {
156                         ads->ldap_server = find_ldap_server(ads);
157                 }
158         }
159         if (!ads->kdc_server) {
160                 /* assume its the same as LDAP */
161                 ads->kdc_server = ads->ldap_server? strdup(ads->ldap_server) : NULL;
162         }
163
164         return ads;
165 }
166
167 /* a simpler ads_init() interface using all defaults */
168 ADS_STRUCT *ads_init_simple(void)
169 {
170         return ads_init(NULL, NULL, NULL, NULL, NULL);
171 }
172
173 /*
174   free the memory used by the ADS structure initialized with 'ads_init(...)'
175 */
176 void ads_destroy(ADS_STRUCT **ads)
177 {
178         if (ads && *ads) {
179 #if HAVE_LDAP
180                 if ((*ads)->ld) ldap_unbind((*ads)->ld);
181 #endif
182                 SAFE_FREE((*ads)->realm);
183                 SAFE_FREE((*ads)->ldap_server);
184                 SAFE_FREE((*ads)->ldap_server_name);
185                 SAFE_FREE((*ads)->kdc_server);
186                 SAFE_FREE((*ads)->bind_path);
187                 SAFE_FREE((*ads)->password);
188                 SAFE_FREE((*ads)->user_name);
189                 ZERO_STRUCTP(*ads);
190                 SAFE_FREE(*ads);
191         }
192 }