Remove some unused variables uncovered by the build farm.
[Samba/gebeck_regimport.git] / source3 / nsswitch / winbindd_ads.c
blob5d0f924d8f810bb92793a993219976ee361344a8
1 /*
2 Unix SMB/CIFS implementation.
4 Winbind ADS backend functions
6 Copyright (C) Andrew Tridgell 2001
7 Copyright (C) Andrew Bartlett <abartlet@samba.org> 2003
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program 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
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 #include "winbindd.h"
26 #ifdef HAVE_ADS
28 #undef DBGC_CLASS
29 #define DBGC_CLASS DBGC_WINBIND
32 return our ads connections structure for a domain. We keep the connection
33 open to make things faster
35 static ADS_STRUCT *ads_cached_connection(struct winbindd_domain *domain)
37 ADS_STRUCT *ads;
38 ADS_STATUS status;
40 if (domain->private) {
41 return (ADS_STRUCT *)domain->private;
44 /* we don't want this to affect the users ccache */
45 setenv("KRB5CCNAME", "MEMORY:winbind_ccache", 1);
47 ads = ads_init(domain->alt_name, domain->name, NULL);
48 if (!ads) {
49 DEBUG(1,("ads_init for domain %s failed\n", domain->name));
50 return NULL;
53 /* the machine acct password might have change - fetch it every time */
54 SAFE_FREE(ads->auth.password);
55 ads->auth.password = secrets_fetch_machine_password(lp_workgroup(), NULL, NULL);
57 SAFE_FREE(ads->auth.realm);
58 ads->auth.realm = strdup(lp_realm());
60 status = ads_connect(ads);
61 if (!ADS_ERR_OK(status) || !ads->config.realm) {
62 extern struct winbindd_methods msrpc_methods, cache_methods;
63 DEBUG(1,("ads_connect for domain %s failed: %s\n",
64 domain->name, ads_errstr(status)));
65 ads_destroy(&ads);
67 /* if we get ECONNREFUSED then it might be a NT4
68 server, fall back to MSRPC */
69 if (status.error_type == ADS_ERROR_SYSTEM &&
70 status.err.rc == ECONNREFUSED) {
71 DEBUG(1,("Trying MSRPC methods\n"));
72 if (domain->methods == &cache_methods) {
73 domain->backend = &msrpc_methods;
74 } else {
75 domain->methods = &msrpc_methods;
78 return NULL;
81 domain->private = (void *)ads;
82 return ads;
86 /* Query display info for a realm. This is the basic user list fn */
87 static NTSTATUS query_user_list(struct winbindd_domain *domain,
88 TALLOC_CTX *mem_ctx,
89 uint32 *num_entries,
90 WINBIND_USERINFO **info)
92 ADS_STRUCT *ads = NULL;
93 const char *attrs[] = {"userPrincipalName",
94 "sAMAccountName",
95 "name", "objectSid", "primaryGroupID",
96 "sAMAccountType", NULL};
97 int i, count;
98 ADS_STATUS rc;
99 void *res = NULL;
100 void *msg = NULL;
101 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
103 *num_entries = 0;
105 DEBUG(3,("ads: query_user_list\n"));
107 ads = ads_cached_connection(domain);
109 if (!ads) {
110 domain->last_status = NT_STATUS_SERVER_DISABLED;
111 goto done;
114 rc = ads_search_retry(ads, &res, "(objectCategory=user)", attrs);
115 if (!ADS_ERR_OK(rc) || !res) {
116 DEBUG(1,("query_user_list ads_search: %s\n", ads_errstr(rc)));
117 goto done;
120 count = ads_count_replies(ads, res);
121 if (count == 0) {
122 DEBUG(1,("query_user_list: No users found\n"));
123 goto done;
126 (*info) = talloc_zero(mem_ctx, count * sizeof(**info));
127 if (!*info) {
128 status = NT_STATUS_NO_MEMORY;
129 goto done;
132 i = 0;
134 for (msg = ads_first_entry(ads, res); msg; msg = ads_next_entry(ads, msg)) {
135 char *name, *gecos;
136 DOM_SID sid;
137 DOM_SID *sid2;
138 DOM_SID *group_sid;
139 uint32 group;
140 uint32 atype;
142 if (!ads_pull_uint32(ads, msg, "sAMAccountType", &atype) ||
143 ads_atype_map(atype) != SID_NAME_USER) {
144 DEBUG(1,("Not a user account? atype=0x%x\n", atype));
145 continue;
148 name = ads_pull_username(ads, mem_ctx, msg);
149 gecos = ads_pull_string(ads, mem_ctx, msg, "name");
150 if (!ads_pull_sid(ads, msg, "objectSid", &sid)) {
151 DEBUG(1,("No sid for %s !?\n", name));
152 continue;
154 if (!ads_pull_uint32(ads, msg, "primaryGroupID", &group)) {
155 DEBUG(1,("No primary group for %s !?\n", name));
156 continue;
159 sid2 = talloc(mem_ctx, sizeof(*sid2));
160 if (!sid2) {
161 status = NT_STATUS_NO_MEMORY;
162 goto done;
165 sid_copy(sid2, &sid);
167 group_sid = rid_to_talloced_sid(domain, mem_ctx, group);
169 (*info)[i].acct_name = name;
170 (*info)[i].full_name = gecos;
171 (*info)[i].user_sid = sid2;
172 (*info)[i].group_sid = group_sid;
173 i++;
176 (*num_entries) = i;
177 status = NT_STATUS_OK;
179 DEBUG(3,("ads query_user_list gave %d entries\n", (*num_entries)));
181 done:
182 if (res)
183 ads_msgfree(ads, res);
185 return status;
188 /* list all domain groups */
189 static NTSTATUS enum_dom_groups(struct winbindd_domain *domain,
190 TALLOC_CTX *mem_ctx,
191 uint32 *num_entries,
192 struct acct_info **info)
194 ADS_STRUCT *ads = NULL;
195 const char *attrs[] = {"userPrincipalName", "sAMAccountName",
196 "name", "objectSid",
197 "sAMAccountType", NULL};
198 int i, count;
199 ADS_STATUS rc;
200 void *res = NULL;
201 void *msg = NULL;
202 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
203 uint32 group_flags;
205 *num_entries = 0;
207 DEBUG(3,("ads: enum_dom_groups\n"));
209 ads = ads_cached_connection(domain);
211 if (!ads) {
212 domain->last_status = NT_STATUS_SERVER_DISABLED;
213 goto done;
216 rc = ads_search_retry(ads, &res, "(objectCategory=group)", attrs);
217 if (!ADS_ERR_OK(rc) || !res) {
218 DEBUG(1,("enum_dom_groups ads_search: %s\n", ads_errstr(rc)));
219 goto done;
222 count = ads_count_replies(ads, res);
223 if (count == 0) {
224 DEBUG(1,("enum_dom_groups: No groups found\n"));
225 goto done;
228 (*info) = talloc_zero(mem_ctx, count * sizeof(**info));
229 if (!*info) {
230 status = NT_STATUS_NO_MEMORY;
231 goto done;
234 i = 0;
236 group_flags = ATYPE_GLOBAL_GROUP;
238 /* only grab domain local groups for our domain */
239 if ( domain->native_mode && strequal(lp_realm(), domain->alt_name) )
240 group_flags |= ATYPE_LOCAL_GROUP;
242 for (msg = ads_first_entry(ads, res); msg; msg = ads_next_entry(ads, msg)) {
243 char *name, *gecos;
244 DOM_SID sid;
245 uint32 rid;
246 uint32 account_type;
248 if (!ads_pull_uint32(ads, msg, "sAMAccountType", &account_type) || !(account_type & group_flags) )
249 continue;
251 name = ads_pull_username(ads, mem_ctx, msg);
252 gecos = ads_pull_string(ads, mem_ctx, msg, "name");
253 if (!ads_pull_sid(ads, msg, "objectSid", &sid)) {
254 DEBUG(1,("No sid for %s !?\n", name));
255 continue;
258 if (!sid_peek_check_rid(&domain->sid, &sid, &rid)) {
259 DEBUG(1,("No rid for %s !?\n", name));
260 continue;
263 fstrcpy((*info)[i].acct_name, name);
264 fstrcpy((*info)[i].acct_desc, gecos);
265 (*info)[i].rid = rid;
266 i++;
269 (*num_entries) = i;
271 status = NT_STATUS_OK;
273 DEBUG(3,("ads enum_dom_groups gave %d entries\n", (*num_entries)));
275 done:
276 if (res)
277 ads_msgfree(ads, res);
279 return status;
282 /* list all domain local groups */
283 static NTSTATUS enum_local_groups(struct winbindd_domain *domain,
284 TALLOC_CTX *mem_ctx,
285 uint32 *num_entries,
286 struct acct_info **info)
289 * This is a stub function only as we returned the domain
290 * local groups in enum_dom_groups() if the domain->native field
291 * was true. This is a simple performance optimization when
292 * using LDAP.
294 * if we ever need to enumerate domain local groups separately,
295 * then this the optimization in enum_dom_groups() will need
296 * to be split out
298 *num_entries = 0;
300 return NT_STATUS_OK;
303 /* convert a single name to a sid in a domain */
304 static NTSTATUS name_to_sid(struct winbindd_domain *domain,
305 TALLOC_CTX *mem_ctx,
306 const char *name,
307 DOM_SID *sid,
308 enum SID_NAME_USE *type)
310 ADS_STRUCT *ads;
312 DEBUG(3,("ads: name_to_sid\n"));
314 ads = ads_cached_connection(domain);
316 if (!ads) {
317 domain->last_status = NT_STATUS_SERVER_DISABLED;
318 return NT_STATUS_UNSUCCESSFUL;
321 return ads_name_to_sid(ads, name, sid, type);
324 /* convert a sid to a user or group name */
325 static NTSTATUS sid_to_name(struct winbindd_domain *domain,
326 TALLOC_CTX *mem_ctx,
327 DOM_SID *sid,
328 char **name,
329 enum SID_NAME_USE *type)
331 ADS_STRUCT *ads = NULL;
332 DEBUG(3,("ads: sid_to_name\n"));
334 ads = ads_cached_connection(domain);
336 if (!ads) {
337 domain->last_status = NT_STATUS_SERVER_DISABLED;
338 return NT_STATUS_UNSUCCESSFUL;
341 return ads_sid_to_name(ads, mem_ctx, sid, name, type);
345 /* convert a DN to a name, SID and name type
346 this might become a major speed bottleneck if groups have
347 lots of users, in which case we could cache the results
349 static BOOL dn_lookup(ADS_STRUCT *ads, TALLOC_CTX *mem_ctx,
350 const char *dn,
351 char **name, uint32 *name_type, DOM_SID *sid)
353 char *ldap_exp;
354 void *res = NULL;
355 const char *attrs[] = {"userPrincipalName", "sAMAccountName",
356 "objectSid", "sAMAccountType", NULL};
357 ADS_STATUS rc;
358 uint32 atype;
359 char *escaped_dn = escape_ldap_string_alloc(dn);
361 DEBUG(3,("ads: dn_lookup\n"));
363 if (!escaped_dn) {
364 return False;
367 asprintf(&ldap_exp, "(distinguishedName=%s)", escaped_dn);
368 rc = ads_search_retry(ads, &res, ldap_exp, attrs);
369 SAFE_FREE(ldap_exp);
370 SAFE_FREE(escaped_dn);
372 if (!ADS_ERR_OK(rc) || !res) {
373 goto failed;
376 (*name) = ads_pull_username(ads, mem_ctx, res);
378 if (!ads_pull_uint32(ads, res, "sAMAccountType", &atype)) {
379 goto failed;
381 (*name_type) = ads_atype_map(atype);
383 if (!ads_pull_sid(ads, res, "objectSid", sid)) {
384 goto failed;
387 if (res)
388 ads_msgfree(ads, res);
390 return True;
392 failed:
393 if (res)
394 ads_msgfree(ads, res);
396 return False;
399 /* Lookup user information from a rid */
400 static NTSTATUS query_user(struct winbindd_domain *domain,
401 TALLOC_CTX *mem_ctx,
402 DOM_SID *sid,
403 WINBIND_USERINFO *info)
405 ADS_STRUCT *ads = NULL;
406 const char *attrs[] = {"userPrincipalName",
407 "sAMAccountName",
408 "name",
409 "primaryGroupID", NULL};
410 ADS_STATUS rc;
411 int count;
412 void *msg = NULL;
413 char *ldap_exp;
414 char *sidstr;
415 uint32 group_rid;
416 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
417 DOM_SID *sid2;
418 fstring sid_string;
420 DEBUG(3,("ads: query_user\n"));
422 ads = ads_cached_connection(domain);
424 if (!ads) {
425 domain->last_status = NT_STATUS_SERVER_DISABLED;
426 goto done;
429 sidstr = sid_binstring(sid);
430 asprintf(&ldap_exp, "(objectSid=%s)", sidstr);
431 rc = ads_search_retry(ads, &msg, ldap_exp, attrs);
432 free(ldap_exp);
433 free(sidstr);
434 if (!ADS_ERR_OK(rc) || !msg) {
435 DEBUG(1,("query_user(sid=%s) ads_search: %s\n", sid_to_string(sid_string, sid), ads_errstr(rc)));
436 goto done;
439 count = ads_count_replies(ads, msg);
440 if (count != 1) {
441 DEBUG(1,("query_user(sid=%s): Not found\n", sid_to_string(sid_string, sid)));
442 goto done;
445 info->acct_name = ads_pull_username(ads, mem_ctx, msg);
446 info->full_name = ads_pull_string(ads, mem_ctx, msg, "name");
448 if (!ads_pull_uint32(ads, msg, "primaryGroupID", &group_rid)) {
449 DEBUG(1,("No primary group for %s !?\n", sid_to_string(sid_string, sid)));
450 goto done;
453 sid2 = talloc(mem_ctx, sizeof(*sid2));
454 if (!sid2) {
455 status = NT_STATUS_NO_MEMORY;
456 goto done;
458 sid_copy(sid2, sid);
460 info->user_sid = sid2;
462 info->group_sid = rid_to_talloced_sid(domain, mem_ctx, group_rid);
464 status = NT_STATUS_OK;
466 DEBUG(3,("ads query_user gave %s\n", info->acct_name));
467 done:
468 if (msg)
469 ads_msgfree(ads, msg);
471 return status;
474 /* Lookup groups a user is a member of - alternate method, for when
475 tokenGroups are not available. */
476 static NTSTATUS lookup_usergroups_alt(struct winbindd_domain *domain,
477 TALLOC_CTX *mem_ctx,
478 const char *user_dn,
479 DOM_SID *primary_group,
480 uint32 *num_groups, DOM_SID ***user_gids)
482 ADS_STATUS rc;
483 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
484 int count;
485 void *res = NULL;
486 void *msg = NULL;
487 char *ldap_exp;
488 ADS_STRUCT *ads;
489 const char *group_attrs[] = {"objectSid", NULL};
491 DEBUG(3,("ads: lookup_usergroups_alt\n"));
493 ads = ads_cached_connection(domain);
495 if (!ads) {
496 domain->last_status = NT_STATUS_SERVER_DISABLED;
497 goto done;
500 /* buggy server, no tokenGroups. Instead lookup what groups this user
501 is a member of by DN search on member*/
502 if (asprintf(&ldap_exp, "(&(member=%s)(objectClass=group))", user_dn) == -1) {
503 DEBUG(1,("lookup_usergroups(dn=%s) asprintf failed!\n", user_dn));
504 return NT_STATUS_NO_MEMORY;
507 rc = ads_search_retry(ads, &res, ldap_exp, group_attrs);
508 free(ldap_exp);
510 if (!ADS_ERR_OK(rc) || !res) {
511 DEBUG(1,("lookup_usergroups ads_search member=%s: %s\n", user_dn, ads_errstr(rc)));
512 return ads_ntstatus(rc);
515 count = ads_count_replies(ads, res);
516 if (count == 0) {
517 DEBUG(5,("lookup_usergroups: No supp groups found\n"));
519 status = ads_ntstatus(rc);
520 goto done;
523 (*user_gids) = talloc_zero(mem_ctx, sizeof(**user_gids) * (count + 1));
524 (*user_gids)[0] = primary_group;
526 *num_groups = 1;
528 for (msg = ads_first_entry(ads, res); msg; msg = ads_next_entry(ads, msg)) {
529 DOM_SID group_sid;
531 if (!ads_pull_sid(ads, msg, "objectSid", &group_sid)) {
532 DEBUG(1,("No sid for this group ?!?\n"));
533 continue;
536 if (sid_equal(&group_sid, primary_group)) continue;
538 (*user_gids)[*num_groups] = talloc(mem_ctx, sizeof(***user_gids));
539 if (!(*user_gids)[*num_groups]) {
540 status = NT_STATUS_NO_MEMORY;
541 goto done;
544 sid_copy((*user_gids)[*num_groups], &group_sid);
546 (*num_groups)++;
550 status = NT_STATUS_OK;
552 DEBUG(3,("ads lookup_usergroups (alt) for dn=%s\n", user_dn));
553 done:
554 if (res)
555 ads_msgfree(ads, res);
556 if (msg)
557 ads_msgfree(ads, msg);
559 return status;
562 /* Lookup groups a user is a member of. */
563 static NTSTATUS lookup_usergroups(struct winbindd_domain *domain,
564 TALLOC_CTX *mem_ctx,
565 DOM_SID *sid,
566 uint32 *num_groups, DOM_SID ***user_gids)
568 ADS_STRUCT *ads = NULL;
569 const char *attrs[] = {"distinguishedName", NULL};
570 const char *attrs2[] = {"tokenGroups", "primaryGroupID", NULL};
571 ADS_STATUS rc;
572 int count;
573 void *msg = NULL;
574 char *ldap_exp;
575 char *user_dn;
576 DOM_SID *sids;
577 int i;
578 DOM_SID *primary_group;
579 uint32 primary_group_rid;
580 char *sidstr;
581 fstring sid_string;
582 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
584 DEBUG(3,("ads: lookup_usergroups\n"));
585 *num_groups = 0;
587 ads = ads_cached_connection(domain);
589 if (!ads) {
590 domain->last_status = NT_STATUS_SERVER_DISABLED;
591 goto done;
594 if (!(sidstr = sid_binstring(sid))) {
595 DEBUG(1,("lookup_usergroups(sid=%s) sid_binstring returned NULL\n", sid_to_string(sid_string, sid)));
596 status = NT_STATUS_NO_MEMORY;
597 goto done;
599 if (asprintf(&ldap_exp, "(objectSid=%s)", sidstr) == -1) {
600 free(sidstr);
601 DEBUG(1,("lookup_usergroups(sid=%s) asprintf failed!\n", sid_to_string(sid_string, sid)));
602 status = NT_STATUS_NO_MEMORY;
603 goto done;
606 rc = ads_search_retry(ads, &msg, ldap_exp, attrs);
607 free(ldap_exp);
608 free(sidstr);
610 if (!ADS_ERR_OK(rc) || !msg) {
611 DEBUG(1,("lookup_usergroups(sid=%s) ads_search: %s\n", sid_to_string(sid_string, sid), ads_errstr(rc)));
612 goto done;
615 user_dn = ads_pull_string(ads, mem_ctx, msg, "distinguishedName");
616 if (!user_dn) {
617 DEBUG(1,("lookup_usergroups(sid=%s) ads_search did not return a a distinguishedName!\n", sid_to_string(sid_string, sid)));
618 if (msg)
619 ads_msgfree(ads, msg);
620 goto done;
623 if (msg)
624 ads_msgfree(ads, msg);
626 rc = ads_search_retry_dn(ads, &msg, user_dn, attrs2);
627 if (!ADS_ERR_OK(rc) || !msg) {
628 DEBUG(1,("lookup_usergroups(sid=%s) ads_search tokenGroups: %s\n", sid_to_string(sid_string, sid), ads_errstr(rc)));
629 goto done;
632 if (!ads_pull_uint32(ads, msg, "primaryGroupID", &primary_group_rid)) {
633 DEBUG(1,("%s: No primary group for sid=%s !?\n", domain->name, sid_to_string(sid_string, sid)));
634 goto done;
637 primary_group = rid_to_talloced_sid(domain, mem_ctx, primary_group_rid);
639 count = ads_pull_sids(ads, mem_ctx, msg, "tokenGroups", &sids);
641 if (msg)
642 ads_msgfree(ads, msg);
644 /* there must always be at least one group in the token,
645 unless we are talking to a buggy Win2k server */
646 if (count == 0) {
647 return lookup_usergroups_alt(domain, mem_ctx, user_dn,
648 primary_group,
649 num_groups, user_gids);
652 (*user_gids) = talloc_zero(mem_ctx, sizeof(**user_gids) * (count + 1));
653 (*user_gids)[0] = primary_group;
655 *num_groups = 1;
657 for (i=0;i<count;i++) {
658 if (sid_equal(&sids[i], primary_group)) continue;
660 (*user_gids)[*num_groups] = talloc(mem_ctx, sizeof(***user_gids));
661 if (!(*user_gids)[*num_groups]) {
662 status = NT_STATUS_NO_MEMORY;
663 goto done;
666 sid_copy((*user_gids)[*num_groups], &sids[i]);
667 (*num_groups)++;
670 status = NT_STATUS_OK;
671 DEBUG(3,("ads lookup_usergroups for sid=%s\n", sid_to_string(sid_string, sid)));
672 done:
673 return status;
677 find the members of a group, given a group rid and domain
679 static NTSTATUS lookup_groupmem(struct winbindd_domain *domain,
680 TALLOC_CTX *mem_ctx,
681 DOM_SID *group_sid, uint32 *num_names,
682 DOM_SID ***sid_mem, char ***names,
683 uint32 **name_types)
685 ADS_STATUS rc;
686 int count;
687 void *res=NULL;
688 ADS_STRUCT *ads = NULL;
689 char *ldap_exp;
690 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
691 char *sidstr;
692 const char *attrs[] = {"member", NULL};
693 char **members;
694 int i, num_members;
695 fstring sid_string;
697 DEBUG(10,("ads: lookup_groupmem %s sid=%s\n", domain->name, sid_string_static(group_sid)));
699 *num_names = 0;
701 ads = ads_cached_connection(domain);
703 if (!ads) {
704 domain->last_status = NT_STATUS_SERVER_DISABLED;
705 goto done;
708 sidstr = sid_binstring(group_sid);
710 /* search for all members of the group */
711 asprintf(&ldap_exp, "(objectSid=%s)",sidstr);
712 rc = ads_search_retry(ads, &res, ldap_exp, attrs);
713 free(ldap_exp);
714 free(sidstr);
716 if (!ADS_ERR_OK(rc) || !res) {
717 DEBUG(1,("query_user_list ads_search: %s\n", ads_errstr(rc)));
718 goto done;
721 count = ads_count_replies(ads, res);
722 if (count == 0) {
723 status = NT_STATUS_OK;
724 goto done;
727 members = ads_pull_strings(ads, mem_ctx, res, "member");
728 if (!members) {
729 /* no members? ok ... */
730 status = NT_STATUS_OK;
731 goto done;
734 /* now we need to turn a list of members into rids, names and name types
735 the problem is that the members are in the form of distinguised names
737 for (i=0;members[i];i++) /* noop */ ;
738 num_members = i;
740 (*sid_mem) = talloc_zero(mem_ctx, sizeof(**sid_mem) * num_members);
741 (*name_types) = talloc_zero(mem_ctx, sizeof(**name_types) * num_members);
742 (*names) = talloc_zero(mem_ctx, sizeof(**names) * num_members);
744 for (i=0;i<num_members;i++) {
745 uint32 name_type;
746 char *name;
747 DOM_SID sid;
749 if (dn_lookup(ads, mem_ctx, members[i], &name, &name_type, &sid)) {
750 (*names)[*num_names] = name;
751 (*name_types)[*num_names] = name_type;
752 (*sid_mem)[*num_names] = talloc(mem_ctx, sizeof(***sid_mem));
753 if (!(*sid_mem)[*num_names]) {
754 status = NT_STATUS_NO_MEMORY;
755 goto done;
757 sid_copy((*sid_mem)[*num_names], &sid);
758 (*num_names)++;
762 status = NT_STATUS_OK;
763 DEBUG(3,("ads lookup_groupmem for sid=%s\n", sid_to_string(sid_string, group_sid)));
764 done:
765 if (res)
766 ads_msgfree(ads, res);
768 return status;
772 /* find the sequence number for a domain */
773 static NTSTATUS sequence_number(struct winbindd_domain *domain, uint32 *seq)
775 ADS_STRUCT *ads = NULL;
776 ADS_STATUS rc;
778 DEBUG(3,("ads: fetch sequence_number for %s\n", domain->name));
780 *seq = DOM_SEQUENCE_NONE;
782 ads = ads_cached_connection(domain);
784 if (!ads) {
785 domain->last_status = NT_STATUS_SERVER_DISABLED;
786 return NT_STATUS_UNSUCCESSFUL;
789 rc = ads_USN(ads, seq);
791 if (!ADS_ERR_OK(rc)) {
793 /* its a dead connection ; don't destroy it
794 through since ads_USN() has already done
795 that indirectly */
797 domain->private = NULL;
799 return ads_ntstatus(rc);
802 /* get a list of trusted domains */
803 static NTSTATUS trusted_domains(struct winbindd_domain *domain,
804 TALLOC_CTX *mem_ctx,
805 uint32 *num_domains,
806 char ***names,
807 char ***alt_names,
808 DOM_SID **dom_sids)
810 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
811 DS_DOMAIN_TRUSTS *domains = NULL;
812 int count = 0;
813 int i;
814 struct cli_state *cli = NULL;
815 /* i think we only need our forest and downlevel trusted domains */
816 uint32 flags = DS_DOMAIN_IN_FOREST | DS_DOMAIN_DIRECT_OUTBOUND;
817 char *contact_domain_name;
819 DEBUG(3,("ads: trusted_domains\n"));
821 *num_domains = 0;
822 *alt_names = NULL;
823 *names = NULL;
824 *dom_sids = NULL;
826 contact_domain_name = *domain->alt_name ? domain->alt_name : domain->name;
827 if ( !NT_STATUS_IS_OK(result = cm_fresh_connection(contact_domain_name, PI_NETLOGON, &cli)) ) {
828 DEBUG(5, ("trusted_domains: Could not open a connection to %s for PIPE_NETLOGON (%s)\n",
829 contact_domain_name, nt_errstr(result)));
830 return NT_STATUS_UNSUCCESSFUL;
833 if ( NT_STATUS_IS_OK(result) )
834 result = cli_ds_enum_domain_trusts( cli, mem_ctx, cli->desthost, flags, &domains, (unsigned int *)&count );
836 if ( NT_STATUS_IS_OK(result) && count) {
838 /* Allocate memory for trusted domain names and sids */
840 if ( !(*names = (char **)talloc(mem_ctx, sizeof(char *) * count)) ) {
841 DEBUG(0, ("trusted_domains: out of memory\n"));
842 result = NT_STATUS_NO_MEMORY;
843 goto done;
846 if ( !(*alt_names = (char **)talloc(mem_ctx, sizeof(char *) * count)) ) {
847 DEBUG(0, ("trusted_domains: out of memory\n"));
848 result = NT_STATUS_NO_MEMORY;
849 goto done;
852 if ( !(*dom_sids = (DOM_SID *)talloc(mem_ctx, sizeof(DOM_SID) * count)) ) {
853 DEBUG(0, ("trusted_domains: out of memory\n"));
854 result = NT_STATUS_NO_MEMORY;
855 goto done;
858 /* Copy across names and sids */
860 for (i = 0; i < count; i++) {
861 fstring tmp;
862 fstring tmp2;
864 (*names)[i] = NULL;
865 (*alt_names)[i] = NULL;
866 ZERO_STRUCT( (*dom_sids)[i] );
868 if ( domains[i].netbios_ptr ) {
869 unistr2_to_ascii(tmp, &domains[i].netbios_domain, sizeof(tmp) - 1);
870 (*names)[i] = talloc_strdup(mem_ctx, tmp);
873 if ( domains[i].dns_ptr ) {
874 unistr2_to_ascii(tmp2, &domains[i].dns_domain, sizeof(tmp2) - 1);
875 (*alt_names)[i] = talloc_strdup(mem_ctx, tmp2);
878 /* sometimes we will get back a NULL SID from this call */
880 if ( domains[i].sid_ptr )
881 sid_copy(&(*dom_sids)[i], &domains[i].sid.sid);
884 *num_domains = count;
887 done:
889 SAFE_FREE( domains );
891 /* remove connection; This is a special case to the \NETLOGON pipe */
893 if ( cli )
894 cli_shutdown( cli );
896 return result;
899 /* find the domain sid for a domain */
900 static NTSTATUS domain_sid(struct winbindd_domain *domain, DOM_SID *sid)
902 ADS_STRUCT *ads;
903 ADS_STATUS rc;
905 DEBUG(3,("ads: domain_sid\n"));
907 ads = ads_cached_connection(domain);
909 if (!ads) {
910 domain->last_status = NT_STATUS_SERVER_DISABLED;
911 return NT_STATUS_UNSUCCESSFUL;
914 rc = ads_domain_sid(ads, sid);
916 if (!ADS_ERR_OK(rc)) {
918 /* its a dead connection; don't destroy it though
919 since that has already been done indirectly
920 by ads_domain_sid() */
922 domain->private = NULL;
925 return ads_ntstatus(rc);
929 /* find alternate names list for the domain - for ADS this is the
930 netbios name */
931 static NTSTATUS alternate_name(struct winbindd_domain *domain)
933 ADS_STRUCT *ads;
934 ADS_STATUS rc;
935 TALLOC_CTX *ctx;
936 char *workgroup;
938 DEBUG(3,("ads: alternate_name\n"));
940 ads = ads_cached_connection(domain);
942 if (!ads) {
943 domain->last_status = NT_STATUS_SERVER_DISABLED;
944 return NT_STATUS_UNSUCCESSFUL;
947 if (!(ctx = talloc_init("alternate_name"))) {
948 return NT_STATUS_NO_MEMORY;
951 rc = ads_workgroup_name(ads, ctx, &workgroup);
953 if (ADS_ERR_OK(rc)) {
954 fstrcpy(domain->name, workgroup);
955 fstrcpy(domain->alt_name, ads->config.realm);
956 strupper_m(domain->alt_name);
957 strupper_m(domain->name);
960 talloc_destroy(ctx);
962 return ads_ntstatus(rc);
965 /* the ADS backend methods are exposed via this structure */
966 struct winbindd_methods ads_methods = {
967 True,
968 query_user_list,
969 enum_dom_groups,
970 enum_local_groups,
971 name_to_sid,
972 sid_to_name,
973 query_user,
974 lookup_usergroups,
975 lookup_groupmem,
976 sequence_number,
977 trusted_domains,
978 domain_sid,
979 alternate_name
982 #endif