libwbclient: Make wbc_create_domain_controller_info_ex not use talloc
[Samba/ekacnet.git] / nsswitch / libwbclient / wbc_util.c
blob77eabbf939f9ca8e481aca964943a40c2d390b1e
1 /*
2 Unix SMB/CIFS implementation.
4 Winbind client asynchronous API, utility functions
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 "replace.h"
26 #include "libwbclient.h"
27 #include "../winbind_client.h"
29 /** @brief Ping winbindd to see if the daemon is running
31 * @return #wbcErr
32 **/
33 wbcErr wbcPing(void)
35 struct winbindd_request request;
36 struct winbindd_response response;
38 /* Initialize request */
40 ZERO_STRUCT(request);
41 ZERO_STRUCT(response);
43 return wbcRequestResponse(WINBINDD_PING, &request, &response);
46 static void wbcInterfaceDetailsDestructor(void *ptr)
48 struct wbcInterfaceDetails *i = (struct wbcInterfaceDetails *)ptr;
49 free(i->winbind_version);
50 free(i->netbios_name);
51 free(i->netbios_domain);
52 free(i->dns_domain);
55 /**
56 * @brief Query useful information about the winbind service
58 * @param *_details pointer to hold the struct wbcInterfaceDetails
60 * @return #wbcErr
63 wbcErr wbcInterfaceDetails(struct wbcInterfaceDetails **_details)
65 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
66 struct wbcInterfaceDetails *info;
67 struct wbcDomainInfo *domain = NULL;
68 struct winbindd_request request;
69 struct winbindd_response response;
71 /* Initialize request */
73 ZERO_STRUCT(request);
74 ZERO_STRUCT(response);
76 info = (struct wbcInterfaceDetails *)wbcAllocateMemory(
77 sizeof(struct wbcInterfaceDetails), 1,
78 wbcInterfaceDetailsDestructor);
79 BAIL_ON_PTR_ERROR(info, wbc_status);
81 /* first the interface version */
82 wbc_status = wbcRequestResponse(WINBINDD_INTERFACE_VERSION, NULL, &response);
83 BAIL_ON_WBC_ERROR(wbc_status);
84 info->interface_version = response.data.interface_version;
86 /* then the samba version and the winbind separator */
87 wbc_status = wbcRequestResponse(WINBINDD_INFO, NULL, &response);
88 BAIL_ON_WBC_ERROR(wbc_status);
90 info->winbind_version = strdup(response.data.info.samba_version);
91 BAIL_ON_PTR_ERROR(info->winbind_version, wbc_status);
92 info->winbind_separator = response.data.info.winbind_separator;
94 /* then the local netbios name */
95 wbc_status = wbcRequestResponse(WINBINDD_NETBIOS_NAME, NULL, &response);
96 BAIL_ON_WBC_ERROR(wbc_status);
98 info->netbios_name = strdup(response.data.netbios_name);
99 BAIL_ON_PTR_ERROR(info->netbios_name, wbc_status);
101 /* then the local workgroup name */
102 wbc_status = wbcRequestResponse(WINBINDD_DOMAIN_NAME, NULL, &response);
103 BAIL_ON_WBC_ERROR(wbc_status);
105 info->netbios_domain = strdup(response.data.domain_name);
106 BAIL_ON_PTR_ERROR(info->netbios_domain, wbc_status);
108 wbc_status = wbcDomainInfo(info->netbios_domain, &domain);
109 if (wbc_status == WBC_ERR_DOMAIN_NOT_FOUND) {
110 /* maybe it's a standalone server */
111 domain = NULL;
112 wbc_status = WBC_ERR_SUCCESS;
113 } else {
114 BAIL_ON_WBC_ERROR(wbc_status);
117 if (domain) {
118 info->dns_domain = strdup(domain->dns_name);
119 wbcFreeMemory(domain);
120 BAIL_ON_PTR_ERROR(info->dns_domain, wbc_status);
121 } else {
122 info->dns_domain = NULL;
125 *_details = info;
126 info = NULL;
128 wbc_status = WBC_ERR_SUCCESS;
130 done:
131 wbcFreeMemory(info);
132 return wbc_status;
135 static void wbcDomainInfoDestructor(void *ptr)
137 struct wbcDomainInfo *i = (struct wbcDomainInfo *)ptr;
138 free(i->short_name);
139 free(i->dns_name);
142 /** @brief Lookup the current status of a trusted domain, sync wrapper
144 * @param domain Domain to query
145 * @param *dinfo Pointer to returned struct wbcDomainInfo
147 * @return #wbcErr
150 wbcErr wbcDomainInfo(const char *domain, struct wbcDomainInfo **dinfo)
152 struct winbindd_request request;
153 struct winbindd_response response;
154 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
155 struct wbcDomainInfo *info = NULL;
157 if (!domain || !dinfo) {
158 wbc_status = WBC_ERR_INVALID_PARAM;
159 BAIL_ON_WBC_ERROR(wbc_status);
162 /* Initialize request */
164 ZERO_STRUCT(request);
165 ZERO_STRUCT(response);
167 strncpy(request.domain_name, domain,
168 sizeof(request.domain_name)-1);
170 wbc_status = wbcRequestResponse(WINBINDD_DOMAIN_INFO,
171 &request,
172 &response);
173 BAIL_ON_WBC_ERROR(wbc_status);
175 info = (struct wbcDomainInfo *)wbcAllocateMemory(
176 sizeof(struct wbcDomainInfo), 1, wbcDomainInfoDestructor);
177 BAIL_ON_PTR_ERROR(info, wbc_status);
179 info->short_name = strdup(response.data.domain_info.name);
180 BAIL_ON_PTR_ERROR(info->short_name, wbc_status);
182 info->dns_name = strdup(response.data.domain_info.alt_name);
183 BAIL_ON_PTR_ERROR(info->dns_name, wbc_status);
185 wbc_status = wbcStringToSid(response.data.domain_info.sid,
186 &info->sid);
187 BAIL_ON_WBC_ERROR(wbc_status);
189 if (response.data.domain_info.native_mode)
190 info->domain_flags |= WBC_DOMINFO_DOMAIN_NATIVE;
191 if (response.data.domain_info.active_directory)
192 info->domain_flags |= WBC_DOMINFO_DOMAIN_AD;
193 if (response.data.domain_info.primary)
194 info->domain_flags |= WBC_DOMINFO_DOMAIN_PRIMARY;
196 *dinfo = info;
197 info = NULL;
199 wbc_status = WBC_ERR_SUCCESS;
201 done:
202 wbcFreeMemory(info);
203 return wbc_status;
207 /* Resolve a NetbiosName via WINS */
208 wbcErr wbcResolveWinsByName(const char *name, char **ip)
210 struct winbindd_request request;
211 struct winbindd_response response;
212 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
213 char *ipaddr;
215 ZERO_STRUCT(request);
216 ZERO_STRUCT(response);
218 /* Send request */
220 strncpy(request.data.winsreq, name,
221 sizeof(request.data.winsreq)-1);
223 wbc_status = wbcRequestResponse(WINBINDD_WINS_BYNAME,
224 &request,
225 &response);
226 BAIL_ON_WBC_ERROR(wbc_status);
228 /* Display response */
230 ipaddr = wbcStrDup(response.data.winsresp);
231 BAIL_ON_PTR_ERROR(ipaddr, wbc_status);
233 *ip = ipaddr;
234 wbc_status = WBC_ERR_SUCCESS;
236 done:
237 return wbc_status;
240 /* Resolve an IP address via WINS into a NetbiosName */
241 wbcErr wbcResolveWinsByIP(const char *ip, char **name)
243 struct winbindd_request request;
244 struct winbindd_response response;
245 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
246 char *name_str;
248 ZERO_STRUCT(request);
249 ZERO_STRUCT(response);
251 /* Send request */
253 strncpy(request.data.winsreq, ip,
254 sizeof(request.data.winsreq)-1);
256 wbc_status = wbcRequestResponse(WINBINDD_WINS_BYIP,
257 &request,
258 &response);
259 BAIL_ON_WBC_ERROR(wbc_status);
261 /* Display response */
263 name_str = wbcStrDup(response.data.winsresp);
264 BAIL_ON_PTR_ERROR(name_str, wbc_status);
266 *name = name_str;
267 wbc_status = WBC_ERR_SUCCESS;
269 done:
270 return wbc_status;
276 static wbcErr process_domain_info_string(TALLOC_CTX *ctx,
277 struct wbcDomainInfo *info,
278 char *info_string)
280 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
281 char *r = NULL;
282 char *s = NULL;
284 if (!info || !info_string) {
285 wbc_status = WBC_ERR_INVALID_PARAM;
286 BAIL_ON_WBC_ERROR(wbc_status);
289 ZERO_STRUCTP(info);
291 r = info_string;
293 /* Short Name */
294 if ((s = strchr(r, '\\')) == NULL) {
295 wbc_status = WBC_ERR_INVALID_RESPONSE;
296 BAIL_ON_WBC_ERROR(wbc_status);
298 *s = '\0';
299 s++;
301 info->short_name = talloc_strdup(ctx, r);
302 BAIL_ON_PTR_ERROR(info->short_name, wbc_status);
305 /* DNS Name */
306 r = s;
307 if ((s = strchr(r, '\\')) == NULL) {
308 wbc_status = WBC_ERR_INVALID_RESPONSE;
309 BAIL_ON_WBC_ERROR(wbc_status);
311 *s = '\0';
312 s++;
314 info->dns_name = talloc_strdup(ctx, r);
315 BAIL_ON_PTR_ERROR(info->dns_name, wbc_status);
317 /* SID */
318 r = s;
319 if ((s = strchr(r, '\\')) == NULL) {
320 wbc_status = WBC_ERR_INVALID_RESPONSE;
321 BAIL_ON_WBC_ERROR(wbc_status);
323 *s = '\0';
324 s++;
326 wbc_status = wbcStringToSid(r, &info->sid);
327 BAIL_ON_WBC_ERROR(wbc_status);
329 /* Trust type */
330 r = s;
331 if ((s = strchr(r, '\\')) == NULL) {
332 wbc_status = WBC_ERR_INVALID_RESPONSE;
333 BAIL_ON_WBC_ERROR(wbc_status);
335 *s = '\0';
336 s++;
338 if (strcmp(r, "None") == 0) {
339 info->trust_type = WBC_DOMINFO_TRUSTTYPE_NONE;
340 } else if (strcmp(r, "External") == 0) {
341 info->trust_type = WBC_DOMINFO_TRUSTTYPE_EXTERNAL;
342 } else if (strcmp(r, "Forest") == 0) {
343 info->trust_type = WBC_DOMINFO_TRUSTTYPE_FOREST;
344 } else if (strcmp(r, "In Forest") == 0) {
345 info->trust_type = WBC_DOMINFO_TRUSTTYPE_IN_FOREST;
346 } else {
347 wbc_status = WBC_ERR_INVALID_RESPONSE;
348 BAIL_ON_WBC_ERROR(wbc_status);
351 /* Transitive */
352 r = s;
353 if ((s = strchr(r, '\\')) == NULL) {
354 wbc_status = WBC_ERR_INVALID_RESPONSE;
355 BAIL_ON_WBC_ERROR(wbc_status);
357 *s = '\0';
358 s++;
360 if (strcmp(r, "Yes") == 0) {
361 info->trust_flags |= WBC_DOMINFO_TRUST_TRANSITIVE;
364 /* Incoming */
365 r = s;
366 if ((s = strchr(r, '\\')) == NULL) {
367 wbc_status = WBC_ERR_INVALID_RESPONSE;
368 BAIL_ON_WBC_ERROR(wbc_status);
370 *s = '\0';
371 s++;
373 if (strcmp(r, "Yes") == 0) {
374 info->trust_flags |= WBC_DOMINFO_TRUST_INCOMING;
377 /* Outgoing */
378 r = s;
379 if ((s = strchr(r, '\\')) == NULL) {
380 wbc_status = WBC_ERR_INVALID_RESPONSE;
381 BAIL_ON_WBC_ERROR(wbc_status);
383 *s = '\0';
384 s++;
386 if (strcmp(r, "Yes") == 0) {
387 info->trust_flags |= WBC_DOMINFO_TRUST_OUTGOING;
390 /* Online/Offline status */
392 r = s;
393 if (r == NULL) {
394 wbc_status = WBC_ERR_INVALID_RESPONSE;
395 BAIL_ON_WBC_ERROR(wbc_status);
397 if ( strcmp(r, "Offline") == 0) {
398 info->domain_flags |= WBC_DOMINFO_DOMAIN_OFFLINE;
401 wbc_status = WBC_ERR_SUCCESS;
403 done:
404 return wbc_status;
407 /* Enumerate the domain trusts known by Winbind */
408 wbcErr wbcListTrusts(struct wbcDomainInfo **domains, size_t *num_domains)
410 struct winbindd_response response;
411 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
412 char *p = NULL;
413 char *q = NULL;
414 char *extra_data = NULL;
415 int count = 0;
416 struct wbcDomainInfo *d_list = NULL;
417 int i = 0;
419 *domains = NULL;
420 *num_domains = 0;
422 ZERO_STRUCT(response);
424 /* Send request */
426 wbc_status = wbcRequestResponse(WINBINDD_LIST_TRUSTDOM,
427 NULL,
428 &response);
429 BAIL_ON_WBC_ERROR(wbc_status);
431 /* Decode the response */
433 p = (char *)response.extra_data.data;
435 if ((p == NULL) || (strlen(p) == 0)) {
436 /* We should always at least get back our
437 own SAM domain */
439 wbc_status = WBC_ERR_DOMAIN_NOT_FOUND;
440 BAIL_ON_WBC_ERROR(wbc_status);
443 /* Count number of domains */
445 count = 0;
446 while (p) {
447 count++;
449 if ((q = strchr(p, '\n')) != NULL)
450 q++;
451 p = q;
454 d_list = talloc_array(NULL, struct wbcDomainInfo, count);
455 BAIL_ON_PTR_ERROR(d_list, wbc_status);
457 extra_data = strdup((char*)response.extra_data.data);
458 BAIL_ON_PTR_ERROR(extra_data, wbc_status);
460 p = extra_data;
462 /* Outer loop processes the list of domain information */
464 for (i=0; i<count && p; i++) {
465 char *next = strchr(p, '\n');
467 if (next) {
468 *next = '\0';
469 next++;
472 wbc_status = process_domain_info_string(d_list, &d_list[i], p);
473 BAIL_ON_WBC_ERROR(wbc_status);
475 p = next;
478 *domains = d_list;
479 d_list = NULL;
480 *num_domains = i;
482 done:
483 winbindd_free_response(&response);
484 talloc_free(d_list);
485 free(extra_data);
486 return wbc_status;
489 static void wbcDomainControllerInfoDestructor(void *ptr)
491 struct wbcDomainControllerInfo *i =
492 (struct wbcDomainControllerInfo *)ptr;
493 free(i->dc_name);
496 /* Enumerate the domain trusts known by Winbind */
497 wbcErr wbcLookupDomainController(const char *domain,
498 uint32_t flags,
499 struct wbcDomainControllerInfo **dc_info)
501 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
502 struct winbindd_request request;
503 struct winbindd_response response;
504 struct wbcDomainControllerInfo *dc = NULL;
506 /* validate input params */
508 if (!domain || !dc_info) {
509 wbc_status = WBC_ERR_INVALID_PARAM;
510 BAIL_ON_WBC_ERROR(wbc_status);
513 ZERO_STRUCT(request);
514 ZERO_STRUCT(response);
516 strncpy(request.data.dsgetdcname.domain_name, domain,
517 sizeof(request.data.dsgetdcname.domain_name)-1);
519 request.flags = flags;
521 dc = (struct wbcDomainControllerInfo *)wbcAllocateMemory(
522 sizeof(struct wbcDomainControllerInfo), 1,
523 wbcDomainControllerInfoDestructor);
524 BAIL_ON_PTR_ERROR(dc, wbc_status);
526 /* Send request */
528 wbc_status = wbcRequestResponse(WINBINDD_DSGETDCNAME,
529 &request,
530 &response);
531 BAIL_ON_WBC_ERROR(wbc_status);
533 dc->dc_name = strdup(response.data.dsgetdcname.dc_unc);
534 BAIL_ON_PTR_ERROR(dc->dc_name, wbc_status);
536 *dc_info = dc;
537 dc = NULL;
539 done:
540 wbcFreeMemory(dc);
541 return wbc_status;
544 static void wbcDomainControllerInfoExDestructor(void *ptr)
546 struct wbcDomainControllerInfoEx *i =
547 (struct wbcDomainControllerInfoEx *)ptr;
548 free((char *)(i->dc_unc));
549 free((char *)(i->dc_address));
550 free((char *)(i->domain_guid));
551 free((char *)(i->domain_name));
552 free((char *)(i->forest_name));
553 free((char *)(i->dc_site_name));
554 free((char *)(i->client_site_name));
557 static wbcErr wbc_create_domain_controller_info_ex(const struct winbindd_response *resp,
558 struct wbcDomainControllerInfoEx **_i)
560 wbcErr wbc_status = WBC_ERR_SUCCESS;
561 struct wbcDomainControllerInfoEx *i;
562 struct wbcGuid guid;
564 i = (struct wbcDomainControllerInfoEx *)wbcAllocateMemory(
565 sizeof(struct wbcDomainControllerInfoEx), 1,
566 wbcDomainControllerInfoExDestructor);
567 BAIL_ON_PTR_ERROR(i, wbc_status);
569 i->dc_unc = strdup(resp->data.dsgetdcname.dc_unc);
570 BAIL_ON_PTR_ERROR(i->dc_unc, wbc_status);
572 i->dc_address = strdup(resp->data.dsgetdcname.dc_address);
573 BAIL_ON_PTR_ERROR(i->dc_address, wbc_status);
575 i->dc_address_type = resp->data.dsgetdcname.dc_address_type;
577 wbc_status = wbcStringToGuid(resp->data.dsgetdcname.domain_guid, &guid);
578 if (WBC_ERROR_IS_OK(wbc_status)) {
579 i->domain_guid = (struct wbcGuid *)malloc(
580 sizeof(struct wbcGuid));
581 BAIL_ON_PTR_ERROR(i->domain_guid, wbc_status);
583 *i->domain_guid = guid;
586 i->domain_name = strdup(resp->data.dsgetdcname.domain_name);
587 BAIL_ON_PTR_ERROR(i->domain_name, wbc_status);
589 if (resp->data.dsgetdcname.forest_name[0] != '\0') {
590 i->forest_name = strdup(resp->data.dsgetdcname.forest_name);
591 BAIL_ON_PTR_ERROR(i->forest_name, wbc_status);
594 i->dc_flags = resp->data.dsgetdcname.dc_flags;
596 if (resp->data.dsgetdcname.dc_site_name[0] != '\0') {
597 i->dc_site_name = strdup(resp->data.dsgetdcname.dc_site_name);
598 BAIL_ON_PTR_ERROR(i->dc_site_name, wbc_status);
601 if (resp->data.dsgetdcname.client_site_name[0] != '\0') {
602 i->client_site_name = strdup(
603 resp->data.dsgetdcname.client_site_name);
604 BAIL_ON_PTR_ERROR(i->client_site_name, wbc_status);
607 *_i = i;
608 i = NULL;
610 done:
611 if (i != NULL) {
612 wbcFreeMemory(i);
614 return wbc_status;
617 /* Get extended domain controller information */
618 wbcErr wbcLookupDomainControllerEx(const char *domain,
619 struct wbcGuid *guid,
620 const char *site,
621 uint32_t flags,
622 struct wbcDomainControllerInfoEx **dc_info)
624 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
625 struct winbindd_request request;
626 struct winbindd_response response;
628 /* validate input params */
630 if (!domain || !dc_info) {
631 wbc_status = WBC_ERR_INVALID_PARAM;
632 BAIL_ON_WBC_ERROR(wbc_status);
635 ZERO_STRUCT(request);
636 ZERO_STRUCT(response);
638 request.data.dsgetdcname.flags = flags;
640 strncpy(request.data.dsgetdcname.domain_name, domain,
641 sizeof(request.data.dsgetdcname.domain_name)-1);
643 if (site) {
644 strncpy(request.data.dsgetdcname.site_name, site,
645 sizeof(request.data.dsgetdcname.site_name)-1);
648 if (guid) {
649 char *str = NULL;
651 wbc_status = wbcGuidToString(guid, &str);
652 BAIL_ON_WBC_ERROR(wbc_status);
654 strncpy(request.data.dsgetdcname.domain_guid, str,
655 sizeof(request.data.dsgetdcname.domain_guid)-1);
657 wbcFreeMemory(str);
660 /* Send request */
662 wbc_status = wbcRequestResponse(WINBINDD_DSGETDCNAME,
663 &request,
664 &response);
665 BAIL_ON_WBC_ERROR(wbc_status);
667 if (dc_info) {
668 wbc_status = wbc_create_domain_controller_info_ex(&response,
669 dc_info);
670 BAIL_ON_WBC_ERROR(wbc_status);
673 wbc_status = WBC_ERR_SUCCESS;
674 done:
675 return wbc_status;
678 static void wbcNamedBlobDestructor(void *ptr)
680 struct wbcNamedBlob *b = (struct wbcNamedBlob *)ptr;
682 while (b->name != NULL) {
683 free((char *)(b->name));
684 free(b->blob.data);
685 b += 1;
689 /* Initialize a named blob and add to list of blobs */
690 wbcErr wbcAddNamedBlob(size_t *num_blobs,
691 struct wbcNamedBlob **pblobs,
692 const char *name,
693 uint32_t flags,
694 uint8_t *data,
695 size_t length)
697 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
698 struct wbcNamedBlob *blobs, *blob;
700 if (name == NULL) {
701 return WBC_ERR_INVALID_PARAM;
705 * Overallocate the b->name==NULL terminator for
706 * wbcNamedBlobDestructor
708 blobs = (struct wbcNamedBlob *)wbcAllocateMemory(
709 sizeof(struct wbcNamedBlob), *num_blobs + 2,
710 wbcNamedBlobDestructor);
712 if (*pblobs != NULL) {
713 struct wbcNamedBlob *old = *pblobs;
714 memcpy(blobs, old, sizeof(struct wbcNamedBlob) * (*num_blobs));
715 if (*num_blobs != 0) {
716 /* end indicator for wbcNamedBlobDestructor */
717 old[0].name = NULL;
719 wbcFreeMemory(old);
721 *pblobs = blobs;
723 blob = &blobs[*num_blobs];
725 blob->name = strdup(name);
726 BAIL_ON_PTR_ERROR(blob->name, wbc_status);
727 blob->flags = flags;
729 blob->blob.length = length;
730 blob->blob.data = (uint8_t *)malloc(length);
731 BAIL_ON_PTR_ERROR(blob->blob.data, wbc_status);
732 memcpy(blob->blob.data, data, length);
734 *num_blobs += 1;
735 *pblobs = blobs;
736 blobs = NULL;
738 wbc_status = WBC_ERR_SUCCESS;
739 done:
740 wbcFreeMemory(blobs);
741 return wbc_status;