cldap: let ads_cldap_netlogon() return all possible cldap replies.
[Samba.git] / source / nsswitch / libwbclient / wbc_util.c
blob3afd8a29d31f026492408a328955e6ac368b77f5
1 /*
2 Unix SMB/CIFS implementation.
4 Winbind client API
6 Copyright (C) Gerald (Jerry) Carter 2007-2008
9 This library is free software; you can redistribute it and/or
10 modify it under the terms of the GNU Lesser General Public
11 License as published by the Free Software Foundation; either
12 version 3 of the License, or (at your option) any later version.
14 This library is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 Library General Public License for more details.
19 You should have received a copy of the GNU Lesser General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 /* Required Headers */
25 #include "libwbclient.h"
29 /** @brief Ping winbindd to see if the daemon is running
31 * @return #wbcErr
32 **/
34 wbcErr wbcPing(void)
36 struct winbindd_request request;
37 struct winbindd_response response;
39 /* Initialize request */
41 ZERO_STRUCT(request);
42 ZERO_STRUCT(response);
44 return wbcRequestResponse(WINBINDD_PING, &request, &response);
47 wbcErr wbcInterfaceDetails(struct wbcInterfaceDetails **_details)
49 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
50 struct wbcInterfaceDetails *info;
51 struct wbcDomainInfo *domain = NULL;
52 struct winbindd_request request;
53 struct winbindd_response response;
55 /* Initialize request */
57 ZERO_STRUCT(request);
58 ZERO_STRUCT(response);
60 info = talloc(NULL, struct wbcInterfaceDetails);
61 BAIL_ON_PTR_ERROR(info, wbc_status);
63 /* first the interface version */
64 wbc_status = wbcRequestResponse(WINBINDD_INTERFACE_VERSION, NULL, &response);
65 BAIL_ON_WBC_ERROR(wbc_status);
66 info->interface_version = response.data.interface_version;
68 /* then the samba version and the winbind separator */
69 wbc_status = wbcRequestResponse(WINBINDD_INFO, NULL, &response);
70 BAIL_ON_WBC_ERROR(wbc_status);
72 info->winbind_version = talloc_strdup(info,
73 response.data.info.samba_version);
74 BAIL_ON_PTR_ERROR(info->winbind_version, wbc_status);
75 info->winbind_separator = response.data.info.winbind_separator;
77 /* then the local netbios name */
78 wbc_status = wbcRequestResponse(WINBINDD_NETBIOS_NAME, NULL, &response);
79 BAIL_ON_WBC_ERROR(wbc_status);
81 info->netbios_name = talloc_strdup(info,
82 response.data.netbios_name);
83 BAIL_ON_PTR_ERROR(info->netbios_name, wbc_status);
85 /* then the local workgroup name */
86 wbc_status = wbcRequestResponse(WINBINDD_DOMAIN_NAME, NULL, &response);
87 BAIL_ON_WBC_ERROR(wbc_status);
89 info->netbios_domain = talloc_strdup(info,
90 response.data.domain_name);
91 BAIL_ON_PTR_ERROR(info->netbios_domain, wbc_status);
93 wbc_status = wbcDomainInfo(info->netbios_domain, &domain);
94 if (wbc_status == WBC_ERR_DOMAIN_NOT_FOUND) {
95 /* maybe it's a standalone server */
96 domain = NULL;
97 wbc_status = WBC_ERR_SUCCESS;
98 } else {
99 BAIL_ON_WBC_ERROR(wbc_status);
102 if (domain) {
103 info->dns_domain = talloc_strdup(info,
104 domain->dns_name);
105 wbcFreeMemory(domain);
106 BAIL_ON_PTR_ERROR(info->dns_domain, wbc_status);
107 } else {
108 info->dns_domain = NULL;
111 *_details = info;
112 info = NULL;
114 wbc_status = WBC_ERR_SUCCESS;
116 done:
117 talloc_free(info);
118 return wbc_status;
122 /** @brief Lookup the current status of a trusted domain
124 * @param domain Domain to query
125 * @param *dinfo Pointer to returned domain_info struct
127 * @return #wbcErr
132 wbcErr wbcDomainInfo(const char *domain, struct wbcDomainInfo **dinfo)
134 struct winbindd_request request;
135 struct winbindd_response response;
136 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
137 struct wbcDomainInfo *info = NULL;
139 if (!domain || !dinfo) {
140 wbc_status = WBC_ERR_INVALID_PARAM;
141 BAIL_ON_WBC_ERROR(wbc_status);
144 /* Initialize request */
146 ZERO_STRUCT(request);
147 ZERO_STRUCT(response);
149 strncpy(request.domain_name, domain,
150 sizeof(request.domain_name)-1);
152 wbc_status = wbcRequestResponse(WINBINDD_DOMAIN_INFO,
153 &request,
154 &response);
155 BAIL_ON_WBC_ERROR(wbc_status);
157 info = talloc(NULL, struct wbcDomainInfo);
158 BAIL_ON_PTR_ERROR(info, wbc_status);
160 info->short_name = talloc_strdup(info,
161 response.data.domain_info.name);
162 BAIL_ON_PTR_ERROR(info->short_name, wbc_status);
164 info->dns_name = talloc_strdup(info,
165 response.data.domain_info.alt_name);
166 BAIL_ON_PTR_ERROR(info->dns_name, wbc_status);
168 wbc_status = wbcStringToSid(response.data.domain_info.sid,
169 &info->sid);
170 BAIL_ON_WBC_ERROR(wbc_status);
172 if (response.data.domain_info.native_mode)
173 info->domain_flags |= WBC_DOMINFO_DOMAIN_NATIVE;
174 if (response.data.domain_info.active_directory)
175 info->domain_flags |= WBC_DOMINFO_DOMAIN_AD;
176 if (response.data.domain_info.primary)
177 info->domain_flags |= WBC_DOMINFO_DOMAIN_PRIMARY;
179 *dinfo = info;
181 wbc_status = WBC_ERR_SUCCESS;
183 done:
184 if (!WBC_ERROR_IS_OK(wbc_status)) {
185 talloc_free(info);
188 return wbc_status;
192 /** @brief Resolve a NetbiosName via WINS
194 * @param name Name to resolve
195 * @param *ip Pointer to the ip address string
197 * @return #wbcErr
200 wbcErr wbcResolveWinsByName(const char *name, char **ip)
202 struct winbindd_request request;
203 struct winbindd_response response;
204 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
205 char *ipaddr;
207 ZERO_STRUCT(request);
208 ZERO_STRUCT(response);
210 /* Send request */
212 strncpy(request.data.winsreq, name,
213 sizeof(request.data.winsreq)-1);
215 wbc_status = wbcRequestResponse(WINBINDD_WINS_BYNAME,
216 &request,
217 &response);
218 BAIL_ON_WBC_ERROR(wbc_status);
220 /* Display response */
222 ipaddr = talloc_strdup(NULL, response.data.winsresp);
223 BAIL_ON_PTR_ERROR(ipaddr, wbc_status);
225 *ip = ipaddr;
226 wbc_status = WBC_ERR_SUCCESS;
228 done:
229 return wbc_status;
232 /** @brief Resolve an IP address via WINS into a NetbiosName
234 * @param ip The ip address string
235 * @param *name Pointer to the name
237 * @return #wbcErr
240 wbcErr wbcResolveWinsByIP(const char *ip, char **name)
242 struct winbindd_request request;
243 struct winbindd_response response;
244 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
245 char *name_str;
247 ZERO_STRUCT(request);
248 ZERO_STRUCT(response);
250 /* Send request */
252 strncpy(request.data.winsreq, ip,
253 sizeof(request.data.winsreq)-1);
255 wbc_status = wbcRequestResponse(WINBINDD_WINS_BYIP,
256 &request,
257 &response);
258 BAIL_ON_WBC_ERROR(wbc_status);
260 /* Display response */
262 name_str = talloc_strdup(NULL, response.data.winsresp);
263 BAIL_ON_PTR_ERROR(name_str, wbc_status);
265 *name = name_str;
266 wbc_status = WBC_ERR_SUCCESS;
268 done:
269 return wbc_status;
275 static wbcErr process_domain_info_string(TALLOC_CTX *ctx,
276 struct wbcDomainInfo *info,
277 char *info_string)
279 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
280 char *r = NULL;
281 char *s = NULL;
283 if (!info || !info_string) {
284 wbc_status = WBC_ERR_INVALID_PARAM;
285 BAIL_ON_WBC_ERROR(wbc_status);
288 r = info_string;
290 /* Short Name */
291 if ((s = strchr(r, '\\')) == NULL) {
292 wbc_status = WBC_ERR_INVALID_RESPONSE;
293 BAIL_ON_WBC_ERROR(wbc_status);
295 *s = '\0';
296 s++;
298 info->short_name = talloc_strdup(ctx, r);
299 BAIL_ON_PTR_ERROR(info->short_name, wbc_status);
302 /* DNS Name */
303 r = s;
304 if ((s = strchr(r, '\\')) == NULL) {
305 wbc_status = WBC_ERR_INVALID_RESPONSE;
306 BAIL_ON_WBC_ERROR(wbc_status);
308 *s = '\0';
309 s++;
311 info->dns_name = talloc_strdup(ctx, r);
312 BAIL_ON_PTR_ERROR(info->dns_name, wbc_status);
314 /* SID */
315 r = s;
316 if ((s = strchr(r, '\\')) == NULL) {
317 wbc_status = WBC_ERR_INVALID_RESPONSE;
318 BAIL_ON_WBC_ERROR(wbc_status);
320 *s = '\0';
321 s++;
323 wbc_status = wbcStringToSid(r, &info->sid);
324 BAIL_ON_WBC_ERROR(wbc_status);
326 /* Trust type */
327 r = s;
328 if ((s = strchr(r, '\\')) == NULL) {
329 wbc_status = WBC_ERR_INVALID_RESPONSE;
330 BAIL_ON_WBC_ERROR(wbc_status);
332 *s = '\0';
333 s++;
335 if (strcmp(r, "None") == 0) {
336 info->trust_type = WBC_DOMINFO_TRUSTTYPE_NONE;
337 } else if (strcmp(r, "External") == 0) {
338 info->trust_type = WBC_DOMINFO_TRUSTTYPE_EXTERNAL;
339 } else if (strcmp(r, "Forest") == 0) {
340 info->trust_type = WBC_DOMINFO_TRUSTTYPE_FOREST;
341 } else if (strcmp(r, "In Forest") == 0) {
342 info->trust_type = WBC_DOMINFO_TRUSTTYPE_IN_FOREST;
343 } else {
344 wbc_status = WBC_ERR_INVALID_RESPONSE;
345 BAIL_ON_WBC_ERROR(wbc_status);
348 /* Transitive */
349 r = s;
350 if ((s = strchr(r, '\\')) == NULL) {
351 wbc_status = WBC_ERR_INVALID_RESPONSE;
352 BAIL_ON_WBC_ERROR(wbc_status);
354 *s = '\0';
355 s++;
357 if (strcmp(r, "Yes") == 0) {
358 info->trust_flags |= WBC_DOMINFO_TRUST_TRANSITIVE;
361 /* Incoming */
362 r = s;
363 if ((s = strchr(r, '\\')) == NULL) {
364 wbc_status = WBC_ERR_INVALID_RESPONSE;
365 BAIL_ON_WBC_ERROR(wbc_status);
367 *s = '\0';
368 s++;
370 if (strcmp(r, "Yes") == 0) {
371 info->trust_flags |= WBC_DOMINFO_TRUST_INCOMING;
374 /* Outgoing */
375 r = s;
376 if ((s = strchr(r, '\\')) == NULL) {
377 wbc_status = WBC_ERR_INVALID_RESPONSE;
378 BAIL_ON_WBC_ERROR(wbc_status);
380 *s = '\0';
381 s++;
383 if (strcmp(r, "Yes") == 0) {
384 info->trust_flags |= WBC_DOMINFO_TRUST_OUTGOING;
387 /* Online/Offline status */
389 r = s;
390 if (r == NULL) {
391 wbc_status = WBC_ERR_INVALID_RESPONSE;
392 BAIL_ON_WBC_ERROR(wbc_status);
394 if ( strcmp(r, "Offline") == 0) {
395 info->domain_flags |= WBC_DOMINFO_DOMAIN_OFFLINE;
398 wbc_status = WBC_ERR_SUCCESS;
400 done:
401 return wbc_status;
404 /** @brief Enumerate the domain trusts known by Winbind
406 * @param **domains Pointer to the allocated domain list array
407 * @param *num_domains Pointer to number of domains returned
409 * @return #wbcErr
412 wbcErr wbcListTrusts(struct wbcDomainInfo **domains, size_t *num_domains)
414 struct winbindd_response response;
415 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
416 char *p = NULL;
417 char *q = NULL;
418 char *extra_data = NULL;
419 int count = 0;
420 struct wbcDomainInfo *d_list = NULL;
421 int i = 0;
423 *domains = NULL;
424 *num_domains = 0;
426 ZERO_STRUCT(response);
428 /* Send request */
430 wbc_status = wbcRequestResponse(WINBINDD_LIST_TRUSTDOM,
431 NULL,
432 &response);
433 BAIL_ON_WBC_ERROR(wbc_status);
435 /* Decode the response */
437 p = (char *)response.extra_data.data;
439 if (strlen(p) == 0) {
440 /* We should always at least get back our
441 own SAM domain */
443 wbc_status = WBC_ERR_DOMAIN_NOT_FOUND;
444 BAIL_ON_WBC_ERROR(wbc_status);
447 /* Count number of domains */
449 count = 0;
450 while (p) {
451 count++;
453 if ((q = strchr(p, '\n')) != NULL)
454 q++;
455 p = q;
458 d_list = talloc_array(NULL, struct wbcDomainInfo, count);
459 BAIL_ON_PTR_ERROR(d_list, wbc_status);
461 extra_data = strdup((char*)response.extra_data.data);
462 BAIL_ON_PTR_ERROR(extra_data, wbc_status);
464 p = extra_data;
466 /* Outer loop processes the list of domain information */
468 for (i=0; i<count && p; i++) {
469 char *next = strchr(p, '\n');
471 if (next) {
472 *next = '\0';
473 next++;
476 wbc_status = process_domain_info_string(d_list, &d_list[i], p);
477 BAIL_ON_WBC_ERROR(wbc_status);
479 p = next;
482 *domains = d_list;
483 *num_domains = i;
485 done:
486 if (!WBC_ERROR_IS_OK(wbc_status)) {
487 if (d_list)
488 talloc_free(d_list);
489 if (extra_data)
490 free(extra_data);
493 return wbc_status;