This commit was manufactured by cvs2svn to create branch 'SAMBA_3_0'.(This used to...
[bbaumbach/samba-autobuild/.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(lp_workgroup(), &ip, 0x1B)) {
94                 return strdup(inet_ntoa(ip));
95         }
96
97         return NULL;
98 }
99
100 #else 
101
102 static char *find_ldap_server(ADS_STRUCT *ads)
103 {
104         /* Without LDAP this doesn't make much sense */
105         return NULL;
106 }
107
108 #endif 
109
110 #ifndef LDAP_PORT
111 #define LDAP_PORT 389
112 #endif
113
114 /*
115   initialise a ADS_STRUCT, ready for some ads_ ops
116 */
117 ADS_STRUCT *ads_init(const char *realm, 
118                      const char *ldap_server,
119                      const char *bind_path,
120                      const char *password)
121 {
122         ADS_STRUCT *ads;
123         
124         ads = (ADS_STRUCT *)smb_xmalloc(sizeof(*ads));
125         ZERO_STRUCTP(ads);
126         
127         ads->realm = realm? strdup(realm) : NULL;
128         ads->ldap_server = ldap_server? strdup(ldap_server) : NULL;
129         ads->bind_path = bind_path? strdup(bind_path) : NULL;
130         ads->ldap_port = LDAP_PORT;
131         if (password) ads->password = strdup(password);
132
133         if (!ads->realm) {
134                 ads->realm = strdup(lp_realm());
135                 if (!ads->realm[0]) {
136                         SAFE_FREE(ads->realm);
137                 }
138         }
139         if (!ads->bind_path && ads->realm) {
140                 ads->bind_path = ads_build_dn(ads->realm);
141         }
142         if (!ads->ldap_server) {
143                 ads->ldap_server = strdup(lp_ads_server());
144                 if (!ads->ldap_server[0]) {
145                         ads->ldap_server = find_ldap_server(ads);
146                 }
147         }
148         if (!ads->kdc_server) {
149                 /* assume its the same as LDAP */
150                 ads->kdc_server = ads->ldap_server? strdup(ads->ldap_server) : NULL;
151         }
152
153         return ads;
154 }
155
156 /*
157   free the memory used by the ADS structure initialized with 'ads_init(...)'
158 */
159 void ads_destroy(ADS_STRUCT **ads)
160 {
161         if (ads && *ads) {
162 #if HAVE_LDAP
163                 if ((*ads)->ld) ldap_unbind((*ads)->ld);
164 #endif
165                 SAFE_FREE((*ads)->realm);
166                 SAFE_FREE((*ads)->ldap_server);
167                 SAFE_FREE((*ads)->ldap_server_name);
168                 SAFE_FREE((*ads)->kdc_server);
169                 SAFE_FREE((*ads)->bind_path);
170                 SAFE_FREE((*ads)->password);
171                 SAFE_FREE((*ads)->user_name);
172                 ZERO_STRUCTP(*ads);
173                 SAFE_FREE(*ads);
174         }
175 }